body{
    background: #ffffff;
    height:100%;
    min-height: 100%;
    color: #3d4043;
    font-family: "Roboto", sans-serif;
}

html {
    scroll-behavior: smooth;
    height:100%;
}

strong{
    font-weight: 800;
}



/*------------- home - clear------------------*/


.clear{
    height: 50px;
    width: 100%;
}

.clear2{
    height: 100px;
    width: 100%;
}

.clear3{
    height: 150px;
    width: 100%;
}

@media only screen and (max-width: 1480px) {
    .clear{
        height: 30px;
    }
    .clear2{
        height: 80px;
    }
    .clear3{
        height: 100px;
    }
}

@media only screen and (max-width: 1100px) {
    .clear{
        height: 20px;
    }
}

@media only screen and (max-width: 800px) {
    .clear2{
        height: 50px;
    }
}


/*------------- common elements - hero------------------*/


.introduction{
    padding-top: 50px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center !important;
}
#main{
    position: relative;
    background: #f7fbff;
    overflow: hidden;
}
.introduction::before,
.introduction::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(16,151,247,.12);
    animation: float 20s linear infinite;
}

.introduction::before {
    width: 220px; height: 220px;
    left: -60px;
    top: 40%;
}
.introduction::after {
    width: 180px; height: 180px;
    left: 45%;
    top: 18%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-40px); }
    100% { transform: translateY(0); }
}

#main .content {
    position: absolute;
    z-index: 2;
}

.introduction img{
    width: 100%;
    margin-top: -100px;
    position: relative;
}

.description{
    width: 90%;
    margin: auto;
    padding: 20px 0;
}

.description span{
    display: block;
    font-size: clamp(14px, 1.5vw, 4vw);
    font-weight: 300;
    text-align: center;
}

.introduction .content{
    padding: 100px 0 0 5%;
}

#main img{
    float: right;
    overflow: hidden;
    width: 100%;
    height: auto;
    margin-bottom: 80px;
    margin-top: 10px;
    z-index: 2;
}

#main .content{
    top: 150px;
    width: 95%;
    position: absolute;
}

#contact .content{
    width: 60%;
}

.introduction .blue{
    color: #1097f7;
    font-size: clamp(24px, 4vw, 5vw);
    font-weight: 800;
}

.introduction .dark{
    color: #3d4043;
    font-size: clamp(24px, 4vw, 5vw);
    font-weight: 300;
}

.introduction .thin{
    color: #3d4043;
    font-weight: 100;
    font-size: clamp(16px, 1.4vw, 1.8vw);
    line-height: 1.9rem;
    width: 27%;
    margin: 20px 0 30px 0;
}


@media only screen and (max-width: 800px) {
    #main .content{
        padding-top: 30px;
    }
    #main .thin{
        display: none;
    }
    #contact .content{
        background-color: rgba(255,255,255, 0.85);
        width: 100%;
        padding-bottom: 100px;
    }
}

@media only screen and (max-width: 550px) {
    #main img{
        margin-top: -30px;
        width: 150%;
        margin-bottom: 50px;
    }
    #contact .content{
        width: 100%;
        padding-top: 80px;
    }
}

@media only screen and (max-width: 480px) {
    .description{
        padding-bottom: 0;
    }
    #contact .content{
        width: 100%;
        padding-top: 50px;
    }
}


/*-------------home - client list------------------*/


.clients {
    padding: 150px 0 150px 0 !important;
    background-color: #f8f9fc;
}
.clients .content{
    width: 100%;
    text-align: center;
}

