@charset "UTF-8";
.search-tool {
  background-color: var(--color-neutral-lightest);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding-top: 15px;
  margin: 0;
  width: 100%;
  height: 100%;
}
.search-tool .search-section-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-width: 285px;
  margin-top: 15px;
}
.search-tool .search-section-container .location-area, .search-tool .search-section-container .people-area, .search-tool .search-section-container .button-search-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 60px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  margin: 0 25px 10px 25px;
}
.search-tool .search-section-container .location-area {
  position: relative;
  padding: 0 1px 0 33px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.search-tool .search-section-container .location-area i {
  content: "";
  position: absolute;
  top: 15px;
  left: 13px;
  display: inline-block;
  width: 45px;
  height: 28px;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .search-tool .search-section-container .location-area i {
    left: -15px;
  }
}
.search-tool .search-section-container .location-area .location-icon {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/search-form-sprite-b492e3c5a5.svg#icon-search_yellow") no-repeat;
  background-size: contain;
}
.search-tool .search-section-container .location-area input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  width: 100%;
  border: 0;
  color: var(--color-primary);
  background-color: transparent;
  font-family: freight-sans-pro, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 31px;
  padding-left: 18px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .search-tool .search-section-container .location-area input {
    padding-left: 36px;
    font-size: 14px;
  }
}
.search-tool .search-section-container .location-area input::-webkit-input-placeholder {
  color: var(--color-primary);
  text-align: center;
  font-size: 16px;
}
.search-tool .search-section-container .location-area input::-moz-placeholder {
  color: var(--color-primary);
  text-align: center;
  font-size: 16px;
}
.search-tool .search-section-container .location-area input:-ms-input-placeholder {
  color: var(--color-primary);
  text-align: center;
  font-size: 16px;
}
.search-tool .search-section-container .location-area input::-ms-input-placeholder {
  color: var(--color-primary);
  text-align: center;
  font-size: 16px;
}
.search-tool .search-section-container .location-area input::placeholder {
  color: var(--color-primary);
  text-align: center;
  font-size: 16px;
}
.search-tool .search-section-container .location-area .input-wrapper {
  position: relative;
  width: 100%;
}
.search-tool .search-section-container .location-area .input-wrapper .top-placeholder,
.search-tool .search-section-container .location-area .input-wrapper .bottom-placeholder {
  position: absolute;
  left: 30px;
  color: var(--color-primary);
}
.search-tool .search-section-container .location-area .input-wrapper .top-placeholder {
  top: 5px;
  font-family: Poppins-Bold, sans-serif;
  font-size: 10px;
}
.search-tool .search-section-container .location-area .input-wrapper .bottom-placeholder {
  top: 18px;
  font: 500 8px roc-grotesk, sans-serif;
}
.search-tool .search-section-container .people-area {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.search-tool .search-section-container .people-area .people-area-text {
  font-family: roc-grotesk, sans-serif;
  font-weight: 500;
  width: 100%;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
}
.search-tool .search-section-container .people-area .arrow-down-yellow {
  position: absolute;
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/search-form-sprite-b492e3c5a5.svg#icon-arrow-down") no-repeat;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/search-form-sprite-b492e3c5a5.svg#icon-arrow-down") no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: var(--color-accent-gold);
  width: 25px;
  height: 25px;
  right: 5px;
  top: 13px;
  cursor: pointer;
}
.search-tool .search-section-container .people-area .arrow-down-yellow:hover {
  background: var(--color-primary);
}
.search-tool .search-section-container .people-area .people-area-dropdown {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: -141px;
  background-color: var(--color-neutral-lightest);
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.25);
  z-index: 999;
  border-radius: 40px;
  padding: 10px 25px 30px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-width: 348px;
  max-width: 348px;
}
.search-tool .search-section-container .people-area .people-area-dropdown .people-item {
  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;
  color: var(--color-primary);
  padding: 15px 0;
}
.search-tool .search-section-container .people-area .people-area-dropdown .people-item .people-title {
  font: 500 20px roc-grotesk, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--color-text);
}
.search-tool .search-section-container .people-area .people-area-dropdown .people-item .people-title-additional {
  font-family: freight-sans-pro, sans-serif;
  font-size: 18px;
}
.search-tool .search-section-container .people-area .people-area-dropdown .people-item .amount-people {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font: 500 16px freight-sans-pro, sans-serif;
}
.search-tool .search-section-container .people-area .people-area-dropdown .people-item .incrementor-field-search-tool {
  display: inline-block;
  text-align: center;
  width: 10px;
}
.search-tool .search-section-container .people-area .people-area-dropdown .people-item button {
  width: 25px;
  height: 25px;
  border: none;
  background-size: contain;
  background: var(--color-accent-rose);
  color: var(--color-neutral-lightest);
  border-radius: 50%;
  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;
  font-size: 22px;
  line-height: 1;
}
.search-tool .search-section-container .people-area .people-area-dropdown .people-item button:disabled {
  background: var(--color-supportive);
}
.search-tool .search-section-container .button-search-area button {
  width: 100%;
  border: 1px solid var(--color-accent-gold);
  background-color: var(--color-accent-gold);
  color: var(--color-primary);
  letter-spacing: 0.75px;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
}
.search-tool .search-section-container .button-search-area button:hover, .search-tool .search-section-container .button-search-area button:focus, .search-tool .search-section-container .button-search-area button:active {
  border: 1px solid var(--color-accent-gold);
  background-color: var(--color-primary);
  color: var(--color-accent-gold);
}
.search-tool .search-section-container .button-search-area .book, .search-tool .search-section-container .button-search-area .find {
  display: none;
}
.search-tool .search-section-container .search-results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  width: 40%;
  max-height: 160px;
  border: 0;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  background-color: var(--white);
  overflow: auto;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
  z-index: 3;
  margin: 60px 2px 0 26px;
}
.search-tool .search-section-container .search-results__list {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
}
.search-tool .search-section-container .search-results__list-item {
  text-align: start;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.search-tool .search-section-container .search-results__list-item:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 23px;
  display: block;
  width: 21px;
  height: 13px;
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/search-form-sprite-b492e3c5a5.svg#icon-marker_yellow") no-repeat;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/search-form-sprite-b492e3c5a5.svg#icon-marker_yellow") no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: var(--color-accent-gold);
}
@media screen and (min-width: 768px) {
  .search-tool .search-section-container .search-results__list-item:before {
    left: 24px;
  }
}
.search-tool .search-section-container .search-results__list-item a {
  display: block;
  padding: 10px 0 5px 48px;
  font-family: roc-grotesk, sans-serif;
  color: var(--color-primary);
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .search-tool .search-section-container .search-results__list-item a {
    padding: 10px 0 5px 60px;
  }
}
.search-tool .search-section-container .search-results__list-item.selected a, .search-tool .search-section-container .search-results__list-item:focus a, .search-tool .search-section-container .search-results__list-item:hover a, .search-tool .search-section-container .search-results__list-item:active a {
  text-decoration: underline;
}
.search-tool .search-section-container .search-results .not-found {
  font-family: freight-sans-pro, sans-serif;
  padding: 5px 0 5px 55px;
  color: var(--color-primary);
  font-size: 9px;
}

