
@font-face {
  font-family: 'PP Gosha Sans';
  src: url('../font/PPGoshaSans-Bold.woff2') format('woff2'),
      url('../font/PPGoshaSans-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Telegraf';
  src: url('../font/PPTelegraf-Regular.woff2') format('woff2'),
      url('../font/PPTelegraf-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Gosha Sans';
  src: url('../font/PPGoshaSans-Regular.woff2') format('woff2'),
      url('../font/PPGoshaSans-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --default-font: "PP Telegraf",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "PP Gosha Sans",  sans-serif;
  --nav-font: "PP Gosha Sans",  sans-serif;
}

:root { 
  --background-color: #F2F0EA; 
  --default-color: #121314; 
  --heading-color: #121314; 
  --accent-color: #F2F0EA; 
  --surface-color: #ffffff;
  --contrast-color: #ffffff; 
  --default-color-rgb: 18, 19, 20;
}

:root {
  --nav-color: #121314;  
  --nav-hover-color: #121314; 
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #121314;
  --nav-dropdown-hover-color: #121314; 
}


.light-background {
  --background-color: #F2F0EA;
  --surface-color: #F2F0EA;
}

.dark-background {
  --background-color: #08005e;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0c0091;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

@media (max-width: 767px) {
  body {
    --bs-body-font-size: 0.9rem;
  }
  
}
a {
  color: var(--default-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--default-color);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.default-font {
  font-family: var(--default-font);;
}

p {
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .lead {
    font-size: 1.05rem;
    font-weight: 300;
}
}

.text-warning {
    color: #F58220!important;
}

.btn {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
}

.btn-primary {
  color: var(--default-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0);
  border: 2px solid rgba(var(--default-color-rgb))
}

.btn-primary:hover {
  color: var(--default-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0);
  border: 2px solid rgba(var(--default-color-rgb), 0.2)
}

.btn-secondary {
  color: var(--accent-color);
  background: var(--default-color);
  font-family: var(--heading-font);
  background: rgba(var(--default-color-rgb), 1)
}

.btn-secondary:hover {
  color: var(--accent-color);
  background: var(--default-color);
  font-family: var(--heading-font);
  background: rgba(var(--default-color-rgb), 0.8)
}

.btn-close {
  color: var(--default-color);
  font-size: 20px;
  float: right;
  transition: 0.4s;
  position: absolute;
  right: 25px;
  top: 25px;
  text-decoration: none;
}

.btn-price {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}

.btn-price i{
 font-size: 18px;
}



.bg-light {
  background-color: #fff !important;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
  color: var(--default-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0);
    border: 2px solid rgba(var(--default-color-rgb), 0.2);
}



/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #F2F0EA;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 30px;
  transition: all 0.5s;
  z-index: 997;
}



.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 40px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  
}

@media (max-width: 767px) {
  .header {
    padding: 10px 0;
  }
  .header .logo img {
    max-height: 30px;
    margin-right: 8px;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #F2F0EA;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 16px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }



  .navmenu a:hover {
    opacity: 0.7;
  }


  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 32px;
    line-height: 0;
    margin-right: 0px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
    margin-top: 5px;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 0 0 0;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #F2F0EA;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 5px 30px;
    font-family: var(--nav-font);
    font-size: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--nav-dropdown-color);
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background-color: #F2F0EA;
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 30px;
    right: 30px;
    height: 30%;
    width: calc(100% - 60px);
    z-index: 9999;
    background-image: url(../img/nav-image.webp);
    background-size: cover;
    background-position: top center;
}

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
  margin-top: 60px;
  margin-left: 0.8rem;
    margin-right: 0.8rem;
}

.footer a{
  color: var(--default-color)!important;
}

.footer .btn{
  color: #f2f0ea!important;
}

.footer a{
  color: var(--default-color)!important;
}

@media (max-width: 767px) {
  .footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
    margin-top: 0px;
    margin-left: 0;
      margin-right:0;
  }
  
}


.footer .footer-about {
  padding: 30px 30px;
  position: relative;
}



.footer .footer-about::before {
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  right: 50%;
  top: 0;
  transform: translate(-50%, 0);
  background-color: #3F3E3D;
}




.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 100px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--heading-color);
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 18px;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
  padding-left: 30px;
}

