body {
  overflow-x: hidden;
}

.custom-btn {
  background-color: orange;
  border-radius: 10px;
  padding: 7px 15px;
  line-height: 1.2;
  font-size: 16px;
  font-weight: bold;
  color: white;
  border: none;
  display: block;
  width: fit-content;
  margin: 0 auto;
  text-decoration: none;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  transition: all 0.2s;
}
.custom-btn:hover {
  background-color: black;
  color: white;
}

#photogallery {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

#map iframe {
  width: 100%;
  height: 300px;
}

.top-block {
  font-family: "Spline Sans", serif;
  border-bottom: 1px solid rgb(102, 102, 102);
}
.top-block .top-block-container {
  display: flex;
  flex-direction: row;
  padding: 10px 0;
}
.top-block .top-block-container .nav-link {
  padding: 0 30px;
  border-right: 1px solid rgb(102, 102, 102);
  color: rgb(102, 102, 102);
  font-size: 15px;
  transition: color 0.2s;
  font-weight: 500;
}
.top-block .top-block-container .nav-link svg {
  height: 22px;
  margin-right: 10px;
  fill: orange;
}
.top-block .top-block-container .nav-link:hover {
  color: orange;
}
.top-block .top-block-container .nav-link:last-child {
  border-right: none;
}

.navbar {
  padding: 0;
  box-shadow: 0 0 5px rgb(102, 102, 102);
  align-items: center;
  background-color: white;
  font-family: "Spline Sans", serif;
}
.navbar .menu-kontakt {
  display: none;
}
.navbar .nav-item {
  margin-right: 10px;
}
.navbar .nav-item .nav-link {
  line-height: 1;
  padding: 7px 10px;
  font-weight: bold;
  color: black;
  transition: all 0.2s;
  font-size: 16px;
}
.navbar .nav-item .nav-link:hover {
  color: orange;
}

@media (max-width: 992px) {
  .top-block {
    display: none;
  }
  .navbar .nav-item {
    margin-bottom: 10px;
  }
  .navbar .menu-kontakt {
    display: block;
    margin-top: auto;
  }
  .navbar .menu-kontakt .kontakt-block {
    border: 1px solid black;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    margin-bottom: 20px;
  }
  .navbar .menu-kontakt .kontakt-block:first-child {
    margin-top: 20px;
  }
  .navbar .menu-kontakt .kontakt-block h3 {
    font-family: "Readex Pro", serif;
    color: black;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1;
    position: relative;
    text-align: center;
  }
  .navbar .menu-kontakt .kontakt-block h3:after {
    position: absolute;
    content: "";
    width: 25%;
    height: 4px;
    background: orange;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  .navbar .menu-kontakt .kontakt-block svg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 30px;
    padding: 5px;
    background-color: white;
    border-radius: 50%;
    fill: black;
  }
  .navbar .menu-kontakt .kontakt-block p {
    margin-bottom: 10px;
    font-size: 15px;
    color: rgb(102, 102, 102);
    text-align: center;
  }
  .navbar .menu-kontakt .kontakt-block a {
    color: black;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.2s;
    display: block;
    width: fit-content;
    margin: 0 auto 10px auto;
  }
  .navbar .menu-kontakt .kontakt-block a:last-child {
    margin-bottom: 0;
  }
  .navbar .menu-kontakt .kontakt-block a:hover {
    color: orange;
  }
  .navbar .menu-kontakt .kontakt-block p, .navbar .menu-kontakt .kontakt-block a {
    font-family: "Spline Sans", serif;
  }
}
#hero {
  width: 100%;
  height: 700px;
  background-image: url("../images/hero.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#hero .hero-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
}
#hero .hero-overlay h2 {
  font-family: "Readex Pro", serif;
  text-align: center;
  font-size: 50px;
  font-weight: bold;
  line-height: 1.5;
  margin: 15px 0 30px 0;
  color: white;
}
#hero .hero-overlay h5 {
  font-family: "Readex Pro", serif;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  margin: 0;
  color: white;
}

