* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
}
html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

:root {
  --primary-color: #ffbe00;
}

/* BTNS */
.primary-btn {
  background-color: var(--primary-color);
  border-radius: 0.3125rem;
  font-weight: 600;
  padding: 1rem 2rem;
  transition: all 0.3s ease, color 0.3s ease;
  font-size: 0.875rem;
  width: fit-content;
}
.primary-btn:hover {
  background-color: #e6a800;
  color: #000;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transform: translateY(-10px);
}
.secondary-btn {
  font-weight: 600;
  padding: 1rem 2rem;
  color: white;
  border-radius: 0.3125rem;
  border: white 1px solid;
  font-size: 0.875rem;
}
.secondary-btn:hover {
  background-color: white;
  color: #000;
}
.tertiary-btn {
  font-weight: 600;
  padding: 1rem 2rem;
  background-color: white;
  color: black;
  font-size: 0.875rem;
}
.tertiary-btn:hover {
  background-color: black;
  color: white;
}
.secondary-btn-negative {
  font-weight: 600;
  padding: 1rem 2rem;
  color: black;
  border-radius: 0.3125rem;
  border: black 1px solid;
  font-size: 0.875rem;
  width: fit-content;
}
.secondary-btn-negative:hover {
  background-color: black;
  color: white;
}
.btn-service {
  font-size: 14px;
}

/* Sections */
.sections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.sections h2 {
  font-size: 3.125rem;
  font-weight: 700;
  position: relative;
}
.sections h4{
   font-size: 1.5rem;
   font-weight: 700; 
}
.sections h2::before {
  content: "";
  display: block;
  width: 593px;
  height: 2px;
  background: linear-gradient(90deg, #000 50%, rgba(255, 255, 255, 0) 80%);
  margin: 0 auto;
  position: absolute;
  bottom: -1rem;
}
.sections p {
  color: black;
  line-height: 120%;
  max-width: 680px;
  width: 100%;
}

/* Space between */
.space-between {
  margin-bottom: 6.25rem;
}

/* Badges */
.primary-badge {
  background-color: var(--primary-color);
  color: black;
  display: inline-block;
  padding: 0.5rem;
  align-self: flex-start;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.secondary-badge {
  background-color: white;
}
/* Gap*/
.gap-6 {
  gap: 2rem;
}
.gap-7 {
  gap: 5rem;
}

.row-gap-6 {
  row-gap: 1.5rem;
}

.mt-6 {
  margin-top: 2rem;
}

/* Navigation */
.navigation-social-wrapper {
  position: relative;
}
.navigation-social-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(64, 64, 64, 1) 76%
  );
  z-index: 0;
}
.navigation-social {
  padding: 0.5rem 0rem;
  font-size: 0.75rem;
  position: relative;
  z-index: 1;
}
.navigation-social a {
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
}
.navbar-nav {
  display: flex;
  gap: 3.25rem;
}
.nav-link {
  color: rgb(255, 255, 255) !important;

  font-weight: 600;
}
.main-navigation {
  position: absolute;
  top: 2.8125rem;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
}

