body {}

/* GLOBALNE */

h1 {
    font-size: 60px;
    line-height: 65px;
}

h2 {
    font-size: 32px;
    line-height: 40px;
}

h3 {
    font-size: 20px;
    line-height: 30px;
}

@media only screen and (max-width: 768px) {

    h1 {
        font-size: 42px;
        line-height: 50px;
        font-weight: 300;
    }

    h2 {
        font-size: 24px;
        line-height: 32px;
    }

    h3 {
        font-size: 20px;
        line-height: 30px;
    }

    /* p {
        line-height: 24px;
    } */
}


.padding-glob {
    padding-left: 25px;
    padding-right: 25px;
}

.max-width-page {
    max-width: 1405px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.wyswig>*:first-child {
    margin-top: 0;
}

.wyswig>*:last-child {
    margin-bottom: 0;
}

.wyswig p {
    font-size: 16px;
    line-height: 24px;
}

.wyswig ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.wyswig ul li {
    position: relative;
    padding-left: 28px;
    /* Odstęp na ikonę */
    margin-bottom: 10px;
}

.wyswig ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 16.5px;
    height: 12.571px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16.5' height='12.571' viewBox='0 0 16.5 12.571'><g transform='translate(-191 -1726.5)'><path d='M6.286,0l6.286,11H0Z' transform='translate(202 1726.5) rotate(90)' fill='%237d0500'/><path d='M6.286,0l6.286,11H0Z' transform='translate(207.5 1726.5) rotate(90)' fill='%23f90a00'/></g></svg>");
}




