@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@200;300;400;500;700&family=Roboto+Slab:wght@300;400;500;700&display=swap");
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p, mark {
  font-size: inherit;
  font-weight: inherit;
}

mark {
  color: inherit;
  background-color: transparent;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

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

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

:root {
  --bs-body-color: $color_text_main;
  --bs-body-bg: $color_bg_main;
  --bs-secondary-color: $color_text_secondary;
  --bs-secondary-bg: $color_bg_secondary;
  --bs-emphasis-color: $color_text_accent;
  --bs-border-color: $color_bg_secondary;
  --bs-nav-link-color: $color_text_main;
  --bs-border-radius: $border-radius;
  --swiper-theme-color: $color_bg_main;
  --swiper-navigation-size: 2.4rem!important;
  --swiper-navigation-top-offset: calc(50% - 1.2rem);
  --swiper-navigation-color: white;
  --swiper-pagination-color: rgb(0, 84, 148);
  --swiper-pagination-bullet-inactive-color: #000000;
  --swiper-pagination-bottom: -18px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 5px;
  --swiper-pagination-bullet-height: 5px;
}
@media screen and (max-width: 768px) {
  :root {
    --swiper-pagination-bottom: 0;
    --swiper-pagination-bullet-inactive-color: #ffffff;
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-bullet-opacity: 1;
  }
}

h1 {
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 1.2em;
  text-transform: uppercase;
  color: rgb(0, 0, 0);
  font-weight: 700;
}

h2 {
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-style: normal;
  font-size: 3.1rem;
  line-height: 1.2em;
  color: rgb(0, 0, 0);
  font-weight: 700;
}
h2 .h2-sub {
  font-family: "Roboto Slab", Arial, sans-serif;
  font-size: 1.3rem;
  line-height: 1.2em;
  color: rgb(0, 84, 148);
  font-weight: 300;
  padding-bottom: 1rem;
}

h3 {
  font-family: "Roboto Slab", Arial, sans-serif;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.8em;
  color: rgb(0, 0, 0);
  font-weight: 400;
}

h4 {
  font-family: "Roboto Slab", Arial, sans-serif;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1.5em;
  color: rgb(0, 0, 0);
  font-weight: 600;
}

h5, .h5-style {
  font-family: "Roboto Slab", Arial, sans-serif;
  font-style: normal;
  font-size: 1.3rem;
  line-height: 1.3em;
  color: rgb(0, 0, 0);
  font-weight: 600;
}

p, a, li, td, .simple-text {
  font-family: "Roboto Slab", Arial, sans-serif;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.3em;
  color: rgb(0, 0, 0);
  font-weight: 400;
}

button, .pseudo_button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  margin: 20px;
  color: rgb(0, 0, 0);
  background: linear-gradient(to right, rgb(39, 92, 190), rgb(84, 154, 246));
  transition: background-color 0.5s;
}
button:hover, .pseudo_button:hover {
  color: rgb(0, 0, 0);
  background: linear-gradient(to right, rgb(84, 154, 246), rgb(84, 154, 246));
  transition: background-color 0.5s;
}
.text-accent {
  color: rgb(0, 84, 148);
}

html {
  scroll-behavior: smooth;
  font-size: 13px;
}

body {
  font-family: "Roboto Slab", Arial, sans-serif;
  margin: auto;
  background-color: rgb(245, 245, 245);
}

section {
  max-width: 1600px;
}

.gallery-section {
  max-width: none;
}

.container {
  padding-bottom: 3rem;
}

.block-title-container {
  padding: 100px 10px 50px 10px;
}