.navbar-nav .dropdown-toggle::after {
  display: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.nav-link:hover {
  color: var(--primary-color) !important;
}
.nav-link.show {
  color: var(--primary-color) !important;
}
.dropdown-item {
  display: flex;
  width: 275px;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 2rem;
  transition: all 0.3s ease-in;
}
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active {
  background-color: #f8f8f8;
  color: var(--primary-color);
}
.dropdown-svg svg {
  transition: transform 0.3s cubic-bezier(0.4, 2, 0.4, 1), color 0.2s;
}
.nav-link.show .dropdown-svg svg {
  transform: rotate(90deg);
}
/* Navigation Mobile */
.offcanvas {
    background-color: black;
    background-image: url("../images/background-image-nav.png");
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.offcanvas-navbar-nav{
    gap: 1rem;
    align-items: flex-start;
}
.btn-close.white {
  filter: invert(1);
}
.offcanvas-body{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 1.25rem;
}
.contact-info-mobile-menu a{
    color: white !important;
}
.contact-info-mobile-menu p{
    font-size: 0.75rem;
}
.contact-info-mobile-menu h4{
    font-size: 0.875rem !important;
}
.offcanvas-body-logo{
    right: -6rem;
    top: 19rem;
    opacity: 0.2;
}
/* Secondary Hedear*/
.navbar-secondary {
  background-color: black;
  top: 1.8125rem;
  padding: 1rem 0rem;
}
.secondary-navigation-social-wrapper {
  position: relative;
}
.secondary-navigation-social-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 0;
}

/* Hero */
@keyframes heroZoom {
  0% {
    background-size: 100%;
  }
  50% {
    background-size: 107%;
  }
  100% {
    background-size: 100%;
  }
}
.hero {
  padding-top: 120px;
  height: 85vh;
  background-image: url(../images/hero-bg.png);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: heroZoom 8s ease-in-out infinite;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 76%);
  z-index: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.hero-content {
  position: relative;
  z-index: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 2rem;
}
.hero-content h1 {
  font-size: 3.75rem;
  font-weight: 700;
  max-width: 625px;
  width: 100%;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
}
.hero-content h1::before {
  content: "";
  display: block;
  width: 593px;
  height: 2px;
  background: linear-gradient(90deg, #ffffff 50%, rgba(255, 255, 255, 0) 80%);
  margin: 0 auto;
  position: absolute;
  bottom: -1rem;
}
.hero-content p {
  font-weight: 400;
  color: #ffffff;
  max-width: 401px;
  width: 100%;
  margin-bottom: 2rem;
}
.hero-buttons {
  margin-top: 1rem;
}
.hero-numbers {
  position: relative;
  z-index: 1;
  color: white;
  align-self: flex-start;
  margin-bottom: 3rem;
}
.hero-number h2 {
  font-size: 2rem;
  margin-top: 1rem;
  margin-bottom: 0rem !important;
}
.hero-number p {
  font-size: 0.875rem;
}
.hero-number-line {
  width: 1px;
  height: 91px;
  background: #ffffff;
}
.hero-svg {
  width: 100%;
}
/* Services*/
.service {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  position: relative;
}
.services-content {
  align-items: center;
  justify-content: center;
}
.service-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: #eee;
  background-size: 128%;
  background-position: center;
  transition: background-size .5s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}

.service-card:hover {
  background-size: 140%;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(
    90deg,
    rgba(120,120,120,0.7) 0%,
    rgba(0, 0, 0, 0) 76%
  );
  z-index: 1;
  border-radius: 10px;
  pointer-events: none;
}
.service-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}
.service-content p {
  font-size: 0.875rem;
  line-height: 120%;
  color: white;
  max-width: 345px;
  width: 100%;
}
.service-card {
  padding: 2rem 0;
  padding-left: 2rem;
  padding-right: 2rem;
}

.service-card div{
    position: relative;
    z-index: 1;
}
.service-secondary::before {
  background: linear-gradient(90deg, black 0%, rgba(0, 0, 0, 0) 76%);
}
.services-content.sections h2::before {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    #000 50%,
    rgba(255, 255, 255, 0) 100%
  );
  left: 50%;
  transform: translateX(-50%);
}


/* Projects*/
.google-reviews-wrapper {
  background-color: var(--primary-color);
  width: 492px;
  height: 127px;
  border-radius: 10px;
}
.google-reviews {
  background-color: white;
  border-radius: 10px;
  padding: 1rem 2rem;
  box-shadow: 0 12px 12px 0 rgba(0, 0, 0, 0.08);
}
.google-reviews p {
  font-size: 1rem;
  font-weight: 600;
}
.google-reviews p span {
  text-decoration: underline;
}
.stars {
  color: var(--primary-color);
}
/* Service Splide*/
.project-splide {
  height: 400px;
  border-radius: 10px;
  position: relative;
}

.project-splide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, black -4%, rgba(0, 0, 0, 0) 93%);
  z-index: 0;
  border-radius: 10px;
}
.splide-tabs {
  border-bottom: 1px solid #ececec;
  gap: 1.5rem;
  margin-bottom: 24px;
}
.splide-tab {
  color: #c2c2c2;
  font-weight: 500;
  cursor: pointer;
  font-size: 20px;
  transition: color 0.2s;
}
.splide-tab.active {
  color: #000;
  font-weight: 700;
  border-bottom: 2px solid #000;
}
/* About us*/
.about-us {
  background-color: #f8f8f8;
  padding-top: 6.25rem;
  padding-bottom: 8.75rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.images-container {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  height: 100%;
  position: relative;
  z-index: 1;
}
.images-container img {
  border-radius: 10px;
}
.image-large {
  flex: 2;
  margin-bottom: 60px;
  height: 400px;
  width: 300px;
}
.image-large img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.image-small {
  flex: 1;
  height: 364px;
  width: 222px;
}
.image-small img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.about-us-background-svg {
  top: -2rem;
  right: -2rem;
  z-index: 0;
}
/* News */
.news {
  max-width: 414px;
  width: 100%;
  height: 250px;
  background-image: url("../images/Aktuality.png");
  border-radius: 10px;
  position: relative;
}
.news-card {
  padding: 2rem;
  padding-left: 2rem;
  position: relative;
  z-index: 1;
  height: 250px;
  background-size: 110%;
  background-position: center;
    border-radius: 10px;
    transition: background-size 0.5s cubic-bezier(.4,0,.2,1);
}
.news-card:hover{
  background-size: 140%;
}
.news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, black -4%, rgba(0, 0, 0, 0) 93%);
  z-index: 0;
  border-radius: 10px;
  pointer-events: none;
}

