@charset "utf-8";

/* Copyright ENDEA */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --accent-green-10: #123D11;
    --accent-green-08: #416240;
    --accent-green-03: #B2C0B2;
    --accent-green-02: #CFD8CF;
    --accent-green-01: #E6EBE6;

    --accent-orange-10: #D7903D;
    --accent-orange-08: #D69A40;
    --accent-orange-03: #EACC9F;
    --accent-orange-02: #F2DFC2;
    --accent-orange-01: #F9F1E5;
    --accent-orange-dirty: #976315;

    --black-color: #141414;
    --white-color: #FFFFFF;
    --light-gray: #F8F8F8;
    --dark-gray: #707070;

    --shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
    --shadow-hover: 3px 3px 10px rgba(0, 0, 0, 0.6);
}

html, body {
    background: var(--white-color);
    font-family: "Montserrat", sans-serif;
    line-height: 1.7;
    color: var(--black-color);
}

body {
    padding-top: 60px;
    padding-bottom: 0px;
    font-size: 14px;
}

body.main-page {
    padding-top: 60px;
}

@media (min-width: 992px) {

    body {
        padding-top: 80px;
        font-size: 16px;
    }
    body.main-page {
        padding-top: 50px;
    }
}

@media (min-width: 1600px) {

    body {
        font-size: 17px;
    }
}


h1, .h1, h2, .h2 {
    line-height: 1.5;
    margin-top: 40px;
    margin-bottom: 20px;
}

h3, .h3, h4, .h4 {
    line-height: 1.5;
    margin-top: 30px;
    margin-bottom: 20px;
}

h1, .h1 {
    font-size: 22px;
    font-weight: 600;
}

h2, .h2 {
    font-size: 19px;
    font-weight: 600;
}

h3, .h3 {
    font-size: 17px;
    font-weight: 600;
}

h4, .h4 {
    font-size: 17px;
    font-weight: 500;
}

@media (min-width: 768px) {

    h1, .h1 {
      font-size: 33px;
    }
    h2, .h2 {
        font-size: 26px;
    }
    h3, .h3 {
        font-size: 19px;
    }
    h4, .h4 {
        font-size: 19px;
    }
}

@media (min-width: 992px) {

    h3, .h3 {
        font-size: 20px;
    }
}

@media (min-width: 1600px) {

    h3, .h3 {
        font-size: 22px;
    }
}


a {
    color: var(--accent-green-10);
    text-decoration: none;
    transition: color .3s ease-in-out;
}
a:hover,
a:focus {
    text-decoration: none;
    color: var(--accent-orange-10);
}

.m-site-wrapper a {
    font-weight: 600;
}


p:last-of-type {
    margin: 0;
}


/* --- strona główna: banner --- */

.mb-wrapper {
    position: relative;
    margin-bottom: 50px;
}

.m-banner {
    margin: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.4), rgba(0,0,0,0)), url(../img/banner-small.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-bottom-left-radius: 30px;
}

.m-banner-fx {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 322px;
}

.m-banner-txt {
    width: 100%;
}

.m-banner-txt h1 {
    margin: 0;
    color: var(--white-color);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    text-shadow: var(--shadow);
}

span.ban-span {
    color: var(--accent-orange-10);
}

.l-nfz {
    margin: 20px 0 0;
}

.l-nfz img {
    background-color: #2E2383;
    padding: 15px;
    width: 140px;
    height: auto;
    border-radius: 10px;
}

@media (min-width: 360px) {

    .m-banner-txt h1 {
        font-size: 26px;
    }
}

@media (min-width: 576px) {

    .m-banner-txt h1 {
        font-size: 30px;
    }
    .l-nfz {
        margin: 30px 0 0;
    }
    .l-nfz img {
        width: 160px;
    }
}

@media (min-width: 768px) {

    .m-banner-fx {
        height: 360px;
    }
    .m-banner-txt h1 {
        font-size: 33px;
    }
}

@media (min-width: 992px) {

    .m-banner {
        margin: 0;
        background: linear-gradient(45deg, rgba(0,0,0,0.2), rgba(0,0,0,0)) 20%, url(../img/banner.webp);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        border-bottom-left-radius: 50px;
    }
    .m-banner-fx {
        align-items: flex-end;
        height: clamp(500px,calc(100vh - 50px),600px);
    }
    .m-banner-txt h1 {
        font-size: 38px;
    }
    .l-nfz {
        margin: 40px 0 50px;
    }
    .l-nfz img {
        padding: 20px;
        width: 200px;
    }
}

@media (min-width: 1200px) {

    .m-banner-fx {
        height: clamp(550px,calc(100vh - 50px),650px);
    }
    .m-banner-txt h1 {
        font-size: 40px;
    }
    .l-nfz {
        margin: 40px 0 60px;
    }
    .l-nfz img {
        width: 220px;
    }
}

@media (min-width: 1600px) {

    .m-banner-fx {
        height: clamp(600px,calc(100vh - 50px),750px);
    }
    .m-banner-txt h1 {
        font-size: 50px;
    }
    .l-nfz {
        margin: 50px 0 70px;
    }
    .l-nfz img {
        padding: 25px;
        width: 260px;
    }
}

@media (min-width: 1920px) {

    .m-banner-fx {
        height: clamp(700px,calc(100vh - 50px),920px);
    }
    .m-banner-txt h1 {
        font-size: 60px;
    }
    .l-nfz img {
        padding: 30px;
        width: 300px;
    }
}