.btn-primary {
    background: transparent linear-gradient(100deg, #FF0000 0%, #B70000 100%) 0% 0% no-repeat padding-box;
    border-radius: 24px;
    font-size: 14px;
    line-height: 17px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white !important;
    font-weight: bold;
    font-style: italic;
    transition: all 0.2s;
    border: 0px;
    outline: none;
}

.btn-primary:hover {
    color: white;
}

.button-wrapper {
    display: flex;
}

.btn-primary svg {
    width: 11px;
    height: auto;
    fill: white;
}


.btn-white {
    background: white;
    border-radius: 24px;
    font-size: 14px;
    line-height: 17px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #FB0001 !important;
    font-weight: bold;
    font-style: italic;
    transition: all 0.2s;
    border: 0px;
    outline: none;
}

.btn-white svg {
    fill: #FB0001;
}

.abs-wrapper {
    max-width: 100%;
    height: 100dvh;
    width: 100%;
    display: flex;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0px;
    z-index: -1;
    pointer-events: none;
}

.abs-body {
    position: absolute;
    top: 0px;
    right: 0px;
    max-width: 100%;
    z-index: -1;
    width: 100%;
    transform: translate(25%, -25%);
    pointer-events: none;
    max-width: 100%;


}

.abs-body-red-circle-first {
    position: absolute;
    right: 0;
    z-index: -2;
    top: 0;
    pointer-events: none;
    max-height: 100%;
    width: 100%;
}

/* ------------------------------------------------------------------------------------------- MENU HEADER */
.main-header {
    height: 147px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;

}

.main-header .main-header-inside {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: space-between;

}


.main-header .main-header-inside .custom-logo-link {
    display: flex;
    max-width: 280px;
    width: 100%;
}


.main-header .main-header-inside .right-col-menu {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: flex-end;
}

.main-header .main-header-inside .right-col-menu .menu {
    display: flex;
    padding: 0px;
    margin: 0px;

    list-style: none;
    gap: 25px;
}

.main-header .main-header-inside .right-col-menu .menu>li>a {
    font-size: 18px;
    font-weight: 400;
    color: white !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 47px;
}

.main-header .main-header-inside .right-col-menu .menu>li {
    position: relative;
}

.main-header .main-header-inside .right-col-menu .menu>li>.sub-menu {
    display: none;
    position: absolute;
    margin: 0px;
    padding: 0px;
    list-style: none;
    /* display: flex; */
    flex-direction: column;
    background: transparent linear-gradient(322deg, #F90A00 0%, #7D0500 100%) 0% 0% no-repeat padding-box;
}

.main-header .main-header-inside .right-col-menu .menu>li.menu-item-has-children:hover .sub-menu {
    display: flex;
}

.main-header .main-header-inside .right-col-menu .menu>li>.sub-menu a {
    padding: 15px;
    font-size: 14px;
    color: white;
    text-decoration: none;
    display: flex;
    min-width: 150px;
}



/*  MENU MOBILNE */
.main-header--mobile {
    height: 110px;
    border-bottom: 1px solid #141212;
    display: flex;
    align-items: center;
}

.main-header--mobile .logo-header-mobile {
    max-width: 88px;
    width: 100%;
}

.main-header-inside {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.main-header--mobile .mobile-show-menu-btn {
    width: 80px;
    height: 50px;
    border: 1px solid #FFFFFF1A;
    border-radius: 25px;
    padding: 0px;
    margin: 0px;
    outline: none;

    display: flex;
    align-content: center;
    justify-content: center;
    background-color: transparent;
}

.line-wrapper {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}

.line-wrapper .line {
    width: 100%;
    height: 2px;
    background-color: white;
}

/* Mobile menu modal */

.mobile-menu-modal {
    display: none;
    background: #000000b3;
    position: fixed;
    top: 0;
    inset: 0;
    width: 100%;
    height: 100dvh;
    z-index: 9999;


}

.mobile-menu-wrapper {
    position: fixed;
    right: 0;
    top: 0px;
    bottom: 0px;
    background: black;
    width: 80%;

    display: flex;
    align-items: center;
    height: 100dvh;
    overflow: auto;

    padding: 25px;
}

.mobile-menu-wrapper-links-wrapper ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.mobile-menu-wrapper-links-wrapper .menu a {
    color: white;
    display: flex;
    padding: 10px 0px;
    text-decoration: none;
}

.mobile-menu-wrapper-links-wrapper .menu .sub-menu {
    padding-left: 20px;
}

.mobile-menu-wrapper-links-wrapper .button-wrapper {
    margin-top: 20px;
}

.mobile-menu-close {
    width: 80px;
    height: 50px;
    border: 1px solid #FFFFFF1A !important;
    border-radius: 25px;
    padding: 0px;
    margin: 0px;
    outline: none;

    display: flex;
    align-content: center;
    justify-content: center;
    background-color: transparent;
    outline: none !important;

    position: absolute;
    top: 50px;
    right: 25px;
}

.mobile-menu-close svg {
    fill: white;
    width: 20px;
    height: auto;
}

@media only screen and (max-width: 1100px) {
    .main-header--desktop {
        display: none;
    }

    .main-header--mobile {
        display: flex;

    }
}

@media only screen and (min-width: 1101px) {
    .mobile-menu-modal {
        display: none !important;
    }

    .main-header--mobile {
        display: none;
    }

}

/* ------------------------------------------------------------------------------------------- FOOTER */


.social-media-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-media-wrapper a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent radial-gradient(closest-side at 50% 50%, #FFFFFF41 0%, #FFFFFF1A 100%) 0% 0% no-repeat padding-box;
    width: 50px;
    height: 50px;
    border-radius: 50px;
}

.social-media-wrapper a svg {
    fill: white;
    width: 20px;
    height: 20px;
    object-fit: contain;
}



.main-footer .footer-column-wrapper .social-media-wrapper {
    margin-top: 30px;

}

.main-footer .footer-column-wrapper {
    display: flex;
    gap: 100px;
    align-items: flex-start;
    padding-bottom: 20px;
}

.main-footer .footer-column-wrapper .footer-single-col:nth-of-type(2) {
    margin-left: auto;
}


.main-footer .footer-single-col .footer-logo-wrapper {
    max-width: 280px;
    width: 100%;
}

.main-footer .footer-single-col .footer-logo-wrapper a {
    display: flex;
}

.main-footer .footer-single-col .footer-logo-wrapper a img {
    width: 100%;
}

.main-footer .footer-single-col .footer-col-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-footer .footer-single-col .footer-col-title h3 {
    margin: 0px;
}

.main-footer .footer-single-col .footer-col-title .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 40px;
    background: transparent linear-gradient(315deg, #F90A00 0%, #7D0500 100%) 0% 0% no-repeat padding-box;

}

.main-footer .footer-single-col .footer-col-title .icon-wrapper svg {
    width: 24px;
    height: 24px;
    object-fit: contain;
    fill: white;
}

.main-footer .footer-single-col .footer-col-content {
    margin-top: 25px;
}

.main-footer .footer-single-col .footer-col-content p,
.main-footer .footer-single-col .footer-col-content a {

    margin: 0px;
    font-size: 14px;
    line-height: 22px;
    color: white;
    text-decoration: none;
}

.main-footer .footer-single-col .footer-col-content p a {
    text-decoration: underline;
}

.main-footer .footer-single-col .footer-col-content.footer-col-content--links-wrapper {
    display: flex;
    flex-direction: column;
}

.main-footer .footer-single-col .button-wrapper {
    margin-top: 20px;
}


/* Dolna część */

.main-footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 30px;
    padding-bottom: 30px;

}

.main-footer .footer-bottom p,
.main-footer .footer-bottom a {
    font-size: 14px;
    line-height: 22px;
    color: white;
    text-decoration: none;
    padding: 0px;
    margin: 0px;
}

.main-footer .footer-bottom-links {
    display: flex;
    gap: 30px;
}


@media only screen and (max-width: 1250px) {
    .main-footer .footer-column-wrapper {
        gap: 50px;
    }

}

@media only screen and (max-width: 768px) {
    .footer-column-wrapper {
        flex-direction: column;

    }

    .main-footer .footer-column-wrapper {
        align-items: center;
    }

    .main-footer .footer-column-wrapper .footer-single-col:nth-of-type(2) {
        margin-left: initial;
    }

    .main-footer .footer-column-wrapper .social-media-wrapper {
        justify-content: center;
    }

    .main-footer .footer-single-col .footer-col-content p,
    .main-footer .footer-single-col .footer-col-content a {
        text-align: center;
    }

    .main-footer .footer-single-col .footer-col-title {
        justify-content: center;
    }

    .main-footer .footer-bottom {
        flex-direction: column-reverse;
        gap: 50px;
    }

    .main-footer .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .main-footer .footer-bottom p,
    .main-footer .footer-bottom a {
        text-align: center;
    }
}

/* ------------------------------------------------------------------------------------------- section-hero */

.section-hero {
    margin-top: 100px;
    margin-bottom: 100px;
}

.section-hero .section-inside {
    display: grid;
    grid-template-columns: 576px 1fr;
    align-items: center;
}

.section-hero .section-inside .section-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section-hero .section-inside .section-content h1 {
    margin: 0px;
    font-weight: 300;

}

.section-hero .section-inside .section-content .hero-subtitle {
    margin: 0px;
    padding-left: 20px;
    border-left: 3px solid #F80A00;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.section-hero .section-inside .section-content .hero-subtitle span[itemprop="name"] {
    font-size: 40px;
    line-height: 40px;
    font-weight: 300;
}

.section-hero .section-inside .section-content .hero-subtitle span[itemprop="jobTitle"] {
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
}


.section-hero-img-mobile {
    display: none;
}

.section-hero-img-desktop {
    display: block;
}

@media only screen and (max-width: 768px) {

    .section-hero {
        margin-top: 90px;
        margin-bottom: 90px;
    }

    .section-hero .section-inside {
        grid-template-columns: 1fr;
    }

    .section-hero .section-inside .section-hero-img-mobile {
        display: block;
    }

    .section-hero .section-inside .section-hero-img-desktop {
        display: none;
    }

    .section-hero .section-inside .section-content h1 {
        text-align: center;
    }

    .section-hero .section-inside .hero-subtitle-wrapper {
        display: flex;
        justify-content: center;
    }

    .section-hero .section-inside .button-wrapper {
        justify-content: center;
    }


    .section-hero .section-inside .section-content .hero-subtitle span[itemprop="name"] {
        font-size: 28px;
        line-height: 30px;
    }

    .section-hero .section-inside .section-content .hero-subtitle span[itemprop="jobTitle"] {
        font-size: 14px;
        line-height: 20px;
    }

}


/* ------------------------------------------------------------------------------------------- section-main-title-desc */

.section-main-title-desc {
    margin-top: 100px;
    margin-bottom: 100px;

}

.section-main-title-desc .section-inside {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.section-main-title-desc h1 {
    font-size: 60px;
    line-height: 65px;
    color: white;
    font-weight: 300;
    text-align: center;
    margin-bottom: 30px;
}

.section-main-title-desc p {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
}

.section-main-title-desc .button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}


@media only screen and (max-width: 768px) {
    .section-main-title-desc {
        margin-top: 90px;
        margin-bottom: 90px;

    }

    .section-main-title-desc h1 {
        font-size: 42px;
        line-height: 50px;
    }
}


/* ------------------------------------------------------------------------------------------- section-horizontal-title-desc */

.section-horizontal-title-desc {
    margin-top: 100px;
    margin-bottom: 100px;
}

.section-horizontal-title-desc .section-inside {
    display: flex;
    gap: 100px;
}

.section-horizontal-title-desc .section-inside .left-col h2 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.section-horizontal-title-desc .section-inside .left-col {
    flex: 0 0 270px;
}

.section-horizontal-title-desc .section-inside .right-col {
    flex: 1 0 845px;
    width: 100%;
}

.section-horizontal-title-desc .section-inside .right-col .wyswig p,
.section-horizontal-title-desc .section-inside .right-col .wyswig a,
.section-horizontal-title-desc .section-inside .right-col .wyswig li {
    font-size: 24px;
    line-height: 32px;
    /* font-weight: 400; */
    font-weight: 300;
}

.section-horizontal-title-desc .section-inside .right-col .wyswig a {
    font-size: inherit;
}

.section-horizontal-title-desc .wyswig ul li {
    padding-left: calc(16.5px + 17.5px);
}

.section-horizontal-title-desc .section-inside .right-col .button-wrapper {
    margin-top: 50px;
}


.section-horizontal-title-desc-big-letters .section-inside .right-col .wyswig p,
.section-horizontal-title-desc-big-letters .section-inside .right-col .wyswig a,
.section-horizontal-title-desc-big-letters .section-inside .right-col .wyswig li {
    font-size: 32px;
    line-height: 40px;
    /* font-weight: 400; */
    font-weight: 300;
}



@media only screen and (max-width: 1250px) {
    .section-horizontal-title-desc .section-inside .left-col {
        flex: initial;
    }

    .section-horizontal-title-desc .section-inside {
        flex-direction: column;
        gap: 30px;
    }

    .section-horizontal-title-desc.mobile-align-center .section-inside .left-col .wyswig * {
        text-align: center;
    }

    .section-horizontal-title-desc.mobile-align-center .section-inside .left-col h2 {
        text-align: center;
    }

    .section-horizontal-title-desc.mobile-align-center .section-inside .right-col .wyswig * {
        text-align: center;
    }

    .section-horizontal-title-desc .section-inside .right-col {
        flex: initial;
    }

    .section-horizontal-title-desc .section-inside .right-col .button-wrapper {
        justify-content: center;
    }

    .section-horizontal-title-desc .section-inside .left-col h2 {
        font-size: 16px;
        line-height: 24px;
    }

    .section-horizontal-title-desc .section-inside .right-col .wyswig p,
    .section-horizontal-title-desc .section-inside .right-col .wyswig a,
    .section-horizontal-title-desc .section-inside .right-col .wyswig li {
        font-size: 18px;
        line-height: 24px;
    }

    .section-horizontal-title-desc-big-letters .section-inside .right-col .wyswig p,
    .section-horizontal-title-desc-big-letters .section-inside .right-col .wyswig a,
    .section-horizontal-title-desc-big-letters .section-inside .right-col .wyswig li {
        font-size: 18px;
        line-height: 24px;
    }
}


@media only screen and (max-width: 768px) {
    .section-horizontal-title-desc {
        margin-top: 90px;
        margin-bottom: 90px;
    }
}








/* ------------------------------------------------------------------------------------------- section-desc-width-tiles */

.section-desc-width-tiles {
    padding-top: 100px;
    padding-bottom: 100px;
    background: transparent linear-gradient(302deg, #F90A00 0%, #7D0500 100%) 0% 0% no-repeat padding-box;
}

.section-desc-width-tiles .section-inside {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.section-desc-width-tiles .section-inside .section-desc {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* WERSJA NA 2 */
.section-desc-width-tiles .tiles-loop-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.section-desc-width-tiles .tiles-loop-wrapper .single-tile {
    border-radius: 70px;
    border: 1px solid #FFFFFF80;

}

.section-desc-width-tiles .tiles-loop-wrapper .single-tile .single-tile-content {
    padding: 40px 35px;
}

/* WERSJA NA 3 */
.section-desc-width-tiles.grid-3 .tiles-loop-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.section-desc-width-tiles.grid-3 .tiles-loop-wrapper .single-tile {
    border-radius: 0px;
    border: 0px solid #FFFFFF80;

}

.section-desc-width-tiles.grid-3 .tiles-loop-wrapper .single-tile .single-tile-content {
    padding: 40px 35px;
    border: 1px solid #FFFFFF80;
    border-radius: 70px;
}

@media only screen and (max-width: 768px) {
    .section-desc-width-tiles .tiles-loop-wrapper .single-tile {
        border-radius: 70px;
        border: 1px solid #FFFFFF26;

    }

    .section-desc-width-tiles.grid-3 .tiles-loop-wrapper .single-tile .single-tile-content {
        border: 1px solid #FFFFFF26;
    }

    .section-desc-width-tiles {
        padding-top: 0%;
        padding-bottom: 0px;
        margin-top: 90px;
        margin-bottom: 90px;
        background: transparent;
    }




    .section-desc-width-tiles .section-inside {
        gap: 30px;
    }

    .section-desc-width-tiles .tiles-loop-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 25px;
    }

    .section-desc-width-tiles.grid-3 .tiles-loop-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 25px;
    }
}


/* ------------------------------------------------------------------------------------------- section-faq */


.section-faq {
    margin-top: 100px;
    margin-bottom: 100px;
}


.section-faq .section-inside {
    display: flex;
    gap: 100px;
}

.section-faq .section-inside .left-col.wyswig h2 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.section-faq .section-inside .left-col.wyswig a {
    color: #F90A00 !important;
    font-weight: 500;
    text-decoration: underline;
}

.section-faq .section-inside .right-col {
    flex: 1 0 845px;
    width: 100%;
}

.section-faq .section-inside .left-col {
    flex: 0 0 270px;
}


.section-faq .section-inside .faq-wrapper .faq-single-el {
    padding-top: 30px;
    padding-bottom: 30px;
}

.section-faq .section-inside .faq-wrapper .faq-single-el:not(:first-child) {
    border-top: 1px solid #FFFFFF1A;
}


.section-faq .section-inside .right-col .faq-title {
    display: flex;
    gap: 25px;
    justify-content: space-between;
    cursor: pointer;

}

.section-faq .section-inside .right-col .faq-title h3 {
    margin: 0px;
    font-weight: 300;

    font-size: 32px;
    line-height: 40px;
}

.section-faq .section-inside .right-col .faq-title svg {
    width: 24px;
    flex: 0 0 24px;
    height: auto;
    fill: white;
}


.section-faq .section-inside .right-col .faq-content {
    margin-top: 30px;
}

.section-faq .section-inside .right-col .faq-content.wyswig a {
    color: #F90A00 !important;
    font-weight: 500;
    text-decoration: underline;
}


/* FAQ – startowo wszystko zamknięte */
.section-faq .faq-content {
    display: none;
    /* zero FOUC */
    margin-top: 30px;
}

/* Strzałka: domyślnie w dół (brak rotacji) */
.section-faq .faq-title svg {
    transition: transform 200ms ease;
    transform: rotate(0deg);
    transform-origin: 50% 50%;
}

.section-faq .faq-single-el.is-open .faq-title svg {
    transform: rotate(180deg);
}


@media only screen and (max-width: 1250px) {

    .section-faq .section-inside .left-col {
        flex: initial;
    }

    .section-faq .section-inside {
        flex-direction: column;
        gap: 30px;
    }

    .section-faq .section-inside .right-col {
        flex: initial
    }
}



/* ------------------------------------------------------------------------------------------- section-information-banner */

.section-information-banner {
    margin-top: 150px;
    margin-bottom: 150px;

}

.section-information-banner .section-inside {
    display: flex;

    background: transparent linear-gradient(259deg, #F90A00 0%, #7D0500 100%) 0% 0% no-repeat padding-box;
    border-radius: 135px;
    padding: 0px 130px;
}

.section-information-banner .section-inside .img-wrapper {
    flex: 0 0 307px;
    position: relative;
}

.section-information-banner .section-inside .img-wrapper img {
    position: absolute;
    display: block;
    bottom: 0px;
    width: 100%;
}

.section-information-banner .section-inside .section-content {
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-information-banner .section-inside .section-content h1,
.section-information-banner .section-inside .section-content h2,
.section-information-banner .section-inside .section-content h3 {
    font-weight: 300;
}

.section-information-banner .section-inside .section-content h1 b,
.section-information-banner .section-inside .section-content h2 b,
.section-information-banner .section-inside .section-content h3 b {
    font-weight: 600;
}

.section-information-banner .section-inside .section-content p,
.section-information-banner .section-inside .section-content ul li,
.section-information-banner .section-inside .section-content a {
    font-size: 18px;
    line-height: 24px;
}



@media only screen and (max-width: 1000px) {

    .section-information-banner {
        margin-top: 90px;
        margin-bottom: 90px;

    }

    .section-information-banner .section-inside {
        background: transparent linear-gradient(210deg, #F90A00 0%, #7D0500 100%) 0% 0% no-repeat padding-box;
        overflow: hidden;
    }



    .section-information-banner .section-inside {
        flex-direction: column;
        border-radius: 50px;
        padding-top: 40px;
    }

    .section-information-banner .section-inside .img-wrapper {
        padding-left: 50px;
        padding-right: 50px;
        display: flex;
        align-items: flex-end;
        flex: initial;
    }

    .section-information-banner .section-inside .img-wrapper img {
        position: initial;
    }

    .section-information-banner .section-inside .section-content {
        padding-top: 0px;
        padding-bottom: 35px;

    }

    .section-information-banner .section-inside .section-content h1,
    .section-information-banner .section-inside .section-content h2,
    .section-information-banner .section-inside .section-content h3 {
        font-size: 20px;
        line-height: 26px;
        text-align: center;
    }

    .section-information-banner .section-inside .section-content p,
    .section-information-banner .section-inside .section-content ul li,
    .section-information-banner .section-inside .section-content a {
        font-size: 16px;
        line-height: 24px;
        text-align: center;
    }

}

@media only screen and (max-width: 768px) {
    .section-information-banner .section-inside {
        padding: 0px 20px;
        padding-top: 40px;
    }

}




/* ------------------------------------------------------------------------------------------- section-tiles-links */

.section-tiles-links {
    margin-top: 150px;
    margin-bottom: 150px;
    position: relative;
}

.section-tiles-links .abs-body-red-circle-second {
    position: absolute;
    left: 0;
    z-index: -2;
    top: 50%;
    pointer-events: none;
    transform: translate(0, -50%);
    max-width: 100%;

}

.section-tiles-links .tiles-link-wrapper {
    display: flex;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.section-tiles-links-form .tiles-link-wrapper {
    gap: 25px;
}

.section-tiles-links .section-inside {
    position: relative;
}

.section-tiles-links .section-inside .single-tile {
    background: transparent linear-gradient(322deg, #F90A00 0%, #7D0500 100%) 0% 0% no-repeat padding-box;
    border-radius: 75px;
    padding: 40px 35px;
    flex: 1 1 370px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.section-tiles-links .section-inside .single-tile.gray-tile {
    background: transparent linear-gradient(328deg, #848484 0%, #2F2F2F 100%) 0% 0% no-repeat padding-box;
}


.section-tiles-links .section-inside .single-tile .button-wrapper {
    margin-top: auto;
}

.section-tiles-links .section-inside .single-tile .single-tile--content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section-tiles-links .section-inside .single-tile .single-tile--content * {
    text-align: center;
    margin: 0px;

}

.section-tiles-links .section-inside .single-tile .single-tile--icon {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent radial-gradient(closest-side at 50% 50%, #FFFFFF41 0%, #FFFFFF1A 100%) 0% 0% no-repeat padding-box;
}

.section-tiles-links .section-inside .single-tile .single-tile--icon img {
    width: 40px;
    height: auto;
    flex: 0 0 40px;
}

.section-tiles-links .section-inside .abs-image {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    pointer-events: none;
    max-width: 100%;
}

@media only screen and (max-width: 1100px) {
    .section-tiles-links .tiles-link-wrapper {
        flex-direction: column;
    }

    .section-tiles-links .section-inside .single-tile {
        flex: initial;
        background: transparent linear-gradient(324deg, #F90A00 0%, #7D0500 100%) 0% 0% no-repeat padding-box;
        gap: 25px;
    }

    .section-tiles-links .section-inside .single-tile .single-tile--content {
        gap: 25px;
    }

    .section-tiles-links .section-inside .single-tile {
        padding: 40px 25px;
    }
}

@media only screen and (max-width: 1100px) {
    .section-tiles-links {
        margin-top: 90px;
        margin-bottom: 90px;
    }

}


/* ------------------------------------------------------------------------------------------- section-tiles-links */



.section-numbers {
    margin-top: 90px;
    margin-bottom: 90px;

    padding-top: 80px;
    padding-bottom: 80px;

    position: relative;
}

.section-numbers .section-inside {
    /* display: grid; */
    /* grid-template-columns: repeat(3,1fr); */
    display: flex;
    justify-content: space-around;
    gap: 50px 50px;
    flex-wrap: wrap;
}

.section-numbers .single-number {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.section-numbers .single-number .number-value {
    font-size: 100px;
    line-height: 100px;
    font-weight: bold;
    font-style: italic;
    color: white;
    text-align: center;
}

.section-numbers .single-number .desc {
    font-size: 20px;
    line-height: 30px;
    color: white;
    font-weight: 400;
    text-align: center;
}

.section-numbers .max-width-page {
    position: relative;
    z-index: 2;
}

@media only screen and (max-width: 768px) {

    .section-numbers {
        margin-top: 90px;
        margin-bottom: 90px;
        padding-top: 50px;
        padding-bottom: 50px;

        position: relative;
    }


    .section-numbers .single-number .number-value {
        font-size: 80px;
        line-height: 80px;

    }

    .section-numbers .section-inside {
        flex-direction: column;
    }
}

.section-numbers {
    overflow: hidden;
    max-width: 100%;
}

.section-numbers .slider-view {
    position: absolute !important;
    top: 50%;
    left: 0px;
    /* transform: translate(0, calc(-50% - 15px)); */
    transform: translate(0, calc(-50%));

}

/* SLIDER W TLE */
.section-numbers .slider-el {
    color: #FFFFFF08;
    font-size: 456px;
    line-height: 286px;
    font-weight: 700;
    padding-left: 25px;
    padding-right: 25px;

    font-style: italic;
}








/* ------------------------------------------------------------------------------------------- FORMULARZ */

.section-tiles-links-form .section-title {
    font-size: 60px;
    line-height: 65px;
    font-weight: 300;
    text-align: center;
    margin: 0px;
    margin-bottom: 70px;
    text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
    .section-tiles-links-form .section-title {
        font-size: 42px;
        line-height: 50px;
    }
}





.formularz-wrapper {
    /* background-color: #292929b0; */
    background: linear-gradient(121deg, rgba(125, 5, 0, 0.8) 0%, rgba(249, 10, 0, 0.8) 100%);
    display: none;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000000
}

.another-matter-modal {
    display: none
}

.formularz-wrapper form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px
}

.formularz-wrapper form.wpcf7-form {
    display: block
}

.formularz-wrapper .formularz {
    display: block;
    background-color: #141212;
    border: 1px solid #141212;
    padding: 70px 45px 0;
    border-radius: 35px;
    position: relative;
    transition: all .3s;
    max-width: calc(100vw - 40px);
    overflow: hidden;
    box-shadow: 0px 10px 35px #F90A000d
}


.wpcf7 form.sent .wpcf7-response-output {
    border: none;
    /* position: absolute; */
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    margin: 0;
    background-color: #1a1a1adf;
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    z-index: 2;
    text-align: center
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    background-color: #ffb900eb;
    border: none;
    width: 100%;
    margin: 0;
    /* position: absolute; */
    bottom: 0;
    left: 0;
    z-index: 101;
    padding: 10px 15px 15px;
    font-size: 13px;
    line-height: 16px;
    font-weight: 600
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 12px;
    font-weight: 700;
    display: block;
    right: 0;
    position: absolute;
    top: calc(100% + 2px)
}

.formularz-wrapper .formularz .select-selected,
.formularz-wrapper .formularz input {
    /* min-height: 59px; */
    min-height: 50px;
    display: flex;
    align-items: center
}

@media screen and (min-width: 900px) {
    .formularz-wrapper .formularz {
        min-width: 792px;
        width: 792px
    }
}

.formularz-wrapper .formularz h3 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    color: #fff;
    display: block;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 25px
}

.formularz-wrapper .pasek-postepu {
    display: block;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background-color: #FFFFFF33;
    margin: 30px auto 50px;
    overflow: hidden
}

.formularz-wrapper .postep {
    transition: all .6s;
    height: 100%;
    min-height: 8px;
    max-height: 100%;
    width: 50%;
    border-radius: 4px;
    background-color: #F90A00;
    background-image: linear-gradient(90deg, #F90A00 0%, #F90A00 100%)
}

.formularz-wrapper .input-wrapper {
    position: relative;
    max-width: 525px;
    width: 100%;
    margin: auto auto 0
}

.formularz-wrapper .input-wrapper p {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    line-height: 13px;
    margin: 0 0 10px 15px
}

/* .formularz-wrapper button.next-step,.formularz-wrapper button.prev-step,.wpcf7-form-control.wpcf7-submit {
    padding: 17px 25px;
    color: #000;
    display: block;
    font-size: 14px;
    font-weight: 800;
    background-color: #F90A00;
    background-image: linear-gradient(45deg,#F90A00 0%,#F90A00 100%);
    border: none;
    border-radius: 15px;
    outline: none;
    cursor: pointer;
    transition: .3s;
    box-shadow: none
} */
/* 
.wpcf7-form-control.wpcf7-submit {
    display: block;
    margin: 35px auto 0;
    max-width: max-content;
    width: fit-content;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    cursor: pointer;
    -webkit-appearance: button
} */

/* .formularz-wrapper  button.prev-step {
    margin-right: 10px;
    font-weight: 700;
    background-color: transparent;
    color: #fff;
    border: 1px solid #F90A00;
    background-image: none!important
}

.formularz-wrapper  button.next-step:hover {
    -moz-box-shadow: 0px 12px 35px #F90A0098;
    -webkit-box-shadow: 0px 12px 35px #F90A0098;
    box-shadow: 0px 12px 35px #F90A0098
}

.formularz-wrapper  button.prev-step:hover {
    -moz-box-shadow: 0px 12px 35px #47474785;
    -webkit-box-shadow: 0px 12px 35px #47474785;
    box-shadow: 0px 12px 35px #47474785
} */

.formularz-wrapper .prev-step svg {
    transform: rotate(180deg);
}

.formularz-wrapper button.prev-step img {
    width: 13px;
    margin-right: 15px;
    transform: rotate(180deg)
}

.formularz-wrapper button.next-step img {
    width: 13px;
    margin-left: 15px
}

.formularz-wrapper .button-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    gap: 20px;
}

@media screen and (max-width: 700px) {
    .formularz-wrapper .button-wrapper {
        display: grid;
        gap: 20px;
        grid-gap: 20px
    }

    .formularz-wrapper .button-wrapper button:nth-of-type(2) {
        grid-row: 1 / 2
    }

    .formularz-wrapper .button-wrapper button {
        margin: 0
    }
}

.formularz-wrapper .close-form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border-radius: 50px;
    cursor: pointer;
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 3;
    background: transparent radial-gradient(closest-side at 50% 50%, #FFFFFF41 0%, #FFFFFF1A 100%) 0% 0% no-repeat padding-box;
}

.formularz-wrapper .close-form-btn svg {
    height: 20px;
    width: 20px;
    object-fit: contain;
    object-position: center
}

.formularz-wrapper .input-wrapper input {
    width: 100%;
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
    color: #000;
    padding: 18px 20px;
    outline: none;
    transition: .3s;
    background-color: transparent;
    color: #fff !important;
    border-radius: 15px;
    border: 1px solid #F90A00
}

.formularz-wrapper .input-wrapper input:focus {
    border: 1px solid #f0f0f0
}

.formularz-wrapper .cusom-select-ar {
    position: relative;
    width: 100%;
    font-size: 15px;
    line-height: 15px;
    font-weight: 600
}

.formularz-wrapper .cusom-select-ar select {
    display: none
}

.formularz-wrapper .cusom-select-ar::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 13px;
    height: 7px;
    z-index: 2;
    transition: all .3s;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='13' height='7.068' viewBox='0 0 13 7.068'><path d='M11.793,15.275a1.931,1.931,0,0,1-1.37-.567L5.293,9.577l1.37-1.37,5.13,5.13,5.13-5.13,1.37,1.37-5.13,5.13a1.931,1.931,0,0,1-1.37.568Z' transform='translate(-5.293 -8.207)' fill='%23fff'/></svg>") no-repeat center;
    background-size: contain;
}

.formularz-wrapper .cusom-select-ar.aktywny::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 13px;
    height: 7px;
    transform: rotate(180deg) translateY(35%);
    z-index: 2;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='13' height='7.068' viewBox='0 0 13 7.068'><path d='M11.793,15.275a1.931,1.931,0,0,1-1.37-.567L5.293,9.577l1.37-1.37,5.13,5.13,5.13-5.13,1.37,1.37-5.13,5.13a1.931,1.931,0,0,1-1.37.568Z' transform='translate(-5.293 -8.207)' fill='%23fff'/></svg>") no-repeat center;
    background-size: contain;
}


.formularz-wrapper .select-selected {
    background-color: #fff;
    border-radius: 0;
    background-color: transparent;
    border: 1px solid #F90A00 !important;
    border-radius: 15px
}

.formularz-wrapper .select-items div,
.select-selected {
    color: #fff;
    padding: 18px 40px 18px 20px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, .1) transparent;
    cursor: pointer;
    user-select: none
}

.formularz-wrapper .select-items div {
    padding: 10px 20px
}

.formularz-wrapper .select-items {
    position: absolute;
    background-color: rgba(0, 0, 0, .8);
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border-radius: 0;
    max-height: 167px;
    overflow-y: scroll;
    border: 1px solid #F90A00 !important;
    border-radius: 15px
}

.formularz-wrapper .select-hide {
    display: none
}

.formularz-wrapper .select-items div:hover,
.formularz-wrapper .same-as-selected {
    color: #F90A00
}

.formularz-wrapper .cusom-select-ar div::-webkit-scrollbar {
    width: 4px;
    border-radius: 4px
}

.formularz-wrapper .cusom-select-ar div::-webkit-scrollbar-track {
    background: transparent
}

.formularz-wrapper .cusom-select-ar div::-webkit-scrollbar-thumb {
    background: #f90a009c;
    border-radius: 4px
}

.formularz-wrapper .cusom-select-ar div::-webkit-scrollbar-thumb:hover {
    background: #f90a009c;
}

.formularz-wrapper .grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    grid-auto-rows: 1fr
}

.formularz-wrapper .grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    grid-auto-rows: 1fr
}

.formularz-wrapper .container {
    display: block;
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    font-size: 15px;
    line-height: 19px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
    padding-top: 1px;
    min-height: 22px;
    font-weight: 400
}

.formularz-wrapper .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.formularz-wrapper .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #000;
    border: 1px solid #F90A00;
    border-radius: 0
}

.formularz-wrapper .container:hover input~.checkmark {
    background-color: #000
}

.formularz-wrapper .container input:checked~.checkmark {
    border-color: #000;
    background-color: #F90A00;
    background-image: linear-gradient(45deg, #F90A00 0%, #F90A00 100%)
}

.formularz-wrapper .checkmark:after {
    content: "";
    position: absolute;
    display: none
}

.formularz-wrapper .container input:checked~.checkmark:after {
    display: block
}

.formularz-wrapper .container .checkmark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.formularz-wrapper .checkbox-wrapper {
    margin-top: 30px;
    padding: 0 20px
}

.formularz-wrapper .checkbox-wrapper label {
    margin-bottom: 10px
}

.formularz-wrapper .checkbox-wrapper label:last-of-type {
    margin-bottom: 0
}

.formularz-wrapper .step {
    display: none;
    width: 100%;
    padding-bottom: 70px;
    width: calc(100% + 15px);
    max-height: calc(100vh - 223px);
    /* overflow-y: scroll; */
    overflow-y: auto;
    padding-right: 10px
}

.formularz-wrapper .step.step1,
.formularz-wrapper .step.step3 {
    max-height: auto;
    overflow-y: auto;
    padding-right: auto
}

.formularz-wrapper form.wpcf7-form .step {
    display: block
}

.formularz-wrapper .step5 .select-selected {
    max-height: 58px;
    height: 58px;
    display: flex;
    align-items: center
}

.formularz-wrapper .step::-webkit-scrollbar {
    width: 5px;
    border-radius: 4px
}

.formularz-wrapper .step::-webkit-scrollbar-track {
    background: transparent;
    background-color: #F90A00;
}

.formularz-wrapper .step::-webkit-scrollbar-thumb {
    background: #f90a009c;
    border-radius: 5px;
    width: 5px
}

.formularz-wrapper .step::-webkit-scrollbar-thumb:hover {
    background: #f90a009c;
}

.formularz-wrapper .step h4 {
    display: block;
    margin: 0 auto 30px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-align: center
}

.formularz-wrapper .step .section-name-wrapper {
    margin: 30px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center
}

.formularz-wrapper .step .section-number {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    border: 1px solid #4c4c58;
    border-radius: 15px;
    color: #fff;
    font-size: 14px;
    margin-right: 10px;
    font-weight: 800
}

.formularz-wrapper .step .section-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-align: left
}

.formularz-wrapper .grid-col-mxw {
    grid-column: 1 / -1
}

.formularz-wrapper .input-wrapper.grid-col-mxw,
.input-wrapper.mxw {
    max-width: 100%
}

.formularz-wrapper .input-wrapper.zrodlo-select {
    grid-column: 1 / 3
}

.formularz-wrapper .pozycja-kredytobiorca {
    margin: 30px 0 20px;
    padding-left: 20px;
    border-left: 2px solid #f90a009c
}

.formularz-wrapper button.dodaj-nowa-pozycje {
    padding: 10px 15px;
    color: #fff;
    display: block;
    font-size: 11px;
    line-height: 11px;
    font-weight: 700;
    background-color: transparent;
    border: 1px solid #4c4c58;
    border-radius: 40px;
    outline: none;
    cursor: pointer;
    transition: .3s;
    box-shadow: none;
    margin-top: 15px
}

.formularz-wrapper button.dodaj-nowa-pozycje img {
    height: 10px;
    margin-right: 6px
}

.formularz-wrapper button.dodaj-nowa-pozycje:hover {
    border-color: #f90a009c;
    background-color: #f90a009c;
    -moz-box-shadow: 0px 12px 35px #47474785;
    -webkit-box-shadow: 0px 12px 35px #47474785;
    box-shadow: 0px 12px 35px #47474785
}

.formularz-wrapper input[type="date"] {
    cursor: pointer
}

.formularz-wrapper .input-wrapper.error input,
.formularz-wrapper .input-wrapper.error label,
.formularz-wrapper .input-wrapper.error .select-selected {
    border-color: #e50000;
    background-color: #ffe1e1;
    color: #ad0000
}

.formularz-wrapper .input-wrapper.error ::placeholder {
    color: #ad0000
}

.formularz-wrapper .input-wrapper textarea {
    width: 100%;
    font-size: 15px;
    line-height: 19px;
    min-height: 110px;
    font-weight: 600;
    border-radius: 0;
    padding: 18px 20px;
    outline: none;
    resize: vertical;
    transition: .3s;
    background-color: transparent;
    color: #fff !important;
    border-radius: 15px;
    border: 1px solid #F90A00
}

.formularz-wrapper .input-wrapper textarea:focus {
    border: 1px solid #f0f0f0
}

@media screen and (max-width: 700px) {
    .formularz-wrapper .formularz {
        padding: 70px 20px 0;
        border-radius: 35px;
        width: 100%;
        overflow: hidden
    }

    .formularz-wrapper .formularz .step {
        padding-bottom: 70px
    }

    .formularz-wrapper .grid3,
    .formularz-wrapper .grid2 {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
        grid-auto-rows: auto
    }

    .formularz-wrapper .formularz h3 {
        font-size: 25px;
        line-height: 25px;
        font-weight: 700
    }

    .formularz-wrapper .input-wrapper.zrodlo-select {
        grid-column: auto
    }

    .formularz-wrapper .checkbox-wrapper label {
        font-size: 12px;
        line-height: 16px
    }
}

.formularz-wrapper button.usun-pozycje {
    padding: 10px 15px;
    color: #fff;
    display: block;
    font-size: 11px;
    line-height: 11px;
    font-weight: 700;
    background-color: transparent;
    border: 1px solid #ab5e77;
    border-radius: 40px;
    outline: none;
    cursor: pointer;
    transition: .3s;
    box-shadow: none;
    margin-top: 15px;
    margin-bottom: 15px;
    text-transform: uppercase
}

.formularz-wrapper button.usun-pozycje:hover {
    border-color: #ab5e77;
    background-color: #450016
}

.formularz-wrapper .single-kredytobiorca {
    display: flex;
    flex-direction: column;
    margin-top: 25px;
    margin-bottom: 25px
}

.formularz-wrapper .zgoda-wrapper {
    margin-top: 30px;
    padding-left: 0
}

.formularz-wrapper .zgoda-wrapper label {
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
    color: #fff
}

.formularz-wrapper .zgoda-wrapper .wpcf7-list-item label {
    display: flex
}

.formularz-wrapper .zgoda-wrapper .wpcf7-list-item-label {
    cursor: pointer;
    display: block;
    font-size: 11px;
    font-weight: 500;
    line-height: 14px;
    font-family: "Satoshi", sans-serif;
    width: calc(100% - 22px)
}

.formularz-wrapper .zgoda-wrapper input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    margin-right: 10px;
    height: 22px;
    width: 22px;
    min-height: 22px;
    background-color: #1a2500;
    border: 1px solid #4c4c58;
    border-radius: 7px;
    cursor: pointer
}

.formularz-wrapper .zgoda-wrapper input[type="checkbox"]:checked {
    height: 22px;
    width: 22px;
    background-color: #1a2500;
    border: 1px solid #4c4c58;
    border-radius: 7px;
    overflow: hidden
}

.formularz-wrapper .zgoda-wrapper input[type="checkbox"]:checked::after {
    content: "\2713";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    background: red;
    border-color: #1a2500;
    background-color: #F90A00;
    background-image: linear-gradient(45deg, #304300 0%, #F90A00 100%);
    width: 22px;
    height: 22px;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center
}

.wpcf7-list-item {
    margin-left: 0
}

.formularz-wrapper .option-dzialanosc-gospodarcza small {
    font-size: 80%;
    margin-bottom: 0;
    display: block;
    padding-left: 20px;
    font-size: 10px
}

.formularz-wrapper .grid-auto-rows-auto {
    grid-auto-rows: auto
}

.formularz-wrapper .info-box {
    display: inline-block;
    position: absolute;
    margin-left: 10px;
    cursor: pointer;
    right: 0;
    top: 0
}

.formularz-wrapper .info-icon {
    display: flex;
    width: 15px;
    height: 15px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    font-weight: bold;
    align-items: center;
    justify-content: center
}

.formularz-wrapper .tooltip {
    display: none;
    position: absolute;
    top: 25px;
    right: 0;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
    font-size: 12px;
    line-height: 1.4;
    white-space: nowrap;
    z-index: 1000
}

.formularz-wrapper .tooltip::after {
    content: "";
    position: absolute;
    top: -5px;
    right: 2px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #ccc transparent
}

.formularz-wrapper .tooltip::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 10px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #fff transparent
}


/* ------------------------------------------------------------------------------------------- FORMULARZW DODATKOWE */

.contact-other-form-wrapper {

    display: none;
    align-items: center;
    justify-content: center;

    position: fixed;
    inset: 0;
    z-index: 10;


    background: linear-gradient(121deg,
            rgba(125, 5, 0, 0.8) 0%,
            rgba(249, 10, 0, 0.8) 100%);

}

.contact-other-form-wrapper--inside {
    display: block;
    background-color: #141212;
    border: 1px solid #141212;
    padding: 70px 45px;
    border-radius: 35px;
    position: relative;
    transition: all .3s;
    max-width: calc(100vw - 40px);
    overflow: hidden;
    box-shadow: 0px 10px 35px #F90A000d;

    max-height: 90vh;
    overflow: auto;
}



.contact-other-form-wrapper--inside .close-form-btn-other {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border-radius: 50px;
    cursor: pointer;
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 3;
    background: transparent radial-gradient(closest-side at 50% 50%, #FFFFFF41 0%, #FFFFFF1A 100%) 0% 0% no-repeat padding-box;
}

.contact-other-form-wrapper--inside .close-form-btn-other svg {
    height: 20px;
    width: 20px;
    object-fit: contain;
    object-position: center
}

.contact-other-form-wrapper--inside .input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-other-form-wrapper--inside .input-wrapper label {
    display: flex;
    flex-direction: column;

    font-size: 13px;
    line-height: 18px;
    color: white;
    font-weight: 600;
    gap: 10px;
}

.contact-other-form-wrapper--inside .input-wrapper input,
.contact-other-form-wrapper--inside .input-wrapper textarea {
    background-color: transparent;
    border: 1px solid #F90A00 !important;
    border-radius: 15px;
    padding: 14px 20px;
    font-size: 16px;
    line-height: 20px;
    color: white;
    font-weight: bold;
    width: 100%;
    transition: all 0.2s;
    outline: none !important;
}

.contact-other-form-wrapper--inside .button-wrapper {
    justify-content: center;
    margin-top: 20px;

}

.contact-other-form-wrapper--inside .input-wrapper textarea {
    resize: vertical;
    height: 100px;
}


.contact-other-form-wrapper--inside .wpcf7-response-output {
    margin-top: 10px !important;
}

@media screen and (max-width: 900px) {
    .contact-other-form-wrapper--inside {
        padding: 70px 20px 25px;
    }
}





/* ------------------------------------------------------------------------------------------- SEKCJA VIDEO section-video-slider */


.section-video-slider {
    margin-top: 50px;
    margin-bottom: 150px;
}

.section-video-slider .section-video-slider-title {
    display: flex;
    gap: 50px;
    margin-bottom: 75px;
}

.section-video-slider .section-video-slider-title .left-col {
    flex: 0 0 350px;
}

.section-video-slider .section-video-slider-title .right-col {
    flex: 1 0 814px;
    width: 100%;
}

.section-video-slider .section-video-slider-title .left-col h1,
.section-video-slider .section-video-slider-title .left-col h2,
.section-video-slider .section-video-slider-title .left-col h3 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 300;
}

.section-video-slider .section-video-slider-title .right-col {}

.section-video-slider .swiper {
    position: relative;
}

.section-video-slider .swiper::after {
    content: "";
    width: 40px;
    height: 100%;
    background: transparent linear-gradient(90deg, #14121200 0%, #000000 100%) 0% 0% no-repeat padding-box;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 2;
    pointer-events: none;

}


.section-video-slider .single-video {
    aspect-ratio: 9/16;
    width: 350px;
    height: auto;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
}

.section-video-slider .single-video .video-poster {
    width: 100%;
    height: 100%;

}

.section-video-slider .single-video .video-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-video-slider .single-video .video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-iframe-wrapper {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-iframe-wrapper iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.section-video-slider .single-video .video-cap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}




.section-video-slider .single-video svg {

    width: 75px;
    height: 75px;
    animation: pulse-animation 2s infinite;
    border-radius: 100%;
    fill: #F90A00;
}



@media screen and (max-width: 1250px) {
    .section-video-slider .section-video-slider-title {
        flex-direction: column;
    }

    .section-video-slider .section-video-slider-title .left-col {
        flex: initial;
    }

    .section-video-slider .section-video-slider-title .right-col *{
        text-align: center;
    }
   .section-video-slider .section-video-slider-title .left-col *{
        text-align: center;
    }

    .section-video-slider .section-video-slider-title .right-col {
        flex: initial;
    }
    .section-video-slider .section-video-slider-title .left-col h1,
    .section-video-slider .section-video-slider-title .left-col h2,
    .section-video-slider .section-video-slider-title .left-col h3 {
        font-size: 20px;
        line-height: 24px;
        font-weight: 300;
    }

    .section-video-slider .section-video-slider-title {

        gap: 30px;
        margin-bottom: 30px;
    }


    .section-video-slider {
    margin-top: 90px;
    margin-bottom: 90px;
}
}




@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.6);
    }

    100% {
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    }
}

@media only screen and (max-width: 768px) {

    .section-video-slider .single-video svg {

        width: 50px;
        height: 50px;
    }
}