#main-info-banner .banner-container {
  border: 1px solid rgb(102, 102, 102);
  transform: translateY(-50%);
  background-color: white;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
#main-info-banner .banner-block {
  padding: 20px;
  text-align: center;
  border-right: 1px solid rgb(102, 102, 102);
}
#main-info-banner .banner-block svg {
  height: 36px;
  fill: rgb(102, 102, 102);
  margin-bottom: 10px;
}
#main-info-banner .banner-block h6 {
  font-family: "Readex Pro", serif;
  font-size: 20px;
  font-weight: bold;
  color: black;
  margin-bottom: 0;
}
#main-info-banner .banner-block:last-child {
  border-right: none;
}

@media (max-width: 1200px) {
  #hero .hero-overlay h2 {
    font-size: 40px;
  }
  #hero .hero-overlay h5 {
    font-size: 17px;
  }
  #main-info-banner .banner-block h6 {
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  #hero {
    height: 500px;
  }
  #hero .hero-overlay h5 {
    font-size: 15px;
  }
  #hero .hero-overlay h2 {
    font-size: 30px;
  }
  #main-info-banner .banner-block h6 {
    font-size: 15px;
  }
  #main-info-banner .banner-block svg {
    height: 20px;
  }
}
@media (max-width: 576px) {
  #main-info-banner .banner-block {
    padding: 10px;
  }
}
#about-us {
  padding: 0 0 60px 0;
}
#about-us h2 {
  font-family: "Readex Pro", serif;
  color: black;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1;
  position: relative;
}
#about-us h2:after {
  position: absolute;
  content: "";
  width: 25%;
  height: 4px;
  background: orange;
  bottom: -20px;
  right: 38%;
}
#about-us p {
  font-family: "Spline Sans", serif;
  color: rgb(102, 102, 102);
  font-size: 15px;
  text-align: center;
  margin-bottom: 30px;
}
#about-us p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  #about-us h2 {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  #about-us p {
    font-size: 14px;
  }
}
#activities {
  padding: 60px 0;
}
#activities h2 {
  font-family: "Readex Pro", serif;
  color: black;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1;
  position: relative;
}
#activities h2:after {
  position: absolute;
  content: "";
  width: 25%;
  height: 4px;
  background: orange;
  bottom: -20px;
  right: 38%;
}
#activities .activity-block {
  border-radius: 10px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  text-align: center;
  overflow: hidden;
  padding-bottom: 10px;
  background-color: white;
}
#activities .activity-block h6 {
  font-family: "Readex Pro", serif;
  font-size: 20px;
  font-weight: bold;
  color: black;
  margin-bottom: 10px;
  margin-top: 10px;
  line-height: 1;
}
#activities .activity-block .activity-info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 10px;
}
#activities .activity-block .activity-info .one-info {
  padding: 0 10px;
  border-right: 1px solid rgb(102, 102, 102);
}
#activities .activity-block .activity-info .one-info:last-child {
  border-right: none;
}
#activities .activity-block .activity-info svg {
  height: 14px;
  fill: orange;
  margin-right: 5px;
}
#activities .activity-block .activity-info span {
  font-family: "Spline Sans", serif;
  color: rgb(102, 102, 102);
  font-size: 12px;
  line-height: 14px;
}
#activities .activity-block .custom-btn {
  font-size: 12px;
}
#activities .more-activities {
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 992px) {
  #activities .activity-block h6 {
    font-size: 15px;
  }
  #activities .activity-block .activity-info span {
    font-size: 11px;
    line-height: 12px;
  }
  #activities .activity-block .activity-info svg {
    height: 12px;
  }
  #activities .activity-block .custom-btn {
    font-size: 11px;
  }
  .custom-btn {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  #activities h2 {
    font-size: 20px;
  }
}
@media (max-width: 768px) and (min-width: 576px) {
  #activities .extra-activity {
    display: none;
  }
}
@media (max-width: 576px) {
  #about-us p {
    font-size: 14px;
  }
}
#footer-wrapper {
  background-color: black;
  padding: 60px 0;
}
#footer-wrapper .footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#footer-wrapper .footer .nav-link {
  color: white;
  font-family: "Spline Sans", serif;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.2s;
}
#footer-wrapper .footer .nav-link:hover {
  color: orange;
}
#footer-wrapper .footer .copyright {
  font-family: "Spline Sans", serif;
  color: white;
  margin-bottom: 0;
}