header {
  position: relative;
}
header .navbar {
  transition: background-color 0.25s, padding-top 0.25s;
  color: rgb(0, 0, 0);
  height: 100%;
  width: auto;
  margin: auto 30px;
  position: fixed;
  right: 0;
  z-index: 500;
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 768px) {
  header .navbar {
    height: auto;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 1.2rem 3rem;
  }
}
header .navbar .navbar-nav {
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: end;
}
@media screen and (max-width: 768px) {
  header .navbar .navbar-nav {
    flex-direction: row;
  }
}
header .navbar .choose_button {
  font-size: 0.93rem;
  line-height: 1.5em;
  padding: 0.6em 20px;
  margin-left: 20px;
}
header .navbar .header-search-form {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: end;
  margin: 10px 0;
}
header .navbar .header-search-form .search-query {
  background-color: rgb(255, 255, 255);
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0);
  border-radius: 20px;
  padding: 0.5rem;
  font-size: 1rem;
  width: 100%;
  max-width: 40px;
  height: 40px;
  transition: all 0.5s;
}
header .navbar .header-search-form .search-query:focus {
  color: rgb(0, 0, 0);
  width: 100%;
  max-width: 50rem;
  padding: 0.5rem 2.8rem 0.5rem 1.2rem;
  transition: all 0.5s;
}
header .navbar .header-search-form .search-button {
  cursor: pointer !important;
  background: none;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem 1rem;
  margin: 0;
  font-size: 1rem;
  transition: all 0.5s;
}
header .navbar .header-search-form .search-button:hover {
  color: rgb(0, 84, 148);
  transition: all 0.5s;
}
header .navbar .nav-home {
  background: linear-gradient(to right, rgb(255, 255, 255), rgb(255, 255, 255));
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.05);
  color: rgb(0, 0, 0);
  border-radius: 1.5rem;
  padding: 0;
  margin: 10px 0 10px 10px;
  font-size: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
header .navbar .nav-home svg {
  height: 1.4rem;
  fill: rgb(0, 0, 0);
  transition: all 0.5s;
}
header .navbar .nav-home:hover {
  background: linear-gradient(to right, rgb(39, 92, 190), rgb(84, 154, 246));
  transition: all 0.5s;
}
header .navbar .nav-home:hover svg {
  fill: rgb(246, 246, 246);
  transition: all 0.5s;
}
header .navbar .nav-locale {
  position: relative;
}
header .navbar .nav-locale .nav-locale-img, header .navbar .nav-locale .nav-locale-dropdown {
  border-radius: 1.5rem;
  padding: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(to right, rgb(255, 255, 255), rgb(255, 255, 255));
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.05);
}
header .navbar .nav-locale .nav-locale-img img, header .navbar .nav-locale .nav-locale-dropdown img {
  filter: saturate(60%);
  width: 19px;
  height: 19px;
}
header .navbar .nav-locale .nav-locale-img {
  position: relative;
  z-index: 100;
  margin: 10px 0 10px 10px;
  cursor: pointer;
}
header .navbar .nav-locale .nav-locale-dropdown {
  position: absolute;
  top: 0;
  right: 0;
  padding-right: 0.8rem;
  width: 40px;
  max-width: 40px;
  z-index: 1;
  display: flex;
  flex-direction: row;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.05);
  transition: all 0.5s;
}
header .navbar .nav-locale .nav-locale-dropdown .nav-locale-button {
  background: none;
  margin: 0;
  padding: 0;
}
header .navbar .nav-locale .nav-locale-dropdown .nav-locale-button img {
  z-index: 2;
  margin-right: 0;
  width: 0;
  transition: all 0.5s;
}
header .navbar .nav-locale-focus .nav-locale-dropdown {
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.05);
  width: max-content;
  max-width: none;
  padding-right: 40px;
  transition: all 0.5s;
}
header .navbar .nav-locale-focus .nav-locale-dropdown .nav-locale-button img {
  margin-right: 0.8rem;
  width: 19px;
  transition: all 0.5s;
}

.welcome-hero {
  height: auto;
  background: none;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.welcome-hero .container {
  padding-top: 0;
  padding-bottom: 0;
}
.welcome-hero .container .hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Roboto, sans-serif;
  width: auto;
  row-gap: 10px;
}
.welcome-hero .container .hero-title .hero-subtitle {
  font-family: "Roboto Slab", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
}

.cols-3-section {
  padding-bottom: 7rem;
}
.cols-3-section .single-card .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cols-3-section .single-card .card-wrapper .card-title {
  padding-bottom: 1rem;
}
.cols-3-section .single-card .card-wrapper .card-text {
  text-align: center;
}

.double-areas-section .single-sub-block {
  display: flex;
  flex-direction: column;
}