@media screen and (min-width: 768px) {
  .search-tool {
    background-color: var(--color-neutral-lightest);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding-top: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 550px;
    margin: 0 auto;
  }
  .search-tool .search-section-container {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    min-width: initial;
    width: 100%;
    margin-top: 0;
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) and (min-width: 992px) {
  .search-tool .search-section-container {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .search-tool .search-section-container .location-area, .search-tool .search-section-container .people-area, .search-tool .search-section-container .button-search-area {
    height: 50px;
    margin: 10px;
    border: none;
  }
  .search-tool .search-section-container .location-area .area-title, .search-tool .search-section-container .people-area .area-title, .search-tool .search-section-container .button-search-area .area-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    background-color: var(--white);
    padding: 0 5px;
    top: -18px;
    font-family: freight-sans-pro, sans-serif;
    font-size: 14px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .search-tool .search-section-container .location-area .area-title .location-icon, .search-tool .search-section-container .people-area .area-title .location-icon, .search-tool .search-section-container .button-search-area .area-title .location-icon {
    position: initial;
    width: 20px;
    height: 20px;
  }
  .search-tool .search-section-container .location-area .area-title span, .search-tool .search-section-container .people-area .area-title span, .search-tool .search-section-container .button-search-area .area-title span {
    padding: 0 5px;
  }
  .search-tool .search-section-container .people-area .people-area-dropdown {
    bottom: -141px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10px 30px 30px;
  }
  .search-tool .search-section-container .people-area .people-area-dropdown .people-item .people-title, .search-tool .search-section-container .people-area .people-area-dropdown .people-item .amount-people {
    font-size: 17px;
  }
  .search-tool .search-section-container .people-area .people-area-dropdown .people-item button {
    width: 25px;
    height: 25px;
  }
  .search-tool .search-section-container .location-area {
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 66%;
            flex: 0 1 66%;
    padding: 0 1px 0 15px;
  }
  .search-tool .search-section-container .location-area i {
    content: "";
    position: absolute;
    top: 10px;
    left: 16px;
    width: 55px;
    height: 28px;
  }
  .search-tool .search-section-container .location-area input {
    font-size: 14px;
    line-height: 28px;
    padding-left: 45px;
  }
  .search-tool .search-section-container .location-area input::-webkit-input-placeholder {
    color: var(--color-primary);
    text-align: left;
    font-size: 16px;
  }
  .search-tool .search-section-container .location-area input::-moz-placeholder {
    color: var(--color-primary);
    text-align: left;
    font-size: 16px;
  }
  .search-tool .search-section-container .location-area input:-ms-input-placeholder {
    color: var(--color-primary);
    text-align: left;
    font-size: 16px;
  }
  .search-tool .search-section-container .location-area input::-ms-input-placeholder {
    color: var(--color-primary);
    text-align: left;
    font-size: 16px;
  }
  .search-tool .search-section-container .location-area input::placeholder {
    color: var(--color-primary);
    text-align: left;
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (min-width: 992px) {
  .search-tool .search-section-container .location-area input {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .search-tool .search-section-container .location-area .input-wrapper .top-placeholder,
  .search-tool .search-section-container .location-area .input-wrapper .bottom-placeholder {
    left: 51px;
  }
  .search-tool .search-section-container .location-area .input-wrapper .top-placeholder.top-placeholder,
  .search-tool .search-section-container .location-area .input-wrapper .bottom-placeholder.top-placeholder {
    top: 0;
    font-size: 15px;
  }
  .search-tool .search-section-container .location-area .input-wrapper .top-placeholder.bottom-placeholder,
  .search-tool .search-section-container .location-area .input-wrapper .bottom-placeholder.bottom-placeholder {
    top: 18px;
    font-size: 12px;
  }
  .search-tool .search-section-container .button-search-area {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 34%;
            flex: 0 1 34%;
    letter-spacing: 1.05px;
    margin-right: 20px;
  }
  .search-tool .search-section-container .button-search-area button {
    font-size: 14px;
  }
  .search-tool .search-section-container .search-results {
    position: absolute;
    max-height: 320px;
    border: 0;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    background-color: var(--white);
    overflow: auto;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
    margin: 69px 0 0 0;
  }
  .search-tool .search-section-container .search-results__list-item:before {
    width: 47px;
    left: 36px;
  }
  .search-tool .search-section-container .search-results__list-item a {
    padding: 10px 0 5px 65px;
  }
  .search-tool .search-section-container .search-results .not-found {
    font-size: 15px;
  }
}
@media screen and (min-width: 992px) {
  .search-tool {
    width: 600px;
  }
  .search-tool .search-section-container {
    font-size: 16px;
  }
  .search-tool .search-section-container .button-search-area button {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .search-tool {
    top: 395px;
    height: 80px;
  }
  .search-tool .search-section-container {
    max-width: 1080px;
  }
  .search-tool .search-section-container .location-area, .search-tool .search-section-container .people-area, .search-tool .search-section-container .button-search-area {
    height: 60px;
  }
  .search-tool .search-section-container .location-area i {
    top: 13px;
    left: 28px;
    width: 65px;
    height: 30px;
  }
  .search-tool .search-section-container .location-area input {
    padding-left: 60px;
    font-size: 16px;
  }
  .search-tool .search-section-container .location-area input::-webkit-input-placeholder {
    font-size: 16px;
  }
  .search-tool .search-section-container .location-area input::-moz-placeholder {
    font-size: 16px;
  }
  .search-tool .search-section-container .location-area input:-ms-input-placeholder {
    font-size: 16px;
  }
  .search-tool .search-section-container .location-area input::-ms-input-placeholder {
    font-size: 16px;
  }
  .search-tool .search-section-container .location-area input::placeholder {
    font-size: 16px;
  }
}
.search-tool {
  padding: 30px 15px;
  height: auto;
  width: auto;
}
.search-tool .search-section-container {
  background: var(--color-supportive);
  border-radius: 19px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  max-width: 925px;
  max-height: 72px;
  margin: 0 auto;
  -webkit-box-shadow: 0 3.6px 3.6px rgba(0, 0, 0, 0.25);
          box-shadow: 0 3.6px 3.6px rgba(0, 0, 0, 0.25);
}
.search-tool .search-section-container.scrolling {
  position: fixed;
  top: calc(var(--nav-bar-height) + 10px);
  z-index: 1001;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 95%;
}
.search-tool .search-section-container.scale-animation {
  -webkit-animation: scaleAnimation 2s ease-in-out forwards;
          animation: scaleAnimation 2s ease-in-out forwards;
}
@-webkit-keyframes scaleAnimation {
  0% {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
  50% {
    -webkit-transform: translateX(-50%) scale(1.2);
            transform: translateX(-50%) scale(1.2);
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
}
@keyframes scaleAnimation {
  0% {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
  50% {
    -webkit-transform: translateX(-50%) scale(1.2);
            transform: translateX(-50%) scale(1.2);
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
}
.search-tool .search-section-container .location-area {
  height: auto;
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 80%;
  padding: 0;
  z-index: 1;
}
.search-tool .search-section-container .location-area .location-icon {
  position: relative;
  top: auto;
  left: auto;
  display: none;
}
.search-tool .search-section-container .location-area input {
  font-size: 14px;
  color: var(--color-text);
  padding: 3px 0 3px 10px;
  background: var(--color-white);
  border-radius: 19px 0 0 19px;
}
.search-tool .search-section-container .location-area input::-webkit-input-placeholder {
  color: var(--color-text);
  font-size: 15px;
  padding: 0;
  text-align: left;
}
.search-tool .search-section-container .location-area input::-moz-placeholder {
  color: var(--color-text);
  font-size: 15px;
  padding: 0;
  text-align: left;
}
.search-tool .search-section-container .location-area input:-ms-input-placeholder {
  color: var(--color-text);
  font-size: 15px;
  padding: 0;
  text-align: left;
}
.search-tool .search-section-container .location-area input::-ms-input-placeholder {
  color: var(--color-text);
  font-size: 15px;
  padding: 0;
  text-align: left;
}
.search-tool .search-section-container .location-area input::placeholder {
  color: var(--color-text);
  font-size: 15px;
  padding: 0;
  text-align: left;
}
.search-tool .search-section-container .location-area input:-moz-placeholder-shown {
  text-overflow: ellipsis;
}
.search-tool .search-section-container .location-area input:-ms-input-placeholder {
  text-overflow: ellipsis;
}
.search-tool .search-section-container .location-area input:placeholder-shown {
  text-overflow: ellipsis;
}
.search-tool .search-section-container .button-search-area {
  height: auto;
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 20%;
  background: var(--color-primary);
  border-radius: 0 19px 19px 0;
}
.search-tool .search-section-container .button-search-area button {
  font-size: 10px;
  font-weight: 700;
  background: var(--color-accent-gold);
  color: var(--color-text);
  border-top-right-radius: 19px;
  border-bottom-right-radius: 19px;
  border: none;
}
.search-tool .search-section-container .button-search-area button.red {
  background: var(--color-accent-rose);
  color: var(--color-neutral-lightest);
}
.search-tool .search-section-container .button-search-area button.red:active, .search-tool .search-section-container .button-search-area button.red:hover {
  background: var(--color-accent-gold);
  color: var(--color-text);
}
.search-tool .search-section-container .button-search-area button:active, .search-tool .search-section-container .button-search-area button:hover {
  border: none;
  background: var(--color-accent-rose);
  color: var(--color-neutral-lightest);
}
.search-tool .search-section-container .search-results {
  width: 100%;
  top: 55%;
  left: 0;
  margin: 0;
  z-index: -1;
  border-radius: 0 0 19px 19px;
}
.search-tool .search-section-container .search-results__list {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: var(--color-neutral-lightest);
}
.search-tool .search-section-container .search-results__list .not-found {
  padding-top: 30px;
  padding-left: 0;
  text-align: center;
  font-size: 15px;
}
.search-tool .search-section-container .search-results__list-item:first-child a {
  padding-top: 30px;
}
.search-tool .search-section-container .search-results__list-item:first-child::before {
  top: 30px;
}
.search-tool .search-section-container .search-results__list-item a {
  padding: 13px 10px 13px 50px;
}
.search-tool .search-section-container .search-results__list-item::before {
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/search-form-sprite-b492e3c5a5.svg#location") no-repeat;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/search-form-sprite-b492e3c5a5.svg#location") no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 20px;
  height: 22px;
  top: 14px;
  left: 19px;
  background: var(--color-accent-rose);
}

@media screen and (min-width: 768px) {
  .search-tool {
    padding: 50px 15px;
  }
  .search-tool .search-section-container {
    border-radius: 35px;
    font-size: 22px;
  }
  .search-tool .search-section-container .location-area input {
    font-size: 22px;
    padding: 16px 0 16px 25px;
    border-radius: 35px 0 0 35px;
  }
  .search-tool .search-section-container .location-area input::-webkit-input-placeholder {
    font-size: 22px;
  }
  .search-tool .search-section-container .location-area input::-moz-placeholder {
    font-size: 22px;
  }
  .search-tool .search-section-container .location-area input:-ms-input-placeholder {
    font-size: 22px;
  }
  .search-tool .search-section-container .location-area input::-ms-input-placeholder {
    font-size: 22px;
  }
  .search-tool .search-section-container .location-area input::placeholder {
    font-size: 22px;
  }
  .search-tool .search-section-container .search-results {
    border-radius: 0 0 35px 35px;
  }
  .search-tool .search-section-container .search-results__list-item:first-child a {
    padding-top: 50px;
  }
  .search-tool .search-section-container .search-results__list-item:first-child::before {
    top: 53px;
  }
  .search-tool .search-section-container .search-results__list-item::before {
    width: 24px;
    height: 29px;
    top: 20px;
  }
  .search-tool .search-section-container .search-results__list-item a {
    padding: 18px 10px 18px 50px;
  }
  .search-tool .search-section-container .button-search-area {
    width: 20%;
    border-radius: 0 35px 35px 0;
  }
  .search-tool .search-section-container .button-search-area button {
    font-size: 22px;
    border-top-right-radius: 35px;
    border-bottom-right-radius: 35px;
  }
}
.breadcrumbs-section {
  margin: 10px 10px 10px 0;
}
.breadcrumbs-section .main-breadcrumb {
  position: initial;
  width: 100%;
  padding: 10px 0;
  background-color: transparent;
}
.breadcrumbs-section .main-breadcrumb .breadcrumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 13px;
  line-height: 1.4;
}
.breadcrumbs-section .main-breadcrumb .breadcrumb-list li {
  padding: 0;
  font-family: freight-sans-pro, sans-serif;
  font-weight: 400;
}
.breadcrumbs-section .main-breadcrumb .breadcrumb-list li a, .breadcrumbs-section .main-breadcrumb .breadcrumb-list li span {
  text-decoration: none;
  color: var(--color-text);
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
.breadcrumbs-section .main-breadcrumb .breadcrumb-list li a:hover, .breadcrumbs-section .main-breadcrumb .breadcrumb-list li span:hover {
  color: var(--color-accent-rose) !important;
  text-decoration: underline;
  cursor: pointer;
}
.breadcrumbs-section .main-breadcrumb .breadcrumb-list li.active {
  font-weight: 600;
}
.breadcrumbs-section .main-breadcrumb .breadcrumb-list li.active a, .breadcrumbs-section .main-breadcrumb .breadcrumb-list li.active span {
  overflow-wrap: anywhere;
}
.breadcrumbs-section .main-breadcrumb .breadcrumb-list li.active a:hover, .breadcrumbs-section .main-breadcrumb .breadcrumb-list li.active span:hover {
  cursor: default;
  text-decoration: none;
}
.breadcrumbs-section .main-breadcrumb .breadcrumb-list li:not(:last-child):after {
  content: "•";
  padding-right: 5px;
  font-size: 12px;
  position: relative;
  top: -3px;
}

@media screen and (min-width: 768px) {
  .breadcrumbs-section {
    margin-top: 10px;
  }
  .breadcrumbs-section .main-breadcrumb {
    padding: 0;
  }
  .breadcrumbs-section .main-breadcrumb .breadcrumb-list {
    width: 100%;
    padding: 0;
    margin: 0;
    font-size: 16px;
  }
  .breadcrumbs-section .main-breadcrumb .breadcrumb-list li {
    font-size: 20px;
  }
  .breadcrumbs-section .main-breadcrumb .breadcrumb-list li:not(:last-child):after {
    content: "•";
    padding-right: 5px;
  }
}
@media screen and (min-width: 992px) {
  .breadcrumbs-section .main-breadcrumb .breadcrumb-list {
    width: 100%;
  }
}
.reviews {
  padding: 60px 0 0 0;
  color: var(--blue-basic);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.reviews .title {
  margin-bottom: 50px;
}
.reviews .title h2 {
  margin: 0;
}
.reviews .reviews-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style-type: none;
}
.reviews .reviews-list__item {
  width: 100%;
  padding: 15px 25px;
  text-align: center;
  overflow-wrap: anywhere;
}
.reviews .reviews-list__item .review-stars-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style-type: none;
  margin-bottom: 20px;
}
.reviews .reviews-list__item .review-stars-list .icon-star {
  width: 27px;
  height: 27px;
}
.reviews .reviews-list__item .review-description-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 0 25px;
}
.reviews .reviews-list__item .review-description-container .review-description {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.reviews .reviews-list__item .review-description-container .review-description.full {
  display: block;
  -webkit-line-clamp: unset;
}
.reviews .reviews-list__item .review-description-container .show-more-btn {
  margin-top: 10px;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-item-align: center;
      align-self: center;
  background: transparent;
  border: none;
  color: var(--blue-basic);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  text-decoration: underline;
  font-weight: 600;
  font-size: 16px;
}
.reviews .reviews-list__item .review-description-container .show-more-btn:hover {
  color: var(--color-accent-rose);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.reviews .reviews-list__item .review-date, .reviews .reviews-list__item .review-city {
  margin: 0;
}
.reviews .reviews-list__item .review-author {
  margin-top: 5px;
}
.reviews .see-more-reviews-btn {
  width: 100%;
  max-width: 200px;
  height: 44px;
  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;
  margin: 30px auto;
}
.reviews .load-more-reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  text-transform: uppercase;
  padding-right: 10px;
  font-size: 18px;
  color: var(--blue-basic);
  margin-top: 25px;
}
.reviews .load-more-reviews .arrow-down {
  content: "";
  position: inherit;
  width: 15px;
  height: 15px;
  top: 3px;
  right: -15px;
  background: var(--color-primary);
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/reviews-section-sprite-239f3eef30.svg#icon-arrow-down") center/contain no-repeat;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/reviews-section-sprite-239f3eef30.svg#icon-arrow-down") center/contain no-repeat;
}

.card-reviews {
  padding: 15px 17px;
  border-radius: 10px;
  border: 1px solid var(--color-supportive);
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--color-text);
}
.card-reviews .card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.card-reviews .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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.card-reviews .reviews-info {
  font-size: 13px;
  color: var(--color-primary);
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
}
.card-reviews .reviews-content {
  margin: 10px 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-reviews .reviews-content.full {
  -webkit-line-clamp: unset;
  max-height: none;
}
.card-reviews .btn-show-more {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: underline;
  font-family: roc-grotesk, sans-serif;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
}
.card-reviews .btn-show-more:hover {
  color: var(--yellow-basic);
}
.card-reviews .list-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1px;
}
.card-reviews .icon-star {
  width: 17px;
  height: 17px;
  display: block;
  background-color: var(--color-accent-rose);
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/reviews-section-sprite-239f3eef30.svg#star_yellow") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/reviews-section-sprite-239f3eef30.svg#star_yellow") no-repeat center;
  -webkit-mask-size: cover;
          mask-size: cover;
}

.review-card {
  max-width: 340px;
  width: 340px;
  height: 265px;
  max-height: 265px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  border: 2px solid var(--color-text);
  border-radius: 24px;
}
.review-card .card-header {
  background: var(--color-accent-gold);
  padding: 25px 25px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.review-card .card-header .first-letter-block {
  background: var(--color-text);
  color: var(--color-neutral-lightest);
  font: 700 32px roc-grotesk, sans-serif;
  border-radius: 27px;
  width: 54px;
  height: 54px;
  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;
}
.review-card .card-header .reviews-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--color-text);
  font-size: 20px;
}
.review-card .card-header .reviews-info-name {
  font-family: roc-grotesk, sans-serif;
  font-weight: 700;
}
.review-card .card-header .list-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
}
.review-card .card-header .list-stars .icon-star {
  width: 18px;
  height: 18px;
  display: block;
  background: var(--color-accent-rose);
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/reviews-section-sprite-239f3eef30.svg#star_yellow") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/reviews-section-sprite-239f3eef30.svg#star_yellow") no-repeat center;
  -webkit-mask-size: cover;
          mask-size: cover;
}
.review-card .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;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px 25px 25px;
  background: var(--color-white);
}
.review-card .card-content .reviews-content {
  margin: 0;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-card .card-content .btn-show-more {
  margin-top: auto;
  font-family: roc-grotesk, sans-serif;
  font-size: 20px;
  text-decoration: underline;
  color: var(--color-text);
  padding-top: 8px;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .review-card {
    max-width: 365px;
    width: 365px;
    height: 280px;
    max-height: 280px;
  }
  .review-card .card-header {
    padding: 30px 30px 18px;
    gap: 20px;
  }
  .review-card .card-header .first-letter-block {
    font-size: 40px;
    border-radius: 34px;
    width: 68px;
    height: 68px;
  }
  .review-card .card-header .reviews-info {
    font-size: 22px;
  }
  .review-card .card-header .list-stars .icon-star {
    width: 20px;
    height: 20px;
  }
  .review-card .card-content {
    padding: 13px 30px 25px;
  }
  .review-card .card-content .reviews-content {
    line-height: 25px;
    -webkit-line-clamp: 4;
  }
}
.main-slider {
  padding: 20px 15px 40px 0 !important;
}
.main-slider .swiper-button-next,
.main-slider .swiper-button-prev {
  display: none;
}
.main-slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.main-slider .swiper-pagination {
  bottom: 0 !important;
}
.main-slider .swiper-pagination .swiper-pagination-bullet {
  background: var(--color-supportive);
  opacity: 0.8;
}
.main-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .main-slider {
    padding: 30px 15px 70px 0 !important;
  }
  .main-slider .swiper-slide {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .main-slider .swiper-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: auto;
    bottom: 0;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    padding: 10px;
    border: 2px solid transparent;
    background-color: var(--color-accent-rose);
    -webkit-transition: background-color 0.3s linear;
    transition: background-color 0.3s linear;
  }
  .main-slider .swiper-button:hover {
    background: var(--color-neutral-lightest);
    border-color: var(--color-accent-rose);
  }
  .main-slider .swiper-button:hover::after {
    background-color: var(--color-accent-rose);
  }
  .main-slider .swiper-button::after {
    content: "";
    height: 18px;
    width: 20px;
    background-color: var(--color-neutral-lightest);
    -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/general-icons-sprite-dcc6f44af9.svg#back-arrow") no-repeat center;
            mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/general-icons-sprite-dcc6f44af9.svg#back-arrow") no-repeat center;
    -webkit-mask-size: 100%;
            mask-size: 100%;
  }
  .main-slider .swiper-button.swiper-button-next {
    right: 15px;
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  .main-slider .swiper-button.swiper-button-prev {
    right: 84px;
    left: auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .main-slider .swiper-button {
    height: 48px;
    width: 48px;
  }
  .main-slider .swiper-button::after {
    height: 26px;
    width: 28px;
  }
}
@media screen and (min-width: 768px) {
  .main-slider .swiper-pagination {
    display: none;
  }
}

.section-reviews {
  padding: 30px 0;
}
.section-reviews .title-block {
  text-align: center;
}
.section-reviews .title-block .title {
  margin-bottom: 0;
}
.section-reviews .title-block .subtitle {
  font-size: 18px;
}
.section-reviews .filter-block {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .section-reviews .filter-block {
    min-height: 75px;
  }
}
.section-reviews .experience-review-video {
  margin-bottom: 50px;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-reviews .experience-review-video .video-box {
  position: relative;
  width: 210px;
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
}
.section-reviews .experience-review-video .video-box .play-button {
  background: transparent;
  border: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  padding: 0;
}
.section-reviews .experience-review-video .video-box .play-button i {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/reviews-section-sprite-239f3eef30.svg#play-button") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/reviews-section-sprite-239f3eef30.svg#play-button") no-repeat center;
  background-color: #F8F8EE;
  -webkit-mask-size: contain !important;
          mask-size: contain !important;
}
.section-reviews .experience-review-video video, .section-reviews .experience-review-video img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-reviews .experience-review-video .video-title {
  display: block;
  position: relative;
  top: 25px;
  left: 50px;
  max-width: 170px;
  padding: 0;
  color: var(--color-accent-rose);
  font: 500 12px Architects-Daughter, sans-serif;
  line-height: 1.2;
}
.section-reviews .experience-review-video .video-title::before {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/reviews-section-sprite-239f3eef30.svg#arrow4") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/reviews-section-sprite-239f3eef30.svg#arrow4") no-repeat center;
  background-color: var(--color-accent-rose);
  -webkit-mask-size: cover !important;
          mask-size: cover !important;
  position: absolute;
  bottom: 0px;
  left: -80px;
}
.section-reviews .reviews-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  padding-bottom: 36px;
  margin-bottom: 10px;
}
.section-reviews .reviews-list .review-card:nth-child(n+7) {
  display: none;
}
@media screen and (min-width: 1620px) {
  .section-reviews .reviews-list .review-card:nth-child(n+7) {
    display: block;
  }
}
.section-reviews .reviews-list .swiper-wrapper {
  padding: 10px 0;
}
.section-reviews .reviews-list .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .section-reviews .reviews-list .swiper-slide {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    max-width: 365px;
    width: 365px;
    height: 280px;
    max-height: 280px;
  }
}
.section-reviews .btn-primary-link {
  margin: 0 auto;
}

.reviews-popup {
  overflow: hidden;
  height: 100vh;
  font: 400 15px freight-sans-pro, sans-serif;
  line-height: 1.4;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  -webkit-transition: left 0.3s linear, background-color 0.5s linear;
  transition: left 0.3s linear, background-color 0.5s linear;
  background-color: rgba(0, 0, 0, 0.5);
}
.reviews-popup.hidden-popup {
  left: -100%;
  background-color: transparent;
}
.reviews-popup .popup-content {
  padding: 0 0 24px;
  margin: 0;
  border: 0;
  width: 100%;
}
.reviews-popup .icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: var(--blue-basic);
  -webkit-mask-size: cover !important;
          mask-size: cover !important;
  -webkit-transition: color 0.3s linear, background-color 0.3s linear;
  transition: color 0.3s linear, background-color 0.3s linear;
}
.reviews-popup .search {
  width: 22px;
  height: 22px;
  background-color: var(--grey-dark);
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/reviews-section-sprite-239f3eef30.svg#search-icon") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/reviews-section-sprite-239f3eef30.svg#search-icon") no-repeat center;
}
.reviews-popup .chevron {
  width: 19px;
  height: 12px;
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/reviews-section-sprite-239f3eef30.svg#icon-arrow-down") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/reviews-section-sprite-239f3eef30.svg#icon-arrow-down") no-repeat center;
}
.reviews-popup .popup-header {
  background-color: var(--grey-dark);
}
.reviews-popup .btn-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 31px 20px 23px;
  color: var(--color-primary);
  font-size: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.reviews-popup .btn-back:hover {
  color: var(--yellow-basic);
}
.reviews-popup .btn-back:hover .chevron {
  background-color: var(--yellow-basic);
}
.reviews-popup .btn-back:hover .icon-opener::before, .reviews-popup .btn-back:hover .icon-opener::after {
  background-color: var(--yellow-basic);
}
.reviews-popup .btn-back.btn-back-desktop {
  display: none;
}
.reviews-popup .btn-back .chevron {
  background-color: var(--color-primary);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-right: 10px;
}
.reviews-popup .btn-back .icon-opener {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: background-color 0.3s linear;
  transition: background-color 0.3s linear;
}
.reviews-popup .btn-back .icon-opener::before, .reviews-popup .btn-back .icon-opener::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 2px;
}
.reviews-popup .btn-back .icon-opener::after {
  width: 2px;
  height: 100%;
}
.reviews-popup .top-fix-block {
  padding: 20px;
}
.reviews-popup .reviews-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  font: 700 20px roc-grotesk, sans-serif;
}
.reviews-popup .reviews-block .stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.reviews-popup .reviews-block .icon-star {
  width: 22px;
  height: 22px;
  display: block;
  background: var(--color-primary);
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/reviews-section-sprite-239f3eef30.svg#star_yellow") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/reviews-section-sprite-239f3eef30.svg#star_yellow") no-repeat center;
  -webkit-mask-size: cover;
          mask-size: cover;
}
.reviews-popup .reviews-block .reviews {
  display: block;
  padding: 0;
}
.reviews-popup .reviews-block .reviews-count {
  color: var(--color-primary);
}
.reviews-popup .reviews-search-block {
  position: relative;
}
.reviews-popup .reviews-search-block .search-input {
  width: 100%;
  height: 40px;
  padding: 0 0 0 50px;
  background: var(--grey-light-basic);
  color: var(--blue-basic);
  border: 1px solid var(--grey-dark);
  border-radius: 20px;
}
.reviews-popup .reviews-search-block .search {
  position: absolute;
  top: 8px;
  left: 15px;
}
.reviews-popup .reviews-list {
  padding: 0 5px;
  overflow-y: scroll;
  height: calc(100vh - 169px);
  display: block;
}
.reviews-popup .card-reviews {
  border: none !important;
}

@media screen and (min-width: 768px) {
  .section-reviews {
    padding: 60px 0;
  }
  .section-reviews .experience-review-video {
    width: 513px;
    margin-bottom: 50px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .section-reviews .experience-review-video .video-box {
    width: 513px;
    height: 655px;
    background-color: rgb(61, 58, 58);
  }
  .section-reviews .experience-review-video .video-box .play-button {
    width: 130px;
    height: 120px;
  }
  .section-reviews .experience-review-video .video-title {
    bottom: 0;
    left: 115px;
    max-width: 325px;
    font-size: 20px;
  }
  .section-reviews .experience-review-video .video-title::before {
    width: 120px;
    height: 100px;
    top: 0;
    left: -130px;
  }
  .section-reviews .title-block {
    margin-bottom: 60px;
  }
  .section-reviews .title-block .subtitle {
    font-size: 22px;
  }
  .section-reviews .reviews-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
    overflow-x: hidden;
    margin-right: 0;
  }
  .reviews-popup.hidden-popup {
    left: 0;
    top: -130%;
  }
  .reviews-popup .popup-wrapper {
    position: relative;
    height: 90vh;
    max-width: 750px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    border-radius: 20px;
    overflow: hidden;
  }
  .reviews-popup.btn-back-mobile {
    display: none;
  }
  .reviews-popup.btn-back-desktop {
    display: block;
  }
  .reviews-popup .popup-content {
    border-radius: 0 0 20px 20px;
  }
  .reviews-popup .reviews-list {
    height: calc(90vh - 169px);
  }
}
@media screen and (min-width: 1200px) {
  .section-reviews .reviews-list {
    gap: 40px;
  }
}
.icon-shared, .icon-custom, .icon {
  width: 20px;
  height: 21px;
  display: inline-block;
}
@media screen and (min-width: 1440px) {
  .icon-shared, .icon-custom, .icon {
    width: 25px;
    height: 26px;
  }
}
.icon-shared.dot, .dot.icon-custom, .dot.icon {
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--blue-basic);
  -webkit-mask-size: cover !important;
          mask-size: cover !important;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 5px 8px;
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/experience-single-sprite-c9e9aeff34.svg#dot") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/experience-single-sprite-c9e9aeff34.svg#dot") no-repeat center;
}

.icon {
  background-color: var(--white);
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#bookmark") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#bookmark") no-repeat center;
}

.icon-custom {
  background-color: transparent;
}
.icon-custom svg {
  width: inherit;
  height: inherit;
  color: inherit;
}

.icon-knows-every-hidden-gem {
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#find-on-map") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#find-on-map") no-repeat center;
}

.icon-loves-food-local-culture {
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#noodle") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#noodle") no-repeat center;
}

.icon-cultural-stories-local-insights {
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#bookmark") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#bookmark") no-repeat center;
}

.icon-knows-the-city-inside-out {
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#direction") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#direction") no-repeat center;
}

.icon-brings-stories-places-life {
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#speech-bubble") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#speech-bubble") no-repeat center;
}

.icon-architectural-cultural-explorer {
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#skyline") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#skyline") no-repeat center;
}

.icon-nature-city-explorer {
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#building") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#building") no-repeat center;
}

.icon-local-historian {
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#guide-book") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#guide-book") no-repeat center;
}

.icon-eco-friendly-advocate {
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#ecology") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#ecology") no-repeat center;
}

.icon-photo-spots-explorer {
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#photo-pin") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#photo-pin") no-repeat center;
}

.icon-art-creative-spaces-explorer {
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#map-bulb") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#map-bulb") no-repeat center;
}

.icon-chevron {
  display: inline-block;
  width: 19px;
  height: 12px;
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#icon-arrow-down") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#icon-arrow-down") no-repeat center;
  -webkit-transition: color 0.3s linear, background-color 0.3s linear;
  transition: color 0.3s linear, background-color 0.3s linear;
}

.compass {
  display: inline-block;
  width: 25px;
  height: 25px;
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#compass") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#compass") no-repeat center;
}

.noodle {
  display: inline-block;
  width: 15px;
  height: 16px;
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#noodle") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#noodle") no-repeat center;
}

.icon-binoculars {
  display: inline-block;
  width: 15px;
  height: 13px;
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#icon-binoculars") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#icon-binoculars") no-repeat center;
}

.icon-city {
  width: 15px;
  height: 13px;
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#icon-city") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#icon-city") no-repeat center;
}

.icon-flag {
  display: inline-block;
  width: 15px;
  height: 12px;
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#icon-flag") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#icon-flag") no-repeat center;
}

.language {
  display: inline-block;
  width: 25px;
  height: 25px;
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#language") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#language") no-repeat center;
}

.pin-with-hard {
  width: 25px;
  height: 25px;
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#pin-with-hard") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#pin-with-hard") no-repeat center;
}

.host-details-popup {
  overflow: hidden;
  height: 100vh;
  line-height: 1.4;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  z-index: 99999;
  -webkit-transition: left 0.3s linear, background-color 0.5s linear;
  transition: left 0.3s linear, background-color 0.5s linear;
  background-color: rgba(0, 0, 0, 0.5);
}
.host-details-popup.hidden-popup {
  left: -100%;
  background-color: transparent;
}
.host-details-popup .popup-wrapper {
  width: 100%;
}
.host-details-popup .popup-content {
  padding: 0 0 20px;
  margin: 0;
  border: 0;
  width: 100%;
  overflow-y: scroll;
  max-height: calc(100vh - 72px);
}
.host-details-popup .popup-header {
  background-color: var(--color-primary);
}
.host-details-popup .btn-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 31px 20px 23px;
  color: var(--white);
  background-color: var(--color-primary);
  font-size: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.host-details-popup .btn-back:hover {
  color: var(--yellow-basic);
}
.host-details-popup .btn-back:hover .icon-chevron {
  background-color: var(--yellow-basic);
}
.host-details-popup .btn-back .icon-chevron {
  background-color: var(--white);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-right: 10px;
}
.host-details-popup .gallery-box {
  position: relative;
  overflow-x: hidden;
}
.host-details-popup .gallery-box.container-l {
  padding: 30px 0;
}
.host-details-popup .gallery-box .experience-category {
  position: absolute;
  left: 20px;
  bottom: 22px;
  max-width: 98%;
}
.host-details-popup .gallery-box .experience-category .icon-category {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--white);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--grey-dark);
  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;
}
.host-details-popup .gallery-box .experience-category .label-category {
  font-size: 11px;
  color: var(--white);
  background-color: var(--grey-dark);
  border-radius: 20px 10px 10px 20px;
  padding: 5px 10px 4px 45px;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.host-details-popup .gallery-box .gallery-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
}
.host-details-popup .gallery-box .gallery-item {
  width: 250px;
  height: 250px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 15px;
  overflow: hidden;
  margin-left: 20px;
}
.host-details-popup .gallery-box .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.host-details-popup .description-box {
  padding: 10px 20px 30px;
  line-height: 1.4;
}
.host-details-popup .description-box .popup-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  max-width: 800px;
}
.host-details-popup .description-box .popup-title .title {
  font: 400 21px Architects-Daughter, sans-serif;
  margin-bottom: 0;
}
.host-details-popup .description-box .popup-title .description {
  max-width: 800px;
}
.host-details-popup .description-box .additional-information {
  -webkit-transition: height 0.3s linear, visibility 0.3s linear;
  transition: height 0.3s linear, visibility 0.3s linear;
  max-width: 800px;
  margin: 0;
}
.host-details-popup .reviews-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  font-size: 12px;
}
.host-details-popup .reviews-block .stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.host-details-popup .reviews-block .icon-star {
  width: 15px;
  height: 15px;
  display: block;
  background-color: var(--blue-basic);
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#star_yellow") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#star_yellow") no-repeat center;
  -webkit-mask-size: cover;
          mask-size: cover;
}
.host-details-popup .reviews-block .reviews {
  display: block;
  padding: 0;
}
.host-details-popup .reviews-block .reviews-count {
  color: var(--grey-dark);
}
.host-details-popup .skills-box {
  padding: 20px 20px 50px;
  overflow-x: hidden;
}
.host-details-popup .skills-box .skills-slider {
  gap: 15px;
  margin-right: -20px;
  padding: 20px 5px;
}
.host-details-popup .skills-box .skills-slider .list-item {
  margin-bottom: 20px;
}
.host-details-popup .skills-box .skills-slider .list-item .skills-card {
  height: 100%;
  border-radius: 10px;
  background-color: var(--grey-light-basic);
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 25px 20px;
  font-size: 15px;
  margin-right: 20px;
  line-height: 1.6;
}
.host-details-popup .skills-box .skills-slider .list-item .skills-card .card-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}
.host-details-popup .skills-box .skills-slider .list-item .skills-card .explore-list .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.host-details-popup .skills-box .skills-slider .list-item .skills-card .card-list .list-item {
  padding-left: 15px;
  position: relative;
}
.host-details-popup .skills-box .skills-slider .list-item .skills-card .card-list .list-item::before {
  content: "•";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 4px;
}
.host-details-popup .skills-box .icon {
  background-color: var(--blue-basic);
}
.host-details-popup .desktop-block {
  display: none !important;
}
.host-details-popup .facts-box {
  padding: 36px 20px;
}
.host-details-popup .facts-box .title {
  margin-bottom: 8px;
  color: var(--white);
}
.host-details-popup .reviews-quote-box {
  padding: 62px 20px 51px;
}
.host-details-popup .reviews-quote-box .card-quote {
  padding: 32px 27px 58px 14px;
  position: relative;
  width: 277px;
  height: 217px;
  z-index: 1;
  font-size: 15px;
  margin: 0 auto;
  text-align: center;
  font-style: italic;
  line-height: 1.2;
  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;
}
.host-details-popup .reviews-quote-box .card-quote::before, .host-details-popup .reviews-quote-box .card-quote::after {
  content: "";
  display: block;
  width: 65px;
  height: 65px;
  background-color: var(--blue-basic);
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#quote") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#quote") no-repeat center;
  -webkit-mask-size: cover;
          mask-size: cover;
  position: absolute;
  top: -22px;
  left: -13px;
}
.host-details-popup .reviews-quote-box .card-quote::after {
  top: auto;
  left: auto;
  bottom: 8px;
  right: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.host-details-popup .reviews-quote-box .card-quote blockquote {
  margin: 0;
}
.host-details-popup .reviews-quote-box .card-quote .quote-background {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: -4px;
}
.host-details-popup .reviews-quote-box .card-quote .quote-author {
  font-family: roc-grotesk;
  font-style: 500;
}
.host-details-popup .author-quote-box {
  padding: 55px 34px 55px 36px;
}
.host-details-popup .reviews-box.container-l {
  padding-top: 30px;
  padding-bottom: 30px;
}
.host-details-popup .reviews-box .reviews-list {
  margin-bottom: 20px;
}
.host-details-popup .reviews-box .reviews-list > .list-item {
  margin-bottom: 13px;
  max-width: 354px;
}
.host-details-popup .reviews-box .card-reviews {
  border: 1px solid var(--grey-dark);
}
.host-details-popup .reviews-box .card-reviews .reviews-info {
  gap: 0;
}

@media screen and (min-width: 1024px) {
  .host-details-popup {
    font-size: 17px;
  }
  .host-details-popup .btn-back {
    font-size: 24px;
  }
  .host-details-popup .btn-back .icon-chevron {
    width: 40px;
    height: 40px;
  }
  .host-details-popup .gallery-box.container-l {
    padding: 30px 0;
  }
  .host-details-popup .gallery-box .gallery-item {
    width: 320px;
    height: 320px;
  }
  .host-details-popup .gallery-box .experience-category {
    position: absolute;
    left: 20px;
    bottom: 22px;
    max-width: 98%;
  }
  .host-details-popup .gallery-box .experience-category .icon-category {
    width: 45px;
    height: 45px;
  }
  .host-details-popup .gallery-box .experience-category .label-category {
    font-size: 14px;
    padding: 6px 10px 5px 50px;
  }
  .host-details-popup .description-box .popup-title {
    gap: 30px;
  }
  .host-details-popup .description-box .popup-title .title {
    font-size: 40px;
  }
  .host-details-popup .reviews-block {
    gap: 5px;
    font-size: 22px;
  }
  .host-details-popup .reviews-block .icon-star {
    width: 24px;
    height: 24px;
  }
  .host-details-popup .skills-box .skills-slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-x: visible;
  }
  .host-details-popup .skills-box .skills-card {
    width: 285px;
    font-size: 18px;
  }
  .host-details-popup .mobile-block {
    display: none !important;
  }
  .host-details-popup .desktop-block {
    display: block !important;
  }
  .host-details-popup .desktop-host-info-block {
    background-color: var(--blue-basic);
    color: var(--white);
  }
  .host-details-popup .desktop-host-info-block .container-l {
    padding-top: 30px;
    padding-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
  }
  .host-details-popup .desktop-host-info-block .title {
    margin-bottom: 30px;
    text-align: center;
  }
  .host-details-popup .desktop-host-info-block .facts-box {
    padding: 0;
  }
  .host-details-popup .desktop-host-info-block .facts-box .facts-box-tex {
    position: relative;
    padding: 36px 30px 50px;
    width: 271px;
    height: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .host-details-popup .desktop-host-info-block .facts-box .facts-box-tex p {
    margin: 0;
  }
  .host-details-popup .desktop-host-info-block .facts-box .facts-box-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -4px;
  }
  .host-details-popup .desktop-host-info-block .reviews-quote-box {
    padding: 0;
  }
  .host-details-popup .desktop-host-info-block .reviews-quote-box .card-quote {
    padding: 32px 27px 58px 14px;
    width: 277px;
    height: 217px;
  }
  .host-details-popup .desktop-host-info-block .reviews-quote-box .card-quote::before, .host-details-popup .desktop-host-info-block .reviews-quote-box .card-quote::after {
    background-color: var(--yellow-basic);
  }
  .host-details-popup .desktop-host-info-block .author-quote-box {
    background-color: transparent;
    padding: 0;
  }
  .host-details-popup .desktop-host-info-block .author-quote-box .author-quote-box-text {
    position: relative;
    padding: 30px 30px 65px 35px;
    width: 358px;
    height: 283px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .host-details-popup .desktop-host-info-block .author-quote-box .author-quote-box-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -4px;
  }
  .host-details-popup .reviews-box.container-l {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .host-details-popup .reviews-box .reviews-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 50px;
    max-width: 1042px;
  }
  .host-details-popup .reviews-box .reviews-list > .list-item {
    margin-bottom: 0;
    max-width: 100%;
    width: calc(50% - 25px);
  }
  .host-details-popup .reviews-box .reviews-list > .list-item .card-reviews {
    height: 100%;
    padding: 25px;
  }
}
@media screen and (min-width: 1440px) {
  .host-details-popup .gallery-box.container-l {
    padding: 40px 0;
  }
  .host-details-popup .gallery-box .gallery-item {
    width: 400px;
    height: 400px;
    margin-left: 40px;
  }
  .host-details-popup .gallery-box .experience-category .icon-category {
    width: 60px;
    height: 60px;
  }
  .host-details-popup .gallery-box .experience-category .label-category {
    font-size: 18px;
    padding: 6px 10px 5px 65px;
  }
  .host-details-popup .skills-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
  .host-details-popup .skills-box .skills-box-title {
    margin-bottom: 0;
    width: 30%;
    max-width: 400px;
  }
  .host-details-popup .skills-box .skills-slider {
    padding: 20px;
    gap: 20px;
  }
  .host-details-popup .skills-box .skills-card {
    width: 300px;
    font-size: 18px;
    padding: 30px 25px;
  }
  .host-details-popup .desktop-host-info-block .container-l {
    padding-top: 50px;
    padding-bottom: 50px;
    gap: 90px;
  }
  .host-details-popup .desktop-host-info-block .facts-box .facts-box-tex {
    width: 311px;
    height: 290px;
    padding: 40px 35px 60px;
  }
  .host-details-popup .desktop-host-info-block .reviews-quote-box .card-quote {
    padding: 38px 50px 70px 29px;
    width: 352px;
    height: 255px;
    font-size: 18px;
  }
  .host-details-popup .desktop-host-info-block .reviews-quote-box .card-quote::before {
    width: 75px;
    height: 75px;
    top: -25px;
    left: 4px;
  }
  .host-details-popup .desktop-host-info-block .reviews-quote-box .card-quote::after {
    width: 75px;
    height: 75px;
    bottom: 18px;
    right: -1px;
  }
  .host-details-popup .desktop-host-info-block .author-quote-box .author-quote-box-text {
    padding: 40px 35px 85px;
    width: 399px;
    height: 323px;
  }
}
.section-hosts.container-l {
  padding: 30px 15px;
}
@media screen and (min-width: 540px) {
  .section-hosts.container-l {
    padding-right: 0;
  }
}
.section-hosts .hosts-slider {
  padding: 10px 0 65px;
}
.section-hosts .hosts-slider .slider-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 15px;
  height: auto !important;
  width: 291px;
}
.section-hosts .hosts-slider .swiper-button {
  top: auto;
  bottom: 0;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  padding: 10px;
  background-color: var(--color-accent-rose);
  -webkit-transition: background-color 0.3s linear;
  transition: background-color 0.3s linear;
}
.section-hosts .hosts-slider .swiper-button:hover {
  background-color: var(--color-primary);
}
.section-hosts .hosts-slider .swiper-button::after {
  content: "";
  height: 18px;
  width: 20px;
  background-color: var(--color-neutral-lightest);
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/general-icons-sprite-dcc6f44af9.svg#back-arrow") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/general-icons-sprite-dcc6f44af9.svg#back-arrow") no-repeat center;
  -webkit-mask-size: cover;
          mask-size: cover;
}
.section-hosts .hosts-slider .swiper-button.swiper-button-next {
  right: 15px;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.section-hosts .hosts-slider .swiper-button.swiper-button-prev {
  right: 84px;
  left: auto;
}
.section-hosts .card-host-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  color: var(--color-neutral-lightest);
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  width: 260px;
}
.section-hosts .card-host-info:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.section-hosts .card-host-info:hover .btn-view {
  color: var(--color-accent-gold);
}
.section-hosts .card-host-info .card-img {
  border-radius: 20px 20px 0 0;
  height: 184px;
  overflow: hidden;
}
.section-hosts .card-host-info .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.section-hosts .card-host-info .card-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  font: 500 12px "roc-grotesk", sans-serif;
}
.section-hosts .card-host-info .card-category .icon-category {
  min-width: 20px;
  min-height: 20px;
  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;
}
.section-hosts .card-host-info .card-category .icon-category .icon {
  min-width: 20px;
  min-height: 20px;
}
.section-hosts .card-host-info .card-body {
  padding: 0 22px 11px;
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  gap: 5px;
  background-color: var(--color-primary);
  border-radius: 0 0 20px 20px;
}
.section-hosts .card-host-info .card-body .description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 3.6em;
  line-height: 1.2em;
  font-size: 15px;
}
.section-hosts .card-host-info .btn-view {
  display: block;
  width: 170px;
  text-decoration: underline;
  text-transform: capitalize;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
  font: 500 15px "roc-grotesk", sans-serif;
  background-color: var(--color-primary);
  padding: 12px 37px 12px 30px;
  text-align: center;
  border-radius: 0 0 20px 20px;
  margin: -1px 0 0 12px;
  clip-path: path("M0.713673 5.25918e-09C-12.7863 0.000244151 169.714 5.25918e-09 169.714 5.25918e-09C158.672 0.127807 153.212 3.81525 145.214 19L138.02 31.1746C134.421 37.264 127.874 41 120.801 41H42.7137C31.668 41 22.7137 32.0464 22.7137 21.0007C22.7137 20.5021 22.7137 20.0016 22.7137 19.5C22.7137 8.5 14.2137 -0.000244141 0.713673 5.25918e-09Z");
}
.section-hosts .card-host-info .card-title {
  font-size: 25px;
  margin: -26px 0 0 -6px;
  line-height: 1;
  padding: 15px 24px;
  background-color: var(--color-accent-gold);
  color: var(--color-text);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 1;
  border-radius: 50%;
}
.section-hosts .card-host-info .card-city {
  font: 500 12px "roc-grotesk", sans-serif;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.section-hosts .card-host-info .reviews-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  font: 400 15px "freight-sans-pro", sans-serif;
}
.section-hosts .card-host-info .reviews-block .stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section-hosts .card-host-info .reviews-block .icon-star {
  width: 15px;
  height: 15px;
  display: block;
  background-color: var(--color-accent-gold);
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#star_yellow") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#star_yellow") no-repeat center;
  -webkit-mask-size: cover;
          mask-size: cover;
}
.section-hosts .card-host-info .reviews-block .reviews-count {
  color: var(--color-neutral-lightest);
}
.section-hosts .card-host-info .reviews-block .reviews {
  color: var(--color-neutral-lightest);
  padding-top: 0;
}