@media (max-width: 767px) {
  .footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
    margin-top: 0px;
    margin-left: 0;
      margin-right:0;
  }

  .footer .footer-about {
    padding: 30px 15px;
    position: relative;
  }
  .footer .footer-about::before {
    display: none;
  }
  .footer .footer-links {
    margin-bottom: 30px;
    padding-left: 10px;
  }
  
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 30px;
}



.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer .copyright {
    padding: 25px 10px;
  }
  .footer .copyright {
    justify-content: flex-start;
  }
  .footer .credits {
    width: 100%;
    display: block;
  }
  
}

.border-bottom {
  border-bottom: 2px solid var(--default-color)!important;
}
.border-top {
  border-top: 2px solid var(--default-color)!important;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  display: none!important;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
  display: none!important;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 88%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: auto;
  height: calc(90vh - 80px);
  position: relative;
  padding: 120px 0 80px 0;
  margin-top: 75px;
  display: flex;
  align-items: center;
  margin-left: 0.8rem;
  margin-right: 0.8rem;
}

.page {
  width: auto;
  position: relative;
  padding: 0;
  margin-top: 75px;
  display: flex;
  align-items: center;
  margin-left: 0.8rem;
  margin-right: 0.8rem;
}

.hero-separator {
  background: var(--accent-color);
  min-height: 90vh;
  width: 16px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 34px;
  width: 88px;
  z-index: 1;
  background-image: url('../img/hero-corner-top.svg');
  background-size: auto; 
}

.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 34px;
  width: 88px;
  z-index: 2;
  background-image: url('../img/hero-corner-bottom.svg');
  background-size: auto; 
}
.hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%; 
  object-fit: cover; 
  object-position: bottom center; 
  z-index: 1;
}

.hero .heading-1 {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-100%); 
  padding-right: 60px;
  z-index: 2;
  height: 194px;
  width: auto;
  max-width: none; 
}
.hero .heading-2 {
  position: absolute;
  bottom: 75px;
  right: 50%;
  transform: translateX(100%); 
  padding-left: 60px;
  z-index: 2;
  height: 194px;
  width: auto;
  max-width: none; 
}
  .hero .heading-projekt-1 {
    position: absolute;
    bottom: 75px;
    right: 50%;
    transform: translateX(100%); 
    padding-left: 60px;
    z-index: 2;
    height: 94px;
    width: auto;
    max-width: none; 
}
@media (max-width: 768px) {
  .hero {
    width: auto;
    height: calc(85vh - 30px);
    position: relative;
    padding: 120px 0 30px 0;
    margin-top: 55px;
    display: flex;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
  }

  .hero .hero-bg {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    object-position: center center; 
    z-index: 1;
  }

  .hero-separator {
    background: var(--accent-color);
    min-height: 16px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 88px;
    width: 34px;
    z-index: 1;
    background-image: url('../img/hero-corner-left.svg');
    background-size: auto; 
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: auto;
    transform: translateY(-50%);
    height: 88px;
    width: 34px;
    z-index: 2;
    background-image: url('../img/hero-corner-right.svg');
    background-size: auto; 
  }

  .hero .heading-1 {
    position: absolute;
    top: 30px;
    left: auto;
    right: 15px;
    transform: translateX(0); 
    padding-right: 0px;
    z-index: 2;
    height: 100px;
    width: auto;
    max-width: none; 
  }
  .hero .heading-2 {
    position: absolute;
    bottom: 100px;
    right: auto;
    left: 15px;
    transform: translateX(0);
    padding-left: 0px;
    z-index: 2;
    height: 100px;
    width: auto;
    max-width: none; 
  }

  .hero .heading-projekt-1 {
    position: absolute;
    bottom: 100px;
    right: auto;
    left: 15px;
    transform: translateX(0);
    padding-left: 0px;
    z-index: 2;
    height: 50px;
    width: auto;
    max-width: none; 
  }
}