.news-new {
  margin-bottom: 2rem;
}
button.news-arrow-prev.btn-arrow {
  border: none;
  border-radius: 10px;
}
button.news-arrow-next.btn-arrow {
  border: none;
  border-radius: 10px;
}
.news-info span {
  background: linear-gradient(90deg, #ffbe00 0%, #ffef45 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.news-info h4 {
  font-weight: 600;
  font-size: 1.5rem;
}
/* Contact */
.contact-content {
  background-color: var(--primary-color);
  border-radius: 10px;
  padding: 0 4rem;
  padding-top: 4.5rem;
  padding-bottom: 3.875rem;
}
.contact-info {
  gap: 3.875rem;
}
.contact-info p {
  font-weight: 600;
}
.contact-info h4 {
  font-size: 1rem;
  font-weight: 600;
}
.company-location iframe {
  max-width: 100%;
  width: 100%;
  height: 200px;
  border-radius: 10px;
}
.company-info h4 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.company-info p {
  font-size: 0.75rem;
  font-weight: 600;
}
.company-info h5 {
  font-size: 1rem;
  font-weight: 700;
}
.contact-form {
  max-width: 500px;

  border-radius: 8px;
}
.form-group {
  margin-bottom: 1.625rem;
}
.form-row {
  display: flex;
  gap: 15px;
}
.form-row .form-group {
  flex: 1;
}
label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
  font-size: 12px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  background: white;
  outline: none;
  transition: box-shadow 0.3s ease;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}
textarea {
  height: 120px;
  resize: vertical;
  font-family: Arial, sans-serif;
  font-size: 14px;
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 34px;
}
input[type="checkbox"] {
  margin-top: 3px;
  transform: scale(1.2);
}
.checkbox-label {
  font-weight: normal;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  margin-bottom: 0;
  font-weight: 700;
}
.submit-btn {
  width: 100%;
  padding: 16px;
  background: #000;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
  z-index: 1;
}
.submit-btn:hover {
  background: #333;
  color: white;
}
.submit-btn:active {
  transform: translateY(1px);
}
::placeholder {
  color: #999;
  opacity: 1;
}
#contactFormFields{
    position: relative;
    z-index: 2;
}
/* Footer*/
.footer-contact a{
    color: white;
    transition: color 0.3s ease-out;
}
.footer-contact a:hover{
    color: var(--primary-color);
}
.footer {
  position: relative;
  background: #000;
  color: #fff;
  font-size: 1rem;
  overflow: hidden;
  padding-top: 64px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  padding-top: 50px;
  padding-bottom: 51px;
  position: relative;
  z-index: 2;
}
.footer-logo svg {
  width: 180px;
  height: 36px;
}
.footer-logo::before {
  content: "";
  display: block;
  width: 593px;
  height: 2px;
  background: linear-gradient(90deg, #ffffff 50%, rgba(255, 255, 255, 0) 80%);
  margin: 0 auto;
  position: absolute;
  bottom: -1rem;
}
.footer-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2.0625rem;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li {
  margin-bottom: 1rem;
}
.footer-list a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.875rem;
}
.footer-list a:hover {
  color: #ffcb08;
}
.footer-contact div {
  display: flex;
  align-items: center;
  margin-bottom: 0.7rem;
}
.footer-icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  margin-right: 0.5em;
  vertical-align: middle;
}
.footer-contact {
  font-size: 14px;
}

.footer-workers {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 180px;
  display: flex;
  align-items: end;
}
.footer-workers img {
  height: 459px;
  object-fit: contain;
  display: block;
}
.footer-bottom {
  background: #ffcb08;
  padding: 0;
}
.footer-bottom-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 2rem;
  padding: 0.8rem 0 0.8rem 0;
}
.footer-bottom-content a {
  color: #000;
  text-decoration: underline;
  font-weight: 500;
  font-size: 0.875rem;
}