@media (min-width: 1970px) {
    .m-banner {
        width: 1920px;
        margin: 0 auto;
    }
}


/* --- strona główna: wrappers --- */

.m-site-wrapper {
    margin: 50px 0;
    line-height: 1.7;
    overflow: hidden;
}
@media (min-width: 992px) {

    .m-site-wrapper {
        margin: 80px 0;
    }
}
@media (min-width: 1200px) {

    .m-site-wrapper {
        margin: 120px 0;
    }
}
@media (min-width: 1600px) {

    .m-site-wrapper {
        margin: 150px 0;
    }
}
@media (min-width: 1970px) {
    .m-site-wrapper {
        width: 1920px;
        margin-left: auto; margin-right: auto;
    }
}


/* --- m-site-fx, mr-site-fx --- */

.m-site-fx, .mr-site-fx {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 50px;
}

@media (min-width: 992px) {

    .m-site-fx {
        flex-direction: row;
    }
    .mr-site-fx {
        flex-direction: row-reverse;
    }
    .m-site-fx, .mr-site-fx {
        gap: 70px;
    }
}
@media (min-width: 1200px) {

    .m-site-fx, .mr-site-fx {
        gap: 100px;
    }
}
@media (min-width: 1600px) {

    .m-site-fx, .mr-site-fx {
        gap: 120px;
    }
}


/* --- m-site-content, m-site-img --- */

.m-site-content, .m-site-img {
    width: 100%;
}

@media (min-width: 992px) {

    .m-site-content > p {
        text-align: justify;
    }
}

.m-site-img {
    display: flex;
    justify-content: center;
}

.m-site-img img {
    max-height: 100%;
    max-width: 100%;
    border-radius: 8px;
}

@media (min-width: 768px) {

    .m-site-img img {
        max-height: 450px;
    }
}
@media (min-width: 1200px) {

    .m-site-img img {
        max-height: 500px;
    }
}

.for-wca img {
    max-height: 150px;
}

@media (min-width: 992px) {

    .for-wca img {
        margin-top: 30px;
    }
}
@media (min-width: 1920px) {

    .for-wca img {
        margin-top: 20px;
    }
}


/* --- m-site-content-66, m-site-content-33 --- */

.m-site-content-66, .m-site-content-33 {
    width: 100%;
}

@media (min-width: 992px) {

    .m-site-content-66 {
        width: 60%;
    }
    .m-site-content-33 {
        width: 40%;
    }
    .m-site-content-66 > p,
    .m-site-content-33 > p {
        text-align: justify;
    }
}

@media (min-width: 1400px) {

    .m-site-content-66 {
        width: 66.6666%;
    }
    .m-site-content-33 {
        width: 33.3333%;
    }
}


/* --- strona główna: headers --- */

.m-hd {
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .m-hd {
        margin-bottom: 50px;
    }
}
@media (min-width: 1200px) {
    .m-hd {
        margin-bottom: 60px;
    }
}
@media (min-width: 1600px) {
    .m-hd {
        margin-bottom: 80px;
    }
}

.m-hd h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    color: var(--accent-green-10);
}

@media (min-width: 420px) {

    .m-hd h2 {
        font-size: 33px;
    }
}
@media (min-width: 576px) {

    .m-hd h2 {
        font-size: 40px;
    }
}
@media (min-width: 768px) {

    .m-hd h2 {
        font-size: 45px;
    }
}
@media (min-width: 992px) {

    .m-hd h2 {
        font-size: 48px;
    }
}
@media (min-width: 1200px) {

    .m-hd h2 {
        font-size: 50px;
    }
}
@media (min-width: 1600px) {

    .m-hd h2 {
        font-size: 60px;
    }
}

.m-site-wrapper h3 {
    color: var(--accent-orange-10);
    text-transform: uppercase;
    font-weight: 600;
}

.d-btn {
    margin: 40px 0 10px;
}

.d-btn a {
    color: var(--white-color);
    font-size: 13px;
    font-weight: 500;
    background-color: var(--accent-green-10);
    border-radius: 5px;
    padding: 12px 25px;
    transition: background-color 0.3s ease-in-out;
}
.d-btn a:hover {
    background-color: var(--accent-orange-10);
}

@media (min-width: 992px) {

    .d-btn a {
        font-size: 15px;
    }
}

@media (min-width: 1600px) {

    .d-btn {
        margin: 50px 0 10px;
    }
    .d-btn a {
        font-size: 16px;
    }
}


/* --- strona główna: d-news-boxes --- */

h3.d-news-hd {
    color: var(--accent-green-10);
    text-transform: none;
    font-size: 28px;
}