@media (max-width: 480px) {
  .hero-img {
    width: 40vw; /* Zvětšení šířky pro telefony */
  }
}

/*.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  position: absolute;
  inset: 0;
  z-index: 2;
}*/

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

.hero h1 span {
  color: var(--heading-color);
  border-bottom: 4px solid var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 22px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--default-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0);
  border: 1px solid var(--default-color);
}

.hero .btn-get-started:hover {
  color: var(--default-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 100px;
}
.kontakt {
  height: calc(100vh - 150px)!important;
  margin: 0 15px;
}

.kontakt::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%; 
  height: 100%;
  background-image: url('../img/kontakt-1.webp'); 
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.kontakt .corner-top {
  position: absolute;
  top: 74px;
  left: calc(50% + 18px);
  transform: translate(-50%, 0);
  width: 36px; 
  height: 36px; 
  background-image: url('../img/kontakt-corner-top.svg'); 
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.kontakt .corner-bottom {
  position: absolute;
  bottom: -1px;
  left: calc(50% + 18px);
  transform: translate(-50%, 0);
  width: 36px; 
  height: 36px; 
  background-image: url('../img/kontakt-corner-bottom.svg'); 
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

@media (max-width: 768px) {
  
  .kontakt {
    height: auto !important;
    padding-bottom: 100%; 
    min-height: 50vh; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 15px 0;
    padding-top: 100px!important;
  }

  .kontakt::before {
    width: 100%; 
    height: 40vh;
    top: auto;
    bottom: 0; 
    left: 0;
    right: auto;
    background-position: center bottom;
  }
  .kontakt .corner-top {
    position: absolute;
    bottom: calc(40% - 98px);
    top: auto;
    left: 0;
    transform: translate(0);
    width: 36px; 
    height: 36px; 
    background-image: url('../img/kontakt-corner-left.svg'); 
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
  }
  
  .kontakt .corner-bottom {
    position: absolute;
    bottom: calc(40% - 98px);
    left: auto;
    right: 0;
    transform: translate(0);
    width: 36px; 
    height: 36px; 
    background-image: url('../img/kontakt-corner-right.svg'); 
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
  }
}




.about .heading-img {
  height: 144px;
  width: auto;
  max-width: none; 
}

@media (max-width: 768px) {

  .about {
    padding-top: 50px;
  }
  .about .heading-img {
    height: 65px;
  }
  .flat {
    padding-top: 75px;
  }
}


.about .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.about .content h2 {
  font-weight: 700;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .icon-box {
  background-color: var(--surface-color);
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.about .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.about .icon-box p {
  margin-bottom: 0;
}

.about .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Details Section
--------------------------------------------------------------*/
.details .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.details .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .details .features-item+.features-item {
    margin-top: 40px;
  }
}

.details .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.details .features-item ul {
  list-style: none;
  padding: 0;
}

.details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.details .features-item ul li:last-child {
  padding-bottom: 0;
}

.details .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.details .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

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

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.team .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px 40px;
  height: 100%;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 500;
}

.pricing .description {
  font-size: 14px;
}

.pricing .cta-btn {
  border: 1px solid var(--default-color);
  color: var(--default-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

.pricing .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul li:last-child {
  padding-bottom: 0;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .featured {
  position: relative;
}

.pricing .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 15px 6px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

.pricing .featured .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 22px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

.formular {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 9999;
  background: var(--accent-color);
  overflow-y: scroll;
}

.formular-img {
  position: absolute;
  top: 30px;
  left: 0;
  bottom: 30px;
  height: calc(100% - 60px);
  width: 20%;
  z-index: 9999;
  background-image: url('../img/form-img.webp');
  background-size: cover; 
  background-position: center;
}

.formular-img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 35px;
  width: 36px;
  z-index: 9999;
  background-image: url('../img/form-corner-top.svg');
  background-size: auto; 
}

.formular-img::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 36px;
  width: 35px;
  z-index: 9999;
  background-image: url('../img/form-corner-bottom.svg');
  background-size: auto; 
}


@media (max-width: 767px) {
  .formular-img {
    display: none;
  }
  
}

.formular-tree {
  position: absolute;
  left: 5%;
  bottom: 60px;
  z-index: 9999;
}

@media (max-width: 1900px) {
  .formular-tree {
    position: absolute;
    left: -10%;
    bottom: 60px;
    z-index: 9999;
  }
}

@media (max-width: 1300px) {
  .formular-tree {
    position: absolute;
    left: -20%;
    bottom: 60px;
    z-index: 9999;
  }
}

@media (max-width: 1100px) {
  .formular-tree {
    position: absolute;
    left: -35%;
    bottom: 60px;
    z-index: 9999;
  }
}


@media (max-width: 767px) {
  .formular-tree {
    display: none;
  }
}




.formular section {
    padding: 30px 0;
}

.formular .php-email-form input {
  padding: 15px 15px;
}

.formular .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 99px;
}

.form-control {
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 20px;
}

.form-control:focus {
  border-color: #121314;
}

.form-control:focus {
  border-color: #121314;
  border-radius: 20px;
  box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 0);
}

.formular .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.formular .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #F58220;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  margin-top: 20px;
  border-radius: 20px;
}

.formular .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.formular .php-email-form button[type="submit"] {
  font-weight: 400;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 12px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 25px;
    color: var(--accent-color);
    background: var(--default-color);
    font-family: var(--heading-font);
    background: rgba(var(--default-color-rgb), 1);
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: .125rem;
}

.form-check label {
  display: block !important;
}

.form-check label a {
  color: var(--default-color)!important;
}

.form-check input {
  padding: 10px 10px !important;
  margin-right: 10px
}

.form-check-input {
  width: 1em;
  height: 1em;
  background-color: #fff;
  border: 1px solid #fff;
}

form-check-input[type=checkbox] {
  border-radius: 0px;
  margin-right: 5px;
}

.form-check-input:checked {
  background-color: var(--default-color);
  border-color: var(--default-color);
}

.parallax-container {
  position: relative;
}

.parallax-image-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 700px;
  height: 450px;
  background-image: url('../img/tree-1.webp');
  background-size: 100%;
  background-position: center;
  transform: translateY(0);
  transition: transform 0.1s linear;
}