#kontakt {
  padding: 50px 0;
  text-align: center;
}
#kontakt img {
  width: 100%;
  max-width: 300px;
  background-color: orange;
  border-radius: 50%;
}
#kontakt h3 {
  font-family: "Readex Pro", serif;
  color: black;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1;
  position: relative;
}
#kontakt h3:after {
  position: absolute;
  content: "";
  width: 25%;
  height: 4px;
  background: orange;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
#kontakt .kontakt-block {
  border: 1px solid black;
  border-radius: 20px;
  padding: 20px 0;
  position: relative;
}
#kontakt .kontakt-block svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 30px;
  padding: 5px;
  background-color: white;
  border-radius: 50%;
  fill: black;
}
#kontakt .kontakt-block p {
  margin-bottom: 10px;
  font-size: 15px;
  color: rgb(102, 102, 102);
}
#kontakt .kontakt-block a {
  color: black;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.2s;
  display: block;
  width: fit-content;
  margin: 0 auto 10px auto;
}
#kontakt .kontakt-block a:last-child {
  margin-bottom: 0;
}
#kontakt .kontakt-block a:hover {
  color: orange;
}
#kontakt .kontakt-block p, #kontakt .kontakt-block a {
  font-family: "Spline Sans", serif;
}

#faq {
  background-image: linear-gradient(to right, transparent, #fbbf3b);
  padding: 50px 0;
  overflow-x: hidden;
}
#faq .question-mark-container {
  position: relative;
}
#faq .question-mark-container .kontakt-faq-question-mark {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  transform: translateX(50%);
  opacity: 0.6;
  filter: blur(2px);
}
#faq .form-floating {
  margin-bottom: 10px;
}
#faq .form-floating:focus-visible {
  outline: none;
}
#faq .form-floating .form-control {
  border-color: transparent;
  resize: none;
  font-family: "Spline Sans", serif;
}
#faq .form-floating .form-control:focus {
  box-shadow: 0 0 2px orange;
}
#faq .form-floating label {
  font-family: "Spline Sans", serif;
  font-size: 15px;
}
#faq .faq-title {
  text-align: center;
  font-family: "Readex Pro", serif;
  font-size: 30px;
  line-height: 1;
  color: black;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
}
#faq .accordion {
  position: relative;
}
#faq .accordion .accordion-item {
  background-color: white;
  border: none;
}
#faq .accordion .accordion-item .accordion-header {
  font-family: "Readex Pro", serif;
  font-size: 15px;
  color: black;
  font-weight: bold;
}
#faq .accordion .accordion-item .accordion-body {
  font-family: "Spline Sans", serif;
  color: rgb(102, 102, 102);
  font-size: 14px;
}
#faq .accordion .accordion-item .accordion-button {
  background-color: orange;
}
#faq .accordion .accordion-item .accordion-button.collapsed {
  background-color: orange;
}
#faq .accordion .accordion-item .accordion-button:focus, #faq .accordion .accordion-item .accordion-button:focus-visible {
  outline: none;
  box-shadow: none;
}