.d-news-boxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.d-news-box {
    background-color: var(--accent-green-01);
    border-radius: 8px;
    padding: 20px 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.d-news-data {
    font-size: 15px;
    color: var(--accent-orange-10);
    margin-bottom: 15px;
}

.d-news-title {
    font-size: 15px;
    font-weight: 500;
}

.d-news-btn {
    text-align: right;
    margin-top: 15px;
}

.d-news-btn a {
    font-size: 13px;
    font-weight: 600;
    padding: 7px 20px;
    background-color: var(--accent-green-02);
    border-radius: 5px;
}

@media (min-width: 992px) {
    h3.d-news-hd {
        font-size: 26px;
    }
    .d-news-box {
        padding: 15px;
    }
    .d-news-data {
        margin-bottom: 5px;
    }
    .d-news-btn {
        margin-top: 8px;
    }
}

@media (min-width: 1400px) {
    h3.d-news-hd {
        font-size: 28px;
    }
    .d-news-box {
        padding: 20px 15px;
    }
    .d-news-data {
        margin-bottom: 10px;
    }
    .d-news-btn {
        margin-top: 10px;
    }
}

@media (min-width: 1600px) {
    .d-news-title {
        font-size: 16px;
    }
    .d-news-data {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .d-news-btn {
        margin-top: 15px;
    }
}


/* --- FAQ --- */

.d-faq-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 15px;
}

.d-faq-box {
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 8px;
    box-shadow: var(--shadow);
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease-in-out;
}

.d-faq-box:hover {
    background-color: var(--accent-green-01);
    box-shadow: var(--shadow-hover);
}

.d-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.d-faq-name {
    color: var(--accent-orange-10);
    font-size: 1.2em;
    font-weight: 600;
    width: calc(100% - 57px);
}

@media (min-width: 576px) {

    .d-faq-name {
        font-size: 1.4em;
    }
}

.faq-toggle {
    position: relative;
    margin-top: 5px;
    width: 27px;
    height: 27px;
    padding: 0;
    border: 0;
    background-color: transparent;
}

.faq-toggle span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: var(--accent-green-10);
    transition: all 0.3s ease-out;
}

.d-faq-box:hover .faq-toggle span {
    background: var(--accent-orange-10);
}

.faq-toggle span.d-faq-ico-1 {
    top: 13px;
    transform: rotate(90deg);
    opacity: 1;
}
.faq-toggle span.d-faq-ico-2 {
    top: 13px;
}

.d-faq-box-on span.d-faq-ico-1 {
    transform: rotate(0deg);
    opacity: 0;
}

.d-faq-answer {
    margin-top: 0;
    height: 0px;
    width: calc(100% - 57px);
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

@media (min-width: 992px) {

    .d-faq-answer {
        text-align: justify;
    }
}

.d-faq-box-on .d-faq-answer {
    margin-top: 20px;
    height: auto;
    opacity: 1;
}


/* --- podstrona: headers --- */

.s-hd {
    margin: 30px 0;
}

@media (min-width: 992px) {
    .s-hd {
        margin: 50px 0;
    }
}
@media (min-width: 1200px) {
    .s-hd {
        margin: 60px 0;
    }
}
@media (min-width: 1600px) {
    .s-hd {
        margin: 80px 0;
    }
}

.s-hd h1 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    color: var(--accent-green-10);
}

@media (min-width: 420px) {

    .s-hd h1 {
        font-size: 33px;
    }
}
@media (min-width: 576px) {

    .s-hd h1 {
        font-size: 40px;
    }
}
@media (min-width: 768px) {

    .s-hd h1 {
        font-size: 45px;
    }
}
@media (min-width: 992px) {

    .s-hd h1 {
        font-size: 50px;
    }
}
@media (min-width: 1200px) {

    .s-hd h1 {
        font-size: 55px;
    }
}
@media (min-width: 1600px) {

    .s-hd h1 {
        font-size: 65px;
    }
}

.content-wrapper-subpage::before {
    content: "";
    display: block;
    margin-bottom: 60px;
    height: 0;
    width: 100%;
    background-color: transparent;
}

@media (min-width: 1600px) {
    .content-wrapper-subpage::before {
        margin-bottom: 80px;
    }
}

.content-wrapper-subpage h2 {
    color: var(--accent-orange-10);
    text-transform: none;
}

.content-wrapper-subpage h3 {
    color: var(--accent-green-10);
    text-transform: none;
}

.content-wrapper-subpage a {
    color: var(--accent-orange-10);
    text-transform: none;
    font-weight: 600;
}

.content-wrapper-subpage a:hover {
    color: var(--accent-green-08);
}

.content-wrapper-subpage img {
    border-radius: 8px;
}

.mart-out {
    margin-top: 0;
}


/* --- s-site-fx, sr-site-fx --- */

.s-site-fx, .sr-site-fx, .s-site-therapy-fx {
    margin-top: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 50px;
}

@media (min-width: 768px) {

    .s-site-therapy-fx {
        flex-direction: row;
    }
}

@media (min-width: 992px) {

    .s-site-fx {
        flex-direction: row;
    }
    .sr-site-fx {
        flex-direction: row-reverse;
    }
    .s-site-fx, .sr-site-fx, .s-site-therapy-fx {
        gap: 70px;
    }
}
@media (min-width: 1200px) {

    .s-site-fx, .sr-site-fx, .s-site-therapy-fx {
        gap: 100px;
    }
}
@media (min-width: 1600px) {

    .s-site-fx, .sr-site-fx, .s-site-therapy-fx {
        gap: 120px;
    }
}


/* --- s-site-content, s-site-img --- */

.s-site-content, .s-site-img {
    width: 100%;
}

@media (min-width: 992px) {

    .s-site-content > p {
        text-align: justify;
    }
}

.s-site-img {
    display: flex;
    justify-content: center;
}

.s-site-img img {
    max-height: 100%;
    max-width: 100%;
    border-radius: 8px;
}

@media (min-width: 768px) {

    .s-site-img img {
        max-height: 450px;
    }
}
@media (min-width: 1200px) {

    .s-site-img img {
        max-height: 500px;
    }
}

/* --- s-site-content-70, s-site-img-30 --- */

.s-site-content-70, .s-site-img-30 {
    width: 100%;
}