@media screen and (min-width: 1024px) {
  .section-hosts .hosts-slider .slider-item {
    width: 314px;
  }
  .section-hosts .hosts-slider .swiper-button {
    height: 48px;
    width: 48px;
  }
  .section-hosts .hosts-slider .swiper-button::after {
    height: 26px;
    width: 28px;
  }
  .section-hosts .card-host-info {
    width: 283px;
  }
  .section-hosts .card-host-info .card-img {
    height: 202px;
  }
  .section-hosts .card-host-info .card-body {
    gap: 10px;
  }
  .section-hosts .card-host-info .card-body .btn-see-details {
    font-size: 17px;
  }
  .section-hosts .card-host-info .card-category {
    font-size: 14px;
  }
  .section-hosts .card-host-info .card-category .icon-category {
    min-width: 22px;
    min-height: 22px;
  }
  .section-hosts .card-host-info .card-category .icon-category .icon {
    width: 22px;
    height: 22px;
  }
  .section-hosts .card-host-info .card-info-block {
    font-size: 18px;
  }
  .section-hosts .card-host-info .reviews-block {
    font-size: 18px;
    gap: 6px;
  }
  .section-hosts .card-host-info .reviews-block .icon-star {
    width: 20px;
    height: 20px;
  }
}
.section-our-experiences {
  padding: 30px 0;
}
.section-our-experiences .experiences-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.section-our-experiences .experiences-list .card-experience {
  height: 100%;
}
.section-our-experiences .experiences-list .experience-item .card-experience {
  margin: 0 auto;
}
.section-our-experiences .title-box {
  text-align: center;
  font-size: 18px;
  color: var(--color-text);
  max-width: 772px;
  margin: 0 auto 40px;
}
.section-our-experiences .title-box .title {
  margin-bottom: 10px;
}
.section-our-experiences .title-box .description {
  margin: 0;
}
.section-our-experiences .btn-primary-link {
  margin: 0 auto;
}
.section-our-experiences .filters-block {
  margin-bottom: 25px;
  position: relative;
  z-index: 10;
}
.section-our-experiences .show-by-prices-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 17px;
}
.section-our-experiences .show-by-prices-wrapper .title {
  font-size: 17px;
  margin-bottom: 0;
  margin-top: 11px;
}
.section-our-experiences .show-by-prices-wrapper .search-tool {
  border: none;
  padding: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  height: auto;
  z-index: 10;
}
.section-our-experiences .show-by-prices-wrapper .search-tool .search-section-container {
  min-width: initial;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0;
  border: none;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.section-our-experiences .show-by-prices-wrapper .search-tool .search-section-container .people-area {
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
.section-our-experiences .show-by-prices-wrapper .search-tool .search-section-container .people-area {
  height: 34px;
  border-bottom: 2px solid var(--blue-basic);
}
.section-our-experiences .show-by-prices-wrapper .search-tool .search-section-container .people-area .arrow-down-yellow {
  position: absolute;
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/footer-sprite-c95b64669e.svg#icon-arrow-down_blue") no-repeat;
  width: 16px;
  height: 16px;
  right: -20px;
  top: 14px;
}
.section-our-experiences .show-by-prices-wrapper .search-tool .search-section-container .people-area .arrow-down-yellow:hover, .section-our-experiences .show-by-prices-wrapper .search-tool .search-section-container .people-area .arrow-down-yellow:active {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/footer-sprite-c95b64669e.svg#icon-arrow-down_yellow") no-repeat;
}
.section-our-experiences .show-by-prices-wrapper .search-tool .search-section-container .people-area .people-area-text {
  display: inline-block;
  font-size: 17px;
  padding-top: 10px;
  padding-left: 7px;
  text-align: left;
  width: 100%;
}
.section-our-experiences .show-by-prices-wrapper .search-tool .search-section-container .people-area .people-area-dropdown {
  bottom: -205px;
  right: -55px;
}
@media screen and (min-width: 768px) {
  .section-our-experiences {
    padding: 50px 0;
  }
  .section-our-experiences .experiences-list {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin-bottom: 50px;
    gap: 40px;
  }
  .section-our-experiences .filters-block {
    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;
    height: 75px;
  }
  .section-our-experiences .show-by-prices-wrapper {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 0 20px;
  }
  .section-our-experiences .title-box {
    font-size: 22px;
  }
}
.favorite-experience-icon-box,
.favorite-article-icon-box,
.favorite-suggested-product-icon-box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 7px;
  right: 10px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 9;
}
.favorite-experience-icon-box .favorite-experience,
.favorite-experience-icon-box .favorite-article,
.favorite-experience-icon-box .favorite-suggested-product,
.favorite-article-icon-box .favorite-experience,
.favorite-article-icon-box .favorite-article,
.favorite-article-icon-box .favorite-suggested-product,
.favorite-suggested-product-icon-box .favorite-experience,
.favorite-suggested-product-icon-box .favorite-article,
.favorite-suggested-product-icon-box .favorite-suggested-product {
  display: inline-block;
  width: 28px;
  height: 28px;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.favorite-experience-icon-box .favorite-experience::after,
.favorite-experience-icon-box .favorite-article::after,
.favorite-experience-icon-box .favorite-suggested-product::after,
.favorite-article-icon-box .favorite-experience::after,
.favorite-article-icon-box .favorite-article::after,
.favorite-article-icon-box .favorite-suggested-product::after,
.favorite-suggested-product-icon-box .favorite-experience::after,
.favorite-suggested-product-icon-box .favorite-article::after,
.favorite-suggested-product-icon-box .favorite-suggested-product::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/general-icons-sprite-dcc6f44af9.svg#heart_white") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/general-icons-sprite-dcc6f44af9.svg#heart_white") no-repeat center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  z-index: 2;
}
.favorite-experience-icon-box .favorite-article-checked,
.favorite-experience-icon-box .favorite-experience-checked,
.favorite-experience-icon-box .favorite-suggested-product-checked,
.favorite-article-icon-box .favorite-article-checked,
.favorite-article-icon-box .favorite-experience-checked,
.favorite-article-icon-box .favorite-suggested-product-checked,
.favorite-suggested-product-icon-box .favorite-article-checked,
.favorite-suggested-product-icon-box .favorite-experience-checked,
.favorite-suggested-product-icon-box .favorite-suggested-product-checked {
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/general-icons-sprite-dcc6f44af9.svg#heart_checked") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/general-icons-sprite-dcc6f44af9.svg#heart_checked") no-repeat center;
  background: var(--color-primary);
}
.favorite-experience-icon-box .favorite-article-checked::after,
.favorite-experience-icon-box .favorite-experience-checked::after,
.favorite-experience-icon-box .favorite-suggested-product-checked::after,
.favorite-article-icon-box .favorite-article-checked::after,
.favorite-article-icon-box .favorite-experience-checked::after,
.favorite-article-icon-box .favorite-suggested-product-checked::after,
.favorite-suggested-product-icon-box .favorite-article-checked::after,
.favorite-suggested-product-icon-box .favorite-experience-checked::after,
.favorite-suggested-product-icon-box .favorite-suggested-product-checked::after {
  display: none;
}
@media screen and (min-width: 520px) {
  .favorite-experience-icon-box,
  .favorite-article-icon-box,
  .favorite-suggested-product-icon-box {
    width: 40px;
    height: 40px;
    top: 7px;
  }
  .favorite-experience-icon-box .favorite-experience,
  .favorite-experience-icon-box .favorite-article,
  .favorite-article-icon-box .favorite-experience,
  .favorite-article-icon-box .favorite-article,
  .favorite-suggested-product-icon-box .favorite-experience,
  .favorite-suggested-product-icon-box .favorite-article {
    width: 38px;
    height: 38px;
  }
}

.favorite-suggested-product-icon-box {
  width: 34px;
  height: 34px;
  background: var(--color-white);
  border-radius: 50%;
  top: 13px;
  right: 13px;
}
.favorite-suggested-product-icon-box .favorite-suggested-product {
  width: 20px;
  height: 20px;
}
.favorite-suggested-product-icon-box .favorite-suggested-product::after {
  width: 20px;
  height: 20px;
}

.card-experience-wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.15));
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