.parallax-image-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 586px;
  height: 586px;
  background-image: url('../img/tree-2.webp');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(0);
  transition: transform 0.1s linear;
  z-index: 1;
}

@media (max-width: 767px) {
  .parallax-image-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 120px;
    background-image: url('../img/tree-1.webp');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    transform: translateY(0);
    transition: transform 0.1s linear;
  }
  
  .parallax-image-left {
    position: absolute;
    top: -100px;
    left: 0;
    width: 150px;
    height: 150px;
    background-image: url('../img/tree-2.webp');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    transform: translateY(0);
    transition: transform 0.1s linear;
    z-index: 9;
  }
}

#map {
  width: 100%;
  height: 800px;
}

.fullscreen-wrapper {
  width: 100%vw; /* Omezíme na 90% viewport width */
  height: 90vh; /* Omezíme na 90% viewport height */
  border-radius: 40px; /* Kulaté rohy */
  overflow: hidden; /* Aby pozadí nepřesahovalo */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.fullscreen-section {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: background 0.5s ease-in-out;
}
.content {
  position: absolute;
  z-index: 10;
}

.content .content-div {
  padding: 40px;
  border-radius: 40px;
  background-color: var(--background-color);
  min-height: 600px;
}

.content .content-arrow {
  position: absolute;
  bottom: -100px;
  right: 0;
}

/* Responzivní úprava pro mobilní a tabletové zobrazení */
@media (max-width: 992px) {
  .fullscreen-wrapper {
    height: auto; /* Automatická výška pro obsah */
    display: block;
  }

  .fullscreen-section {
    height: 50vh; /* Obrázek zabere polovinu výšky viewportu */
  }

  .content {
    position: relative; /* Text půjde pod obrázek */
    z-index: auto;
  }

  .content .content-div {
    min-height: auto;
    padding: 0 0 100px 0 ;
    margin-left: -10px;
    margin-right: -10px;
    border-radius: 0;

  }
  .content .content-arrow {
    position: absolute;
    bottom: 10px;
    right: 0;
  }
}

.arrow {
  cursor: pointer;
  font-size: 1rem;
  margin: 0 5px;
  transition: transform 0.3s ease; /* Přidání přechodu pro transformaci */
    display: inline-block;
    padding: 12px 16px 12px 16px;
    border-radius: 50px;
    transition: 0.5s;
    color: var(--default-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0);
    border: 2px solid rgba(var(--default-color-rgb));
}


#prev-tab:hover {
  transform: translateX(-5px); /* Posun levé šipky doleva při najetí */
}