@media (max-width: 992px) and (min-width: 767px) {
  #kontakt h3 {
    font-size: 17px;
  }
  #kontakt .kontakt-block p {
    font-size: 12px;
  }
  #kontakt .kontakt-block a {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  #kontakt h3 {
    font-size: 17px;
  }
  #kontakt .kontakt-block p {
    font-size: 12px;
  }
  #kontakt .kontakt-block a {
    font-size: 15px;
  }
  #faq .faq-title {
    font-size: 20px;
  }
  #faq .accordion .accordion-item .accordion-button {
    font-size: 15px;
  }
}
#apartman-uvod, #apartman-venek, #apartman-vnitrek {
  padding-top: 50px;
}
#apartman-uvod .test-block, #apartman-venek .test-block, #apartman-vnitrek .test-block {
  height: 100vh;
}
#apartman-uvod h2, #apartman-venek h2, #apartman-vnitrek h2 {
  font-family: "Readex Pro", serif;
  color: black;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1;
  position: relative;
}
#apartman-uvod h2:after, #apartman-venek h2:after, #apartman-vnitrek h2:after {
  position: absolute;
  content: "";
  width: 25%;
  height: 4px;
  background: orange;
  bottom: -20px;
  right: 38%;
}
#apartman-uvod .uvod-list ul, #apartman-venek .uvod-list ul, #apartman-vnitrek .uvod-list ul {
  list-style: none;
  margin-bottom: 0;
}
#apartman-uvod .uvod-list ul li, #apartman-venek .uvod-list ul li, #apartman-vnitrek .uvod-list ul li {
  position: relative;
  margin: 30px 0;
  font-size: 17px;
  font-family: "Spline Sans", serif;
  color: black;
  padding-left: 100px;
}
#apartman-uvod .uvod-list ul li svg, #apartman-venek .uvod-list ul li svg, #apartman-vnitrek .uvod-list ul li svg {
  height: 40px;
  fill: rgb(102, 102, 102);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#apartman-uvod .uvod-list ul li:last-child, #apartman-venek .uvod-list ul li:last-child, #apartman-vnitrek .uvod-list ul li:last-child {
  margin-bottom: 7px;
}
#apartman-uvod .vizualizace-block, #apartman-venek .vizualizace-block, #apartman-vnitrek .vizualizace-block {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 200px;
  border-radius: 20px;
  border: 2px solid white;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.2s;
}
#apartman-uvod .vizualizace-block img, #apartman-venek .vizualizace-block img, #apartman-vnitrek .vizualizace-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
#apartman-uvod .vizualizace-block .vizualizace-overlay, #apartman-venek .vizualizace-block .vizualizace-overlay, #apartman-vnitrek .vizualizace-block .vizualizace-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.2s;
}
#apartman-uvod .vizualizace-block:hover, #apartman-uvod .vizualizace-block:target, #apartman-venek .vizualizace-block:hover, #apartman-venek .vizualizace-block:target, #apartman-vnitrek .vizualizace-block:hover, #apartman-vnitrek .vizualizace-block:target {
  border: 2px solid orange;
}
#apartman-uvod .vizualizace-block:hover .vizualizace-overlay, #apartman-uvod .vizualizace-block:target .vizualizace-overlay, #apartman-venek .vizualizace-block:hover .vizualizace-overlay, #apartman-venek .vizualizace-block:target .vizualizace-overlay, #apartman-vnitrek .vizualizace-block:hover .vizualizace-overlay, #apartman-vnitrek .vizualizace-block:target .vizualizace-overlay {
  opacity: 1;
}
#apartman-uvod p, #apartman-venek p, #apartman-vnitrek p {
  font-family: "Spline Sans", serif;
  color: rgb(102, 102, 102);
  font-size: 15px;
  text-align: center;
  margin-bottom: 30px;
}
#apartman-uvod p:last-child, #apartman-venek p:last-child, #apartman-vnitrek p:last-child {
  margin-bottom: 0;
}
#apartman-uvod .real-photos, #apartman-venek .real-photos, #apartman-vnitrek .real-photos {
  padding-top: 50px;
}
#apartman-uvod .real-photos a img, #apartman-venek .real-photos a img, #apartman-vnitrek .real-photos a img {
  transition: all 0.2s;
  border: 2px solid white;
  border-radius: 20px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
#apartman-uvod .real-photos a:hover img, #apartman-venek .real-photos a:hover img, #apartman-vnitrek .real-photos a:hover img {
  border: 2px solid orange;
}

#apartman-venek {
  padding-bottom: 50px;
}

.modal .modal-body iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  #apartman-uvod h2, #apartman-venek h2, #apartman-vnitrek h2 {
    font-size: 20px;
  }
  #apartman-uvod p, #apartman-venek p, #apartman-vnitrek p {
    font-size: 14px;
  }
}

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