.card-experience {
  background-color: var(--white-basic);
  color: var(--color-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 250px;
  width: 250px;
  height: 340px;
  max-height: 340px;
  position: relative;
  clip-path: path("M250 299.547C250 306.726 244.18 312.547 237 312.547C229.82 312.547 224 318.367 224 325.547V326.273C224 333.854 217.854 340 210.273 340H15C6.71572 340 0 333.284 0 325V15C0 6.71572 6.71573 0 15 0H235C243.284 0 250 6.71573 250 15V299.547Z");
  border-radius: 15px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (hover: hover) {
  .card-experience:hover {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  .card-experience:hover .card-body-content {
    display: none;
  }
  .card-experience:hover .description {
    display: block;
  }
}
.card-experience .card-experience-link {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.card-experience .card-img {
  width: 100%;
  height: 143px;
  position: relative;
}
.card-experience .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px 15px 0 0;
}
.card-experience .card-title {
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 55px;
  min-height: 55px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: -webkit-fill-available;
  font: 500 18px "roc-grotesk", sans-serif;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .card-experience .card-title {
    font-size: 20px;
    max-height: 40px;
    min-height: 40px;
  }
}
.card-experience .card-body {
  height: 197px;
  padding: 20px 15px 10px 15px;
}
.card-experience .card-body-content {
  height: 100%;
  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;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 12px;
}
.card-experience .card-body .content-block-title {
  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-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.card-experience .card-body .city-label {
  font: 500 12px "roc-grotesk", sans-serif;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.card-experience .card-body-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.card-experience .card-body .content-block {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.card-experience .card-body .view-experience {
  margin-top: auto;
  text-decoration: underline;
  font: 500 15px "roc-grotesk", sans-serif;
}
.card-experience .description {
  display: none;
  margin: 0;
  padding: 10px 15px 0;
}
.card-experience .card-category {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  padding: 4px 15px;
  border-radius: 20px;
  font: 500 12px "roc-grotesk", sans-serif;
  text-transform: uppercase;
  background-color: var(--color-accent-gold);
  position: absolute;
  bottom: -10px;
  left: 15px;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.card-experience .experience-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding-left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font: 500 15px freight-sans-pro, sans-serif;
}
.card-experience .experience-rating:before {
  display: none;
}
.card-experience .experience-rating .rating-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.card-experience .experience-rating .stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.card-experience .experience-rating .star {
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/experience-card-sprite-726559fd4d.svg#star-yellow") center no-repeat;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/experience-card-sprite-726559fd4d.svg#star-yellow") center no-repeat;
  background: var(--color-accent-rose);
  width: 15px;
  height: 15px;
}
.card-experience .duration-rating-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.card-experience .experience-information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin-top: auto;
}
.card-experience .experience-information .experience-price,
.card-experience .experience-information .experience-duration {
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  font: 500 15px freight-sans-pro, sans-serif;
}
.card-experience .experience-information .experience-price:before,
.card-experience .experience-information .experience-duration:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-size: cover !important;
  position: absolute;
  top: 0;
  left: 0;
}
.card-experience .experience-information .experience-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
}
.card-experience .experience-information .experience-price:before {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/experience-card-sprite-726559fd4d.svg#price-tag") center no-repeat;
  left: -3px;
  width: 18px;
  height: 18px;
}
.card-experience .experience-information .experience-price .price {
  font: 700 15px "roc-grotesk", sans-serif;
}
.card-experience .experience-information .experience-price .price-text {
  font-weight: 500;
}
.card-experience .experience-information.with-partner {
  gap: 5px;
}
.card-experience .experience-information.with-partner .experience-price {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.card-experience .experience-information.with-partner .experience-price:before {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.card-experience .experience-information.with-partner .experience-price .price {
  position: relative;
}
.card-experience .experience-information.with-partner .experience-price .price::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  border-radius: 1px;
  background: var(--color-primary);
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
.card-experience .experience-information.with-partner .experience-price .partner-price {
  font: 700 15px "roc-grotesk", sans-serif;
  color: var(--color-accent-rose);
}
.card-experience .experience-information .experience-duration:before {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/experience-card-sprite-726559fd4d.svg#clock") center no-repeat;
}

@media screen and (min-width: 768px) {
  .card-experience-wrapper {
    -webkit-filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.15));
            filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.15));
  }
  .card-experience {
    max-width: 332px;
    max-height: 267px;
    width: 332px;
    height: 267px;
    clip-path: path("M332 220.192C332 228.145 325.553 234.592 317.6 234.592H316.77C308.817 234.592 302.37 241.04 302.37 248.992V253.1C302.37 261.053 295.923 267.5 287.97 267.5H14.4C6.44709 267.5 0 261.053 0 253.1V14.4C0 6.44709 6.4471 0 14.4 0H317.6C325.553 0 332 6.4471 332 14.4V220.192Z");
  }
  .card-experience .card-img {
    height: 117px;
  }
  .card-experience .card-title {
    font-size: 20px;
    -webkit-line-clamp: 2;
  }
  .card-experience .card-body {
    height: 150.5px;
    padding: 15px;
  }
  .card-experience .duration-rating-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 10px;
  }
  .card-experience .view-experience {
    display: none;
  }
  .card-experience .experience-information {
    gap: 10px;
  }
}
.filters {
  position: relative;
  height: 100%;
}
.filters .filters-modal {
  position: relative;
  max-height: 1300px;
  max-width: 740px;
  width: 100vw;
  height: 100%;
  margin-left: -15px;
  background: var(--color-primary);
  color: var(--color-neutral-lightest);
  left: 0;
  top: 0;
  z-index: 1000;
  padding: 7px 10px 15px 40px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-radius: 0 30px 30px 0;
}
.filters .filters-modal.with-sign-icon {
  overflow: hidden;
}
.filters .filters-modal.collapsed {
  position: relative;
  z-index: 0;
  padding: 7px 10px 7px 40px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  border-radius: 0 40px 40px 0;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.filters .filters-modal.collapsed .content-wrapper {
  max-height: 0;
  max-width: 0;
  opacity: 0;
}
.filters .filters-modal.collapsed .title-wrapper {
  margin: 0;
  cursor: pointer;
}
.filters .filters-modal.collapsed .title-wrapper.title-wrapper-big {
  margin: 0;
}
.filters .filters-modal.collapsed .title-wrapper .applied-filters {
  background: transparent;
}
.filters .filters-modal.collapsed .title-wrapper .close-btn::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.filters .filters-modal.collapsed .title-wrapper .apply-btn {
  display: none;
}
.filters .filters-modal.collapsed .title-wrapper .filter-title {
  max-width: none;
}
.filters .filters-modal.collapsed .sign-icon {
  max-height: 0;
  opacity: 0;
}
.filters .filters-modal.collapsed .filter-buttons {
  max-height: 0;
  max-width: 0;
  opacity: 0;
}
.filters .filters-modal.collapsed .filter-buttons button {
  display: none !important;
}
.filters .filters-modal .filter-buttons {
  max-height: 100px;
  max-width: 250px;
  position: relative;
}
.filters .filters-modal .filter-buttons .clear-filters-btn {
  position: absolute;
  left: -4px;
  bottom: -35px;
  min-width: auto;
  width: 100%;
  padding: 5px 0;
}
.filters .filters-modal .section-title {
  font-size: 16px;
  margin-bottom: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.filters .filters-modal .content-wrapper {
  max-height: 1000px;
  max-width: 600px;
  padding-right: 5px;
}
.filters .filters-modal .clear-filters-btn {
  color: var(--color-neutral-lightest);
  font-size: 15px;
  padding: 0;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.filters .filters-modal .clear-filters-btn:hover {
  color: var(--color-accent-rose);
}
.filters .filters-modal .search-wrapper {
  padding-bottom: 15px;
}
.filters .filters-modal .search-wrapper .city-search {
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--color-neutral-light);
  color: var(--color-primary);
  border: none;
  width: 100%;
}
.filters .filters-modal .search-wrapper .city-search::-webkit-input-placeholder {
  color: var(--color-primary);
}
.filters .filters-modal .search-wrapper .city-search::-moz-placeholder {
  color: var(--color-primary);
}
.filters .filters-modal .search-wrapper .city-search:-ms-input-placeholder {
  color: var(--color-primary);
}
.filters .filters-modal .search-wrapper .city-search::-ms-input-placeholder {
  color: var(--color-primary);
}
.filters .filters-modal .search-wrapper .city-search::placeholder {
  color: var(--color-primary);
}
.filters .filters-modal .search-wrapper .search-tool {
  padding: 0;
  background: transparent;
}
.filters .filters-modal .search-wrapper .search-tool .search-section-container {
  background: transparent;
  max-height: none;
}
.filters .filters-modal .search-wrapper .search-tool .search-section-container .location-area {
  height: auto;
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 100%;
  padding: 0;
  z-index: 1;
}
.filters .filters-modal .search-wrapper .search-tool .search-section-container .location-area .location-icon {
  position: relative;
  top: auto;
  left: auto;
  display: none;
}
.filters .filters-modal .search-wrapper .search-tool .search-section-container .location-area .input-wrapper {
  position: relative;
}
.filters .filters-modal .search-wrapper .search-tool .search-section-container .location-area .input-wrapper::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-color: var(--color-accent-rose);
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/filters-sprite-e0c20f8801.svg#search") no-repeat center/cover;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/filters-sprite-e0c20f8801.svg#search") no-repeat center/cover;
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 3;
}
.filters .filters-modal .search-wrapper .search-tool .search-section-container .location-area input {
  padding: 6px 12px 6px 30px;
  border-radius: 20px;
  background: var(--color-neutral-light);
  color: var(--color-primary);
  border: none;
  width: 100%;
  font-size: 16px;
}
.filters .filters-modal .search-wrapper .search-tool .search-section-container .location-area input::-webkit-input-placeholder {
  color: var(--color-primary);
  font-size: 16px;
}
.filters .filters-modal .search-wrapper .search-tool .search-section-container .location-area input::-moz-placeholder {
  color: var(--color-primary);
  font-size: 16px;
}
.filters .filters-modal .search-wrapper .search-tool .search-section-container .location-area input:-ms-input-placeholder {
  color: var(--color-primary);
  font-size: 16px;
}
.filters .filters-modal .search-wrapper .search-tool .search-section-container .location-area input::-ms-input-placeholder {
  color: var(--color-primary);
  font-size: 16px;
}
.filters .filters-modal .search-wrapper .search-tool .search-section-container .location-area input::placeholder {
  color: var(--color-primary);
  font-size: 16px;
}
.filters .filters-modal .search-wrapper .search-tool .search-section-container .button-search-area {
  display: none;
}
@media screen and (min-width: 768px) {
  .filters .filters-modal .search-wrapper .search-tool .search-section-container {
    font-size: 16px;
  }
  .filters .filters-modal .search-wrapper .search-tool .search-results {
    width: 100%;
    top: 55%;
    left: 0;
    margin: 0;
    z-index: -1;
    border-radius: 0 0 19px 19px;
  }
  .filters .filters-modal .search-wrapper .search-tool .search-results__list {
    background: var(--color-supportive);
  }
  .filters .filters-modal .search-wrapper .search-tool .search-results__list-item:first-child a {
    padding-top: 30px;
  }
  .filters .filters-modal .search-wrapper .search-tool .search-results__list-item:first-child::before {
    top: 30px;
  }
  .filters .filters-modal .search-wrapper .search-tool .search-results__list-item a {
    padding: 13px 10px 13px 50px;
  }
  .filters .filters-modal .search-wrapper .search-tool .search-results__list-item::before {
    -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/search-form-sprite-b492e3c5a5.svg#location") no-repeat;
            mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/search-form-sprite-b492e3c5a5.svg#location") no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
    width: 20px;
    height: 22px;
    top: 14px;
    left: 19px;
    background: var(--color-primary);
  }
  .filters .filters-modal .search-wrapper .search-tool .search-results__list-item.selected::before, .filters .filters-modal .search-wrapper .search-tool .search-results__list-item:focus::before, .filters .filters-modal .search-wrapper .search-tool .search-results__list-item:hover::before, .filters .filters-modal .search-wrapper .search-tool .search-results__list-item:active::before {
    background: var(--color-accent-gold);
  }
}
.filters .filters-modal .search-wrapper .title-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}
.filters .filters-modal .sign-icon {
  position: absolute;
  bottom: 0;
  right: -30px;
  width: 170px;
  height: 210px;
  max-height: 300px;
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/filters-sprite-e0c20f8801.svg#sign-icon") no-repeat center;
  background-size: cover;
  z-index: -1;
  -webkit-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
}
.filters .filters-modal .title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
.filters .filters-modal .title-wrapper.title-wrapper-big {
  margin-bottom: 45px;
}
.filters .filters-modal .title-wrapper .filter-title {
  margin: 0 12px 0 0;
  max-width: 130px;
  font-weight: 700;
}
.filters .filters-modal .title-wrapper .applied-filters {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.filters .filters-modal .title-wrapper .apply-btn {
  background: var(--color-accent-gold);
  border: none;
  padding: 5px 10px;
  border-radius: 20px;
  color: var(--color-primary);
  min-width: 100px;
  margin-right: 10px;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  text-transform: uppercase;
  font-size: 15px;
}
.filters .filters-modal .title-wrapper .apply-btn:active {
  background: var(--color-neutral-lightest);
}
.filters .filters-modal .title-wrapper .close-btn {
  position: relative;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--color-accent-gold);
  padding: 8px;
  border-radius: 50%;
}
.filters .filters-modal .title-wrapper .close-btn::before {
  content: "";
  display: block;
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/filters-sprite-e0c20f8801.svg#btn-arrow-1") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/filters-sprite-e0c20f8801.svg#btn-arrow-1") no-repeat center;
  -webkit-mask-size: cover;
          mask-size: cover;
  background: var(--color-primary);
  width: 16px;
  height: 16px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.filters .filters-modal .quick-picks-wrapper .quick-picks-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 12px;
}
.filters .filters-modal .quick-picks-wrapper .quick-picks-list-item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.filters .filters-modal .quick-picks-wrapper .quick-picks-list-item:nth-child(1) {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: -30px;
}
.filters .filters-modal .quick-picks-wrapper .quick-picks-list-item:nth-child(1) .quick-pick-radio span {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/filters-sprite-e0c20f8801.svg#quick-pick-1") no-repeat center;
  background-size: cover;
  padding: 20px 35px 25px;
}
.filters .filters-modal .quick-picks-wrapper .quick-picks-list-item:nth-child(1) .quick-pick-radio input:checked + span {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/filters-sprite-e0c20f8801.svg#quick-pick-1-checked") no-repeat center;
  background-size: cover;
  color: var(--color-primary);
}
.filters .filters-modal .quick-picks-wrapper .quick-picks-list-item:nth-child(2) {
  margin-top: -30px;
}
.filters .filters-modal .quick-picks-wrapper .quick-picks-list-item:nth-child(2) .quick-pick-radio span {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/filters-sprite-e0c20f8801.svg#quick-pick-2") no-repeat center;
  background-size: cover;
  padding: 20px 30px 30px;
}
.filters .filters-modal .quick-picks-wrapper .quick-picks-list-item:nth-child(2) .quick-pick-radio input:checked + span {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/filters-sprite-e0c20f8801.svg#quick-pick-2-checked") no-repeat center;
  background-size: cover;
  color: var(--color-primary);
}
.filters .filters-modal .quick-picks-wrapper .quick-picks-list-item:nth-child(3) {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: -30px;
}
.filters .filters-modal .quick-picks-wrapper .quick-picks-list-item:nth-child(3) .quick-pick-radio span {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/filters-sprite-e0c20f8801.svg#quick-pick-3") no-repeat center;
  background-size: cover;
  padding: 20px 25px 30px;
}
.filters .filters-modal .quick-picks-wrapper .quick-picks-list-item:nth-child(3) .quick-pick-radio input:checked + span {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/filters-sprite-e0c20f8801.svg#quick-pick-3-checked") no-repeat center;
  background-size: cover;
  color: var(--color-primary);
}
.filters .filters-modal .quick-picks-wrapper .quick-picks-list-item:nth-child(4) {
  margin-top: -30px;
}
.filters .filters-modal .quick-picks-wrapper .quick-picks-list-item:nth-child(4) .quick-pick-radio span {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/filters-sprite-e0c20f8801.svg#quick-pick-4") no-repeat center;
  background-size: cover;
  padding: 15px 35px 20px;
}
.filters .filters-modal .quick-picks-wrapper .quick-picks-list-item:nth-child(4) .quick-pick-radio input:checked + span {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/filters-sprite-e0c20f8801.svg#quick-pick-4-checked") no-repeat center;
  background-size: cover;
  color: var(--color-primary);
}
.filters .filters-modal .quick-picks-wrapper .quick-picks-list-item:nth-child(5) {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: -35px;
}
.filters .filters-modal .quick-picks-wrapper .quick-picks-list-item:nth-child(5) .quick-pick-radio span {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/filters-sprite-e0c20f8801.svg#quick-pick-5") no-repeat center;
  background-size: cover;
  padding: 20px 25px 30px;
}
.filters .filters-modal .quick-picks-wrapper .quick-picks-list-item:nth-child(5) .quick-pick-radio input:checked + span {
  background: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/filters-sprite-e0c20f8801.svg#quick-pick-5-checked") no-repeat center;
  background-size: cover;
  color: var(--color-primary);
}
.filters .filters-modal .quick-picks-wrapper .quick-picks-list-item .quick-pick-radio {
  cursor: pointer;
}
.filters .filters-modal .quick-picks-wrapper .quick-picks-list-item .quick-pick-radio input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.filters .filters-modal .quick-picks-wrapper .quick-picks-list-item .quick-pick-radio span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.filters .filters-modal .filters-wrapper .filters-title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}
.filters .filters-modal .filters-wrapper .filters-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 15px;
}
.filters .filters-modal .filters-wrapper .filters-list-item .filters-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.filters .filters-modal .filters-wrapper .filters-list-item .filters-checkbox .btn-icon {
  display: block;
  width: 20px;
  height: 20px;
  background-color: var(--color-accent-gold);
  border-radius: 50%;
  -webkit-transition: background-color 0.3s linear;
  transition: background-color 0.3s linear;
  position: relative;
  padding: 5px;
}
.filters .filters-modal .filters-wrapper .filters-list-item .filters-checkbox .btn-icon::after {
  content: "";
  display: block;
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/filters-sprite-e0c20f8801.svg#btn-arrow-1") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/filters-sprite-e0c20f8801.svg#btn-arrow-1") no-repeat center;
  background-color: var(--color-primary);
  position: absolute;
  width: 10px;
  height: 10px;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.filters .filters-modal .filters-wrapper .filters-list-item .filters-checkbox input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.filters .filters-modal .filters-wrapper .filters-list-item .filters-checkbox span {
  color: var(--color-neutral-lightest);
  border: 1px solid var(--color-neutral-lightest);
  padding: 5px 5px 5px 15px;
  background-color: var(--color-primary);
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: background-color 0.3s linear, color 0.3s linear;
  transition: background-color 0.3s linear, color 0.3s linear;
}
.filters .filters-modal .filters-wrapper .filters-list-item .filters-checkbox input:checked + span {
  background: var(--color-neutral-lightest);
  color: var(--color-primary);
}
.filters .filters-modal .filters-wrapper .filters-list-item .filters-checkbox input:checked + span .btn-icon {
  background-color: var(--color-accent-rose);
}
.filters .filters-modal .filters-wrapper .filters-list-item .filters-checkbox input:checked + span .btn-icon::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  background-color: var(--color-neutral-lightest);
}
.filters .filters-modal .sorting-options-wrapper {
  position: relative;
  padding-bottom: 35px;
}
.filters .filters-modal .sorting-options-wrapper.desktop {
  display: none;
}
.filters .filters-modal .sorting-options-wrapper .sorting-options-list {
  border-radius: 20px;
  background: var(--color-neutral-lighter);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 10px;
  font-size: 12px;
}
.filters .filters-modal .sorting-options-wrapper .sorting-options-list-item:first-child .sorting-radio span {
  padding-top: 10px;
  border-radius: 20px 20px 0 0;
}
.filters .filters-modal .sorting-options-wrapper .sorting-options-list-item:last-child .sorting-radio span {
  padding-bottom: 10px;
  border-radius: 0 0 20px 20px;
}
.filters .filters-modal .sorting-options-wrapper .sorting-options-list-item .sorting-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.filters .filters-modal .sorting-options-wrapper .sorting-options-list-item .sorting-radio input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.filters .filters-modal .sorting-options-wrapper .sorting-options-list-item .sorting-radio span {
  color: var(--color-text);
  padding: 5px 15px;
  display: block;
  width: 100%;
}
.filters .filters-modal .sorting-options-wrapper .sorting-options-list-item .sorting-radio input:checked + span {
  background: var(--color-accent-gold);
}
.filters .filters-modal .sorting-options-wrapper .sorting-options-list-item .sorting-radio:hover span {
  background: var(--color-accent-gold);
}
.filters .filters-modal .action-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  gap: 15px;
}
.filters .filters-modal .action-buttons .btn-primary {
  margin: 0;
}

