@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: 30px;
  --swiper-navigation-color: white;
  --swiper-pagination-color: white;
  --swiper-pagination-bullet-inactive-color: #cccccc;
}

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: rgb(68, 150, 252);
  transition: background-color 0.5s;
}
.text-accent {
  color: rgb(0, 84, 148);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: rgb(255, 255, 255);
  font-family: "Roboto Slab", Arial, sans-serif;
  max-width: 1420px;
  margin: auto;
}

.container {
  padding-bottom: 3rem;
}

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

header .navbar {
  background-color: rgb(255, 255, 255);
  transition: background-color 0.25s, padding-top 0.25s;
  color: rgb(0, 0, 0);
  padding: 0 3rem;
  max-width: 1430px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  header .navbar {
    border-bottom: 1px solid rgb(0, 84, 148);
    padding: 8px 16px;
  }
  header .navbar .navbar-brand .header-logo {
    height: 35px;
    width: auto;
  }
  header .navbar .navbar-collapse {
    padding-bottom: 2rem;
  }
}
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;
}
@media screen and (max-width: 768px) {
  header .navbar .header-search-form {
    margin-top: 1rem;
  }
}
header .navbar .header-search-form .search-query {
  background-color: rgb(228, 247, 255);
  color: rgb(0, 0, 0);
  border-radius: 1.5rem;
  padding: 0.5rem 1.8rem 0.5rem 1rem;
  font-size: 1rem;
  width: 100%;
  max-width: 15rem;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  header .navbar .header-search-form .search-query {
    max-width: 100%;
  }
}
header .navbar .header-search-form .search-query:focus {
  width: 100%;
  max-width: 100%;
  transition: all 0.5s;
}
header .navbar .header-search-form .search-button {
  background: none;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.65rem 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 .dropdown-menu {
  background-color: rgb(255, 255, 255);
}
header .navbar .dropdown-menu .dropdown-item {
  font-size: 0.93rem;
}
header .navbar .dropdown-menu .dropdown-item:hover {
  color: rgb(0, 0, 0);
  background: rgb(228, 247, 255);
}
header .navbar .show {
  color: rgb(0, 84, 148) !important;
}
header .navbar .navbar-toggler {
  border: none !important;
  background: none;
  margin: 0 5px;
}
header .navbar .navbar-toggler:focus {
  box-shadow: none;
}
header .navbar .navbar-toggler:hover {
  opacity: 0.7;
}
header .navbar .navbar-toggler .navbar-toggler-icon {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(0, 84, 148)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
header .navbar .navbar-collapse .navbar-nav {
  width: 50%;
}
header .navbar .navbar-collapse .navbar-nav .nav-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: rgb(0, 0, 0);
  font-size: 0.93rem;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
  color: rgb(0, 84, 148);
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.pseudo_button:hover {
  color: rgb(0, 0, 0);
}
@media screen and (max-width: 768px) {
  header .navbar .navbar-collapse .navbar-nav {
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
  }
}
header .navbar .navbar-collapse.show .choose_button {
  margin: 10px 0;
}
header .no-background {
  background: none;
  padding-top: 30px;
  transition: background-color 0.25s, padding-top 0.25s;
  border: none;
}
@media screen and (max-width: 768px) {
  header .no-background {
    padding-top: 16px;
  }
}
header .navbar-show {
  background-color: rgb(255, 255, 255);
}

.welcome-hero-empty {
  padding-top: 10vh;
}

.welcome-hero {
  height: auto;
  background: rgb(255, 255, 255);
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.welcome-hero .container {
  padding-top: 15vh;
  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 .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(5, 1fr);
  grid-gap: 0.5rem;
}
@media screen and (max-width: 1090px) {
  .cards-section .cards-grid {
    grid-gap: 0;
  }
}
@media screen and (max-width: 998px) {
  .cards-section .cards-grid {
    display: flex;
    flex-direction: column;
  }
}
.cards-section .cards-grid .single-card-wrapper {
  padding: 0;
  min-width: 0;
}
.cards-section .cards-grid .single-card-wrapper .single-card {
  background: rgb(228, 247, 255);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 0.5;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cards-section .cards-grid .single-card-wrapper .single-card {
    aspect-ratio: 0.9;
  }
}
.cards-section .cards-grid .single-card-wrapper .single-card .card-bckg-img {
  position: absolute;
  filter: contrast(1.3);
  transition: all 0.5s;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}
.cards-section .cards-grid .single-card-wrapper .single-card .card-body {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgb(0, 67, 114) 5%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 60%, rgba(0, 0, 0, 0.8) 95%);
  z-index: 100;
}
.cards-section .cards-grid .single-card-wrapper .single-card .card-body .single-card-title {
  margin-bottom: 1rem;
  color: rgb(246, 246, 246);
}
.cards-section .cards-grid .single-card-wrapper .single-card .card-body .card-text {
  transform: translateX(-130%);
  transition: all 0.5s;
  color: rgb(246, 246, 246);
}
.cards-section .cards-grid .single-card-wrapper .single-card .card-body .card-spacer {
  flex-grow: 1;
}
.cards-section .cards-grid .single-card-wrapper .single-card .card-body .card-button {
  margin: 0;
  color: rgb(246, 246, 246);
}
.cards-section .cards-grid .single-card-wrapper .single-card:hover .card-body .card-text, .cards-section .cards-grid .single-card-wrapper .single-card.pseudo-active .card-body .card-text {
  transform: translateX(0);
  transition: all 0.5s;
}
.cards-section .cards-grid .single-card-wrapper .single-card:hover .card-body .single-card-title, .cards-section .cards-grid .single-card-wrapper .single-card.pseudo-active .card-body .single-card-title {
  color: rgb(165, 234, 255);
  transition: all 0.5s;
}
.cards-section .cards-grid .single-card-wrapper .single-card:hover .card-bckg-img, .cards-section .cards-grid .single-card-wrapper .single-card.pseudo-active .card-bckg-img {
  filter: brightness(0.6) contrast(0.7) blur(10px);
  transition: all 0.5s;
}
.cards-section .cards-grid .home-screen-card .single-card {
  position: relative;
}
.cards-section .cards-grid .home-screen-card .single-card .slot-number {
  position: absolute;
  top: 36%;
  left: 0;
  width: 100%;
  text-align: center;
  height: fit-content;
  color: rgb(246, 246, 246);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-style: normal;
  font-size: 11rem;
  line-height: 1em;
  text-transform: uppercase;
  font-weight: 700;
  user-select: none;
  opacity: 0;
  transition: opacity 0.5s;
}
@media screen and (max-width: 460px) {
  .cards-section .cards-grid .home-screen-card .single-card .slot-number {
    font-size: 5rem;
    top: 50%;
  }
}
.cards-section .cards-grid .home-screen-card .single-card .slot-number span {
  display: block;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2em;
}
.cards-section .cards-grid .home-screen-card:hover .single-card .slot-number {
  opacity: 30%;
  transition: opacity 0.5s;
}
.cards-section .cards-grid .empty-card .single-card {
  background: linear-gradient(180deg, rgba(1, 0, 96, 0.88) 0%, rgba(87, 87, 124, 0.2303046218) 50%, rgba(0, 0, 0, 0.4235819328) 100%), radial-gradient(circle, rgb(95, 122, 255) 0%, rgb(68, 252, 241) 35%, rgb(66, 207, 251) 71%, rgb(70, 236, 252) 100%);
  opacity: 50%;
}
.cards-section .cards-grid .empty-card .single-card .slot-number {
  opacity: 50%;
}
.cards-section .cards-grid .empty-card .single-card .slot-number:hover {
  opacity: 50%;
}
@media screen and (max-width: 768px) {
  .cards-section .cards-grid .empty-card {
    display: none;
  }
}

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

.activity-section .image-wrapper {
  position: relative;
}
.activity-section .image-wrapper .swiper {
  height: fit-content;
}
.activity-section .image-wrapper .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.activity-section .image-wrapper .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .activity-section .image-wrapper {
    max-height: 80vh;
  }
  .activity-section .image-wrapper .swiper {
    height: 100%;
  }
  .activity-section .image-wrapper .swiper .swiper-zoom-container {
    height: auto;
  }
}
.activity-section .image-wrapper .swiper-collapse-button {
  color: rgb(0, 0, 0);
  font-size: 1.5rem;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0.75rem;
  z-index: 100;
  background-color: rgb(0, 84, 148);
  height: 3rem;
  width: 3rem;
  border-radius: 0 0 0 3rem;
  margin: 0;
}
.activity-section .image-wrapper .swiper-collapse-button i {
  padding: 0 0 0.55rem 0.55rem;
}
.activity-section .image-wrapper .swiper-magnify-button {
  color: rgb(0, 84, 148);
  border: none;
  background: none;
  position: absolute;
  display: none;
  justify-content: center;
  align-items: center;
  top: 0.5rem;
  left: 0.5rem;
  margin: 0;
  height: 3rem;
  font-size: 1.5rem;
  z-index: 100;
}
.activity-section .image-wrapper.maximized {
  position: fixed;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100vh;
  max-height: none;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.9);
}
.activity-section .image-wrapper.maximized .swiper-collapse-button {
  right: 0;
}
.activity-section .image-wrapper.maximized .swiper-magnify-button {
  display: flex;
}
.activity-section .image-wrapper.maximized .swiper {
  height: 100vh;
}
.activity-section .image-wrapper.maximized .swiper img {
  width: auto !important;
}
.activity-section .image-wrapper.maximized .swiper .swiper-zoom-container {
  height: 100%;
}
.activity-section .activity-title {
  margin-bottom: 0;
}
.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;
}
.activity-section .activity-tags-wrapper .single-tag {
  color: rgb(0, 0, 0);
  background: rgb(187, 188, 255);
  background: radial-gradient(circle, rgba(187, 188, 255, 0.4) 0%, rgba(229, 197, 255, 0.4) 29%, rgba(255, 217, 235, 0.4) 100%);
  padding: 0.2rem 0.6rem;
  border-radius: 1.5rem;
  font-weight: 700;
  text-transform: lowercase;
  transition: all 0.5s;
}
.activity-section .activity-tags-wrapper .single-tag:hover {
  background: rgb(68, 150, 252);
  transition: all 0.5s;
}
.activity-section .activity-info-wrapper {
  overflow-wrap: break-word;
}
.activity-section .activity-info-wrapper p {
  margin-bottom: 0.5rem;
}
.activity-section .activity-info-wrapper i {
  color: rgb(0, 84, 148);
  margin-right: 0.5rem;
}
.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);
}
.activity-section .activity-info-wrapper .map-container iframe {
  width: 100% !important;
  height: 400px !important;
}

.swiper .swiper-button-next, .swiper .swiper-button-prev {
  text-shadow: 0 0 16px black;
  color: rgb(0, 84, 148);
}

.info-popover {
  position: absolute;
  bottom: 130%;
  right: 0;
  display: none;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 4px;
  background: rgb(222, 226, 230);
  border-radius: 0.2308rem;
  padding: 5px;
  box-shadow: 0 0 10px gray;
  opacity: 50%;
}

.info-popover .popover-legend {
  grid-column: span 5;
  text-align: center;
  padding-bottom: 0.2rem;
  padding-left: 5px;
  user-select: none;
}

.info-popover .popover-close {
  grid-column: span 1;
  text-align: right;
  margin: 0;
  padding: 0 1px 0.2rem 0;
  background: none;
  font-weight: 700;
  font-size: 1.2rem;
}

.info-popover .popover-cell {
  text-align: center;
  padding: 2px 3px;
  border-radius: 0.2308rem;
  background: white;
  user-select: none;
}

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