body {
  margin: 0;
  padding: 0;
  background-color: #08699C;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
html {
  scroll-behavior: smooth;
}
* {
  font-family: 'Dosis', sans-serif;
}
.anchor-offset {
  padding-top: 50px; /* Adjust the padding value as needed */
  margin-top: -50px; /* Adjust the margin value as needed */
}
a.ubylink {
  color: #004E82;
  border-radius: 48px;
  background-color: #FFBE00;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 20px 10px 20px;
  display: table;
}
a.ubylink:hover {
  color: #004E82;
  border-radius: 48px;
  background-color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 20px 10px 20px
}
a.default-btn {
  color: #004E82;
  border-radius: 48px;
  background-color: #FFBE00;
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
	float: left;
    margin-right: 20px;
    margin-bottom: 20px;
  padding: 10px 20px 10px 20px;
  transition: transform 0.3s;
}
a.default-btn:hover {
  color: #004E82;
  border-radius: 48px;
  background-color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
  padding: 10px 20px 10px 20px;
  transform: scale(1.10);
}
.fullbox {
  width: 100%;
  margin: 40px 0px;
  text-align: center;
}
/* CSS for the "Back to Top" button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #FFBE00;
  border-radius: 50%;
  display: none;
  opacity: 0.6;
  cursor: pointer;
}
.back-to-top i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #02374E;
}
.back-to-top:hover {
  opacity: 1;
}
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(13.5px);
  -webkit-backdrop-filter: blur(13.5px);
  z-index: 9999;
  text-align: center;
}
.lightbox-image {
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  display: block;
  /* Set a specific maximum width and height to make the image appear larger */
  max-width: 80%;
  max-height: 80%;
}
.close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 25px;
  cursor: pointer;
  color: #fff;
}
/* Arrow Buttons Styles */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 80px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.7;
}
.left-arrow {
  left: 30px;
}
.right-arrow {
  right: 30px;
}
/* Change arrow opacity on hover */
.arrow:hover {
  opacity: 1;
}
.video-icon {
  transition: transform 0.3s;
}
.video-icon:hover {
  transform: scale(1.10);
}
a {
  cursor: pointer;
}
h1 {
  font-size: 4.925rem; /* Equivalent to 74px */
  color: #004e82;
}
h2 {
  font-size: 4rem; /* Equivalent to 26px */
  color: #FFBE00;
}
h3 {
  font-size: 3rem; /* Equivalent to 26px */
  color: #FFBE00;
}
h4 {
  font-size: 1.125rem; /* Equivalent to 26px */
  color: #FFBE00;
}
p {
  color: white;
  font-size: 1.125rem; /* Equivalent to 18px 1.125rem */
  margin-bottom: 10px;
  line-height: 1.58rem; /* Equivalent to 18px */
  font-weight: 400;
}
.slider {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.slider-item {
  width: 100%;
  height: 100%;
  background-image: url('../images/ubytovanie/ubytovanie-strand1.jpg');
  background-size: cover;
  background-position: center;
}
.slider-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  color: #ffffff;
}
.left-box {
  max-width: 50%;
}
.left-box h2 {
  line-height: 1.625rem; /* Equivalent to 26px */
}
.left-box h1 {
  /*line-height: 4.925rem;*/
}
.left-box p {
  margin-bottom: 30px;
}
.right-box {
  text-align: center;
}
.button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(13.5px);
  -webkit-backdrop-filter: blur(13.5px);
}
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* background-color: #ffffff; */
  padding: 20px;
  border-radius: 5px;
}
.close {
  position: absolute;
  top: -40px;
  right: 17px;
  color: #ffffff;
  font-size: 54px;
  /* font-weight: bold; */
  cursor: pointer;
}