@media (min-width: 992px) {

    .s-site-content-70 {
        width: 70%;
    }
    .s-site-img-30 {
        width: 30%;
    }
}

.s-site-img-30 {
    display: flex;
    justify-content: center;
}

.s-site-img-30 img {
    max-height: 100%;
    max-width: 100%;
    border-radius: 8px;
}

@media (min-width: 768px) {

    .s-site-img-30 img {
        max-height: 450px;
    }
}
@media (min-width: 1200px) {

    .s-site-img-30 img {
        max-height: 500px;
    }
}

.s-site-100, .s-site-content-100 {
    width: 100%;
}


/* --- podstrona: specjaliści --- */

.staff-fx {
    margin: 30px 0 10px;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
}

.person-wrap {
    width: 100%;
    box-shadow: var(--shadow);
    border-radius: 8px;
}

.person-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
}

@media (min-width: 576px) {

    .person-box {
        flex-direction: row;
    }
}
@media (min-width: 992px) {

    .staff-fx {
        gap: 30px;
    }
    .person-wrap {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}
@media (min-width: 1400px) {
    .staff-fx {
        margin-top: 40px;
        gap: 40px 60px;
    }
    .person-wrap {
        flex: 0 0 calc((100% - 60px) / 2);
    }
}
@media (min-width: 1600px) {
    .staff-fx {
        margin-top: 45px;
        gap: 40px 80px;
    }
    .person-wrap {
        flex: 0 0 calc((100% - 80px) / 2);
    }
}

.person-box-img {
    height: 100%;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background-color: #707070;
}

.person-box-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.person-box-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    padding: 20px 15px;
    gap: 10px;
    overflow: hidden;
}

@media (min-width: 360px) {
    .person-box-content {
        padding: 20px 15px;
    }
}
@media (min-width: 420px) {
    .person-box-img {
        aspect-ratio: 4/3;
    }
}
@media (min-width: 576px) {
    .person-box-img {
        width: 220px;
        height: 250px;
        aspect-ratio: auto;
    }
    .person-box-content {
        width: calc(100% - 220px);
        height: 250px;
        padding: 30px 20px;
        gap: 0px;
    }
}
@media (min-width: 992px) {
    .person-box-img {
        width: 176px;
        height: 200px;
    }
    .person-box-content {
        width: calc(100% - 176px);
        height: 200px;
        padding: 20px 15px 15px;
    }
}
@media (min-width: 1200px) {
    .person-box-img {
        width: 190px;
        height: 220px;
    }
    .person-box-content {
        width: calc(100% - 190px);
        height: 220px;
        padding: 25px 20px 20px;
    }
}
@media (min-width: 1400px) {
    .person-box-content {
        padding: 30px 20px 15px 25px;
    }
}
@media (min-width: 1600px) {
    .person-box-img {
        width: 220px;
        height: 250px;
    }
    .person-box-content {
        width: calc(100% - 220px);
        height: 250px;
        padding: 40px 30px 25px 35px;
    }
}

.person-txt > table {
    max-width: 100%;
}

.person-name {
    margin-bottom: 5px;
    overflow-wrap: break-word;
    word-break: break-word;
    overflow: hidden;
}

.person-name p {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-orange-10);
    line-height: 1.3;
    margin-bottom: 3px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.person-txt {
    flex-grow: 1;
    overflow-wrap: break-word;
    word-break: break-word;
    overflow: hidden;
}

.person-txt p {
    font-size: 14px;
    overflow-wrap: break-word;
    word-break: break-word;
}

@media (min-width: 576px) {
    .person-name {
        max-height: 50px;
    }
    .person-txt {
        max-height: 71px;
    }
}
@media (min-width: 992px) {
    .person-name {
        max-height: 48px;
    }
    .person-name p {
        font-size: 17px;
    }
    .person-txt {
        max-height: 66px;
    }
    .person-txt p {
        font-size: 13px;
    }
}
@media (min-width: 1200px) {
    .person-name {
        max-height: 52px;
    }
    .person-name p {
        font-size: 19px;
    }
    .person-txt {
        max-height: 71px;
    }
    .person-txt p {
        font-size: 14px;
    }
}
@media (min-width: 1400px) {
    .person-txt {
        max-height: 76px;
    }
    .person-txt p {
        font-size: 15px;
    }
}
@media (min-width: 1600px) {
    .person-name {
        max-height: 55px;
    }
    .person-name p {
        font-size: 20px;
    }
    .person-txt {
        max-height: 81px;
    }
    .person-txt p {
        font-size: 16px;
    }
}

.person-btn {
    margin-top: 15px;
    text-align: right;
}
@media (min-width: 576px) {
    .person-btn {
        margin-top: 10px;
    }
}

.person-btn > a {
    padding: 8px 30px;
    color: var(--black-color);
    font-size: 13px;
    font-weight: 600;
    background-color: var(--accent-green-02);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}
.person-btn > a:hover {
    color: var(--white-color);
    background-color: var(--accent-green-10);
}


/* --- podstrona: terapie */