.simple-section {
  display: flex;
  flex-direction: column;
}
.cards-section {
  padding: 3rem 120px 0 4rem;
}
@media screen and (max-width: 768px) {
  .cards-section {
    padding: 100px 4rem 0 4rem;
  }
}
.cards-section .search-params-label {
  padding: 0.5rem 0;
  font-size: 1rem;
  line-height: 1.2em;
}
.cards-section .search-params-query {
  padding: 0.5rem;
  font-size: 1rem;
  line-height: 1.2em;
  border: 1px solid rgb(0, 0, 0);
  color: rgb(0, 0, 0);
}
.cards-section .search-params-description {
  padding: 0.5rem 0;
  font-size: 1rem;
  line-height: 1.2em;
  display: flex;
  justify-content: start;
  align-items: center;
}
.cards-section .search-params-description input {
  font-size: 1rem;
  line-height: 1.2em;
  margin: 0 0.5rem 0 0;
}
.cards-section .search-params-description label {
  font-size: 1rem;
  line-height: 1.2em;
  flex-shrink: 0;
}
.cards-section .search-params-description span {
  padding-left: 1rem;
}
.cards-section .search-params-description input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cards-section .search-params-description input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
  background-color: #ccc;
  border-radius: 24px;
  cursor: pointer;
}
.cards-section .search-params-description input[type=checkbox] + label:before {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
.cards-section .search-params-description input[type=checkbox]:checked + label {
  background-color: rgb(0, 84, 148);
}
.cards-section .search-params-description input[type=checkbox]:checked + label:before {
  transform: translateX(16px);
}
.cards-section .search-params-button {
  margin: 0 0 0 auto;
  font-size: 1rem;
  line-height: 1.2em;
  width: fit-content;
  color: rgb(246, 246, 246);
}
@media screen and (max-width: 768px) {
  .cards-section .search-params-button {
    margin: 0 auto 0 0;
  }
}
.cards-section .display-control .display-control-label {
  font-size: 1rem;
  line-height: 1.2em;
  color: rgb(0, 84, 148);
  background: none;
  border: none;
}
.cards-section .display-control .display-control-select {
  font-size: 1rem;
  line-height: 1.2em;
  color: rgb(0, 0, 0);
  background: rgb(255, 255, 255);
  border: 1px solid rgb(0, 0, 0);
}
.cards-section .display-control .display-control-select option {
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}
.cards-section .display-control .display-control-select option:hover {
  background: rgb(0, 84, 148);
  color: rgb(0, 0, 0);
}
.cards-section .cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cards-section .cards-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
.cards-section .cards-grid .single-card-wrapper {
  padding: 0;
  width: 100%;
  min-width: 0;
}
.cards-section .cards-grid .single-card-wrapper .single-card {
  display: flex;
  flex-direction: column;
  background: rgb(255, 255, 255);
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 0.51;
  position: relative;
  border-radius: 15px;
  border: none;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .cards-section .cards-grid .single-card-wrapper .single-card {
    aspect-ratio: auto;
    flex-direction: row;
    align-items: stretch;
    height: 250px;
  }
}
.cards-section .cards-grid .single-card-wrapper .single-card .card-img-container {
  position: relative;
  width: 100%;
  height: 40%;
  display: flex;
  flex-grow: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  border: none;
  background: rgb(239, 239, 239);
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .cards-section .cards-grid .single-card-wrapper .single-card .card-img-container {
    height: 100%;
    width: 45%;
    aspect-ratio: 1;
    margin-bottom: 0;
  }
}
.cards-section .cards-grid .single-card-wrapper .single-card .card-img-container .card-bckg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cards-section .cards-grid .single-card-wrapper .single-card .card-img-container .swiper {
  width: 100%;
  height: 100%;
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .cards-section .cards-grid .single-card-wrapper .single-card .card-img-container .swiper {
    overflow: hidden;
    border-radius: 15px;
  }
}
.cards-section .cards-grid .single-card-wrapper .single-card .card-img-container .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.cards-section .cards-grid .single-card-wrapper .single-card .card-img-container .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}
.cards-section .cards-grid .single-card-wrapper .single-card .card-img-container .card-img-restriction {
  position: absolute;
  z-index: 100;
  top: 10px;
  left: 10px;
  background-color: #f52626;
  border-radius: 50%;
  padding: 0.4rem;
  color: rgb(246, 246, 246);
  border: 1px solid #f52626;
  font-weight: 600;
}
.cards-section .cards-grid .single-card-wrapper .single-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 60%;
  z-index: 100;
  padding: 1rem;
}
@media screen and (max-width: 768px) {
  .cards-section .cards-grid .single-card-wrapper .single-card .card-body {
    height: 100%;
  }
}
.cards-section .cards-grid .single-card-wrapper .single-card .card-body .single-card-tags {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  gap: 0.6rem;
  max-height: 4.4rem;
  overflow: hidden;
}
.cards-section .cards-grid .single-card-wrapper .single-card .card-body .single-card-tags .single-tag {
  color: rgb(255, 255, 255);
  padding: 0.2rem 0.6rem;
  border-radius: 1.5rem;
  font-weight: 700;
  text-transform: lowercase;
  transition: all 0.5s;
  cursor: pointer;
}
.cards-section .cards-grid .single-card-wrapper .single-card .card-body .single-card-tags .single-tag:hover {
  background: rgb(255, 255, 255) !important;
  color: initial;
  transition: all 0.5s;
}
.cards-section .cards-grid .single-card-wrapper .single-card .card-body .single-card-title-link .single-card-title {
  margin: 1rem 0 0.3rem 0;
  color: rgb(0, 0, 0);
  text-decoration: none;
  transition: all 0.5s;
}
.cards-section .cards-grid .single-card-wrapper .single-card .card-body .single-card-title-link:hover .single-card-title {
  color: rgb(0, 84, 148);
  text-decoration: underline;
  transition: all 0.5s;
}
.cards-section .cards-grid .single-card-wrapper .single-card .card-body .card-text {
  color: rgb(0, 0, 0);
}
@media screen and (max-width: 768px) {
  .cards-section .cards-grid .single-card-wrapper .single-card .card-body .card-text {
    margin-bottom: 0;
  }
}
.cards-section .cards-grid .single-card-wrapper .single-card .card-body .card-spacer {
  flex-grow: 1;
  height: 1000px;
  flex-shrink: 1;
}
.cards-section .cards-grid .single-card-wrapper .single-card .card-body .card-price-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.cards-section .cards-grid .single-card-wrapper .single-card .card-body .card-price-wrapper .card-text {
  font-size: 0.9em;
  text-align: start;
}
.cards-section .cards-grid .single-card-wrapper .single-card .card-body .card-price-wrapper .card-price {
  font-size: 0.9em;
}
@media screen and (max-width: 768px) {
  .cards-section .cards-grid .single-card-wrapper .single-card .card-body .card-price-wrapper .card-price {
    margin-bottom: 0;
  }
}
.cards-section .cards-grid .single-card-wrapper .single-card .card-body .card-price-wrapper .card-price .card-price-numbers {
  font-size: 1.6rem;
  margin: 0 0.1rem 0 0.4rem;
}
.cards-section .cards-grid .single-card-wrapper .single-card .card-body .card-price-wrapper .card-price .card-price-currency {
  font-size: 1.3em;
}
.cards-section .cards-grid .single-card-wrapper .card-button {
  position: relative;
  top: -30px;
  margin: 0;
  height: 70px;
  padding: 40px 20px 10px;
  color: rgb(246, 246, 246);
  border-radius: 15px;
  transition: all 0.4s;
}
.cards-section .cards-grid .single-card-wrapper .card-button svg {
  height: 1.7rem;
  fill: rgb(246, 246, 246);
  transform: translateX(0px);
  transition: all 0.5s;
}
.cards-section .cards-grid .single-card-wrapper .card-button:hover {
  top: -20px;
  transition: all 0.4s;
}
.cards-section .cards-grid .single-card-wrapper .card-button:hover svg {
  transform: translateX(10px);
  transition: all 0.5s;
}

