#about-us {
    --color-yellow: #fdc50e;
    --color-brown: #4a2e20;
    --color-dark-brown: #3a1c0e;
    --color-orange: #ff8400;

    font-family: "Roboto";
    color: #4a2e20;
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .header-banner-desktop {
        display: none;
    }

    .header-banner-mobile {
        display: block;
    }
}

@media (min-width: 769px) {
    .header-banner-desktop {
        display: block;
    }

    .header-banner-mobile {
        display: none;
    }
}

#about-us .tri-bloky {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

#about-us .tri-bloky .obrazek img {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}

#about-us .tri-bloky .obrazek img.foto {
    max-width: 350px;
}

#about-us .oddelovac {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#about-us .cara {
    width: 3px;
    height: 120px;
    background-color: #ff7b00;
}

#about-us .tecka {
    width: 10px;
    height: 10px;
    background-color: #ff7b00;
    border-radius: 50%;
    margin-top: 6px;
}

#about-us .spodni-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: #5b2b3a;
    font-weight: 500;
}

/* Nadpis  dole */
#about-us .support-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #5b2b3a;
    margin-bottom: 30px;
    line-height: 1.3;
}

#about-us .support-heading span {
    background-color: #a36643;
    color: #f7d147;
    padding: 0px 40px 12px;
    border-radius: 999px;
    display: inline-block;
}

#about-us .cta-btn {
    background-color: var(--color-orange);
    color: var(--color-dark-brown);
    font-family: 'Knofedt', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: clamp(1rem, 5.5vw, 3rem);
    padding: 0px 65px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 30px;
}
#about-us .cta-btn:hover {
    background-color: #e67300;         /* tmavší oranžová při přejetí */
}

#about-us .story-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#about-us .story-wrapper .podpis {
    position: absolute;
    top: 5px;
    right: 235px;
    width: 10%;
}

#about-us .intro {
    position: relative;
    display: inline-block;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

#about-us .intro::before,
#about-us .intro::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

#about-us .intro::before {
    left: 28px;
    top: -5px;
    background-image: url('/user/documents/theme/img/quotationMarksLeft.png');
}

#about-us .intro::after {
    right: -15px;
    bottom: 15px;
    background-image: url('/user/documents/theme/img/quotationMarksRight.png');
}

#about-us h2.support-heading {
    font-size: 55px;
    font-family: 'Knofedt', sans-serif;
    color: #4a2d27;
    margin-top: -10px;
}

#about-us .support{
    position: relative;
    isolation: isolate;
    padding: 40px 0;
}

#about-us .support::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    background: #f7d147;
    z-index: -1;
}

#about-us .img-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 5px auto;
}

#about-us .img-flex img {
    max-width: 150px;
    height: auto;
}

.mySwiper{
    width:100%;
    max-width:1100px;
    height:360px;
    margin:auto;
    padding:40px 0;
    border-radius:10px;
    overflow:visible;
}
.mySwiper .swiper-wrapper{align-items:center}

.mySwiper .swiper-slide{
    display:flex;
    justify-content:center;
    align-items:center;
    transform:scale(.75);
    opacity:.5;
    transition:transform .4s ease, opacity .3s ease;
    z-index:1;
}
.mySwiper .swiper-slide-prev,
.mySwiper .swiper-slide-next{
    transform:scale(.9);
    opacity:.85;
    z-index:2;
}
.mySwiper .swiper-slide-active{
    transform: translate3d(0,0,0) scale(1.8) !important;
    opacity:1;
    z-index:3;
}

.mySwiper .swiper-slide img{
    width:auto;
    max-width:260px;
    max-height:80%;
    height:auto;
    display:block;
    border-radius:10px;
}

.mySwiper .swiper-button-prev,
.mySwiper .swiper-button-next{ color: var(--color-dark-brown) }

@media (max-width:768px){
    .mySwiper .swiper-slide img {
        max-width: 200px;
    }

    .mySwiper{height:280px}
    .mySwiper .swiper-slide{transform:scale(.7)}
    .mySwiper .swiper-slide-prev,
    .mySwiper .swiper-slide-next{transform:scale(.85)}
    .mySwiper .swiper-slide-active{transform:scale(1.2)}

    #about-us .tri-bloky {
        flex-direction: column;
    }

    #about-us .oddelovac {
        margin: 20px 0;
    }

    #about-us .img-flex {
        flex-direction: column;
        gap: 15px;
    }

    #about-us .intro::before,
    #about-us .intro::after {
        display: none;
    }

    #about-us .story-wrapper .podpis {
        top: 0px;
        right: 8px;
        width: 80px;
    }

    #about-us .story-wrapper {
        padding-top: 20px;
    }

    #about-us .intro {
        padding: 0 40px;
    }
}

@media (min-width: 769px) and (max-width: 1439px) {
    #about-us .story-wrapper .podpis {
        top: 0px;
        left: calc(50% + 270px);
        width: 100px;
    }
}

#o-nas {
    margin-top: -130px;
}

body.in-nas-pribeh .tri-bloky.one .obrazek.right {
    margin-top: -60px;
}

body.in-nas-pribeh .tri-bloky.two .obrazek.left {
    margin-bottom: -50px;
}

body.in-nas-pribeh .tri-bloky.three .obrazek.right {
    margin-top: -45px;
}

body.in-nas-pribeh .tri-bloky {
    flex-direction: column !important;
}

@media (min-width: 768px) {
    body.in-nas-pribeh #action-stripe {
        margin-top: 170px !important;
    }
}

@media (min-width: 800px) {
    body.in-nas-pribeh .tri-bloky {
        flex-direction: row !important;
    }

    body.in-nas-pribeh .tri-bloky.one .obrazek.right,
    body.in-nas-pribeh .tri-bloky.two .obrazek.left,
    body.in-nas-pribeh .tri-bloky.three .obrazek.right {
        margin-top: 0;
        margin-bottom: 0;
    }
}