.overlay.show {
  display: flex;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(13.5px);
  -webkit-backdrop-filter: blur(13.5px);
}
.overlay::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.navbar {
  border-top: 5px #FFBE00 solid;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: rgb(0, 78, 130);
  background: -webkit-linear-gradient(bottom, rgba(0, 78, 130, 0) 0%, rgba(0, 78, 130, 0.6530987394957983) 53%, rgba(0, 78, 130, 1) 100%);
  background: -o-linear-gradient(bottom, rgba(0, 78, 130, 0) 0%, rgba(0, 78, 130, 0.6530987394957983) 53%, rgba(0, 78, 130, 1) 100%);
  background: linear-gradient(to top, rgba(0, 78, 130, 0) 0%, rgba(0, 78, 130, 0.6530987394957983) 53%, rgba(0, 78, 130, 1) 100%);
  color: #ffffff;
  z-index: 999;
}
.container {
  margin: 0 auto;
  max-width: 1280px;
  padding: 20px;
}
.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo img {
  height: 50px;
}
.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.menu li {
  margin-right: 20px;
}
.menu li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 20px 10px 20px;
}
.menu li a:hover {
  color: #004E82;
  border-radius: 48px;
  background-color: #FFBE00;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 20px 10px 20px;
}
.burger {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.burger-icon {
  background: url("../images/burger-menu-icon.svg");
  height: 35px;
  width: 35px;
  transition: transform 0.3s ease;
}
.burger-icon:hover {
  background: url("../images/burger-menu-icon-hover.svg");
  height: 35px;
  width: 35px;
  transition: transform 0.3s ease;
}
.content {
  margin-top: 200px;
  /* padding-bottom: 300px;*/
  background: url("../images/bazeny-back.png");
  background-position: bottom center;
  background-repeat: no-repeat;
}
.section-before-image {
  content: '';
  margin-top: -130px;
  background: url(../images/decor.svg);
  background-repeat: no-repeat;
  height: 267.55px;
  width: 100%;
  background-position: center;
  position: absolute;
}
.section-before-image2 {
  content: '';
  margin-top: -89px;
  background: url("../images/decor-small.svg");
  background-repeat: no-repeat;
  height: 178px;
  width: 100%;
  background-position: center;
  position: absolute;
}
.section-before-image3 {
  content: '';
  margin-top: 0px;
  background: url("../images/decor-without-shark.svg");
  background-repeat: no-repeat;
  height: 268px;
  width: 100%;
  background-position: center;
  position: absolute;
}
.section-before-image4 {
  content: '';
  margin-top: -124px;
  background: url("../images/decor-white-top.svg");
  background-repeat: no-repeat;
  height: 124px;
  width: 100%;
  background-position: center;
  position: absolute;
}
.section-before-image5 {
  content: '';
  /*margin-top: -124px; */
  background: url("../images/decor-white-bottom.svg");
  background-repeat: no-repeat;
  height: 124px;
  width: 100%;
  background-position: center;
  position: absolute;
}
.section-before-image7 {
  content: '';
  margin-top: -2px;
  background: url("../images/decor-blue-bottom.svg");
  background-repeat: no-repeat;
  height: 124px;
  width: 100%;
  background-position: center;
  position: absolute;
}
.content2 {
  /* margin-top: 120px; 
  padding-bottom: 150px; */
  background-color: #0585d3;
}
.content3 {
  margin-top: 160px;
  padding-bottom: 50px;
  background: rgb(0, 133, 211);
  background: radial-gradient(circle, rgba(0, 133, 211, 1) 0%, rgba(0, 78, 130, 1) 100%);
}
.title {
  text-align: center;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
}
.menu-overlay {
  text-align: center;
  /* background-color: #ffffff;

  padding: 40px;

  border-radius: 10px; */
}
.menu-overlay h2 {
  margin: 20px 0px;
  font-size: 3rem;
}
.menu-overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-overlay li {
  margin-bottom: 20px;
}
.menu-overlay li a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  font-size: 1.6rem;
  transition: transform 0.5s;
}
.menu-overlay li a:hover {
  color: #FFBE00;
  font-weight: 800;
  text-decoration: none;
  font-size: 1.6rem;
  transform: scale(1.10);
}
img.logo-overlay {
  margin-bottom: 30px;
  width: 280px;
  transition: transform 0.5s;
  opacity: 0.3;
}
img.logo-overlay:hover {
  margin-bottom: 30px;
  width: 280px;
  transform: scale(1.30);
  opacity: 1;
}
.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.grid-item {
  flex-basis: calc(25% - 10px);
  margin-bottom: 20px;
  height: 400px;
}
.grid-item:hover {
  transform: scale(1.05);
  cursor: pointer;
}
.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s;
}
.grid-item:hover img {
  transform: scale(1.30);
  cursor: pointer;
}
.grid-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.grid-item:hover {}
.grid-item:hover .text-overlay {
  transform: translateY(-3px);
}
.grid-item {
  position: relative;
  border-radius: 14px;
}
.image-overlay {
  position: relative;
  overflow: hidden;
  height: 400px;
}
.overlay2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(2, 55, 78);
  background: linear-gradient(180deg, rgba(2, 55, 78, 0) 44%, rgba(2, 55, 78, 0.7259278711484594) 80%, rgba(2, 55, 78, 0.9220063025210083) 100%);
  z-index: 1;
}
.text-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #ffffff;
  z-index: 2;
  transition: transform 0.3s;
}
.text-overlay h2 {
  font-size: 20px;
  margin-bottom: 10px;
}
.text-overlay p {
  font-size: 16px;
  margin-bottom: 0;
}
.grid2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.grid2-item {
  flex-basis: calc(20% - 10px);
  margin-bottom: 20px;
  height: 300px;
}
.grid2-item:hover {
  transform: scale(1.05);
  cursor: pointer;
}
.grid2-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.grid2-item img:hover {
  transform: scale(1.10);
  cursor: pointer;
}
.grid2-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.grid2-item:hover {}
.grid2-item:hover .text-overlay {
  transform: translateY(-3px);
}
.grid2-item {
  position: relative;
  border-radius: 14px;
}
.grid2-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s;
}
.grid2-item:hover img {
  transform: scale(1.30);
  cursor: pointer;
}
.image-overlay3 {
  position: relative;
  overflow: hidden;
  height: 300px;
}
.overlay3 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(2, 55, 78);
  background: linear-gradient(180deg, rgba(2, 55, 78, 0) 25%, rgba(2, 55, 78, 0.7259278711484594) 60%, rgba(2, 55, 78, 0.9220063025210083) 100%);
  z-index: 1;
}
.text-overlay3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #ffffff;
  z-index: 2;
  transition: transform 0.3s;
}
.text-overlay3 h2 {
  font-size: 20px;
  margin-bottom: 10px;
}
.text-overlay3 p {
  font-size: 16px;
  margin-bottom: 0;
}
.grid3 {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.grid3-item {
  flex-basis: calc(14.28% - 10px);
  margin-bottom: 20px;
  text-align: center;
  transition: transform 0.5s;
}
.grid3-item:hover {}
.grid3-content {
  padding: 15px;
}
.grid3-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}
a.fb-icon {
  position: absolute;
  right: 0;
  top: 100px;
  transition: transform 0.5s;
}
a.fb-icon:hover {
  position: absolute;
  right: 0;
  top: 100px;
  transform: scale(1.10) translateX(-3px);
}
a.live-icon {
  position: absolute;
  right: 0;
  top: 145px;
  transition: transform 0.5s;
}
a.live-icon:hover {
  position: absolute;
  right: 0;
  transform: scale(1.10) translateX(-3px);
}
.grid4 {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.grid4-item {
  flex-basis: calc(50% - 10px);
  margin-bottom: 20px;
  text-align: right;
  transition: transform 0.5s;
}
.grid4-item:hover {}
.grid4-content {
  padding: 15px;
}
.grid4-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}
.content4 {
  margin-top: -35px;
  padding-bottom: 50px;
  background-image: linear-gradient(90deg, rgba(0, 78, 130, 0) 0%, rgba(0, 78, 130, 0.7679446778711485) 66%, rgba(0, 78, 130, 1) 100%), url(../images/ubytovanie/otvaracka.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.grid5 {
  display: grid;
  grid-gap: 10px; /* Adjust the gap between grid items as needed */
  /* Default layout for larger screens */
  grid-template-columns: 3fr 2fr; /* 3:5 ratio */
}
.grid5-item {
  margin-bottom: 20px;
  text-align: left;
  transition: transform 0.5s;
}
.grid5-item:hover {}
.grid5-content {}
.grid5-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}
.content5 {
  padding-bottom: 50px;
  background-color: white;
}
ul.cennik li {
  margin-bottom: 10px;
}
ul.cennik {
  list-style: none; /* Remove default bullets */
  color: #01374E;
}
ul.cennik b {
  list-style: none; /* Remove default bullets */
  color: #014F82;
}
ul.cennik li::before {
  content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #014F82; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
}
.grid6 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.grid6-item {
  flex-basis: calc(25% - 10px);
  margin-bottom: 20px;
  height: 300px;
}
.grid6-item:hover {
  transform: scale(1.05);
  cursor: pointer;
}
.grid6-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.grid6-item img:hover {
  transform: scale(1.10);
  cursor: pointer;
}
.grid6-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.grid6-item:hover {}
.grid6-item:hover .text-overlay {
  transform: translateY(-3px);
}
.grid6-item {
  position: relative;
  border-radius: 14px;
}
.grid6-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s;
}
.grid6-item:hover img {
  transform: scale(1.30);
  cursor: pointer;
}
.image-overlay3 {
  position: relative;
  overflow: hidden;
  height: 300px;
}
.overlay6 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(2, 55, 78);
  background: linear-gradient(180deg, rgba(2, 55, 78, 0) 25%, rgba(2, 55, 78, 0.7259278711484594) 60%, rgba(2, 55, 78, 0.9220063025210083) 100%);
  z-index: 1;
}
.content6 {
  padding-top: 80px;
  padding-bottom: 50px;
  background-color: #004E82;
}
.grid7 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.grid7-item {
  flex-basis: calc(25% - 10px);
  position: relative;
  overflow: hidden;
  /*height: 300px;*/
}
.grid7-item a {
  text-decoration: none;
  color: white;
  font-weight: 400;
}
.grid7-item a:hover {
  text-decoration: none;
  color: #8abb2a;
}
.grid7-item b {
  color: #7caac9;
}
.grid7-item ul {
  list-style: none; /* Remove default bullets */
}
.grid7-item li {
  padding: 7px 0px;
}
.grid7-item li a {
  color: #7caac9;
}
.grid7-item ul li::before {
  content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #FFBE00; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
}
.content7 {
  padding-bottom: 60px;
  background-color: #093749;
  border-bottom: 5px #FFBE00 solid;
}
/* Add this CSS to style the hidden table */
.hidden-table {
  max-height: 0;
  overflow: hidden;
  margin-top: 40px;
  display: flex;
  transition: max-height 0.3s ease-out;
  justify-content: center;
}
/* Add this CSS to style the visible table after it's shown */
.visible-table {
  max-height: 100%;
  display: flex;
  transition: max-height 0.5s ease-in;
  justify-content: center;
}
p.text-gall {
  margin-right: 60px;
}