.therapy-boxes {
    margin: 0px 0 10px;
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.therapy-boxes-in {
    width: 90%;
}

@media (min-width: 420px) {

    .therapy-boxes {
        justify-content: center;
    }
    .therapy-boxes-in {
        width: 80%;
    }
}

@media (min-width: 1400px) {

    .therapy-boxes-in {
        width: 60%;
    }
}

.main-therapy-name {
    text-align: center;
    padding: 30px 15px;
    border-radius: 5px;
    color: var(--white-color);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    box-shadow: var(--shadow);
    cursor: pointer;
}

@media (min-width: 576px) {
    .main-therapy-name {
        padding: 40px 15px;
        border-radius: 8px;
        font-size: 28px;
        line-height: 1;
    }
}
@media (min-width: 768px) {
    .main-therapy-name {
        padding: 30px 15px;
        font-size: 25px;
        user-select: none;
        cursor: default;
    }
}
@media (min-width: 992px) {
    .main-therapy-name {
        padding: 40px 15px;
        font-size: 28px;
    }
}
@media (min-width: 1200px) {
    .main-therapy-name {
        font-size: 30px;
    }
}
@media (min-width: 1920px) {
    .main-therapy-name {
        font-size: 33px;
    }
}

.mtn-bcg-g {
    background-color: var(--accent-green-08);
}
.mtn-bcg-o {
    background-color: var(--accent-orange-08);
}

.sub-therapy-boxes {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;

    margin-top: 0px;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: top;
    transition:
        opacity 0.3s ease-in-out,
        transform 0.3s ease-in-out,
        margin-top 0.3s ease-in-out;
}

.sub-therapy-on {
    margin-top: 8px;
    height: auto;
    opacity: 1;
    transform: scaleY(1);
    overflow: visible;
}

.sub-therapy-line {
    width: 15%;

    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.sub-tebor-nfz, .sub-tebor-kom {
    position: relative;
    margin-left: 15px;
    width: 80%;
    height: calc(100% - 50px);
    border-bottom-left-radius: 3px;
    border-left: 1px solid var(--dark-gray);
    border-bottom: 1px solid var(--dark-gray);
}

.sub-tebor-nfz::before {
    position: absolute;
    top: 25%;
    content: '';
    border-top: 1px solid var(--dark-gray);
    width: 100%;
}
.sub-tebor-nfz::after {
    position: absolute;
    top: calc(50% + 45px);
    content: '';
    border-top: 1px solid var(--dark-gray);
    width: 100%;
}

.sub-tebor-kom::before {
    position: absolute;
    top: 14%;
    content: '';
    border-top: 1px solid var(--dark-gray);
    width: 100%;
}
.sub-tebor-kom::after {
    position: absolute;
    top: 35%;
    content: '';
    border-top: 1px solid var(--dark-gray);
    width: 100%;
}

.sub-tebor-kom-in {
    position: relative;
    margin-left: 0;
    width: 100%;
    height: 100%;
}
.sub-tebor-kom-in::before {
    position: absolute;
    top: 57%;
    content: '';
    border-top: 1px solid var(--dark-gray);
    width: 100%;
}
.sub-tebor-kom-in::after {
    position: absolute;
    top: 79%;
    content: '';
    border-top: 1px solid var(--dark-gray);
    width: 100%;
}

@media (min-width: 420px) {
    .sub-tebor-nfz, .sub-tebor-kom {
        margin-left: 25px;
    }
}
@media (min-width: 1200px) {
    .sub-tebor-nfz, .sub-tebor-kom {
        margin-left: 30px;
    }
}

.sub-therapy-wrap {
    margin-top: 30px;
    width: 85%;

    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sub-therapy-box {
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.sub-therapy-box > a {
    display: block;
    color: var(--black-color);
    border-radius: 5px;
    padding: 20px 15px 10px 25px;
    transition: 0.3s;
}

.sub-therapy-box > a:hover {
    color: var(--black-color);
    background-color: var(--white-color);
}

@media (min-width: 420px) {

    .sub-therapy-box > a {
        padding: 25px 15px 10px 30px;
    }
}

.of-nfz {
    background-color: var(--accent-green-03);
}
.of-kom {
    background-color: var(--accent-orange-03);
}

.sub-therapy-name {
    line-height: 1.3;
    font-weight: 500;
}

.sub-therapy-btn-nfz, .sub-therapy-btn-kom {
    margin: 4px 0 1px;
    text-align: right;
}

.sub-therapy-btn-nfz > p {
    color: var(--accent-green-08);
}
.sub-therapy-btn-kom > p {
    color: var(--accent-orange-dirty);
}

.sub-therapy-btn-nfz > p, .sub-therapy-btn-kom > p {
    font-weight: 500;
    font-size: 13px;
}

@media (min-width: 1200px) {

    .sub-therapy-btn-nfz > p, .sub-therapy-btn-kom > p {
        font-size: 14px;
    }
}


/* --- stopka --- */

.footer-main {
    width: 100%;
    margin-top: 50px;
    padding: 30px 0;
    background: var(--accent-green-10);
    font-size: 13px;
    font-weight: 400;
    color: var(--light-gray);
    border-top-right-radius: 30px;
}

.footer-main a {
    color: var(--light-gray);
}
.footer-main a:hover {
    color: var(--accent-orange-10);
}

.footer-boxes {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}


.footer-adress-name p, .footer-contact-name p, .footer-registration-data-name p {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.footer-adress-txt, .footer-contact-txt, .footer-registration-data-txt {
    max-height: 44px;
    overflow: hidden;
}

.footer-adress-txt p, .footer-contact-txt p, .footer-registration-data-txt p {
    margin: 0;
}

.footer-contact-txt td.con-td {
    width: 60px;
}

.footer-registration-data-txt td.reg-td {
    width: 40px;
}

@media (min-width: 992px) {

    .footer-main {
        margin-top: 70px;
        padding: 50px 0;
        font-size: 14px;
        border-top-right-radius: 50px;
    }
    .footer-boxes {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }
    .footer-box {
        justify-content: center;
        align-items: center;
        width: 33.333%;
    }
    .footer-adress-name p, .footer-contact-name p, .footer-registration-data-name p {
        margin-bottom: 10px;
    }
}

@media (min-width: 1400px) {

    .footer-main {
        padding: 70px 0;
    }
}

.footer-sub {
    width: 100%;
    padding: 15px 0;
    font-size: 13px;
    background: var(--white-color);
    font-weight: 400;
    color: var(--black-color);
}

.footer-sub a {
    color: var(--accent-orange-10);
    font-weight: 500;
}
.footer-sub a:hover {
    color: var(--accent-green-10);
}

.footer-sub-boxes {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-sub-box {
    width: auto;
}

.footer-sub-toright {
    padding-top: 15px;
    text-align: left;
}

@media (min-width: 992px) {

    .footer-sub {
        padding: 10px 0;
    }
    .footer-sub-boxes {
        flex-direction: row;
        justify-content: space-between;
    }
}


/* --- social-icons ---*/

.social-icons {
    position: fixed;
    z-index: 10;
    right: 0;
    bottom: 80px;

    width: 40px;
    height: 200px;

    margin: auto;
    background: url(../img/aside-social-bcg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 15px;
}

.social-icons > a {
    display: block;
    line-height: 1;
    font-size: 16px;
}

.social-icons > a > img {
    max-width: 25px;
}

@media (min-width: 992px) {

    .social-icons {
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);

        width: 50px;
        height: 240px;
    }
    .social-icons > a > img {
        max-width: 30px;
    }
}

/* --- all: listy i punktory --- */

.c-list {
    list-style-image: url(../img/list-image1.svg);
    padding-left: 35px;
}
.c-list li {
    padding: 3px 0 5px 5px;
    border-bottom: 0px;
}

.c-list-2 {
    list-style-image: url(../img/list-image2.svg);
    padding-left: 35px;
}
.c-list-2 li {
    padding: 3px 0 5px 5px;
    border-bottom: 0px;
}


/* --- cta-box-1 --- */

.cta-box-1 {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    border-radius: 15px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.cta-bx1-txt,
.cta-bx1-act {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    padding: 30px 15px 30px 25px;
    color: var(--white-color);
    font-size: 19px;
    font-weight: 600;
}

.cta-bx1-txt {
    border-radius: 15px 15px 0 0;
    background: var(--black-color);
    text-align: center;
}

.cta-bx1-act {
    border-radius: 0 0 15px 15px;
    background: var(--accent-orange-10);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    transition: background .3s ease-in-out;
}

.cta-bx1-act:hover,
.cta-bx1-act:focus {
    background: var(--accent-green-10);
    color: var(--white-color);
}

.cta-bx1-act-icon {
    width: 50px;
}

.cta-bx1-act-icon img {
    max-height: 30px;
    width: auto;
}

.cta-bx1-act-txt {
    color: var(--white-color);
}

@media (min-width: 992px) {

    .cta-box-1 {
        flex-direction: row;
    }
    .cta-bx1-txt {
        width: 50%;
        height: 90px;
        border-radius: 15px 0 0 15px;
        text-align: left;
    }
    .cta-bx1-act {
        width: 50%;
        height: 90px;
        border-radius: 0 15px 15px 0;
        justify-content: left;
    }
}

@media (min-width: 1200px) {

    .cta-bx1-txt,
    .cta-bx1-act {
        height: 100px;
        font-size: 29px;
        padding: 27px 15px 30px 25px;
    }
}


/* --- WCAG --- */

/* --- dark-mode --- */

.wca-dark {
    background: #000000;
    color: #ffff00;
}

.wca-dark body {
    background: #000000;
    color: #ffff00;
}

.wca-dark a {
    color: #ffff00;
}

.wca-dark a:hover, .wca-dark a:focus {
    text-decoration: underline;
    color: #ffff00;
}

.wca-dark .mb-img {
    filter: grayscale(1);
}

.wca-dark h1,
.wca-dark h2,
.wca-dark h3 {
    color: #ffff00;
}

.wca-dark p {
    color: #ffff00;
}

.wca-dark span.ban-span {
    color: #ffff00;
}

.wca-dark .d-btn a {
    color: #ffff00;
    background-color: #000000;
    border: 1px solid #ffff00;
    transition: all 0.3s ease-in-out;
}
.wca-dark .d-btn a:hover {
    color: #000000;
    background-color: #ffff00;
    text-decoration: none;
}

.wca-dark .d-news-box {
    background-color: #000000;
    border: 1px solid #ffff00;
}

.wca-dark .d-news-data {
    color: #FFFFFF;
}

.wca-dark .d-news-btn a {
    background-color: #000000;
    border: 1px solid #ffff00;
    transition: all 0.3s ease-in-out;
}

.wca-dark .d-news-btn a:hover {
    color: #000000;
    background-color: #ffff00;
    text-decoration: none;
}

.wca-dark .for-wca img {
    filter: brightness(0) invert(1);;
}

.wca-dark .d-faq-box {
    background-color: #000000;
    border: 1px solid #ffff00;
}

.wca-dark .d-faq-box:hover {
    background-color: #ffff00;
}

.wca-dark .d-faq-name {
    color: #ffff00;
}

.wca-dark .d-faq-box:hover .d-faq-name p {
    color: #000000;
}

.wca-dark .faq-toggle span {
    background: #ffff00;
    transition: all 0.3s ease-out;
}

.wca-dark .d-faq-box:hover .faq-toggle span {
    background: #000000;
}

.wca-dark .d-faq-box:hover .d-faq-answer p {
    color: #000000;
}


/* --- WCAG: podstrony --- */

.wca-dark .s-hd h1 {
    color: #ffff00;
}

.wca-dark .content-wrapper-subpage h2,
.wca-dark .content-wrapper-subpage h3 {
    color: #ffff00;
}


/* --- WCAG: aktualności --- */

.wca-dark .news-box {
    background: #000000;
    color: #ffff00;
    border: 1px solid #ffff00;
}

.wca-dark .news-box-date {
    color: #FFFFFF;
}

.wca-dark .news-box-more a {
    background-color: #000000;
    border: 1px solid #ffff00;
    transition: all 0.3s ease-in-out;
}

.wca-dark .news-box-more a:hover {
    color: #000000;
    background-color: #ffff00;
    text-decoration: none;
}


/* --- WCAG: specjaliści --- */

.wca-dark .person-box {
    background: #000000;
    border: 1px solid #ffff00;
}

.wca-dark .person-name {
    color: #ffff00;
}

.wca-dark .person-btn > a {
    color: #ffff00;
    background-color: #000000;
    border: 1px solid #ffff00;
    transition: all 0.3s ease-in-out;
}
.wca-dark .person-btn > a:hover {
    color: #000000;
    background-color: #ffff00;
    text-decoration: none;
}


/* --- WCAG: terapie --- */

.wca-dark .main-therapy-name {
    color: #ffff00;
}

.wca-dark .mtn-bcg-g,
.wca-dark .mtn-bcg-o {
    background-color: #000000;
    border: 1px solid #ffff00;
}

.wca-dark .sub-tebor-nfz {
    border-left: 1px solid #ffff00;
    border-bottom: 1px solid #ffff00;
}

.wca-dark .sub-tebor-nfz::before,
.wca-dark .sub-tebor-nfz::after {
    border-top: 1px solid #ffff00;
}

.wca-dark .sub-tebor-kom {
    border-left: 1px solid #ffff00;
    border-bottom: 1px solid #ffff00;
}

.wca-dark .sub-tebor-kom::before,
.wca-dark .sub-tebor-kom::after {
    border-top: 1px solid #ffff00;
}

.wca-dark .sub-tebor-kom-in::before {
    border-top: 1px solid #ffff00;
}

.wca-dark .of-nfz {
    background-color: #000000;
    border: 1px solid #ffff00;
}

.wca-dark .of-kom {
    background-color: #000000;
    border: 1px solid #ffff00;
}

.wca-dark .sub-therapy-btn-nfz > p {
    color: #ffff00;
}

.wca-dark div.sub-therapy-box > a:hover {
    background: rgba(255, 255, 0, 0.3);
}

.wca-dark .sub-therapy-btn-kom > p {
    color: #ffff00;
}

.wca-dark div.sub-therapy-box > a:hover {
    background: rgba(255, 255, 0, 0.3);
}


/* --- WCAG: footer --- */

.wca-dark .footer-main {
    background: #000000;
    border-top: 1px solid #ffff00;
    color: #ffff00;
}

.wca-dark .footer-main a {
    color: #ffff00;
}
.wca-dark .footer-main a:hover {
    text-decoration: underline;
}

.wca-dark .footer-sub {
    background: #000000;
    border-top: 1px solid #ffff00;
    color: #ffff00;
}

.wca-dark .footer-sub a {
    color: #ffff00;
}
.wca-dark .footer-sub a:hover {
    text-decoration: underline;
}

.wca-dark .social-icons {
    background: #ffff00;
    height: auto;
    width: auto;
    padding: 10px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.wca-dark .social-icons img {
    filter: brightness(1) invert(1);
}


/* --- WCAG: all: listy i punktory --- */

.wca-dark .c-list {
    list-style-image: url(../img/list-image-wca.svg);
}

.wca-dark .c-list-2 {
    list-style-image: url(../img/list-image-wca.svg);
}


/* --- WCAG: breadcrumb --- */

.wca-dark .breadcrumb-bcg, .wca-dark .breadcrumb {
    background: #000000;
    color: #ffff00;
}

.wca-dark .breadcrumb > .active {
    color: #fff;
}


/* --- WCAG: formularz --- */

.wca-dark .form-control {
    background: #000;
    color: #fff;
    border-color: #ffff00;
}

.wca-dark .form-control:focus {
    border-color: #FFF;
    color: #ffff00;
}

.wca-dark .btn-send {
    background: #000;
    border: 2px solid #ffff00;
    color: #ffff00;
}

.wca-dark .btn-send:focus {
    background-color: #ffff00;
    color: #000000;
}

.wca-dark ::placeholder {
    color: #fff;
    font-weight: 400;
}

.wca-dark .alert-danger {
    background: #000;
    border: 2px solid #ffff00;
    color: #ffff00;
}

.wca-dark .news-box-more a {
    background: #000;
    border: 2px solid #ffff00;
    color: #ffff00;
}


/*--- fontx2 ---*/

.wca-fontx2, .wca-fontx2 body {
    font-size: 18px;
}
@media (min-width: 992px) {
    .wca-fontx2, .wca-fontx2 body {
        font-size: 20px;
    }
}
@media (min-width: 1600px) {
    .wca-fontx2, .wca-fontx2 body {
        font-size: 21px;
    }
}


.wca-fontx2 h3, .wca-fontx2 .h3, .wca-fontx2 h4, .wca-fontx2 .h4 {
    font-size: 19px;
}
@media (min-width: 992px) {
    .wca-fontx2 h3, .wca-fontx2 .h3, .wca-fontx2 h4, .wca-fontx2 .h4 {
        font-size: 21px;
    }
}
@media (min-width: 1600px) {
    .wca-fontx2 h3, .wca-fontx2 .h3, .wca-fontx2 h4, .wca-fontx2 .h4 {
        font-size: 22px;
    }
}


.wca-fontx2 .d-btn a {
    font-size: 16px;
}
@media (min-width: 992px) {
    .wca-fontx2 .d-btn a {
        font-size: 18px;
    }
}
@media (min-width: 1600px) {
    .wca-fontx2 .d-btn a {
        font-size: 19px;
    }
}


.wca-fontx2 h3.d-news-hd {
    font-size: 28px;
}
.wca-fontx2 .d-news-data, .wca-fontx2 .d-news-title {
    font-size: 17px;
}
.wca-fontx2 .d-news-btn a {
    font-size: 16px;
}
@media (min-width: 992px) {
    .wca-fontx2 h3.d-news-hd {
        font-size: 26px;
    }
    .wca-fontx2 .d-news-data, .wca-fontx2 .d-news-title {
        font-size: 18px;
    }
    .wca-fontx2 .d-news-btn a {
        font-size: 18px;
    }
}
@media (min-width: 1600px) {
    .wca-fontx2 h3.d-news-hd {
        font-size: 28px;
    }
    .wca-fontx2 .d-news-data, .wca-fontx2 .d-news-title {
        font-size: 19px;
    }
    .wca-fontx2 .d-news-btn a {
        font-size: 19px;
    }
}


.wca-fontx2 .news-box-date {
    font-size: 17px;
}
.wca-fontx2 .news-box-heading > a {
    font-size: 19px;
}
.wca-fontx2 .news-box-more a {
    font-size: 16px;
}
@media (min-width: 992px) {
    .wca-fontx2 .news-box-date {
        font-size: 18px;
    }
    .wca-fontx2 .news-box-heading > a {
        font-size: 18px;
    }
    .wca-fontx2 .news-box-more a {
        font-size: 20px;
    }
}
@media (min-width: 1600px) {
    .wca-fontx2 .news-box-date {
        font-size: 19px;
    }
    .wca-fontx2 .news-box-heading > a {
        font-size: 21px;
    }
    .wca-fontx2 .news-box-more a {
        font-size: 19px;
    }
}


.wca-fontx2 .person-name {
    font-size: 18px;
}
.wca-fontx2 .person-txt {
    font-size: 18px;
}
.wca-fontx2 .person-btn > a {
    font-size: 16px;
}
@media (min-width: 992px) {
    .wca-fontx2 .person-box-img {
        height: 250px;
    }
    .wca-fontx2 .person-name {
        font-size: 20px;
    }
    .wca-fontx2 .person-txt {
        font-size: 18px;
    }
        .wca-fontx2 .person-btn > a {
        font-size: 18px;
    }
}
@media (min-width: 1200px) {
    .wca-fontx2 .person-box-img {
        height: 280px;
    }
    .wca-fontx2 .person-name {
        font-size: 23px;
    }
    .wca-fontx2 .person-txt {
        font-size: 20px;
    }
}
@media (min-width: 1600px) {
    .wca-fontx2 .person-name {
        font-size: 24px;
    }
    .wca-fontx2 .person-txt {
        font-size: 21px;
    }
    .wca-fontx2 .person-btn > a {
        font-size: 19px;
    }
}


.wca-fontx2 .sub-therapy-btn-nfz > p, .wca-fontx2 .sub-therapy-btn-kom > p {
    font-size: 16px;
}
@media (min-width: 1200px) {
    .wca-fontx2 .sub-therapy-btn-nfz > p, .wca-fontx2 .sub-therapy-btn-kom > p {
        font-size: 18px;
    }
}
@media (min-width: 1200px) {
    .wca-fontx2 .sub-therapy-btn-nfz > p, .wca-fontx2 .sub-therapy-btn-kom > p {
        font-size: 19px;
    }
}


.wca-fontx2 .footer-main, .wca-fontx2 .footer-sub {
    font-size: 16px;
}
.wca-fontx2 .footer-adress-txt, .wca-fontx2 .footer-contact-txt, .wca-fontx2 .footer-registration-data-txt {
        max-height: 60px;
        overflow: hidden;
    }
@media (min-width: 992px) {
    .wca-fontx2 .footer-main, .wca-fontx2 .footer-sub  {
        font-size: 18px;
    }
}
@media (min-width: 1600px) {
    .wca-fontx2 .footer-main, .wca-fontx2 .footer-sub  {
        font-size: 19px;
    }
}

.wca-fontx2 .footer-adress-name p, .wca-fontx2 .footer-contact-name p, .wca-fontx2 .footer-registration-data-name p {
    font-size: 18px;
}

.wca-fontx2 .footer-contact-txt td.con-td {
    width: 80px;
}
.wca-fontx2 .footer-registration-data-txt td.reg-td {
    width: 55px;
}