/* Project Page */
.project-page-img {
  width: 100%;
  height: 476px;
}
.splide__track {
  height: 100%;
}
.splide__slide {
  height: 100%;
  overflow: hidden;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.project-page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.images-count {
  top: 2rem;
  left: 2rem;
  background-color: white;
  padding: 0.5rem;
  border-radius: 10px;
}
.images-count p {
  font-size: 14px;
  font-weight: 600;
}
.images-navigation {
  bottom: 2rem;
  right: 2rem;
}
.project-page-image{
    height: 135px;
}
.project-page-images img {
  height: 100%;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.project-more-images {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f8f8;
  border-radius: 10px;
}
.projects-tab-pane { display: none; }
 .projects-tab-pane.active { display: block; }
 .splide-tab { cursor: pointer; user-select: none; transition: all .2s;  }

/* Projects Page*/
.project-page{
    margin-top: 5.813rem;
}
.breadcrumb{
    padding: 1rem 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "|";
  color: #000000;
  padding: 0 8px;
}
.breadcrumb-item.active{
    color: black;
    font-weight: 700;
}
.breadcrumb-item a {
    color: black;
    font-weight: 400;
    text-decoration: none;
}
/* Project Page */
#projectSplide .splide__slide{
    border-radius: 10px;
    position: relative;
}
#projectSplide .slide-overlay {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* úroveň tmavosti */
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 10px;
}
#projectSplide .splide__slide:hover .slide-overlay {
  opacity: 1;
}
.project-badge{
    background-color: #F8F8F8;
}
.project-images-count{
    font-size: 14px;
    font-weight: 600;
}
/* Pagination */
.pagination {
    background-color: #F8F8F8;
    padding: 2rem;
    gap: 1rem;
    border-radius: 10px;
}
.active>.page-link, .page-link.active{
    background-color: var(--primary-color);
    font-size: 0.875rem;
    padding: 1rem;
    border: none;
     font-weight: 600;
}
.page-link{
    padding: 1rem;
    font-size: 0.875rem;
    border-radius: 10px;
    color: black;
    border: none;
    font-weight: 600;
}
.page-link.dropdown-toggle::after {
  display: none !important;
}
.page-link:focus, .page-link:active {
  outline: none !important;
  background-color: #ffbf0080;
  color: black;
  box-shadow: 0 0 0 2px #ffe082;
}

.pagination .page-link:hover {
  background: #ffbf0041;
  color: #111;
  transition: background 0.15s, color 0.15s;
  outline: none !important;
  border: none !important;
}

/* Aktualita */
.new-header{
    padding: 72px 88px;
    border-radius: 10px;
    position: relative;
}
.new-header::before{
   content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 76%);
  border-radius: 10px;
  z-index: 0;
}
.new-header h2{
    font-size: 50px;
    font-weight: 600;
    color: white;
    position: relative;
    z-index: 1;
}
.new-header span.date{
    background: linear-gradient(90deg, #ffbe00 0%, #ffef45 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    position: relative;
    z-index: 1;
}
.new-content h3{
    font-weight: 700;
    font-size: 2rem;
    margin-top: 2rem;
}
/* Sidepanel */
#sidepanel {
  background: #fff;
  box-shadow: 0px 15px 20px 0px rgba(0,0,0,0.08);
  border-radius: 10px;
   position: sticky;
  top: 100px;
  z-index: 2;
  overflow-y: auto;
  
}

.sidepanel-step{
    padding: 1rem;
    background: transparent;
    font-weight: 600;
    width: 100%;
    display: flex;
    justify-content: space-between;
    border: none;
    text-align: start;
}

.sidepanel-step:hover{
    color: var(--primary-color);
    background-color: #F8F8F8;
    transition: color 0.3s ease, background-color 0.3s ease;
}
/* 404 */
.page-404{
    height: 43.9vh;
}
.heading-404{
    font-size: 10rem;
}
/* Service Page */
.breadcrumb.is-service{
    position: relative;
    z-index: 2;
    padding: 0;
}
.breadcrumb.is-service,
.breadcrumb.is-service .breadcrumb-item,
.breadcrumb.is-service .breadcrumb-item a,
.breadcrumb.is-service .breadcrumb-item.active {
    color: white !important;
}
.breadcrumb.is-service .breadcrumb-item a {
    color: white !important;
   
}
.breadcrumb.is-service .breadcrumb-item.active {
    color: white !important;
}
.breadcrumb.is-service .breadcrumb-item::before {
    color: white !important;
}
.about-us-service{
    background-color: white;
    padding-top: 30px;
    padding-bottom: 50px;
}
.see-more-gallery{
    bottom: 2rem;
    right: 2rem;
    width: fit-content;
    height: fit-content;
    padding: 0.5rem;
    background-color: white;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.see-more-gallery p{
    font-size: 12px;
}
#newsSplide .splide__slide {
    border-radius: 0;
}
.service-content-page p{
    margin-bottom: 0 !important;
}

.checkbox-label a {
    color: #000000;
    text-decoration: underline;
}
.form-check-input:focus{
    box-shadow: none;
}
.form-check-input:checked{
    background-color: black;
    border-color: black;
}
.form-check-input{
    border: none;
}
.sections.gdpr p{
    max-width: fit-content;
}
.news-row{
    row-gap: 2rem;
}
.alert-success{
    background-color: black !important;
    color: white !important;
    border: white !important;
}
.offcanvas {
  --bs-offcanvas-border-width: 0;
}

.align-content-between{
    align-content: space-between;
}