.site-inner {
    max-width: 100% !important;
}


.hero-header .hero__wrap {
    background-color: #ececec;
    background-size: 1340px auto;
    background-position: bottom center;
    padding-bottom: 350px;
}

.hero-header .hero__content .btn:hover {
    background: #fff;
    color: #dc4c18;
    border: 1px solid #dc4c18;
}

@media (min-width: 1024px) {

    .reference--office .image-box img.carousel-img {
        height: 600px;
    }

    .about-me .hero__row .hero__col img.img-fluid {
        object-fit: cover;
        width: 100%;
        height: 400px;
        object-position: center center;
    }

}

.cmplz-placeholder-parent {
    height: 100%;
}

.contact .contact__grid {
		grid-template-columns: 60% 40%; 
		grid-template-areas:
		"d e"
		"d e";
}

.block--pricing {
    padding-bottom: 10rem;
}

.pricing-grid {
  grid-template-columns: 1fr;
  column-gap: 100px;
  row-gap: 3rem;
}

@media (min-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-columns{
  column-count: 1;
  column-gap: 10rem;            /* mezera mezi levým a pravým sloupcem */
}

@media (min-width: 768px){
  .pricing-columns{ column-count: 2; }
}

.pricing__category{
  break-inside: avoid;         /* aby se sekce neroztrhla mezi sloupce */
  margin: 0 0 2.5rem 0;        /* mezera mezi sekcema */
}

.pricing__row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: .15rem 0;
}

.pricing__price{
  text-align: right;
  white-space: nowrap;
}


.pruh {
    background: #549ac4;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 15px;
}

.pruh p {
    margin-bottom: 0;
}

.pruh a {
    color: #fff;
    text-decoration: underline;
}

.pruh a:hover {
    text-decoration: none;
}

.open-close-button {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000;
}

.close-open-icon {
    fill: #549ac4;
    width: 30px;
    height: 30px;
    transform: rotate(180deg);
}

.close-open-icon.is-rotated {
    transform: rotate(0deg);
}

.cenik-contents {
    max-height: 0;
    overflow: hidden;
    transition: 250ms ease-in-out max-height;
}

.cenik-contents.is-visible {
    max-height: 1000px;
}