#next-tab:hover {
  transform: translateX(5px); /* Posun pravé šipky doprava při najetí */
}

.icon-letiste {
  position: relative;
}

.icon-letiste::before {
  content: "";
  background: url('../img/svg/ico-letiste.svg') no-repeat center;
  background-size: 50px;
  position: absolute;
  width: 50px;
  height: 50px;
  left: 0;
}

.icon-obchod {
  position: relative;
}

.icon-obchod::before {
  content: "";
  background: url('../img/svg/ico-obchod.svg') no-repeat center;
  background-size: 50px;
  position: absolute;
  width: 50px;
  height: 50px;
  left: 0;
}

.icon-skola {
  position: relative;
}

.icon-skola::before {
  content: "";
  background: url('../img/svg/ico-skola.svg') no-repeat center;
  background-size: 50px;
  position: absolute;
  width: 50px;
  height: 50px;
  left: 0;
}

.icon-vlak {
  position: relative;
}

.icon-vlak::before {
  content: "";
  background: url('../img/svg/ico-vlak.svg') no-repeat center;
  background-size: 50px;
  position: absolute;
  width: 50px;
  height: 50px;
  left: 0;
}


.ico-text {
  position: relative;
  padding-left: 65px; /* Posun textu, aby nebyl překryt ikonou */
}

#map-big {
  min-height: 800px;
}

@media (max-width: 991px) {}

@media (max-width: 768px) {
  #map-big {
    min-height: 300px;
}
}

.field-control {
  display: block;
    width: 100%;
    height: 40px;
    padding: 8px 15px;
    font-size: 16px;
    line-height: 20px;
    border-radius: 99px;
    color: #050a3a;
    background-color: transparent;
    background-image: none;
    border-top-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #121314;
    border-right-color: #121314;
    border-bottom-color: #121314;
    border-left-color: #121314;
    outline: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    font-weight: 400;
    font-family: var(--heading-font);
}