.clients .clients-logos {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.clients .clients-logos-img {
    width: calc(20% - 20px);
    background-color: #ffffff;
    position: relative;
    margin: 10px;
    overflow: hidden;
    padding-bottom: 20%;
}

.clients .clients-logos-img img {
    width: 100%;
    height: auto;
    max-width: 70%;
    max-height: 45%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.clients .clients-logos-img:hover{
    background-color: rgba(244,244,244,0.4);
}


@media only screen and (max-width: 800px) {
    .clients .clients-logos-img {
        width: calc(25% - 20px);
        padding-bottom: 25%;
    }
}

@media only screen and (max-width: 550px) {
    .clients .clients-logos-img {
        width: calc(33% - 20px);
        padding-bottom: 33%;
    }
}


/*-------------------------- home - services  --------------------------*/


.services{
    background-color: #f8f9fc;
    padding: 50px 0;
}

.services .container{
    width: 90%;
}

.services .container a{
    text-decoration: none;
}

.services .container .element{
    color: #3d4043;
    text-align: center;
    padding: 50px 30px 60px 30px;
    max-width: calc(33% - 2px);
    display: inline-block;
}

.services .container .element:hover{
    background-color: rgba(209,213,224,.2);
    cursor: pointer;
}

.services .container .element:hover h2{
    color: #1097f7;
}

.services .container .element .image-box {
    height: 160px;
    display: inline-block;
    justify-content: center;
    align-items: center;
}

.services .container .element img {
    max-width: 60%;
    height: auto;
}

.image-training{
    max-width: 60% !important;
}

.services .container .element h2{
    font-weight: 600;
    font-size: 20px;
}

.services .container .element span{
    font-weight: 300;
    font-size: 15px;
}

@media only screen and (max-width: 1050px) {
    .services .container .element{
        max-width: 50%;
        width: calc(50% - 4px);
    }
}

@media only screen and (max-width: 500px) {
    .services .container .element{
        max-width: 100%;
        width: 100%;
    }
}

@media only screen and (max-width: 440px) {
    .services .container .element .image-box {
        height: 100px;
    }

    .services .container .element img {
        max-width: 40%;
        height: auto;
    }
}

/*------------- home - training------------------*/


.trainings{
    padding: 100px 0;
    background: radial-gradient(circle at top right, #e0f2fe, transparent 60%),
                radial-gradient(circle at bottom left, #dbeafe, transparent 70%);
    background-color: #ffffff;
}


.trainings__inner{
    max-width: 80%;
    margin: 0 auto;
    display: grid;
    gap: clamp(20px, 3.5vw, 40px);
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
}

@media (max-width: 980px){
    .trainings__inner{
        grid-template-columns: 1fr;
    }
}

.trainings__lead{
    color: #3d4043;
    font-size: clamp(16px, 1.7vw, 18px);
    margin: 20px 0 20px 0;
    max-width: 56ch;
}

.trainings__cards{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 560px){
    .trainings__cards{ grid-template-columns: 1fr; }
}

.tcard{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    height: 100%;
}

.tcard--accent .tcard__icon{ color: #1097f7; }
.tcard__icon{
    background: color-mix(in srgb, #facc15 14%, transparent);
    width: 84px; height: 84px;
    border-radius: 12px;
    display: grid; place-items: center;
    margin: 0 auto 10px auto;
}
.tcard__icon img{
    width: 64px; height: 64px;
}
.tcard__title{
    font-size: 20px;
    margin: 2px 0 0;
    font-weight: 600;
}
.tcard__desc{
    color: #3d4043;
    margin: 15px 0;
    font-size: 15px;
    font-weight: 300;
    flex-grow: 1;
}

.btn{
    --btn-bg: #1097f7;
    --btn-text: #fff;
    --btn-border: transparent;
    align-self: flex-start;
    gap: .55rem;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    background: #1097f7;
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(37,99,235,.18);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.btn:hover{
    transform: translateY(-1px);
    background: transparent;
    color: #1097f7;
    border-color: color-mix(in srgb, #1097f7 38%, transparent);
    box-shadow: 0 10px 22px rgba(37,99,235,.22);
}

.tcard .btn{
    width: 100%;
}

.quote{
    grid-column: 1 / -1;
    margin-top: 30px;
    display: grid;
    gap: 14px;
}
.quote__text{
    font-size: clamp(22px, 3.2vw, 34px);
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.01em;
    font-weight: 100;
    font-style: italic;
    text-align: justify;
}
.quote__author{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    color: #3d4043;
    font-size: 15px;
}
.quote__avatar{
    width: 48px; height: 48px; border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(2,6,23,.15);
}

@media (prefers-reduced-motion: reduce){
    .btn{ transition: none; }
}

/*-------------------------- Certification PPZP --------------------------*/


.ppzp-certification .container{
    width: 90%;
    padding: 120px 0 100px 0;
    display: flex;
    gap: 90px;
    position: relative;
}

.ppzp-certification .left-box{
    width: 60%;
}

.ppzp-certification .right-box{
    width: 40%;
}

.trainings h2,
.ppzp-certification .left-box h2,
.meet-us h2,
.latest-updates h2,
.clients h2,
.cases h2,
.areas h2,
.process h2,
.deliver h2{
    color: #3d4043;
    font-size: 3rem;
    font-weight: 400;
}

.clients h2{
    text-align: center;
}

.trainings h2 span,
.ppzp-certification .left-box h2 span,
.ppzp-certification .left-box h3 span,
.clients h2 span,
.meet-us h2 span,
.latest-updates h2 span,
.trainers h2 span,
.cases h2 span,
.areas h2 span,
.process h2 span,
.deliver h2 span{
    color: #1097f7;
    font-weight: 600;
}

.ppzp-certification .left-box h3{
    color: #3d4043;
    font-size: 1.5rem;
    font-weight: 400;
}

.ppzp-certification .ppzp-desc{
    display: block;
    margin: 50px 0;
}

.certificate-more{
    text-decoration: none;
    display: block;
    color: #3d4043;
    font-weight: 600;
    float: right;
    margin: 50px 0 0 0;
    border: 1px solid #3d4043;
    padding: 20px 40px;
}

.certificate-more:hover{
    cursor: pointer;
    border: 1px solid #1097f7;
    color: #1097f7;
}

.ppzp-certification .ppzp-desc .certificate-contact{
    font-weight: 600;
    display: block;
    bottom: 180px;
    position: absolute;
}

.certificate-mail{
    width: calc(60% - 50px);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    background-color: #1097f7;
    border: 1px solid #1097f7;
    padding: 15px 0;
    display: block;
    border-radius: 10px;
    text-align: center;
    bottom: 100px;
    position: absolute;
}

.ppzp-certification a{
    text-decoration: none;
}

.certificate-mail:hover{
    color: #1097f7;
    background-color: transparent;
    cursor: pointer;
}

.ppzp-certification img{
    width: 100%;
}

@media only screen and (max-width: 1399px) {
    .certificate-more{
        margin: 20px 0 0 0;
    }
    .ppzp-certification .ppzp-desc .certificate-contact {
        bottom: 120px;
    }
    .certificate-mail {
        bottom: 50px;
    }
}

@media only screen and (max-width: 1250px) {
     .ppzp-certification .ppzp-desc .certificate-contact {
        bottom: 70px;
    }
    .certificate-mail {
        bottom: 10px;
    }
}

@media only screen and (max-width: 1050px) {
    .ppzp-certification .container {
        flex-direction: column;
    }

    .ppzp-certification .left-box,
    .ppzp-certification .right-box{
        width: 100%;
    }

    .ppzp-certification .right-box img{
        width: 50%;
        display: block;
        margin: auto;
    }

    .ppzp-certification .ppzp-desc .certificate-contact {
        position: unset;
        margin: 100px 0 20px 0;
    }

    .certificate-mail{
        position: unset;
        width: 100%;
    }


}
@media only screen and (max-width: 900px) {
    .ppzp-certification .right-box img{
        width: 80%;
    }
}

@media only screen and (max-width: 900px) {
    .ppzp-certification .left-box h2,
    .meet-us h2,
    .latest-updates h2,
    .clients h2{
        font-size: 2rem;
    }

    .ppzp-certification .left-box h3 {
        font-size: 1.2rem;

    }
}

@media only screen and (max-width: 440px) {
    .ppzp-certification .left-box h2,
    .meet-us h2,
    .latest-updates h2,
    .clients h2{
        font-size: 1.5rem;
    }

    .ppzp-certification .left-box h3 {
        font-size: 1rem;
    }

    .ppzp-certification .ppzp-desc{
        font-size: 12px;
    }
}


/*-------------home - navigation------------------*/


.meet-us{
    padding: 100px 0;
}

.meet-us h2{
    text-align: center;
    margin-bottom: 80px;
}

.meet-us .container{
    width: 80%;
    margin: auto;
    display: flex;
}

.meet-us .column1 {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-right: 40px;
}

.meet-us .column2 {
    flex: 1;
}

.meet-us  a{
    text-decoration: none;
}

.meet-us  h3{
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 22px;
}

.meet-us .box-1, .meet-us .box-2{
    border-radius: 25px;
    padding: 50px;
    color: #ffffff;
}

.meet-us .box-1{
    height: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.meet-us .box-1 .meet-us-image img, .meet-us .box-2 .meet-us-image img{
    width: 150px;
    display: block;
    margin: auto;
}

.meet-us .box-2 .meet-us-text h3{
    padding: 50px 0 20px 0;
}

.meet-us .box-1 .meet-us-image, .meet-us .box-1 .meet-us-text{
    flex: 1;
    font-size: 18px;
    font-weight: 300;
}

.meet-us .box-2 .meet-us-text{
    font-size: 18px;
    font-weight: 300;
}

.meet-us .green{
    background-color: rgba(70,167,139,1);
}

.meet-us .green:hover{
    background-color: rgba(70,167,139,.8);
    cursor: pointer;
}

.meet-us .blue{
    background-color: rgba(99,187,249,1);
}

.meet-us .blue:hover{
    background-color: rgba(99,187,249,.8);
    cursor: pointer;
}

.meet-us .box-2{
    background-color: rgba(34,87,122,1);
    height: 500px;
    text-align: center;
}

.meet-us .box-2:hover{
    background-color: rgba(34,87,122,.8);
    cursor: pointer;
}

@media only screen and (max-width: 1050px) {
    .meet-us .container{
        flex-direction:  column;
    }
    .meet-us .column1 {
        flex:1;
        gap: 0;
        margin-right: 0;
    }
    .meet-us .box-1{
        margin-bottom: 20px;
    }
    .meet-us .box-2{
        height: 230px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: left;
    }
    .meet-us .box-2 .meet-us-image, .meet-us .box-2 .meet-us-text{
        flex: 1;
    }
    .meet-us .box-2 .meet-us-text h3{
        padding: 0;
    }
}

@media only screen and (max-width: 750px) {
    .meet-us  h3{
        font-size: 18px;
    }

    .meet-us .meet-us-text span{
        font-size: 14px;
     }

    .meet-us .box-1 .meet-us-image img, .meet-us .box-2 .meet-us-image img{
        width: 120px;
    }

    .meet-us .box-1 .meet-us-image, .meet-us .box-2 .meet-us-image{
        flex: 1;

    }
    .meet-us .box-1 .meet-us-text, .meet-us .box-2 .meet-us-text{
        flex: 2;
        line-height: 18px;
        padding-left: 20px;
    }
}

@media only screen and (max-width: 500px) {

    .meet-us .box-1, .meet-us .box-2{
        padding: 20px;
    }

    .meet-us .box-1 .meet-us-image img, .meet-us .box-2 .meet-us-image img{
        width: 100px;
    }

    .meet-us .box-1 .meet-us-image, .meet-us .box-2 .meet-us-image{
        flex: 1;

    }

    .meet-us .box-1 .meet-us-text, .meet-us .box-2 .meet-us-text{
        flex: 3;
        line-height: 16px;
        font-size: 12px;
    }

    .meet-us .box-2 .meet-us-text h3, .meet-us .box-1 .meet-us-text h3{
        font-size: 14px
    }
}

@media only screen and (max-width: 420px) {
    .meet-us .box-1 .meet-us-image, .meet-us .box-2 .meet-us-image{
        width: 100%;
        padding-bottom: 30px;
    }

    .meet-us .box-1, .meet-us .box-2{
        display: flex;
        flex-direction: column;
        height: 300px;
    }
}


/*-------------------------- home - latest updates --------------------------*/


.latest-updates .container{
    width: 80%;
    margin: auto;
    padding: 100px 0;
}

.latest-updates h2{
    text-align: center;
    margin-bottom: 80px;
}

.latest-updates .news-row{
    display: flex;
    justify-content: center;
}

.latest-updates .news-element{
    flex: 0 0 33.33%;
    margin: 0 10px;
    background-color: #f8f9fc;
    padding: 20px;
    position: relative;
}

.latest-updates .news-element img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.latest-updates .news-title{
    color: #1097f7;
    font-weight: 600;
    font-size: 20px;
    padding: 10px 0;
}

.latest-updates .news-short{
    font-weight: 300;
    padding-bottom:60px;
}

.latest-updates .news-more{
    background-color: #1097f7;
    border: 1px solid #1097f7;
    color: #ffffff;
    padding: 10px 40px;
    border-radius: 10px;
    text-align: center;
    position: absolute;
    bottom: 20px;
    right: 20px;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.latest-updates .news-more a{
    text-decoration: none;
}

.latest-updates .news-more:hover{
    background-color: transparent;
    color: #1097f7;
    box-shadow: 0 10px 22px rgba(37,99,235,.22);
}

.see-more-news {
    float: right;
    padding: 20px 0;
    color: #3d4043;
    font-weight: 600;
    text-decoration: none;
}

.see-more-news:hover{
    color: #1097f7;
}

@media only screen and (max-width: 1130px) {
    .latest-updates .news-row{
        flex-wrap: wrap;
        justify-content: left;
    }

    .latest-updates .news-element {
        flex: 0 0 calc(50% - 20px);
        margin: 0 10px 20px 10px;

    }
    .see-more-news {
       margin-top: -300px;
        margin-right: 10%;
    }
}

@media only screen and (max-width: 820px) {
    .latest-updates .news-element {
        flex: 0 0 100%;
        margin: 0 0 20px 0;

    }
    .see-more-news {
        margin-top: 0;
        margin-right: 0;
    }
}


/*-------------------------- home - logos --------------------------*/


.logos{
    text-align: center;
}

.short-line{
    width: 30%;
    display: block;
    margin: auto;
}

.logos img{
    width: 100px;
    display: inline-block;
    margin: 50px 20px;
    filter: grayscale(100%);
}


/*-------------------------- CERTIFICATION --------------------------*/


.certificate-header{
    width: 100%;
    display: block;
    position: relative;
}

.certificate-header img{
    padding-top: 30px;
    width: 100%;
}

.certificate-header .ppzp-name{
    width: 30%;
    position: absolute;
    right: 5%;
    top: 15%;
}

.certificate-header .ppzp-short-desc{
    position: absolute;
    width: 40%;
    font-size: 22px;
    font-weight: 300;
    right: 5%;
    top: 55%;
    text-align: right;
}

.certificate-header .contact-us {
    color: #ffffff;
    background-color: #ffc521;
    padding: 20px 150px;
    text-align: center;
    border: 2px solid #ffc521;
    border-radius: 45px;
    position: absolute;
    right: 5%;
    top: 75%;
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}

.certificate-header .contact-us:hover {
    color: #ffc521;
    background-color: transparent;
    cursor: pointer;
}

.o-ppzp .container,
.problematyka .container,
.znaczenie-ppzp .container,
.zalety-ppzp .container,
.wymagania-ppzp.container,
.oceny-cert .container,
.kto-certyfikuje .container,
.dla-kogo-ppzp .container,
.contact-ppzp .container,
.koszt-ppzp .container,
.ppzp-formularz .container,
.bibliography .container{
    width: 90%;
    display: block;
    margin: auto;
    padding: 100px 0;
    color: #3d4043;
    font-size: 1.2rem;
    font-weight: 300;
}

.wymagania-ppzp{
    padding-top: 100px;
}

.o-ppzp,
.wymagania-ppzp,
.znaczenie-ppzp,
.kto-certyfikuje,
.koszt-ppzp{
    background: #f8f9fc;
}

.problematyka .problematyka-desc,
.zalety-ppzp .container{
    display: flex;
    column-gap: 40px;
}

.zalety-ppzp .left-box{
    flex-basis: 55%;
}

.zalety-ppzp .right-box{
    max-width: 45%;
}

.zalety-ppzp .right-box img{
    max-width: 100%;
}

.line {
    width: 12px;
    height: 100%;
    background-color: #fee93e;
    border-radius: 10px;
    position: relative;
}

.dot {
    position: absolute;
    left: 50%;
    width: 25px;
    height: 25px;
    background-color: #ffc521;
    border-radius: 50%;
    transform: translateX(-50%);
}

.dot:nth-child(1) {
    top: 10%;
}

.dot:nth-child(2) {
    top: 30%;
}

.dot:nth-child(3) {
    top: 50%;
}

.dot:nth-child(4) {
    top: 70%;
}

.dot:nth-child(5) {
    top: 90%;
}

.problematyka .left-box{
    flex-basis: 60%;
}

.problematyka .center-box{
    flex-basis: 5%;
}

.problematyka .right-box{
    flex-basis: 32%;
    float: right;
}

.problematyka .problem{
    display: block;
    padding: 30px 0;
}

.problematyka .right-box img{
    width: 85px;
}

.problematyka .problem-desc{
    float: right;
    text-align: right;
    font-weight: 300;
}

.problematyka .right-box span{
    font-weight: 800;
    font-size: 26px;
}

.o-ppzp h2,
.problematyka h2,
.znaczenie-ppzp h2,
.zalety.-ppzp h2,
.zalety-ppzp .left-box h2,
.wymagania-ppzp h2,
.kto-certyfikuje h2,
.dla-kogo-ppzp h2,
.contact-ppzp h2,
.koszt-ppzp h2,
.ppzp-formularz h2,
.training-types h2,
.training-desc h2{
    color: #3d4043;
    font-size: 2rem;
    font-weight: 300;;
    padding-bottom: 40px;
}

.o-ppzp h2,
.znaczenie-ppzp .center{
    text-align: center;
}

.oceny-cert h2{
    color: #ffffff;
    font-weight: 300;
    text-align: center;
    padding-bottom: 20px;
}

.oceny-cert h2 span{
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    padding-bottom: 20px;
}

.o-ppzp h2 span,
.problematyka h2 span,
.znaczenie-ppzp h2 span,
.zalety-ppzp h2 span,
.zalety-ppzp .left-box h2 span,
.wymagania-ppzp h2 span,
.kto-certyfikuje h2 span,
.dla-kogo-ppzp h2 span,
.contact-ppzp h2 span,
.koszt-ppzp h2 span,
.ppzp-formularz h2 span,
.training-types h2 span,
.training-desc h2 span{
    color: #1097f7;
    font-weight: 600;
}

.znaczenie-ppzp .tagi{
    display: flex;
    margin: 30px 0 60px 0;
    flex-wrap: wrap;
    gap: 10px;
    column-gap: 10px;
}

.znaczenie-tag{
    border: 3px solid #c1eefd;
    color: #1097f7;
    padding: 15px 80px;
    border-radius: 45px;
    line-height: 24px;
}

.znaczenie-tag div{
    display: inline-block;
}

.znaczenie-tag .value{
    color: #ffc521;
    font-weight: 800;
    font-size: 50px;
    margin-right: 10px;
}

.znaczenie-tag span{
    font-weight: 600;
}

.znaczenie-ppzp .sources,
.bibliography .container,
.bibliography ul{
    color: #8e9092;
    font-size: 13px;
}

.znaczenie-ppzp .hr-line,
.hr-line2{
    border-bottom: 1px solid #686a6c;
    width: 40%;
    margin: 50px auto;
    display: block;
}

.oceny-cert{
    background-repeat: no-repeat;
    background-position: left !important;
    background-size: cover;
    background-image: url('/img/home_bg.webp');
}

.oceny-cert .container-bg{
    background-color: rgba(255, 255, 255, .65);
    width: 100%;
    padding: 30px;
}

.oceny-cert table{
    width: 100%;
    border: 1px solid #3d4043;
}

.oceny-cert td {
    border: 1px solid #3d4043;
    padding: 30px;
}

.oceny-cert .passedplus{
    color: #13674f;
    text-align: center;
}

.oceny-cert .passed{
    color: #2fbf71;
    text-align: center;
}

.oceny-cert .passedplus,
.oceny-cert .passed{
    font-weight: 600;
    white-space: nowrap;
    padding: 30px 50px;
}

.contact-ppzp{
    text-align: center;
}

.wymagania-ppzp .flow-box-holder{
    display: flex;
    gap: 50px;
}

#wymagania-ppzp .container{
    padding: 0 0 80px 0;
}

#wymagania-ppzp h2{
    text-align: center;
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

#wymagania-ppzp .right-box img{
    max-height: 600px;
    width: auto;
}

.dolacz-do-programu-ppzp .form-group {
    margin-bottom: 1rem;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.dolacz-do-programu-ppzp input{
    background-color: rgba(61,64,67,.1);
    padding: 12px 20px 12px 20px;
    border: none;
    border-radius: 8px;
    color: #3d4043;
    width: 100%;
}

.dolacz-do-programu-ppzp input:focus{
    outline: none;
}

.dolacz-do-programu-ppzp  .full {
    width: 100%;
}

.dolacz-do-programu-ppzp  .full-width {
    width: 100%;
    gap: 0;
}

.dolacz-do-programu-ppzp  .mid-width {
    width: 75%;
}

.dolacz-do-programu-ppzp  .short-width {
    width: 25%;
}

.dolacz-do-programu-ppzp  .half-width {
    width: 50%;
}

.dolacz-do-programu-ppzp .hr-line{
    border-bottom: 1px solid rgba(61,64,67,.5);
    width: 50%;
    margin: 20px auto 30px auto;
    float: left;
}

.dolacz-do-programu-ppzp .terms-checkbox{
    display: flex;
    margin-bottom: 15px;
}

.dolacz-do-programu-ppzp input[type="checkbox"] {
    appearance: none;
    background-color: rgba(61,64,67,.1);
    margin: 0;
    font: inherit;
    width: 20px;
    height: 40px;
    color: currentColor;
    border-radius: 5px;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

.dolacz-do-programu-ppzp input[type="checkbox"]::before {
    content: "";
    width: 0.9em;
    height: 0.9em;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    /* Windows High Contrast Mode */
    background-color: #1097f7;
}

.dolacz-do-programu-ppzp input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.dolacz-do-programu-ppzp .checkbox-label {
    margin-left: 30px;
    font-size: 15px;
}

.dolacz-do-programu-ppzp input[type=submit] {
    background-color: #1097f7;
    color: #ffffff;
    border: 2px solid #1097f7;
    border-radius: 30px;
    width: 100%;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 20px;
    padding: 15px;
    margin: 20px 0;
    cursor: pointer;
}

.dolacz-do-programu-ppzp  input[type=submit]:hover{
    background-color: transparent;
    color: #1097f7;
    cursor: pointer;
}

.ppzp-formularz .error-form{
    color: #ffffff;
    width: 100%;
    padding: 20px;
    background-color: rgba(219,50,77,1);
    margin-bottom: 30px;
}

.ppzp-formularz .ppzp-thank-you{
    color: #ffffff;
    background-color: rgba(1,142,66,1);
    padding: 50px 50px;
}

.ppzp-formularz .ppzp-thank-you h2{
    color: #ffffff;
    font-weight: 600;
}

small{
    color: #DB324D;
    font-size: 15px;
}

.contact-ppzp .contact-line{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.contact-line .contact-box{
    border-radius: 15px;
    flex-basis: calc(25% - 15px);
    aspect-ratio: 1 / 1;
    color: #ffffff;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-line .contact-box span{
    font-weight: 800;
}

.contact-line .contact-box a{
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

.contact-line .contact-box a:hover{
    color: #ffffff;
}

.contact-line #mail-box,
.contact-line #messenger-box{
    width: 100%;
    height: 100%;
}

.contact-line i{
    color: #ffffff;
    display: block;
    margin: 20px auto 40px auto;
    font-size: 56px;
}

.contact-line #mail{
    background-color: #4fadf6;
}

.contact-line #phone{
    background-color: #22577a;
}

.contact-line #whatsapp{
    background-image: linear-gradient(to top right, #1dce3f, #3fec5f);
}

.contact-line #messenger{
    background-image: linear-gradient(to top right, #0b92ff, #c740cb, #ff6f62);
}

.contact-line #messenger:hover,
.contact-line #mail:hover{
    opacity: 50%;
    cursor: pointer;
}

.bibliography ul{
    list-style: none;
    padding: 0;
}


@media only screen and (max-width: 1399px) {
    .problematyka .problem{
        font-size: 16px;
        padding: 40px 0;
    }
}

@media only screen and (max-width: 1300px) {
    .znaczenie-ppzp h2,
    .zalety-ppzp h2,
    .contact-ppzp h2,
    #wymagania-ppzp h2,
    .kto-certyfikuje h2 ,
    .koszt-ppzp h2{
        font-size: 2rem;
    }
}

@media only screen and (max-width: 1200px) {
    .problematyka .problem{
        font-size: 14px;
        padding: 50px 0;
    }
    .problematyka .right-box span{
        font-size: 22px;
    }
}

@media only screen and (max-width: 1080px) {
    .certificate-header .ppzp-short-desc{
        font-size: 20px;
    }
    .certificate-header .contact-us {
        font-size: 24px;
    }
    #wymagania-ppzp .flow-box-holder,
    .zalety-ppzp .container{
       flex-direction: column;
    }
    .zalety-ppzp .left-box{
        flex: 1;
    }
    .zalety-ppzp .right-box{
        margin-top: 40px;
        flex: 1;
        max-width: 100%;
    }
    #wymagania-ppzp .flow-box-holder .right-box img,
    .zalety-ppzp .right-box img{
        display: block;
        margin: auto;
        width: 40%;
    }
}

@media only screen and (max-width: 1035px) {
    .o-ppzp h2,
    .problematyka h2,
    .znaczenie-ppzp h2,
    .zalety.-ppzp h2,
    .zalety-ppzp .left-box h2,
    #wymagania-ppzp h2,
    .kto-certyfikuje h2,
    .dla-kogo-ppzp h2,
    .contact-ppzp h2,
    .koszt-ppzp h2,
    .training-types h2,
    .training-desc h2{
        font-size: 1.8rem;
        padding-bottom: 40px;
    }
    .problematyka .problematyka-desc{
        flex-direction: column;
    }

    .problematyka .left-box{
        flex-basis: 60%;
    }

    .problematyka .center-box{
        display: none;
    }

    .problematyka .right-box{
        display: flex;
        flex-wrap: wrap;
        column-gap: 50px;
        justify-content: center;
        padding-top: 50px;
    }

    .problematyka .problem{
        font-size: 18px;
        display: flex;
        padding: 30px 0;
    }

    .problematyka .problem .problem-desc{
        margin-left: 10px;
    }

    .problematyka .right-box span{
        font-size: 28px;
    }

}

@media only screen and (max-width: 1000px) {
    .o-ppzp h2,
    .problematyka h2,
    .znaczenie-ppzp h2,
    .zalety.-ppzp h2,
    .zalety-ppzp .left-box h2,
    #wymagania-ppzp h2,
    .kto-certyfikuje h2,
    .dla-kogo-ppzp h2,
    .contact-ppzp h2,
    .koszt-ppzp h2{
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 991px) {
    .contact-line .contact-box{
        flex-basis: calc(50% - 10px);
    }

}

@media only screen and (max-width: 920px) {
    .certificate-header .ppzp-name{
        top: 20%;
    }
    .certificate-header .ppzp-short-desc{
        font-size: 18px;
        top: 55%;
    }
    .certificate-header .contact-us {
        font-size: 18px;
        top: 80%;
    }
}

@media only screen and (max-width: 830px) {

    .certificate-header img {
        padding-top: 0;
    }
    .certificate-header .contact-us {
        padding: 15px 100px;
    }
    .certificate-header .ppzp-short-desc{
        font-size: 16px;
    }
    .certificate-header .contact-us {
        font-size: 18px;
    }
}

@media only screen and (max-width: 800px) {

    .o-ppzp h2,
    .problematyka h2,
    .znaczenie-ppzp h2,
    .zalety.-ppzp h2,
    .zalety-ppzp .left-box h2,
    #wymagania-ppzp h2,
    .kto-certyfikuje h2,
    .dla-kogo-ppzp h2,
    .contact-ppzp h2,
    .koszt-ppzp h2{
        font-size: 1.5rem;
    }
    .problematyka .problem{
        font-size: 13px;
        padding: 30px 0;
    }
    .problematyka .right-box span{
        font-size: 20px;
    }
    .znaczenie-tag{
        padding: 10px 50px;
        line-height: 22px;
        font-size: 16px;
    }
    .znaczenie-tag .value{
        font-size: 40px;
    }
    .oceny-cert .passedplus,
    .oceny-cert .passed{
        font-weight: 600;
        white-space: initial;
    }
    .passedplus{
        background-color: rgba(19,103,79,.2);
    }
    .passed{
        background-color: rgba(47,191,113,.2);
    }
    .failed{
        border-top: 2px double CurrentColor;
    }
    .oceny-cert td {
        display: block;
        width: 100%;
    }
}

@media only screen and (max-width: 780px) {
    .certificate-header .ppzp-name{
        top: 15%;
    }
   .certificate-header .ppzp-short-desc{
        font-size: 14px;
        top: 55%;
    }
    .certificate-header .contact-us {
        padding: 10px 80px;
        top: 75%;
        font-size: 14px;
    }
    .problematyka .problem {
        padding: 30px 0;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    .problematyka .right-box img {
        display: block;
        margin-bottom: 20px;
        height: 70px;
        width: auto;
    }
}

@media only screen and (max-width: 650px) {
    .certificate-header .ppzp-name{
        top: 25%;
    }
    .certificate-header .ppzp-short-desc {
        font-size: 14px;
        top: 65%;
        width: 50%;
    }
    .certificate-header .contact-us {
        padding: 10px 80px;
        top: 85%;
        font-size: 14px;
    }
}

@media only screen and (max-width: 560px) {

    .certificate-header .ppzp-short-desc {
        top: 60%;
        width: 55%;
    }
    .oceny-cert td {
       font-size: 13px;
    }

    .o-ppzp .container,
    .problematyka-desc,
    .znaczenie-ppzp .container,
    .wymagania-ppzp,
    .zalety-ppzp .container,
    .oceny-cert .container,
    .dla-kogo-ppzp .container,
    .ppzp-certification .container,
    .contact-ppzp .container,
    .kto-certyfikuje .container,
    .koszt-ppzp .container{
        font-size: 13px;
        padding: 40px 0;
    }

    .o-ppzp h2,
    .problematyka h2,
    .znaczenie-ppzp h2,
    .zalety.-ppzp h2,
    .zalety-ppzp .left-box h2,
    #wymagania-ppzp h2,
    .kto-certyfikuje h2,
    .dla-kogo-ppzp h2,
    .contact-ppzp h2,
    .koszt-ppzp h2{
        padding-bottom: 10px;
    }

    .bibliography ul{
        font-size: 11px;
    }
}

@media only screen and (max-width: 470px) {
    .certificate-header .ppzp-short-desc {
        font-size: 12px;
    }
    .problematyka .problem {
        font-size: 9px;
    }
    .problematyka .right-box img {
        margin-bottom: 15px;
        height: 55px;
    }
    .problematyka .right-box span {
        font-size: 14px;
    }
    .znaczenie-tag{
        border: 2px solid #c1eefd;
        padding: 5px 30px;
        line-height: 20px;
        font-size: 14px;
    }
    .znaczenie-tag .value{
        font-size: 35px;
    }
    #wymagania-ppzp .flow-box-holder .right-box img{
        width: 100%;
    }
    .contact-ppzp .contact-line{
        gap: 10px;
    }
    .contact-line i{
        margin: 10px auto 20px auto;
        font-size: 40px;
    }
}

@media only screen and (max-width: 470px) {
    .certificate-header .ppzp-short-desc {
        width: 70%;
        font-size: 12px;
    }
    .certificate-header .contact-us {
        padding: 5px 50px;
        font-size: 12px;
    }
}

/*-------------------------- TRAINING  --------------------------*/


#training{
    background-image: url('/img/get-involved_internships.webp');
    background-position: right !important;
    background-size: 60%;
    padding: 50px 0 0 0;
    height: 45vw;
    background-origin: content-box;
}

#training .content{
    max-width:80%;
}


/*-------------------------- ABOUT US --------------------------*/


.about-us{
    width: 100%;
    text-align: center;
    padding: 50px 0;
}

.about-us .content{
    width: 100%;
    text-align: center;
    margin: 50px auto 0 auto;
    display: flex;
}

.about-us .about-blue{
    color: #1097f7;
    font-size: 4rem;
    font-weight: 800;
    line-height: 4rem;
    padding-bottom: 50px;
}

.about-us .about-dark{
    color: #3d4043;
    font-size: 4rem;
    font-weight: 400;
    line-height: 4rem;
}

.about-us span{
    display: block;
    padding-bottom: 50px;
    font-weight: 300;
    font-size: 1.2rem;
}

.about-us .no-space{
    padding-bottom: 0;
}

.box-img-right{
    width: 100%;
    position: relative;
    text-align: right;
}

.box-img-left, .box-img-center{
    width: 100%;
    position: relative;
    text-align: left;
}

.box-img-left img, .box-img-right img{
    width: 60%;
}

.box-img-center img{
    width: 95%;
    display: block;
    margin: auto;
}

.box-text-right, .box-text-left{
    width: 35%;
    padding-top: 100px;
    position: absolute;
}

.box-text-right{
    text-align: right !important;
    right: 0;
    padding-right: 5%;
}

.box-text-left{
    text-align: left !important;
    padding-left: 5%;
}

.about-us .hr-line{
    border-bottom: 1px solid #3d4043;
    width: 50%;
    margin: auto;
}

.about-us a{
    text-decoration: none;
}

.statute{
    background-image: linear-gradient(to right, #1189e3, #51b4fa);
    border: 1px solid #1189e3;
    width: 70%;
    border-radius: 15px;
    color: #ffffff;
    padding: 15px 30px;
    margin: auto;
    cursor: pointer;
}

.statute:hover{
    background-image: none;
    background-color: transparent;
    color: #1189e3;
    cursor: pointer;
}

.statute span{
    display: block;
    font-size: 1.5rem;
}

.statute .thin{
    font-weight: 300;
}

@media only screen and (max-width: 1500px) {
    .about-us .box-text-right, .about-us .box-text-left{
        width: 40%;
    }
}

@media only screen and (max-width: 1400px) {
    .about-us .about-blue{
        font-size: 3.5rem;
        line-height: 3.5rem;
    }
    .about-us .about-dark{
        font-size: 3.5rem;
        line-height: 3.5rem;
    }
    .about-us .box-text-right span, .about-us .box-text-left span{
        font-size: 1.3rem;
    }
}

@media only screen and (max-width: 1200px) {
    .about-us .box-text-right, .about-us .box-text-left{
        padding-top: 50px;
    }
}

@media only screen and (max-width: 1100px) {
    .about-us .about-blue{
        font-size: 3rem;
        line-height: 3rem;
        padding-bottom: 20px;
    }
    .about-us .about-dark{
        font-size: 3rem;
        line-height: 3rem;
    }
    .about-us .box-text-right span, .about-us .box-text-left span{
        font-size: 1.2rem;
    }
}

@media only screen and (max-width: 900px) {
    .about-us .about-blue{
        font-size: 2.5rem;
        line-height: 2.5rem;
        padding-bottom: 20px;
    }
    .about-us .about-dark{
        font-size: 2.5rem;
        line-height: 2.5rem;
    }
    .about-us .box-text-right span, .about-us .box-text-left span{
        font-size: 1rem;
    }
}

@media only screen and (max-width: 800px) {
    .about-us .about-blue{
       text-align: center;
    }
    .about-us .about-dark{
        text-align: center;
    }
    .about-us .box-text-right, .about-us .box-text-left{
        width: 100%;
        display: block;
        position: relative;
        margin: auto;
        padding: 0 5% 0 5%;
    }
    .about-us .box-text-right span, .about-us .box-text-left span{
        font-size: 1.2rem;
        text-align: center;
    }
    .about-us .box-img-right img, .about-us .box-img-left img{
        width: 80%;
    }
    .about-us .float-center{
        margin: auto;
        display: block;
    }
    .about-us .float-right img{
        float: right !important;
        margin-right: 0;
    }
    .statute span{
        font-size: 1.2rem;
    }
}

@media only screen and (max-width: 800px) {
    .statute{
        width: 90%;
    }
}

@media only screen and (max-width: 500px) {
    .about-us .about-blue{
        font-size: 2rem;
        line-height: 2rem;
        padding-bottom: 20px;
    }
    .about-us .about-dark{
        font-size: 2rem;
        line-height: 2rem;
    }
    .about-us .box-text-right span, .about-us .box-text-left span{
        font-size: 1rem;
    }
    .statute span{
        font-size: .9rem;
    }
}

@media only screen and (max-width: 350px) {
    .about-us {
        padding: 20px 0 50px 0;
    }
}


/*-------------------------- GET INVOLVED -------------------------------*/


.get-involved{
    width: 100%;
    text-align: center;
    padding: 80px 0;
}

.get-involved .content{
    width: 80%;
    display: block;
    margin: auto;
}

.get-involved span{
    display: block;
    padding-bottom: 10px;
    font-weight: 300;
    font-size: 1.8rem;
}

.box-text-right span, .box-text-left span{
    font-size: 1.6rem;
}

.get-involved .space{
    padding-bottom: 50px;
}

.get-involved .about-blue{
    color: #1097f7;
    font-size: 3rem;
    font-weight: 800;
    line-height: 4rem;
    padding-bottom: 80px;
}

.get-involved a{
    text-decoration: none;
}

.get-involved .join-us-btn{
    color: #ffffff;
    text-align: center;
    padding: 15px 30px;
    background-image: linear-gradient(to right, #1189e3, #51b4fa);
    border: 1px solid #1189e3;
    width: 80%;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
    font-size: 1.8rem;
    margin-top: 20px;
}

.get-involved .join-us-btn:hover{
    color: #1189e3;
    background-image: none;
    cursor: pointer;
}

.get-involved .content img{
    width: 80%;
    margin: 50px 0;
}

.get-involved .box-img-left{
    margin-top: 50px;
}

.get-involved .box-img-right{
    margin-bottom: 50px;
}

@media only screen and (max-width: 1500px) {
    .get-involved span{
        font-size: 1.5rem;
    }
    .get-involved .join-us-btn{
        font-size: 1.5rem;
    }
    .get-involved .box-text-right span, .get-involved .box-text-left span{
        font-size: 1.4rem;
    }
}

@media only screen and (max-width: 1400px) {
    .get-involved .box-text-right, .get-involved .box-text-left {
        width: 40%;
    }
}

@media only screen and (max-width: 1250px) {
    .get-involved span{
        font-size: 1.4rem;
    }
    .get-involved .join-us-btn{
        font-size: 1.4rem;
    }
    .get-involved .box-text-right span,  .get-involved .box-text-left span{
        font-size: 1.2rem;
    }
    .get-involved .about-blue{
        font-size: 2.8rem;
        line-height: 3.5rem;
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 1199px) {
    .certification-menu li {
        margin: 0 10px;
    }
}

@media only screen and (max-width: 1080px) {
    .get-involved .about-blue{
        font-size: 2.5rem;
        line-height: 3rem;
        padding-bottom: 30px;
    }
    .get-involved .box-text-right,  .get-involved .box-text-left {
        padding-top: 50px;
    }
    .get-involved .box-img-left{
        margin-top: 20px;
    }
}

@media only screen and (max-width: 900px) {
    .get-involved .box-text-right,  .get-involved .box-text-left {
        width: 80%;
        display: block;
        position: relative;
        margin: auto;
        padding: 50px 0 0 0;
    }
    .get-involved .about-blue{
        text-align: center;
    }
    .get-involved .box-text-right span,  .get-involved .box-text-left span{
        font-size: 1.4rem;
        text-align: center;
    }
    .get-involved .box-img-left, .get-involved .box-img-right{
       display: block;
    }
    .get-involved .box-img-left img , .get-involved .box-img-right img{
        width: 80%;
        margin-top: 50px
    }
    .get-involved .join-us-btn{
        width: 100%;
    }
}

@media only screen and (max-width: 600px) {
    .get-involved .box-text-right, .get-involved .box-text-left {
        width: 90%;
    }
    .get-involved .box-img-left img , .get-involved .box-img-right img{
        width: 90%;
    }
}

@media only screen and (max-width: 500px) {
    .get-involved{
        padding: 50px 0;
    }
    .get-involved span{
        font-size: 1.2rem;
    }
    .get-involved .join-us-btn{
        font-size: 1.2rem;
    }
    .get-involved .box-text-right span,  .get-involved .box-text-left span{
        font-size: 1.2rem;
    }
    .get-involved .about-blue{
        font-size: 2.3rem;
        line-height: 3rem;
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 400px) {
    .get-involved span{
        font-size: 1rem;
    }
    .get-involved .join-us-btn{
        font-size: 1rem;
    }
    .get-involved .box-text-right span,  .get-involved .box-text-left span{
        font-size: 1rem;
    }
    .get-involved .about-blue{
        font-size: 1.3rem;
        line-height: 2.5rem;
        padding-bottom: 10px;
    }
    .get-involved .box-img-left{
        margin-top: 20px;
    }

    .get-involved .box-img-right{
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 350px) {
    .get-involved{
        padding: 20px 0 50px 0;
    }
}


/*-------------------------- CONTACT -------------------------------*/


.contact{
    padding: 100px 0;
}

.contact .content{
    width: 90%;
    text-align: center;
    margin: 50px auto 0 auto;
    display: block;
}

.contact-informations{
    background-repeat: no-repeat;
    background-position: left !important;
    height: 36vw;
    width: 100%;
    background-image: url('/img/contact_bg.webp');
    background-size: 50%;
    margin-top: 50px;
}

#contact{
    background-image: url('/img/contact_banner.webp');
    background-position: right !important;
    background-size: 50%;
    padding: 50px 5% 0 0;
    height: 35vw;
    background-origin: content-box;
}

.contact .blue, .clients .blue{
    color: #1097f7;
    font-size: 3rem;
    font-weight: 800;
    display: inline-block;
}

.contact .dark, .clients .dark{
    color: #3d4043;
    font-size: 3rem;
    font-weight: 400;
    display: inline-block;
}

.contact-informations .content{
    padding-top: 80px;
}

.contact-informations .contact-text{
    width: 50%;
    position: absolute;
    left: 5%;
}

.contact-informations .contact-map{
    width: 50%;
    height: 50%;
    position: absolute;
    right: 5%;
    -webkit-filter: grayscale(100%);
}

.contact-informations .contact-text{
    padding-top: 60px;
}

.contact-informations .foundation-name span, .contact-informations .foundation-contact span{
    display: block;
    color: #ffffff;
    font-weight: 100;
}

.contact-informations .foundation-name span{
    line-height: 2rem;
    font-size: 1.8rem;
}

.contact-informations .foundation-contact span{
    line-height: 2.2rem;
    font-size: 1.5rem;
}

.contact-informations .foundation-name .bold-text{
    font-weight: 800;
}

.contact-informations .foundation-name{
    padding: 20px 0;
}

.contact-informations .foundation-contact i{
    margin-right: 10px;
}

@media only screen and (max-width: 1780px) {
    .contact-informations .foundation-name span{
        line-height: 1.8rem;
        font-size: 1.5rem;
    }
    .contact-informations .foundation-contact span{
        line-height: 2rem;
        font-size: 1.2rem;
    }
}

@media only screen and (max-width: 1700px) {
    .contact-informations .contact-text{
        padding-top: 40px;
    }
}

@media only screen and (max-width: 1680px) {
    .contact{
        padding: 50px 0;
    }
}

@media only screen and (max-width: 1550px) {
    .contact-informations .contact-text{
        padding-top: 20px;
    }
    .contact-informations .contact-map{
        height: 40%;
    }
}

@media only screen and (max-width: 1480px) {
    .contact-informations .foundation-name span{
        line-height: 1.5rem;
        font-size: 1.1rem;
    }
    .contact-informations .foundation-contact span{
        line-height: 1.8rem;
        font-size: 1.2rem;
    }
}

@media only screen and (max-width: 1440px) {
    .contact .blue, .clients .blue{
        font-size: 2.5rem;
    }
    .contact .dark, .clients .dark{
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 1350px) {
    .contact-informations .contact-text{
        padding-top: 0;
    }
    .contact-informations .contact-map{
        height: 30%;
    }
    .contact-informations .foundation-name{
        padding: 10px 0;
    }
}

@media only screen and (max-width: 1280px) {
    .contact{
        padding: 0;
    }
}

@media only screen and (max-width: 1180px) {
    .contact-informations {
        height: 50vw;
        background-size: 60%;
    }
    .contact-informations .contact-text{
        padding-top: 50px;
    }
}

@media only screen and (max-width: 1024px) {
    .contact-informations .contact-text{
        padding-top: 30px;
    }
    .contact-informations .foundation-name span{
        line-height: 1.3rem;
        font-size: 1rem;
    }
    .contact-informations .foundation-contact span{
        line-height: 1.5rem;
        font-size: 1rem;
    }
}

@media only screen and (max-width: 910px) {
    #contact .content{
        margin-top: -50px;
    }
    .contact-informations .contact-text{
        padding-top: 15px;
    }
    .contact-informations .foundation-name span{
        line-height: 1.1rem;
        font-size: 0.8rem;
    }
    .contact-informations .foundation-contact span{
        line-height: 1.2rem;
        font-size: 0.8rem;
    }
    .contact-informations .contact-map{
        height: 25%;
    }
}

@media only screen and (max-width: 1100px) {

    .contact .blue, .clients .blue{
        font-size: 2rem;
    }
    .contact .dark, .clients .dark{
        font-size: 2rem;
    }
}

@media only screen and (max-width: 800px) {
    .contact .blue, .clients .blue{
        font-size: 1.5rem;
    }
    .contact .dark, .clients .dark{
        font-size: 1.5rem;
    }
}

@media only screen and (max-width: 780px) {
    .contact-informations {
        height: 60vw;
        background-size: 70%;
    }
    .contact-informations .contact-text{
        padding-top: 25px;
    }
    .contact-informations .contact-map{
        height: 20%;
    }
}

@media only screen and (max-width: 680px) {
    .contact-informations {
        height: 135vw;
        margin-top: 50px;
        background-size: 100%;
        background-position: top !important;
    }
    .contact-informations .content {
        padding-top: 50px;
    }
    .contact-informations .contact-text{
        width: 90%;
        margin: auto;
        display: block;
        position: unset;
    }
    .contact-informations .foundation-name{
        padding: 20px 0;
    }
    .contact-informations .foundation-name span{
        line-height: 1.5rem;
        font-size: 1.2rem;
    }
    .contact-informations .foundation-contact span{
        line-height: 1.5rem;
        font-size: 1rem;
    }
    .contact-informations .contact-map{
        width: 90%;
        height: 400px;
        margin: auto;
        position: unset !important;
        display: block;
    }
}

@media only screen and (max-width: 590px) {
    .contact-informations {
        height: 125vw;
        background-size: 110%;
        overflow: hidden;
    }
    .contact-informations .foundation-name span{
        line-height: 1.2rem;
        font-size: 1rem;
    }
    .contact-informations .foundation-contact span{
        line-height: 1.2rem;
        font-size: 1rem;
    }
    .contact-informations .contact-map{
        height: 300px;
    }
}

@media only screen and (max-width: 530px) {
    .contact-informations {
        height: 130vw;
    }
}

@media only screen and (max-width: 495px) {
    .contact-informations .foundation-name span{
        line-height: 1rem;
        font-size: 0.8rem;
    }
    .contact-informations .foundation-contact span{
        line-height: 1rem;
        font-size: 0.8rem;
    }
}

@media only screen and (max-width: 480px) {
    .contact-informations .contact-map{
        height: 200px;
    }
    .contact-informations .content {
        padding-top: 30px;
    }
}

@media only screen and (max-width: 410px) {
    .contact-informations .content {
        padding-top: 20px;
    }
}

@media only screen and (max-width: 400px) {
    #contact{
        margin-bottom: 0;
    }
    .contact-informations {
        height: 140vw;
        background-size: 120%;
    }

}


/*-------------------------- LATEST UPDATES -------------------------------*/


.news-section{
    background-color: #f4f4f4;
    width: 100%;
    padding-top:10px;
    padding-bottom: 80px;
}

.news{
    width: 100%;
}

.article-even .article-more, .article-odd .article-more{
    color: #ffffff;
    background-color: #b7b6b6;
    text-align: center;
    float: right;
    margin-right: 10px;
    margin-top: 5px;
    padding: 10px 30px;
    border-radius: 10px;
}

.article-even .article-more:hover, .article-odd .article-more:hover{
    color: #ffffff;
    cursor: pointer;
    background-image: linear-gradient(to right, #1189e3, #51b4fa);
    background-color: transparent;
}

.article-even, .article-odd{
    height: 450px;
    display: block;
}

.article-even .article-text-box, .article-odd .article-image{
    float: left;
    width: 50%;
    height: 100%;
}

.article-odd .article-text-box, .article-even .article-image{
    float: right;
    width: 50%;
    height: 100%;
}

.article-odd .article-text-box{
    padding-right: 7%;
}

.article-even .article-text-box{
    padding-left: 7%;
}

.article-even .article-image img, .article-odd .article-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-text-box{
    padding: 30px 20px;
}

.article-even .article-more{
    float: left;
}

.article-odd .article-more{
    float: right;
}

.article-odd .article-date, .article-even .article-date{
    font-weight: 600;
    height: 50px;
}

.article-odd .article-title, .article-even .article-title{
    font-weight: 900;
    font-size: 32px;
    height: 120px;
    color: #1097f7;
}

.news-content .article-title{
    font-weight: 900;
    font-size: 32px;
    height: 80px;
    color: #1097f7;
}

.news-content .article-header{
    width: 50%;
    display: inline-block;
    padding-bottom: 50px;
}

.news-content .article-image{
    width: 48%;
    display: inline-block;
    float: right;
    margin: 0 0 20px 20px;
}

.article-odd .article-short, .article-even .article-short{
    color: #3d4043;
    font-size: 16px;
    font-weight: 300;
    height: 180px;
}

.news-content .article-short{
    color: #818891;
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
}

.news-content{
    color: #3d4043;
}

.news-content h4{
    margin: 20px 0;
    display: block;
}

@media only screen and (max-width: 1206px) {
    .article-odd .article-title, .article-even .article-title{
        height: 100px;
    }
    .article-even .article-text-box{
        padding-left: 5%
    }
}

@media only screen and (max-width: 950px) {
    .article-odd .article-short, .article-even .article-short {
        height: 150px;
    }
}

@media only screen and (max-width: 820px) {
    .article-odd .article-text-box{
        padding-right: 5%
    }
    .article-even .article-text-box{
        padding-left: 5%
    }
}

@media only screen and (max-width: 734px) {
    .article-odd .article-title, .article-even .article-title{
        font-size: 26px;
        height: 120px;
    }
    .article-odd .article-short, .article-even .article-short{
        font-size: 14px;
        height: 180px;
    }
}

@media only screen and (max-width: 518px) {
    .article-odd .article-image, .article-even .article-image{
        width: 100% !important;
    }
    .article-even .article-text-box, .article-odd .article-image{
        width: 100% !important;
    }
    .article-odd .article-text-box, .article-even .article-image{
        width: 100% !important;
    }
    .article-odd .article-short, .article-even .article-short{
        font-size: 12px;
        height: 150px;
    }
}



/*-------------------------- LATEST UPDATES NEWS -------------------------------*/

.news-content{
    display: block;
    width: 90%;
    margin: auto;
    padding-bottom: 100px;
    font-size: 1rem;
    font-weight: 300;
}

.news-content .article-title{
    font-weight: 900;
    font-size: 32px;
    height: 80px;
    color: #1097f7;
}

.news-content .article-header{
    width: 50%;
    display: inline-block;
    padding-bottom: 50px;
}

.news-content .article-image{
    width: 48%;
    display: inline-block;
    float: right;
    margin: 0 0 20px 20px;
}

.news-content .article-image img{
    width: 100%;
}

.news-content .article-short{
    color: #818891;
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
}

.news-content{
    color: #3d4043;
}

@media only screen and (max-width: 1110px) {
    .news-content .article-image, .news-content .article-header{
        width: 100%;
    }
}
@media only screen and (max-width: 555px) {
    .news-content .article-title {
        font-size: 1.5rem;
        height: 80px;
    }
    .news-content{
        font-size: 0.9rem;
    }
}


/*-------------------------- POLITICS -------------------------------*/


.privacy-policy, .cookies-policy {
    width: 90%;
    display: block;
    margin: auto;
}

/*-------------------------- CONSULTING -------------------------------*/


#consulting{
    background-image: url('/img/consulting_banner.webp');
    background-position: right !important;
    background-size: 60%;
    padding: 50px 0 0 0;
    height: 45vw;
    background-origin: content-box;
}

#consulting .content{
    max-width: 80%;
    margin:80px auto 0 auto;
    padding:72px 0;
    color: #3d4043
}

.container {
    padding: 100px 0;
}

#consulting .lead{
    width: 50%;
    color: #6b7280;
    font-size: 18px;
    line-height: 1.7;
}

/* FILTRY + KAFELKI OBSZARÓW */
.areas{ background:#f8f9fc }
.filters{ display:flex; gap:12px; flex-wrap:wrap; margin:32px 0 }
.chip{ border:1px solid rgba(61,64,67,.22); padding:8px 14px; border-radius:999px; background:#fff; cursor:pointer; font-size:14px }
.chip.active, .chip:hover{ border-color:#1097f7; color:#1097f7; background:rgba(16,151,247,.08) }

.area-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:20px }
@media (max-width:991px){ .area-grid{ grid-template-columns: repeat(2,1fr) } }
@media (max-width:560px){ .area-grid{ grid-template-columns: 1fr } }

.area-card{
    background:#ffffff; border:1px solid rgba(61,64,67,.12); border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.06); padding:18px; display:flex; flex-direction:column; gap:10px;
    transition:all .25s ease;
}
.area-card:hover{ transform:translateY(-2px); border-color:#1097f7; box-shadow:0 14px 36px rgba(16,151,247,.12) }
.area-card .icon{ font-size:22px; color:#1097f7 }
.area-card h3{ font-size:18px; margin:4px 0 0 }
.area-card p{ margin:0; color:#3d4043; font-weight:300; line-height:1.7 }
.badge-list{ display:flex; flex-wrap:wrap; gap:8px; margin-top:6px }
.badge{ display:inline-flex; align-items:center; gap:6px; border-radius:999px; padding:6px 10px; color:#3d4043; background:#fff; border:1px solid rgba(61,64,67,.18); font-size:12px }
.badge i{ color:#1097f7 }

/* AKORDEON — JAK PRACUJEMY */
.process-steps{ display:grid; grid-template-columns: repeat(4,1fr); gap:20px }
@media (max-width:991px){ .process-steps{ grid-template-columns: repeat(2,1fr) } }
@media (max-width:560px){ .process-steps{ grid-template-columns: 1fr } }
.step{ background:#fff; border:1px solid rgba(61,64,67,.12); border-radius:18px; padding:18px; box-shadow:0 10px 30px rgba(0,0,0,.06)}
.step .num{ width:36px; height:36px; display:inline-grid; place-items:center; border-radius:999px; background:rgba(16,151,247,.08); color:#1097f7; font-weight:700; margin-bottom:10px }

/* EFEKTY / DELIVERABLES */
.deliver{ background:#fff }
.deliver-list{ columns:2; column-gap:20px; }
@media (max-width:767px){ .deliver-list{ columns:1 } }
.deliver-list li{ margin:0 0 10px 18px; color:#3d4043; font-weight:300 }

/* CASE STUDIES */
.cases{ background:#f8f9fc }
.case-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:20px }
@media (max-width:991px){ .case-grid{ grid-template-columns: repeat(2,1fr) } }
@media (max-width:560px){ .case-grid{ grid-template-columns: 1fr } }
.case{ background:#fff; border:1px solid rgba(61,64,67,.12); border-radius:18px; padding:18px; box-shadow:0 10px 30px rgba(0,0,0,.06) }
.case h4{ font-size:16px; margin:0 0 6px }
.kpis{ display:flex; flex-wrap:wrap; gap:8px; margin-top:8px }
.kpi{ background:#fff; border:1px solid rgba(61,64,67,.18); border-radius:10px; padding:6px 10px; font-size:12px }


h2.section-title{ font-size:clamp(28px,2.4vw,36px); margin:0 0 25px 0 }
p.section-lead{ color:#6b7280; margin:0 0 18px }