.hero-simple__nav ul{
    margin: 40px 0 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.hero-simple__nav ul li{
    list-style-type: none;
}

body .hero-simple__nav ul li a:hover,
body .hero-simple__nav ul li a:active,
body .hero-simple__nav ul li a:focus,
body .hero-simple__nav ul li.active a{
  box-shadow: 0 0 10px rgba(0, 149, 255, 0.6);
  border-color: #0095ff !important;
  color: #0095ff !important;
  background: transparent;
}

.hero-simple__nav ul li a{
    text-decoration: none;
    border-radius: 100px;
    border: 2px solid #2D2D2D;
    padding: 10px 15px;
    font-size: 14px;
    display: block;
    transition: color 0.3s, border-color 0.3s, background 0.3s, box-shadow 0.3s;
    text-align: center;
    min-height: 42px;
    height: auto;
    color: #2D2D2D;
    background: #fff;
    box-shadow: none;
}


@media(max-width: 767px){
    .hero-simple__nav ul{
        gap: 8px;
        margin: 30px 0 0 0;
    }

    .hero-simple__nav ul li a{
        padding: 8px 8px;
        min-height: 0;
        display: flex;
        align-items: center;
    }
}

.header-nav ul{
  gap: 30px;
}

.header-nav ul li.current_page_item > a,
.header-nav ul li.current-page-ancestor > a{
    color: #0095ff;
}

.bread-wrapper{
    background: #e3f3ff;
    padding: 15px 0;
}

.breadcrumbs span{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumbs span span{
    padding: 0 10px;
}

.breadcrumbs span span a{
    transition: color 0.3s;
}

.breadcrumbs span span a:hover{
    color: #0095ff;
}

.breadcrumbs span span:first-of-type a{
    font-size: 0;
    background: url('../images/home.svg') no-repeat center center;
    width: 21px;
    height: 21px;
    display: inline-block;
}

.breadcrumbs span span:first-of-type{
    padding-left: 0;
    font-size: 0;
}

.breadcrumbs span span:last-of-type{
    padding-right: 0;
}

.header-nav ul li ul li .menu-icon{
    background: none !important;
    font-size: 0;
}

.header-nav ul li ul li{
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-nav ul li ul li .menu-icon svg{
    fill: #2d2d2d;
    width: 21px;
}


.header-nav ul li ul li:hover .menu-icon svg{
    fill: #0095ff;
}

.header-nav ul li.current_page_item > .menu-icon svg, .header-nav ul li.current-page-ancestor > .menu-icon svg{
    fill: #0095ff;
}

@media(max-width: 767px){
    .breadcrumbs span{
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    .bread-wrapper .in{
        overflow: auto;
        padding-bottom: 10px;
        margin-bottom: -10px;
    }
}

.img-comp-container {
  position: relative;
  height: 500px; /*should be the same height as the images*/
}

.before-after__wrapper{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.before-after__title.title{
  margin-bottom: 40px;
}







.before-after-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  cursor: grab;
}

.before-after-slider *{
  user-select: none;
}

.after-image {
  display: block;
  height: 100%;
}

.after-image img{
  max-height: 500px;
object-fit: cover;
height: 100%;
max-width: none;
width: 100%;
}

.before-image {
  position: absolute;
  height: 100%;
  width: 50%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 2;
}

.before-image img{
  height: 100%;
  max-width: none;
  max-height: 500px;
object-fit: cover;
}

.resizer {
  position: absolute;
  display: flex;
  align-items: center;
  z-index: 5;
  top: 0;
  left: 50%;
  height: 100%;
  width: 4px;
  background: white;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.resizer:after {
  content: "";
  background: #0095ff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  position: absolute;
  margin: 0 0 0 -18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid white;
}

.resizer:before{
  content: "";
    width: 10px;
    height: 10px;
    border-radius: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: transform 0.15s;
}

.resizer:hover:before{
  transform: translate(-50%, -50%) scale(1.5);
}

.after-image:before,
.before-image:before{
  content: "Před";
  background: #0095ff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  pointer-events: none;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  padding: 10px 15px;
}

.after-image:before{
  content: "Po";
  left: initial;
  right: 0;
  z-index: 1;
}

@media(max-width: 1200px){
  .after-image img,
  .before-image img{
    max-height: 400px;
  }
}

@media(max-width: 991px){
  .after-image img,
  .before-image img{
    max-height: 350px;
  }
}

@media(max-width: 767px){
  .before-after__title.title{
    margin-bottom: 20px;
  }

  .before-after__wrapper{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .after-image img,
  .before-image img{
    max-height: 300px;
  }
}




.hero-simple__opener{
  position: relative;
  text-align: center;
  padding: 20px 0;
  max-width: 200px;
  margin: 0 auto;
  display: inline-flex;
  width: 100%;
  justify-content: center;
  cursor: pointer;
}

.hero-simple__opener:after,
.hero-simple__opener:before{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 22px solid transparent;
  border-left: 22px solid transparent;
  border-top: 22px solid #2D2D2D;
  border-bottom: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.hero-simple__opener p span:last-of-type{
  display: none;
}

.hero-simple__opener:after{
  border-top: 23px solid #fff;
  transform: translateX(-50%) scale(0.8);
  bottom: 2px;
}

.hero-simple__opener p{
  margin: 0 0 10px 0;
  color: #2D2D2D;
}

.hero-simple__opener p:before{
  content: "";
  width: 100%;
  height: 3px;
  background: #2D2D2D;
  position: absolute;
  bottom: 19px;
  left: 0;
}

.hero-simple__wrapper{
  display: none;
}

.hero-simple__nav.is-active .hero-simple__wrapper{
  display: block;
}

.hero-simple__nav.is-active .hero-simple__helper{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s;
}

.pages-is-open .hero-simple__nav.is-active .hero-simple__helper{
  grid-template-rows: 1fr;
}


.hero-simple__nav.is-active .hero-simple__hider{
  overflow: hidden;
}

.pages-is-open .hero-simple__opener p span:last-of-type{
  display: inline-block;
}

.pages-is-open .hero-simple__opener p span:first-of-type{
  display: none;
}

@media(max-width: 767px){
  .hero-simple__wrapper{
    display: block;
  }

   .hero-simple__helper{
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s;
  }

   .hero-simple__hider{
    overflow: hidden;
  }

  .pages-is-open .hero-simple__helper{
    grid-template-rows: 1fr;
  }
}

/* New menu */
.header-nav{
  padding: 10px 0;
}

.header-nav li a{
  min-height: 30px;
}

.header__helper{
  display: flex;
  align-items: center;
  gap: 30px;
}

@media(max-width: 1024px){
  .header__helper > img{
    max-width: 200px;
  }
}

@media(max-width: 767px){
  .header__helper > img{
    max-width: 120px;
  }

  .header__helper{
    gap: 10px;
  }
}

.review-box{
  padding: 5px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  border-radius: 15px;
  margin: 0 0 0 20px;
}

@media(max-width: 767px){
  .review-box{
    margin: 0;
  }
}

.review-box > img{
  width: 20px;
  height: 20px;
}

.review-box__row{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

.review-box__stars{
  color: #ff8000;
  font-size: 16px;
  transform: translateY(-1px)
}

.review-box__text{
  font-size: 12px;
}

@media(max-width: 1024px){

  .header__helper{
    gap: 15px;
  }

  .header-nav ul{
    gap: 0;
  }
}

.header-nav ul{
  justify-content: space-between;
}

@media(max-width: 767px){
  .review-box{
    flex-direction: row;
    position: absolute;
    left: 0;
    bottom: -30px;
    width: 100%;
    gap: 10px;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    border-bottom: 1px solid #c5e5fd;
  }

  .review-box__row{
    gap: 5px;
  }

  .review-box__stars{
    transform: translateY(-1px);
    font-size: 15px;
  }

  .hero__box{
    padding-top: 20px;
  }

  .review-box__text{
    font-size: 12px;
    line-height: 1;
  }

  body.is-scrolled .review-box{
    opacity: 0;
  }
}

@media(min-width: 1025px){
  .header-nav .menu-header_menu_main-container > ul > li:nth-of-type(8) > a,
  .header-nav .menu-header_menu_main-container > ul > li:nth-of-type(7) > a{
    padding-left: 0;
  }
}

.header-nav__opener{
  filter: brightness(0%);
}

.header-nav ul li.current_page_item > .header-nav__opener, .header-nav ul li.current-page-ancestor > .header-nav__opener,
.header-nav ul li:hover > .header-nav__opener{
  filter: none;
}

.header .header__menu > .in{
  position: relative;
}

.menu-header_menu_short-container{
  position: absolute;
  right: 215px;
  top: -66px;
}

@media(max-width: 991px){
  .menu-header_menu_short-container{
    position: relative;
    right: 0;
    top: 0;
  }

  .menu-header_menu_main-container,
  .menu-header_menu_short-container{
    height: auto;
  }

  .header-nav{
    padding: 50px 0;
  }

  .header-nav ul{
    padding: 0 20px;
  }

  .menu-header_menu_short-container ul li a{
    padding-left: 35px;
  }
}

@media(max-width: 767px){
  .review-box{
    border-radius: 0;
  }
}

.wp-menu-img-before .header-nav__opener img{
  margin-right: 0;
}

.header-nav ul li ul li span{
  background: none !important;
}

.wp-menu-img-before img{
  margin-right: 0;
}

.header-nav ul li ul li.wp-menu-img-before img{
  margin-right: 13px;
}

.header-nav ul li ul li a span{
  width: auto;
  height: auto;
  display: inline-block;
}

.header-nav ul li ul li a span:first-of-type{
  display: none;
}

.header-nav ul li ul li a{
  gap: 0;
}

@media(max-width: 1025px){
  .header-nav ul li a{
    justify-content: flex-start;
  }

  .header-nav ul li a span,
  .header-nav ul li a>img{
    height: auto;
  }

  .header-nav ul li a{
    font-size: 16px;
  }
}

@media(max-width: 767px){
  .review-box{
    background: #fff;
  }
}
#elfsight-container>div>div>div>div>div>div>a{ pointer-events: none !important;
filter: blur(230px) !important;
width: 0; }

.bCpsfO{
  gap: 2px !important;
}

.gASWEy{
  gap: 0 !important;
}

@media(max-width: 767px){
  .elfsight-app-07db06b0-99e3-49d5-a660-c294bbc072b5 .bCpsfO,
  .elfsight-app-07db06b0-99e3-49d5-a660-c294bbc072b5 .gASWEy{
    flex-direction: row;
    gap: 5px;
  }

  .header__helper div.elfsight-app-07db06b0-99e3-49d5-a660-c294bbc072b5{
    background: #fff;
    position: fixed;
    top: 94px;
    left: 0;
    width: 100%;
    padding: 5px 0;
  }

  .site:has(.elfsight-app-4c101a41-b822-478d-a495-d8fe8cb820bf) .hero{
    padding-top: 0;
  }

  .elfsight-app-07db06b0-99e3-49d5-a660-c294bbc072b5 .hGWqhT{
    flex-direction: row;
  }
}