@media (max-width: 768px){
  .field-control {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.custom-switch {
  line-height: 12px;
}

.custom-switch .custom-switch-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-switch .custom-switch-input, .custom-switch .custom-switch-input:after, .custom-switch .custom-switch-input:before,
.custom-switch .custom-switch-input *,
.custom-switch .custom-switch-input *:after,
.custom-switch .custom-switch-input *:before,
.custom-switch .custom-switch-input+.custom-switch-btn {
  box-sizing: border-box;
}

.custom-switch .custom-switch-input:selection, .custom-switch .custom-switch-input:after:selection, .custom-switch .custom-switch-input:before:selection,
.custom-switch .custom-switch-input *:selection,
.custom-switch .custom-switch-input *:after:selection,
.custom-switch .custom-switch-input *:before:selection,
.custom-switch .custom-switch-input+.custom-switch-btn:selection {
  background: none;
}

.custom-switch .custom-switch-input+.custom-switch-btn {
  outline: 0;
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  width: 50px;
  height: 28px;
  margin: 0;
  padding: 4px;
  background: transparent;
  border-radius: 76px;
  transition: all 150ms ease;
  float: right;
  border: 2px solid rgba(var(--default-color-rgb));
}

@media (max-width: 768px){
  .custom-switch .custom-switch-input+.custom-switch-btn {
    margin-top:-5px
  }
  
}

.custom-switch .custom-switch-input+.custom-switch-btn:after, .custom-switch .custom-switch-input+.custom-switch-btn:before {
  position: relative;
  display: block;
  content: "";
  width: 17px;
  height: 17px;
}

.custom-switch .custom-switch-input+.custom-switch-btn:after {
  left: 2px;
  border-radius: 50%;
  background: #121314;
  transition: all 150ms ease;
}

.custom-switch .custom-switch-input+.custom-switch-btn:before {
  display: none;
}

.custom-switch .custom-switch-input+.custom-switch-btn.text-hide {
  top: -.80rem;
}

.custom-switch .custom-switch-input:checked+.custom-switch-btn {
  background: transparent;
}

.custom-switch .custom-switch-input:checked+.custom-switch-btn:after {
  left: 20px;
}

.custom-switch .custom-switch-input:checked+.custom-switch-btn~.custom-switch-content-checked {
  opacity: 1;
  height: auto;
}

.custom-switch .custom-switch-input:checked+.custom-switch-btn~.custom-switch-content-unchecked {
  display: none;
  opacity: 0;
  height: 0;
}

.custom-switch .custom-switch-input:not(:checked)+.custom-switch-btn~.custom-switch-content-checked {
  display: none;
  opacity: 0;
  height: 0;
}

.custom-switch .custom-switch-input:not(:checked)+.custom-switch-btn~.custom-switch-content-unchecked {
  opacity: 1;
  height: auto;
}

.custom-switch .custom-switch-input[disabled]+.custom-switch-btn {
  background: rgba(173, 181, 189, 0.6);
  cursor: default;
}

.custom-switch .custom-switch-input[disabled]:checked+.custom-switch-btn {
  background: rgba(40, 167, 69, 0.4);
}

.custom-switch .custom-switch-input:not([disabled]):focus~.custom-switch-btn {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(56, 123, 189, 0.25);
}

.custom-switch .custom-switch-input[required]~.custom-switch-btn {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.125rem rgba(220, 53, 69, 0.5);
}

.custom-switch .custom-switch-form-text {
  display: inline-block;
  height: 38px;
  margin-left: .5rem;
  line-height: 38px;
  vertical-align: top;
}

.custom-switch.custom-switch-label-status .custom-switch-input:checked+.custom-switch-btn:after {
  left: 58px;
}

.is-invalid .custom-switch .custom-switch-input~.custom-switch-btn,
.was-validated .custom-switch:invalid .custom-switch-input~.custom-switch-btn {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem #dc3545;
}

.field-form_select {
  position: relative;
}

.field-form_select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
 background: url('data:image/svg+xml;utf8,<svg fill="%23121314" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 1rem center;
  padding-right: 2.5rem;
  width: 100%;
}

.building-title {
  position: absolute;
    z-index: 9;
    left: 25px;
    text-align: center;
    bottom: 25px;
    line-height: 1.1;
    font-size: 15px;
    padding: 15px 25px;
    font-family: var(--heading-font);
    font-weight: 400;
    color: #121314;
    border-radius: 99px;
    background: #F2F0EA;
}

@media (max-width: 768px){
  .building-title {
    display: none
  }
}

.rounded {
  border-radius: 30px !important;
}

@media (max-width: 768px){
  .table {
      font-size: 12px;
      width: 1000px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
  }
  }
  
  .table i {
    font-size: 14px;
      text-decoration: none !important;
      border-radius: 99px;
      padding: 5px 3px;
  }
  
  .table a {
    color: var(--color-default);
  }
  
  
  .table i.active {
      background-color: #212529;
      color: #f9f5ba;
      border-radius: 99px;
      padding: 5px 3px;
  }
  
  .table a {
    font-size: 14px;
    text-decoration: none !important;
  }
  
  .thead {
    font-size: 14px;
    background-color: transparent!important;
    border-bottom: 2px solid #121314;
    color: var(--heading-color);
    font-family: var(--heading-font);
  }
  
  .thead a{
    color: var(--heading-color)
  }
  
  .thead th{
    background-color: transparent!important;
    color: var(--heading-color);
  }
  
  .table>tbody>tr>td {
    background-color: transparent;
    border-bottom: 1px solid #121314;
    transition: all .15s ease-in-out;
    font-size: 16px;
    cursor: pointer;
        padding: 1rem .5rem;
  }

  .nav-link {
    display: block;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 12px 28px;
    border-radius: 50px!important;
    transition: 0.5s;
}

.nav-link a{
  color: var(--default-color);
}

.nav-link:focus, .nav-link:hover {
  color: var(--default-color);
}

  .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: var(--accent-color);
    font-family: var(--heading-font);
    background: rgba(var(--default-color-rgb), 1);
}

.nav-link {
  color: var(--default-color);
  font-weight: 400;
    font-size: 16px;
}

.alert {
  --bs-alert-border: var(--bs-border-width) solid #121314;
  color: #121314;
  background-color: #f2f0ea;
  border-radius: 20px;
}

.rating {
      direction: rtl;
      display: inline-flex;
      gap: 0.2rem;
    }
    .rating input[type="radio"] {
      display: none;
    }
    .rating label {
      font-size: 1.5rem;
      color: #12131436;
      cursor: pointer;
    }
    .rating input:checked ~ label,
    .rating label:hover,
    .rating label:hover ~ label {
      color: #121314;
    }

    .carousel-item img {
    width: 70%;
}

path:hover {
    stroke-linejoin: round;
    fill: rgba(18, 19, 20, 0.7) !important;
    cursor: pointer;
    -webkit-text-decoration-skip: objects;
    transition: all .15s ease-in-out;
  }

  #info-box {
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 100;
    padding-top: 80px;
    margin-top: -80px;
    background: #F2F0EA;
    text-align: left;
    box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
    border-radius: 25px;
    font-family: var(--default-font);
    
  }

  #info-box::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 20px;
  width: 64px;
  height: 64px;
  background-image: url('../img/cones.png');
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 64px 64px; 
}

  #info-box div {
    position: relative;
  }

    .vyber {
    position: relative;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
  }


  .detail {
    position: relative;
    margin-top: 0px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .detail .apparment-detail-over {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  text-align: center; }

  @media only screen and (max-width: 768px) {
    .detail {
      margin-top: 0px;
    }
  }

  .detail img {
    display: block;
    margin: auto;
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
  }

  .rel {
    position: relative;
  }


  .tooltip-text {
    margin-top: 0;
    margin-right: 50px;
    margin-bottom: 25px;
    padding: 0 0 0 20px!important;
    color: var(--color-primary);
    text-transform: uppercase !important;
    letter-spacing: .2rem;
    font-family: var(--font-secondary);
    font-size: 13px;
  }
    .tooltip-text-patro {
    margin-top: 0;
    margin-right: 50px;
    margin-bottom: 0px;
    padding: 0 0 0 20px!important;
    color: var(--color-primary);
    text-transform: uppercase !important;
    letter-spacing: .2rem;
    font-family: var(--font-secondary);
    font-size: 13px;
  }


  .tooltip-num {
    margin-bottom: 20px;
    margin-right: 50px;
    padding: 0 0 0 20px!important;
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 14px;
  }

  .tooltip-text-normal {
    margin-top: 0;
    margin-bottom: 15px;
    margin-right: 50px;
    padding: 0 0 0 20px!important;
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 14px;
  }

  .tooltip-title {
    margin-right: 50px;
    padding: 0 0 0 20px!important;
    font-size: 32px !important;
    font-family: var(--font-secondary);
    color: var(--color-default);
  }

  .floor-list {
      position: absolute;
      right: 25px;
      top: 175px;
      transform: translate(0,-50%);
      z-index: 100;
      padding: 15px;
      background: #F2F0EA;
      text-align: left;
      border-radius: 25px;
    }

    @media only screen and (max-width: 768px) {
      .floor-list {
          display: none
        }
    }

    .floor-list li {
      display: block;
      border-radius: 99px;
      padding: 7px 10px;
      font-family: var(--heading-font);
      margin-top: 5px;
    }

    .floor-list li h5 {
      line-height: 1;
    }

    .floor-list li.active {
      color: white!important;
      background: #121314;
    }

     .floor-list li.active h5 {
      color: white!important;
      background: #121314;
    }

    .floor-list li.active a {
      color: white;
    }