@media screen and (min-width: 768px) {
  .filters .filters-modal {
    height: auto;
    z-index: 1000;
    position: absolute;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .filters .filters-modal.collapsed {
    position: absolute;
  }
  .filters .filters-modal .section-title {
    font-size: 22px;
  }
  .filters .filters-modal .sign-icon {
    right: 0;
    width: 250px;
    height: 210px;
  }
  .filters .filters-modal .filter-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: none;
  }
  .filters .filters-modal .filter-buttons .apply-btn {
    min-width: 150px;
  }
  .filters .filters-modal .filter-buttons .clear-filters-btn {
    position: static;
  }
  .filters .filters-modal .title-wrapper.title-wrapper-big {
    margin-bottom: 15px;
  }
  .filters .filters-modal .title-wrapper .applied-filters {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 30px;
    background: transparent;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .filters .filters-modal .title-wrapper .filter-icon {
    min-width: 30px;
    min-height: 30px;
  }
  .filters .filters-modal .title-wrapper .btn-link, .filters .filters-modal .title-wrapper .apply-btn {
    font-size: 17px;
  }
  .filters .filters-modal .title-wrapper .apply-btn {
    display: inline-block;
    background: var(--color-accent-gold);
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .filters .filters-modal .title-wrapper .apply-btn:hover {
    background: var(--color-neutral-lightest);
  }
  .filters .filters-modal .title-wrapper .filter-title {
    max-width: 150px;
  }
  .filters .filters-modal .quick-picks-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .filters .filters-modal .quick-picks-wrapper-content {
    width: 55%;
  }
  .filters .filters-modal .quick-picks-wrapper .quick-picks-list {
    font-size: 15px;
  }
  .filters .filters-modal .quick-picks-wrapper .quick-picks-list-item:nth-child(1) {
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin-top: -10px;
  }
  .filters .filters-modal .quick-picks-wrapper .quick-picks-list-item:nth-child(1) .quick-pick-radio span {
    padding: 20px 35px 25px;
  }
  .filters .filters-modal .quick-picks-wrapper .quick-picks-list-item:nth-child(2) {
    margin-top: -20px;
  }
  .filters .filters-modal .quick-picks-wrapper .quick-picks-list-item:nth-child(3) {
    -ms-flex-item-align: center;
        align-self: center;
    margin-top: -20px;
  }
  .filters .filters-modal .quick-picks-wrapper .quick-picks-list-item:nth-child(4) {
    margin-top: -20px;
  }
  .filters .filters-modal .quick-picks-wrapper .quick-picks-list-item:nth-child(5) {
    -ms-flex-item-align: center;
        align-self: center;
    margin-top: -15px;
  }
  .filters .filters-modal .quick-picks-wrapper .sorting-options-wrapper {
    padding: 0;
  }
  .filters .filters-modal .filters-wrapper .filters-list {
    font-size: 18px;
  }
  .filters .filters-modal .filters-wrapper .filters-list-item .filters-checkbox:hover span {
    background: var(--color-neutral-lightest);
    color: var(--color-primary);
  }
  .filters .filters-modal .filters-wrapper .filters-list-item .filters-checkbox:hover span .btn-icon {
    background-color: var(--color-accent-rose);
  }
  .filters .filters-modal .filters-wrapper .filters-list-item .filters-checkbox:hover span .btn-icon::after {
    background-color: var(--color-neutral-lightest);
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .filters .filters-modal .sorting-options-wrapper.mobile {
    display: none;
  }
  .filters .filters-modal .sorting-options-wrapper.desktop {
    display: block;
  }
  .filters .filters-modal .sorting-options-wrapper .sorting-options-list {
    border-radius: 24px;
    font-size: 15px;
  }
}
.category-page-hero {
  color: var(--color-text);
  overflow: hidden;
}
.category-page-hero .hero-top-block {
  position: relative;
  min-height: 295px;
  padding-top: 30px;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 1;
  margin: 0 -15px 0;
}
.category-page-hero .hero-top-block .hero-top-block-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
}
.category-page-hero .hero-top-block .hero-top-block-img:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 0;
}
.category-page-hero .hero-top-block .hero-top-block-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.category-page-hero .hero-top-block .caterory-label {
  display: inline-block;
  padding: 5px 15px;
  background: var(--color-accent-gold);
  border-radius: 30px;
  margin: 0 auto;
  text-transform: uppercase;
  font-size: 15px;
}
.category-page-hero .hero-bottom-block {
  padding: 0 15px;
  position: relative;
  z-index: 2;
}
.category-page-hero .hero-bottom-block .description {
  font: 500 16px roc-grotesk, sans-serif;
  max-width: 500px;
  width: 90%;
}
.category-page-hero .hero-bottom-block .search-tool {
  padding: 20px 0 36px;
}
.category-page-hero .hero-bottom-block .hero-top-block-title {
  margin-top: -22px;
  margin-bottom: 40px;
}
.category-page-hero .hero-bottom-block .hero-top-block-title .title {
  background: var(--color-neutral-lightest);
  -webkit-background-clip: text;
          background-clip: text;
  color: var(--color-text);
  word-wrap: break-word;
  -webkit-text-stroke: 12px transparent;
  line-height: 1.25;
  padding: 6px;
  font-size: 28px;
  max-width: 310px;
}
.category-page-hero .hero-bottom-block .category-doodle {
  position: absolute;
  width: 225px;
  height: 170px;
  top: -28px;
  right: -76px;
}
.category-page-hero .hero-bottom-block .category-doodle img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-category-experience-grid {
  padding: 30px 0;
}
.section-category-experience-grid .title-block {
  margin-bottom: 20px;
  color: var(--color-text);
}
.section-category-experience-grid .grid-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.section-category-experience-grid .grid-card::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(30, 30, 30, 0)), color-stop(90.5%, rgba(30, 21, 3, 0.35)));
  background: linear-gradient(180deg, rgba(30, 30, 30, 0) 0%, rgba(30, 21, 3, 0.35) 90.5%);
}
.section-category-experience-grid .grid-card .card-title {
  font-size: 20px;
  margin-bottom: 0;
}
.section-category-experience-grid .grid-card .card-content {
  padding: 5px 11px;
  background-color: rgba(3, 26, 50, 0.6);
  color: var(--color-neutral-lightest);
  height: 70px;
  font-size: 12px;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}