.empty-banner {
  min-height: 80vh;
  width: 100%;
  padding: 3% 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.activity-section {
  padding: 3rem 120px 0 4rem;
}
@media screen and (max-width: 768px) {
  .activity-section {
    padding: 100px 4rem 0 4rem;
  }
}
.activity-section .image-wrapper {
  position: relative;
}
.activity-section .image-wrapper .photo-grid {
  display: grid;
  gap: 0.5rem;
  max-width: 100%;
  max-height: 70vh;
  overflow: hidden;
  grid-template: "aa" 1fr/1fr;
}
.activity-section .image-wrapper .photo-grid .photo-grid-item {
  position: relative;
  cursor: pointer;
}
.activity-section .image-wrapper .photo-grid .photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.activity-section .image-wrapper .photo-grid .photo-grid-item .more-items {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}
.activity-section .image-wrapper .photo-grid .photo-grid-item .more-items svg {
  height: 40px;
  fill: rgb(246, 246, 246);
}
.activity-section .image-wrapper .photo-grid .photo-grid-item:nth-child(1) {
  grid-area: aa;
}
.activity-section .image-wrapper .photo-grid .photo-grid-item:nth-child(2) {
  grid-area: bb;
}
.activity-section .image-wrapper .photo-grid .photo-grid-item:nth-child(3) {
  grid-area: cc;
}
.activity-section .image-wrapper .photo-grid .photo-grid-item:nth-child(4) {
  grid-area: dd;
}
.activity-section .image-wrapper .photo-grid .photo-grid-item:nth-child(5) {
  grid-area: ee;
}
.activity-section .image-wrapper .photo-grid .photo-grid-item:nth-child(6) {
  grid-area: ff;
}
.activity-section .image-wrapper .photo-grid .photo-grid-item:nth-child(7) {
  grid-area: gg;
}
.activity-section .image-wrapper .photo-grid:has(> .photo-grid-item:nth-child(2)) {
  grid-template: "aa bb" 1fr/2fr 1fr;
}
.activity-section .image-wrapper .photo-grid:has(> .photo-grid-item:nth-child(2)) .photo-grid-item:nth-child(n) {
  display: block;
}
.activity-section .image-wrapper .photo-grid:has(> .photo-grid-item:nth-child(2)) .photo-grid-item:nth-child(n) img {
  filter: none;
}
.activity-section .image-wrapper .photo-grid:has(> .photo-grid-item:nth-child(2)) .photo-grid-item:nth-child(n) .more-items {
  display: none;
}
.activity-section .image-wrapper .photo-grid:has(> .photo-grid-item:nth-child(2)) .photo-grid-item:nth-child(n+3) {
  display: none;
}
.activity-section .image-wrapper .photo-grid:has(> .photo-grid-item:nth-child(3)) {
  grid-template: "aa bb" 1fr "aa cc" 1fr/2fr 1fr;
}
.activity-section .image-wrapper .photo-grid:has(> .photo-grid-item:nth-child(3)) .photo-grid-item:nth-child(n) {
  display: block;
}
.activity-section .image-wrapper .photo-grid:has(> .photo-grid-item:nth-child(3)) .photo-grid-item:nth-child(n) img {
  filter: none;
}
.activity-section .image-wrapper .photo-grid:has(> .photo-grid-item:nth-child(3)) .photo-grid-item:nth-child(n) .more-items {
  display: none;
}
.activity-section .image-wrapper .photo-grid:has(> .photo-grid-item:nth-child(3)) .photo-grid-item:nth-child(n+4) {
  display: none;
}
.activity-section .image-wrapper .photo-grid:has(> .photo-grid-item:nth-child(4)) {
  grid-template: "aa bb bb" 1fr "aa bb bb" 1fr "aa cc dd" 1fr/3fr 1fr 1fr;
}
.activity-section .image-wrapper .photo-grid:has(> .photo-grid-item:nth-child(4)) .photo-grid-item:nth-child(n) {
  display: block;
}
.activity-section .image-wrapper .photo-grid:has(> .photo-grid-item:nth-child(4)) .photo-grid-item:nth-child(n) img {
  filter: none;
}
.activity-section .image-wrapper .photo-grid:has(> .photo-grid-item:nth-child(4)) .photo-grid-item:nth-child(n) .more-items {
  display: none;
}
.activity-section .image-wrapper .photo-grid:has(> .photo-grid-item:nth-child(4)) .photo-grid-item:nth-child(n+5) {
  display: none;
}
.activity-section .image-wrapper .photo-grid:has(> .photo-grid-item:nth-child(4)) .photo-grid-item:nth-child(4) img {
  filter: brightness(0.5) blur(1.2px);
}
.activity-section .image-wrapper .photo-grid:has(> .photo-grid-item:nth-child(4)) .photo-grid-item:nth-child(4) .more-items {
  display: flex;
}
.activity-section .image-wrapper .photo-grid:has(> .photo-grid-item:nth-child(7)) {
  grid-template: "aa bb bb ee" 1fr "aa bb bb ff" 1fr "aa cc dd gg" 1fr/2fr 1fr 1fr 1fr;
}
.activity-section .image-wrapper .photo-grid:has(> .photo-grid-item:nth-child(7)) .photo-grid-item:nth-child(n) {
  display: block;
}
.activity-section .image-wrapper .photo-grid:has(> .photo-grid-item:nth-child(7)) .photo-grid-item:nth-child(n) img {
  filter: none;
}
.activity-section .image-wrapper .photo-grid:has(> .photo-grid-item:nth-child(7)) .photo-grid-item:nth-child(n) .more-items {
  display: none;
}
.activity-section .image-wrapper .photo-grid:has(> .photo-grid-item:nth-child(7)) .photo-grid-item:nth-child(n+8) {
  display: none;
}
.activity-section .image-wrapper .photo-grid:has(> .photo-grid-item:nth-child(7)) .photo-grid-item:nth-child(7) img {
  filter: brightness(0.5) blur(1.2px);
}
.activity-section .image-wrapper .photo-grid:has(> .photo-grid-item:nth-child(7)) .photo-grid-item:nth-child(7) .more-items {
  display: flex;
}
.activity-section .brief-wrapper {
  padding-left: 1rem;
  top: 3rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .activity-section .brief-wrapper {
    padding-left: 0;
  }
}
.activity-section .activity-title {
  margin: 1rem 0;
  line-height: 0.95em;
}
.activity-section .activity-provider {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: rgb(0, 84, 148);
}
.activity-section .activity-tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  max-height: 4.4rem;
  overflow: hidden;
}
.activity-section .activity-tags-wrapper .single-tag {
  color: rgb(255, 255, 255);
  padding: 0.2rem 0.6rem;
  border-radius: 1.5rem;
  font-weight: 700;
  text-transform: lowercase;
  transition: all 0.5s;
  cursor: pointer;
}
.activity-section .activity-tags-wrapper .single-tag:hover {
  background: rgb(255, 255, 255) !important;
  color: initial;
  transition: all 0.5s;
}
.activity-section .banner-info {
  background-color: rgb(0, 84, 148);
  padding: 1rem;
  display: flex;
  align-items: center;
}
.activity-section .banner-info i {
  color: rgb(246, 246, 246);
  margin-right: 1.1rem;
}
.activity-section .banner-info p {
  color: rgb(246, 246, 246);
  margin: 0;
}
.activity-section .activity-info-wrapper {
  overflow-wrap: break-word;
}
.activity-section .activity-info-wrapper .single-info {
  display: flex;
  align-items: start;
  margin-bottom: 0.5rem;
}
.activity-section .activity-info-wrapper p {
  margin-bottom: 0;
  font-size: 1.1rem;
}
.activity-section .activity-info-wrapper i {
  color: rgb(0, 84, 148);
  margin-right: 0.5rem;
  width: 16px;
  flex-shrink: 0;
  text-align: center;
  padding-top: 0.2rem;
}
.activity-section .activity-info-wrapper span {
  font-weight: 600;
  color: rgb(0, 84, 148);
}
.activity-section .activity-info-wrapper a {
  display: block;
  word-wrap: break-word;
  margin-bottom: 0.5rem;
  text-decoration: underline;
  color: rgb(0, 0, 0);
  transition: color 0.5s;
}
.activity-section .activity-info-wrapper a:hover {
  color: rgb(0, 84, 148);
  transition: color 0.5s;
}
.activity-section .activity-info-wrapper h4 {
  color: rgb(0, 84, 148);
  font-size: 1.5rem;
}
.activity-section .activity-info-wrapper .activity-info-included .single-included {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0 0 0.5rem;
}
.activity-section .activity-info-wrapper .activity-info-included .single-included p {
  font-size: 1.2rem;
  margin-bottom: 0;
}
.activity-section .activity-info-wrapper .activity-info-included .single-included svg {
  width: 2rem;
  fill: rgb(0, 0, 0);
}
.activity-section .activity-book {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  width: 100%;
}
.activity-section .activity-book .activity-price {
  display: flex;
  flex-direction: column;
}
.activity-section .activity-book .activity-price .price-number {
  font-size: 2.05rem;
  margin-right: 0.2rem;
  font-weight: 500;
}
.activity-section .activity-book .activity-price .price-postfix {
  line-height: 0.9em;
  margin-bottom: 1rem;
}
.activity-section .activity-get {
  background-color: rgb(255, 255, 255);
  padding: 0.5rem 0.8rem;
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.05);
}