.section-category-experience-grid .grid-card .card-content .card-description {
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.section-category-experience-grid .grid-card .card-content .btn {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.section-category-experience-grid .grid-card .card-img {
  height: 100%;
  width: 100%;
}
.section-category-experience-grid .grid-card .card-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-category-experience-grid .grid-card-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 7.77% 8% 8% 4% 5% 14.1% 5% 10% 7.8% 7%;
  grid-gap: 12px;
  max-height: 467px;
}
.section-category-experience-grid .grid-card-container .grid-card:first-child {
  grid-column: 1;
  grid-row: 1/6;
}
.section-category-experience-grid .grid-card-container .grid-card:nth-child(2) {
  grid-column: 1;
  grid-row: 6/8;
}
.section-category-experience-grid .grid-card-container .grid-card:nth-child(3) {
  grid-column: 1;
  grid-row: 8/11;
}
.section-category-experience-grid .grid-card-container .grid-card:nth-child(4) {
  grid-column: 2;
  grid-row: 1/4;
}
.section-category-experience-grid .grid-card-container .grid-card:nth-child(5) {
  grid-column: 2;
  grid-row: 4/7;
}
.section-category-experience-grid .grid-card-container .grid-card:nth-child(6) {
  grid-column: 2;
  grid-row: 7/11;
}
.section-category-experience-grid .decore-description {
  max-width: 300px;
  padding: 30px 0 0 90px;
  position: relative;
  font: 500 18px Architects-Daughter, sans-serif;
  margin: 0 auto;
  text-align: center;
}
.section-category-experience-grid .decore-description::before {
  content: "";
  display: block;
  width: 90px;
  height: 83px;
  background: var(--color-primary);
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/category-page-427342b71b.svg#arrow") center no-repeat;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/category-page-427342b71b.svg#arrow") center no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  position: absolute;
  top: 0;
  left: -8px;
}

.category-page .section-what-to-expect {
  padding: 38px 0;
}
.category-page .section-what-to-expect .title-block {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.category-page .section-what-to-expect svg {
  display: block;
  width: 48px;
  height: 55px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.category-page .section-what-to-expect .what-to-expect-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  max-width: 320px;
  margin: 0 auto;
}
.category-page .section-what-to-expect .what-to-expect-list .what-to-expect-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  line-height: 1.33;
}
.category-page .section-what-to-expect .what-to-expect-list .what-to-expect-item-title,
.category-page .section-what-to-expect .what-to-expect-list .what-to-expect-item-description {
  font-size: 15px;
  margin: 0;
}
.category-page .filters .filters-modal .title-wrapper .filter-icon {
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/search-form-sprite-b492e3c5a5.svg#location") no-repeat;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/search-form-sprite-b492e3c5a5.svg#location") no-repeat;
}
.category-page .filters .filters-modal.collapsed {
  max-width: 350px;
}
@media screen and (min-width: 768px) {
  .category-page .filters .filters-modal.collapsed {
    max-width: 730px;
  }
}

@media screen and (min-width: 768px) {
  .category-page-hero .hero-top-block {
    padding-top: 60px;
  }
  .category-page-hero .hero-bottom-block .hero-top-block-title {
    margin-top: 20px;
    margin-bottom: 0;
  }
  .category-page-hero .hero-bottom-block .hero-top-block-title .title {
    margin-bottom: 0;
  }
  .category-page-hero .hero-bottom-block .category-doodle {
    width: 275px;
    height: 210px;
    top: -100px;
    right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .category-page-hero .hero-top-block {
    min-height: 444px;
  }
  .category-page-hero .hero-top-block .caterory-label {
    font-size: 25px;
    padding: 10px 30px;
  }
  .category-page-hero .hero-bottom-block .hero-top-block-title .title {
    font-size: 50px;
    max-width: 530px;
  }
  .category-page-hero .hero-bottom-block .description {
    font-size: 25px;
    max-width: 680px;
  }
  .category-page-hero .hero-bottom-block .category-doodle {
    width: 470px;
    height: 358px;
    top: -154px;
  }
}
@media screen and (min-width: 1440px) {
  .category-page-hero .hero-bottom-block {
    padding: 0 60px;
  }
  .category-page-hero .hero-bottom-block .category-doodle {
    width: 590px;
    height: 450px;
    top: -200px;
    right: 60px;
  }
}
@media screen and (min-width: 768px) {
  .section-category-experience-grid {
    padding: 50px 0;
  }
  .section-category-experience-grid .title-block {
    margin-bottom: 30px;
  }
  .section-category-experience-grid .title-block .title {
    font-size: 29px;
    text-align: center;
  }
  .section-category-experience-grid .grid-card-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 20% 20% 10% 20% 20%;
    height: 478px;
  }
  .section-category-experience-grid .grid-card-container .grid-card:first-child {
    grid-column: 1;
    grid-row: 1/4;
  }
  .section-category-experience-grid .grid-card-container .grid-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1/6;
  }
  .section-category-experience-grid .grid-card-container .grid-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1/3;
  }
  .section-category-experience-grid .grid-card-container .grid-card:nth-child(4) {
    grid-column: 1;
    grid-row: 4/6;
  }
  .section-category-experience-grid .grid-card-container .grid-card:nth-child(5) {
    grid-column: 3;
    grid-row: 3/6;
  }
  .section-category-experience-grid .grid-card-container .grid-card:nth-child(6) {
    grid-column: 4;
    grid-row: 1/6;
  }
  .section-category-experience-grid .grid-card .card-img {
    max-height: none;
  }
  .section-category-experience-grid .grid-card .card-title {
    font-size: 24px;
  }
  .section-category-experience-grid .grid-card .card-content {
    height: 100px;
  }
  .section-category-experience-grid .grid-card .card-description {
    font-size: 17px;
  }
}
@media screen and (min-width: 1024px) {
  .section-category-experience-grid .grid-card .card-title {
    font-size: 29px;
  }
  .section-category-experience-grid .grid-card .card-content {
    height: 145px;
    padding: 8px 20px 20px;
  }
  .section-category-experience-grid .grid-card .card-content .card-description {
    margin-bottom: 5px;
  }
  .section-category-experience-grid .grid-card .card-content .btn {
    position: static;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 17px;
    color: var(--color-primary);
    border-radius: 20px;
    background-color: var(--color-accent-gold);
    padding: 5px 15px;
    -webkit-transition: color 0.3s linear, border-color 0.3s linear;
    transition: color 0.3s linear, border-color 0.3s linear;
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .section-category-experience-grid .decore-description {
    max-width: 380px;
    padding: 55px 0 0 130px;
    font-size: 20px;
    margin: 0 9% 0 auto;
  }
  .section-category-experience-grid .decore-description::before {
    width: 130px;
    height: 120px;
    left: 0;
  }
}
@media screen and (min-width: 768px) {
  .category-page .section-what-to-expect .what-to-expect-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 100%;
  }
  .category-page .section-what-to-expect .what-to-expect-list .what-to-expect-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    max-width: 314px;
  }
  .category-page .section-what-to-expect .title-block {
    margin: 0 auto 44px;
  }
  .category-page .section-what-to-expect svg {
    width: 80px;
    height: 90px;
  }
}
@media screen and (min-width: 1024px) {
  .category-page .section-what-to-expect .what-to-expect-list {
    gap: 50px;
  }
  .category-page .section-what-to-expect .what-to-expect-list .what-to-expect-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 42px;
  }
  .category-page .section-what-to-expect .what-to-expect-list .what-to-expect-item-title,
  .category-page .section-what-to-expect .what-to-expect-list .what-to-expect-item-description {
    font-size: 21px;
  }
  .category-page .section-what-to-expect svg {
    width: 120px;
    height: 132px;
  }
}
@media screen and (min-width: 768px) {
  .reviews {
    padding: 50px 0 0 0;
    background-color: transparent;
  }
  .reviews .title {
    margin-bottom: 50px;
  }
  .reviews .reviews-list {
    margin: 0;
    gap: 30px;
  }
  .reviews .reviews-list__item {
    width: calc(50% - 15px);
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 30px 0;
    margin-bottom: 0;
    text-align: left;
  }
  .reviews .reviews-list__item .review-stars-list {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
  .reviews .reviews-list__item .review-stars-list .icon-star {
    width: 22px;
    height: 17px;
  }
  .reviews .reviews-list__item .review-description-container .review-description {
    line-height: 21px;
    text-align: justify;
  }
}
@media screen and (min-width: 768px) and (min-width: 992px) {
  .reviews .reviews-list__item .review-description-container .review-description {
    font-size: 16px;
    line-height: 26px;
  }
}
@media screen and (min-width: 768px) {
  .reviews .reviews-list__item .review-description-container .show-more-btn {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .reviews .reviews-list__item .review-date, .reviews .reviews-list__item .review-city, .reviews .reviews-list__item .review-author {
    font-size: 16px;
  }
  .reviews .see-more-reviews-btn {
    margin: 60px auto;
    max-width: 270px;
  }
  .reviews .load-more-reviews {
    display: inline-block;
  }
  .reviews .load-more-reviews .arrow-down {
    position: absolute;
    top: 3px;
    left: 179px;
  }
  .reviews .reviews-link {
    text-decoration: underline;
    border: 0;
    margin: 80px 0 0 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    font-family: Poppins-SemiBold, sans-serif;
  }
  .reviews .reviews-link:hover {
    color: var(--blue-basic);
    background-color: var(--grey-light-basic);
  }
}
@media screen and (min-width: 768px) {
  .card-reviews {
    border: 0;
    font-size: 17px;
  }
  .card-reviews .card-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .card-reviews .card-header .reviews-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 16px;
    text-align: right;
  }
  .card-reviews .card-header .reviews-info .reviews-info-name {
    font: 500 18px roc-grotesk, sans-serif;
  }
  .card-reviews .btn-show-more {
    font-size: 18px;
  }
}
/**
 * Swiper 11.2.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 14, 2025
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
          transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  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;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
      touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  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;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  -ms-touch-action: none;
      touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.section-other-adventures {
  padding: 30px 0;
}
.section-other-adventures .container-l {
  padding: 0;
}
.section-other-adventures .title {
  text-align: center;
  padding: 0 15px;
}
.section-other-adventures .adventures-list {
  padding: 15px 0 30px;
  max-width: 100%;
}
.section-other-adventures .adventures-list.with-arrows {
  padding-bottom: 50px;
}
.section-other-adventures .swiper-button {
  top: auto;
  bottom: 0;
  height: 30px;
  width: 30px;
  border-radius: 0;
  padding: 0;
}
.section-other-adventures .swiper-button:hover::after {
  background-color: var(--color-accent-gold);
}
.section-other-adventures .swiper-button::after {
  content: "";
  height: 30px;
  width: 30px;
  background-color: var(--color-primary);
  -webkit-mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#icon-arrow-down") no-repeat center;
          mask: url("//d3snk3ydzk0o2b.cloudfront.net/theme/frontend/_assets/images/sprites/host-details-popup-19e46ee557.svg#icon-arrow-down") no-repeat center;
  -webkit-mask-size: cover;
          mask-size: cover;
  margin: 0;
  -webkit-transition: background-color 0.3s linear;
  transition: background-color 0.3s linear;
}
.section-other-adventures .swiper-button.swiper-button-next {
  right: 50%;
  -webkit-transform: rotate(-90deg) translateY(130%);
          transform: rotate(-90deg) translateY(130%);
}
.section-other-adventures .swiper-button.swiper-button-prev {
  left: 50%;
  -webkit-transform: rotate(90deg) translateY(130%);
          transform: rotate(90deg) translateY(130%);
}
.section-other-adventures .adventures-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 193px !important;
  height: 140px;
  border-left: 2px ridge var(--grey-basic);
  border-right: 2px ridge var(--grey-basic);
  -webkit-transition: scale 0.3s linear, color 0.3s linear;
  transition: scale 0.3s linear, color 0.3s linear;
}
.section-other-adventures .adventures-item:hover {
  scale: 1.07;
}
.section-other-adventures .adventures-item .left-block {
  width: 50%;
  height: 100%;
  -webkit-box-shadow: -5px 5px 15px 0px rgba(0, 0, 0, 0.9);
          box-shadow: -5px 5px 15px 0px rgba(0, 0, 0, 0.9);
  border-left: 3px ridge var(--grey-basic);
}
.section-other-adventures .adventures-item .left-block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-other-adventures .adventures-item .right-block {
  width: 50%;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5px;
  padding: 10px 5px 10px 8px;
  background-color: var(--color-white);
  border-left: 1px solid #000;
  -webkit-box-shadow: 0 7px 15px 0 rgba(0, 0, 0, 0.9);
          box-shadow: 0 7px 15px 0 rgba(0, 0, 0, 0.9);
  border-right: 2px ridge var(--grey-basic);
}
.section-other-adventures .adventures-item .right-block .adventures-item-title {
  font-size: 13px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-other-adventures .adventures-item .right-block .adventures-author-name {
  text-transform: capitalize;
  font: 500 8px roc-grotesk, sans-serif;
}
.section-other-adventures .swiper-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 768px) {
  .section-other-adventures .title {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .section-other-adventures {
    padding: 40px 0;
  }
  .section-other-adventures .adventures-list {
    padding: 15px 15px 20px;
  }
  .section-other-adventures .adventures-list.with-arrows {
    padding-bottom: 50px;
  }
  .section-other-adventures .swiper-button {
    height: 40px;
    width: 40px;
  }
  .section-other-adventures .swiper-button::after {
    height: 40px;
    width: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .section-other-adventures {
    padding: 40px 0;
  }
  .section-other-adventures .adventures-item {
    width: 230px !important;
    height: 170px;
  }
  .section-other-adventures .adventures-item .right-block .adventures-item-title {
    font-size: 16px;
  }
  .section-other-adventures .adventures-item .right-block .adventures-author-name {
    font-size: 11px;
  }
  .section-other-adventures .swiper-button {
    height: 48px;
    width: 48px;
  }
  .section-other-adventures .swiper-button::after {
    height: 48px;
    width: 48px;
  }
}
@media screen and (min-width: 1440px) {
  .section-other-adventures .adventures-list {
    padding: 15px 5px 30px;
  }
  .section-other-adventures .adventures-list.with-arrows {
    padding-bottom: 70px;
  }
  .section-other-adventures .adventures-item {
    width: 260px !important;
    height: 180px;
  }
}
/*# sourceMappingURL=frontend-category-page.min.css.map */