.gallery-section {
  --swiper-pagination-bottom: 2rem;
  --swiper-pagination-color: rgb(0, 84, 148);
  --swiper-pagination-bullet-inactive-color: #ffffff;
  --swiper-pagination-bullet-inactive-opacity: 0.5;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  display: none;
  position: absolute;
  height: 100%;
  width: 100%;
}
.gallery-section .swiper {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 600;
  background: rgba(0, 0, 0, 0.85);
}
.gallery-section .swiper .swiper-wrapper .swiper-slide {
  height: 100%;
  width: 100%;
}
.gallery-section .swiper .swiper-wrapper .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  padding: 1rem;
}
.gallery-section .swiper .swiper-button-next, .gallery-section .swiper .swiper-button-prev {
  text-shadow: 0 0 16px black;
  color: rgb(246, 246, 246);
  margin: 0 20px 0 20px;
}
.gallery-section .swiper-collapse-button {
  color: rgb(246, 246, 246);
  fill: rgb(246, 246, 246);
  background: none;
  font-size: 1.5rem;
  position: absolute;
  z-index: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 1rem;
  right: 26px;
  height: 3rem;
  width: 3rem;
  margin: 0;
  padding: 0;
}

.gallery-visible {
  display: block;
}

.search-params {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
  position: relative;
  margin-bottom: 2rem;
}
.search-params .search-params-box {
  flex-grow: 1;
  position: relative;
}
.search-params .search-params-box .search-params-query {
  background-color: rgb(255, 255, 255);
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.05);
  color: rgb(0, 0, 0);
  border-radius: 20px;
  border: none;
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  width: 100%;
  height: 100%;
}
.search-params .search-params-box .search-params-button {
  flex-shrink: 0;
  background: none;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem 1rem;
  margin: 0;
  font-size: 1rem;
  color: rgb(0, 0, 0);
  transition: all 0.5s;
}
.search-params .search-params-box .search-params-button:hover {
  color: rgb(0, 84, 148);
  transition: all 0.5s;
}
.search-params .search-params-description {
  flex-shrink: 0;
}
#display-control .input-view-parameters .display-control-label {
  border: none !important;
  background: none !important;
}
#display-control .input-view-parameters .display-control-select {
  border: none;
  background: none;
}

.pagination-container .pagination {
  --bs-pagination-active-color: #fff;
  --bs-pagination-color: rgb(0, 0, 0);
  --bs-pagination-active-bg: rgb(0, 84, 148);
  --bs-pagination-active-border-color: rgb(0, 84, 148);
  justify-content: end;
}
.pagination-container .pagination .page-item .page-link {
  border-radius: 2rem;
}

.animation-entrance {
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.25s;
}

.animated {
  transform: translateX(0px);
  opacity: 1;
  transition: all 0.25s;
}

.loader {
  width: 100%;
  height: 3px;
  position: fixed;
  padding: 2px;
  z-index: 15000;
}
.loader .loaderBar {
  position: absolute;
  height: 100%;
  right: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, rgb(39, 92, 190), rgb(84, 154, 246));
  width: 0;
  animation: animateBar 1.2s infinite;
}

@keyframes animateBar {
  0% {
    left: 0;
    right: 100%;
    width: 0;
    animation-timing-function: ease-in;
  }
  50% {
    left: 15%;
    right: 15%;
    width: 70%;
    animation-timing-function: linear;
  }
  100% {
    left: 100%;
    right: 0;
    width: 0;
    animation-timing-function: ease-out;
  }
}

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