/* || General */

:root {
    /* colors */
    --light: white;
    --dark:  #00338D;
    
    /* fonts */
    --primary: 'Lato', sans-serif;
    --secondary: 'Teko', sans-serif;

    /* spacings */
    --mobile-margin: 36px;
    
    --left-margin: calc(10vw + (80vw /12) );
    --right-margin: 10vw;
}

* {
    color: var(--dark);
    font-family: var(--primary);
    box-sizing: border-box;
}

a { text-decoration: none; }

p {
    font-size: 16px;
    line-height: 26px;
}

section {
   position: relative;
   padding-top:  130px;
   padding-bottom:  130px;
}

@media (min-width: 1024px) {
    p {
        font-size: 18px;
        line-height: 28px;
    }
}

.dark, .dark * {
    color: var(--light);
    background-color:  var(--dark);
}

.light, .light * {
    color:  var(--dark);
    background-color: var(--light);
}

.desktop {
    display: none;
}

@media (min-width:  1024px) {
    .mobile {
        display: none;
    }
    
    .desktop {
        display: block;
    }
}






/* || Main header */

.main-portrait {
    width: 250px;
    display: block;
    height: 100px;
    margin: 30px auto;
    /*! max-height: 579px; */
    
        height: 250px;
        background-image: url(../img/portrait1.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
}

.main-portrait img {
    /*! width: auto; */
    /*! height: 100%; */
}

.quote {
    width: calc(100vw - (2 * var(--mobile-margin)));
    max-width: 280px;
    margin:  auto;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
    grid-template-areas: 
        'logo logo' 'slogan slogan' '. signature' '. role';
}

.slogan {
    font-size: 30px;
    line-height: 42px;
    grid-area: slogan;
    margin-bottom: var(--mobile-margin);
}

.signature {
    font-family: var(--secondary);
    font-size:  20px;
    grid-area: signature;
}

.role {
    font-family: var(--primary);
    font-size: 16px;
    grid-area: role;
}

.main-about {
    margin: var(--mobile-margin);
}

@media (min-width: 1024px) {
    .main-header {
        position: relative;
        display: flex;
        flex-direction: row;
        margin-top: 115px;
        height: calc(100vh - 115px);
        /*! align-items: stretch; */
        /*! justify-content: center; */
    }
    
    .main-portrait {
        order: 2;
        width: 50%;
        margin: 0;
        height: calc(100vh - 115px);
        background-image: url(../img/portrait1.jpg);
        background-repeat: no-repeat;
        background-position: top left;
        background-size: cover;
        display: block;
    }
    
    .main-logo {
        grid-area: logo;
        width: 100%;
        margin-bottom: 36px;
    }
    
    .main-logo.fixed {
        position: fixed;
        width: 150px;
        top: 30px;
        z-index: 1;
        left: calc(10vw + (80vw / 12))
    }
    
    .quote {
        width: auto;
        margin: 0 0 0 auto;
        max-width: unset;
        align-content: start;
        padding-top: 6%;
        /*! height: 100%; */
        /*! align-items: end; */
    }
    
    .slogan {
        font-size: 43px;
        text-align: right;
    }
    
    .signature {
        font-size: 39px;
    }
    
    .role {
        font-size: 18px;
        text-align: right;
    }
    
    .main-about {
        width: 810px;
        margin: 200px auto 100px auto;
    }
}

/* || Section */

section.regular {
    /*! padding-top: var(--mobile-margin); */
}

section.regular h2 {
    margin: 0 var(--mobile-margin) var(--mobile-margin) var(--mobile-margin);
    font-family: var(--secondary);
    font-size: 45px;
    line-height: 50px;
    padding-top: var(--mobile-margin);
}

section.regular img {
    /*! width: 100%; */
    opacity: .7;
}

section.regular .dark img {
    width: 100%;
}

section.regular .icons-row {
    position: relative;
    bottom: 0;
    background: transparent;
}

section.regular .icons-row img {
    background: transparent;
}

@media (min-width: 1024px) {
    section.regular {
        padding: 0;
    }
    
    section.regular h2 {
        padding: 90px 90px 90px calc(80vw / 12);
        margin: 0;
        font-size: 54px;
    }
    
    section.regular .icons-row {
        left: unset;
        right: 0;
        transform: translateY(50%);
        position: absolute;
    }
}

/* || Co robimy */

section.co-robimy {
    padding: var(--mobile-margin);
}

.co-robimy h2 {
    font-family: var(--secondary);
    font-size: 45px;
    line-height: 50px;
}

.co-robimy-list {
    display: flex;
    flex-direction: column;
    gap: var(--mobile-margin);
}

.co-robimy-list div {
    border-left: 2px solid var(--dark);
    line-height: 22px;
    padding: 0 var(--mobile-margin) 0 var(--mobile-margin);
    font-weight: 700;
    font-size: 16px;
}

@media (min-width: 1024px) {
    section.co-robimy {
        padding: 90px 90px 90px calc(80vw / 12);
    }
    
    .co-robimy h2 {
        font-size: 54px;
    }
    
    .co-robimy-list {
        display: grid;
        grid-template-columns: auto auto auto;
    }
    
    .co-robimy-list div {
        font-size: 22px;
        line-height: 29px;
    }
} 



/* Trudny przypadek */

html body section.trudny-przypadek div.dark>div {
    display: flex;
    flex-direction: column;
    padding: var(--mobile-margin);
}

html body section.trudny-przypadek div.dark>div>div>div:nth-child(1) {
    font-size: 45px;
    font-family: var(--secondary);
    text-align: center;
}

html body section.trudny-przypadek div.dark>div>div>div:nth-child(2) {
    font-size: 21px;
    text-align: center;
}

html body section.trudny-przypadek div.dark div div img {
    display: none;
}

html body section.trudny-przypadek div.dark>div>div:nth-child(2) {
    font-family: var(--secondary);
    font-size: 45px;
    text-align: center;
    margin-top: var(--mobile-margin);
}

.trudny-przypadek > div:nth-child(1) > img:nth-child(2) {
    width: 100%;
}

@media (min-width: 1024px) {
    .trudny-przypadek > div:nth-child(1) > div:nth-child(1) {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 90px 90px 90px calc(80vw / 12);
    }
    .trudny-przypadek > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: end;
        width: 50%;
        font-size: 71px;
        gap: 30px;
    }
    .trudny-przypadek > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > img:nth-child(1) {
        display: flex;
    }
    
    .trudny-przypadek > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > img:nth-child(1) {
        height: 75px;
        top: -4px;
        position: relative;
    }
    
    .trudny-przypadek > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) {
        font-size: 54px;
        text-align: left;
    }
    
    .trudny-przypadek > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) {
        text-align: left;
        font-size: 37px;
    }
    
    .trudny-przypadek > div:nth-child(1) > img:nth-child(3) {
        width: 100%;
        display: block;
    }
    
    .trudny-przypadek > div:nth-child(2) {
        position: absolute;
        bottom: 0;
        transform: translateY(50%);
        right: 0;
        left: unset;
    }
}

/* CASE STUDIES */

.case-studies {
    padding: var(--mobile-margin);
}

.case-studies h2, .case-studies h2 * {
    font-family: var(--secondary);
    font-size: 45px;
    text-transform: uppercase;
}

.case-studies .zajawki {
    display: flex;
    flex-direction: column;
}

.case-studies .zajawka .thumbnail {
    height: 300px;
    background: var(--dark);
    padding-left: 80px;
}

.warto-wiedziec .zajawka .thumbnail {
    height: 300px;
    background: none;
    padding-left: 0px;
}

.case-studies .zajawka .thumbnail div {
    height: 100%;
    display: block;
    opacity: .7;
    background-size: cover;
    background-position: center;  
}

.warto-wiedziec .zajawka .thumbnail div {
    opacity: 1;
}

.case-studies .info {
    padding: 21px var(--mobile-margin) 21px var(--mobile-margin);
    font-size: 16px;
}

.case-studies .info a {
    text-align: center;
    padding: 15px;
    border: 1px solid var(--dark);
    margin: 18px auto 95px auto;
    display: block;
    width: 80%;
}

.case-studies button {
    text-align: center;
    padding: 15px;
    border: 1px solid var(--dark);
    margin: 18px auto 95px auto;
    display: block;
    width: 65%;
    max-width: 300px;
    background: white;
}

@media (min-width: 1024px) {
    .case-studies {
        width: 80%;
        margin: auto;
        padding-top:  130px;
    }
}

@media (min-width: 1280px) {
    
    .case-studies .zajawki {
        flex-direction: row;
        gap: 50px;
        flex-wrap: wrap;
    }
    
    .case-studies .zajawka {
        width: 30%;
    }
    
    .case-studies .zajawka .thumbnail {
        height: 400px;
    }
}


/* KONTAKT */

.kontakt {
    display: flex;
    flex-direction: column;
}

.kontakt>.row1, .kontakt>.row2 {
    display: flex;
    flex-direction: column;
}

.kontakt>.row1>.col1>.row1, .kontakt>.row2>.col1>.row1 {
    font-family: var(--secondary);
    font-size: 45px;
    line-height: 50px;
    margin-bottom: 26px;
}

.kontakt>.row2>.col1>.row1 {
    text-transform: uppercase;
}

.kontakt>.row1>.col1>.row2 {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 72px;
}

.kontakt>.row1>.col2>.row1 {
    font-size: 40px;
    margin-bottom: 18px;
}

.kontakt>.row1>.col2>.row2 {
    font-size: 18px;
}

.kontakt>.row1 {
    border-bottom: 2px solid white;
}

.kontakt>.row2>.col1>.row2 {
    font-size: 25px;
    margin-bottom: 150px;
    line-height: 1.5;
}

.kontakt input, .kontakt textarea {
    border: none;
    outline: none;
    width: 100%;
    resize: none;
    color: white;
    margin-bottom: 30px;
    padding: 15px 0;
    border-bottom: 1px solid #004bd1;
    opacity: 1;
}

.kontakt input::placeholder {
    color: white;
    opacity: 1;
}

.kontakt.light input, .kontakt.light textarea {
    color: var(--dark);
}

.kontakt.light input::placeholder {
    color: var(--dark);
    opacity: 1;
}

.kontakt input[type=submit] {
    border: 1px solid white;
    padding: 15px;
}

.kontakt.light input[type=submit]{
    border: 1px solid var(--dark);
}

.kontakt>.row1, .kontakt>.row2 {
    padding: var(--mobile-margin);
}

@media (min-width: 1024px) {
    .kontakt {
        padding-bottom: 200px;
        padding-top: 130px;
    }
    .kontakt>.row1 {
        flex-direction: row;
        justify-content: space-between;
        padding-left: calc(80vw / 12 + 10vw);
        padding-right: calc(10vw);
        align-items: center;
    }
    
    .kontakt>.row1>.col1>.row1 {
        font-size: 54px;
        margin-bottom: 0; 
    }
    
    .kontakt > .row1 > .col1 > .row2 {
        margin-bottom: 0;
        font-size: 30px;
    }
    
    .kontakt>.row1>.col2>.row1 {
        font-size: 50px;
        font-weight: 600;
        margin-bottom: 0;
    }
    
    .kontakt>.row1>.col2>.row2 {
        font-size: 30px;
    }
    
    .kontakt>.row2  {
        flex-direction: row;
        justify-content: space-between;
        padding-left: calc(80vw / 12 + 10vw);
        padding-right: calc(10vw);
    }
    
    .kontakt>.row2>.col2 {
        max-width: 670px;
    }
    
    .kontakt>.row2>.col1>.row1 {
        margin-bottom: 140px;
        font-size: 54px;
    }
}

/* FOOTER */

footer>.dark>img {
    width: 100%;
    opacity: .7;
}

footer>.dark>.r1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 45px 0;
    border-bottom: 2px solid white;
}

    footer>.dark>.r1>img {
        width: 180px;
    }

footer>.dark>.r2 {
    padding: var(--mobile-margin);
    display: flex;
    flex-direction: column;
    align-items: center;
}

    footer>.dark>.r2>.c1 {
        display: grid;
        grid-template-columns: auto auto;
        grid-template-rows: auto auto;
        gap: var(--mobile-margin);
        margin-bottom: 60px;
    }

        footer>.dark>.r2>.c1>.e1 {
            font-size: 11px;
            text-transform: uppercase;
            text-align: right;
        }

        footer>.dark>.r2>.c1>.e2 {
            font-size: 11px;
            text-transform: uppercase;
        }

        footer>.dark>.r2>.c1>.e3 {
            
        }

            footer>.dark>.r2>.c1>.e3>img {
                margin: 0 0 0 auto;
                display: block;
                height: 34px;
            }

        footer>.dark>.r2>.c1>.e4 {
            
        }

            footer>.dark>.r2>.c1>.e4>img {
                display: block;
                height: 34px;
            }

    footer>.dark>.r2>.c2>p { 
        font-size: 22px;
        line-height: 31px;
    }

footer>.dark>.r3 {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    margin-bottom: var(--mobile-margin);
}

    footer>.dark>.r3>img {
        height: 33px;
    }

footer>.dark>.r4 {
    padding: var(--mobile-margin);
    font-size: 13px;
    text-align: center;
}

@media (min-width: 1024px) {
    footer {position: relative;}
    footer>.icons-row {
        position: absolute;
        top: 0;
        right: 0;
        left: unset;
        bottom: unset;
        transform: translateY(-50%);
        z-index: 1;
    }
    
    footer>.dark>img {

    }

    footer>.dark>.r1 {
        padding: 50px 0;
    }

        footer>.dark>.r1>img {
            width: 400px;
        }

    footer>.dark>.r2 {
        flex-direction: row;
        justify-content: space-evenly;
        align-items: start;
        margin-bottom: var(--mobile-margin);
    }

        footer>.dark>.r2>.c1 {
    margin: 0;
        }

            footer>.dark>.r2>.c1>.e1 {
                font-size: 15px;    
            }

            footer>.dark>.r2>.c1>.e2 {
                font-size: 15px;
            }

            footer>.dark>.r2>.c1>.e3 {

            }

                footer>.dark>.r2>.c1>.e3>img {
                    height: 45px;
                }

            footer>.dark>.r2>.c1>.e4 {

            }

                footer>.dark>.r2>.c1>.e4>img {
                    height: 45px;
                }

        footer>.dark>.r2>.c2>p { 
            font-size: 26px;
            line-height: 37px;
            margin: 0;
        }

    footer>.dark>.r3 {
    gap: 50px;
    }

        footer>.dark>.r3>img {
            height: 88px;
        }

    footer>.dark>.r4 {

    }
}

/* NAVBAR */

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    font-weight: 600;
    width: 100%;
    padding: 40px 15% 40px 0;
    justify-content: end;
    z-index: 1;
    margin: auto;
    gap: 60px;
}

.navbar .dropbtn, .navbar>a {
    color: white;
}

.dropdown-content {
    display: none;
}

.dropdown:hover .dropdown-content {
    display: block;
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 10px;
    max-width: 210px;
}

.dropdown-content a {
    border: 1px solid var(--dark);
    padding: 15px;
    background: white;
}

@media (max-width: 1280px) {
    .navbar {
        display: none;
    }
}

/* SIDENAV */

#sidenav {
    width: 0;
    height: 100vh;
    background-color: white;
    z-index: 2;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: stretch;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
    transition: .5s;
}

#sidenav .closebtn {
/*     position: absolute; */
    /*! top: 0; */
    /*! right: 0; */
    font-size: 50px;
text-align: right;
}

#sidenav>.r1 {
    order: 3;
    width: 400px;
    margin: 0;
    margin-left: auto;
}

#sidenav>.r2 {
    font-family: var(--secondary);
    font-size: 48px;
    text-transform: uppercase;
}
#sidenav>.r3 {
    display: flex;
    flex-direction: row;
    gap: 50px;
    width: 80%;
    justify-content: space-between;
}
    #sidenav>.r3>.c {
        display: flex;
        flex-direction: column;
    }
        #sidenav>.r3>.c>div {
            display: flex;
            flex-direction: column;
        }

            #sidenav>.r3>.c>div>a {
                margin-bottom: 15px;
            }

            #sidenav>.r3>.c>div:nth-child(1)>a {
                font-weight: 600;
                border-left: 2px solid var(--dark);
                padding-left: 10px;
            }

            #sidenav>.r3>.c>div:nth-child(2)>a {
                padding-left: 20px;
            }

@media (max-width: 1023px) {
    
    #sidenav>.r3 {
gap: var(--mobile-margin);
}
        #sidenav>.r3>.c {
            gap: var(--mobile-margin);
    }
    
    #sidenav>.r3>.c>div {
        gap: calc(var(--mobile-margin) / 3);
    }
    #sidenav {
        overflow-y: auto;
        gap: 20px;
        display: block;
    }
    #sidenav>.r3 {
        flex-direction: column;
    }
    
    #sidenav>.r1{
        order: 0;
        border-top: none;
        max-width: 100%;
        margin: var(--mobile-margin) 0;
        padding-top: 0;
    }
    #sidenav>.r2 {
        margin: var(--mobile-margin) 0;
    }
    #sidenav>.r1>img {
        width: 100%;
    }
}
/* HAMBURGER */

.hamburger {
    font-size: 45px;
    font-family: var(--primary);
    position: fixed;
    top: 29px;
    z-index: 1;
    right: 10%;
    cursor: pointer;
    filter: drop-shadow(0px 2px 3px rgba(0, 0, 0 , .9)) drop-shadow(-2px -2px 2px rgba(255, 255, 255 , .4));
    color: white;
}



/* ORDINARY HEADER */

.ord-header {
    position: relative;
}

.ord-header.dark {
    background-color: rgb(45, 61, 113);
}

    .ord-header img {
        width: 100%;
        height: auto;
        opacity: .85;
    }

    .ord-header .logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform:  translate(-50%, -50%);
        opacity: 1;
        width: 535px;
        background: transparent;
        /*! filter: drop-shadow(0 0 0px black); */
    }
    
    @media(max-width: 1024px) {
        .ord-header .logo {
            display: none;
        }
    }

    .ord-header .icons-row {
        position: absolute;
        bottom:  0;
        left:  0;
        transform: translateY(50%);
        z-index: 1;
    }

@media (max-width: 1024px) {
      .ord-header .icons-row {
        position: relative;
        bottom:  0;
        left:  0;
        transform: translateY(0%);
        z-index: 1;
    }  
}

/* DLACZEGO MY */

.dlaczego-my {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    gap: 15px;
    padding-left: calc(10vw + (80vw / 12));
    padding-right: 10vw;
    padding-top: 200px;
    padding-bottom: 75px;
}

    .dlaczego-my>div:nth-child(1) {
        font-family: var(--secondary);
        text-transform: uppercase;
        font-size: 54px;
        flex-grow: 1;
    }

    .dlaczego-my>div:nth-child(2) {
        font-size: 18px;
        width: calc(80vw / 12 * 6);
    }

        .dlaczego-my>div:nth-child(2) p {
            margin: 0;
        }
@media (max-width: 1024px) {
    .dlaczego-my {
        flex-direction: column;
        padding: var(--mobile-margin);
    }  
    
    .dlaczego-my > div:nth-child(2) {
        width: 100%;
    }
}
/* O NAS */

.o-nas {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding-left: calc(10vw + (80vw / 12));
    padding-right: 10vw;
    padding-top: 200px;
    padding-bottom: 150px;
}

@media (max-width: 1024px) {
    .o-nas {
        flex-direction: column;
    }
}

    .o-nas>div:nth-child(1) {
        font-family: var(--secondary);
        text-transform: uppercase;
        font-size: 54px;
        width: calc(80vw / 12 * 2);
    }

    .o-nas>div:nth-child(2) {
        flex-grow: 1;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
        @media (max-width: 1024px) {
                .o-nas>div:nth-child(1) {
        width: 100%;
    }
            .o-nas>div:nth-child(2) {
                flex-direction: column;
            }
        }

        .o-nas>div:nth-child(2)>div {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: transparent;
            position: relative;
        }

        @media (max-width: 1024px) {
            .o-nas>div:nth-child(2)>div {
                margin-bottom: 130px;
            } 
        }   

            .o-nas>div:nth-child(2)>div>img {
                position: absolute;
                height: 128px;
                background: transparent;
                top: -25px;
                left: -48px;
            }

            .o-nas>div:nth-child(2)>div>.number {
                font-family: var(--secondary);
                font-size: 145px;
            }

            .o-nas>div:nth-child(2)>div>.descr {
                font-size: 22px;
            }

@media (max-width: 1024px) {
            .o-nas>div:nth-child(2)>div>.number {
                font-family: var(--secondary);
                font-size: 70px;
            }
}

/* DOÃƒâ€¦Ã…Â¡WIADCZENIE */

.doswiadczenie {
    display: flex;
    /*! gap: 15px; */
    justify-content: space-between;
    align-items: stretch;
    flex-direction: row;
    padding-left: var(--left-margin);
    padding-right: var(--right-margin);
    padding-top: 80px;
    padding-bottom: 0;
}

@media (max-width: 1024px) {
    .doswiadczenie {
        flex-direction: column;
    }
}

    .doswiadczenie>.c1 {
        /*! flex-grow: 1; */
        /*! flex: ; */
        width: calc(80vw / 12 * 4);
        position: relative;
    }

        .doswiadczenie>.c1>img {
            height: 100%;
            position: absolute;
            bottom: 0;
            right: 0;
        }

    .doswiadczenie>.c2 {
        width: 700px;
        padding-bottom: 80px;
    }


    
        .doswiadczenie>.c2>h2 {
            font-family: var(--secondary);
            font-size: 54px;
            text-transform: uppercase;
            margin-bottom: 100px;
        }

        .doswiadczenie>.c2>p {
            font-size: 20px;
        }

        .doswiadczenie>.c2>.signat {
            margin-top: 100px;
            display: flex;
            flex-direction: column;
        }

            .doswiadczenie>.c2>.signat>span:nth-child(1) {
                font-family: var(--secondary);
                font-size: 39px;
            }

            .doswiadczenie>.c2>.signat>span:nth-child(2) {
                
            }
      @media (max-width: 1024px) {
        .doswiadczenie {
            padding: var(--mobile-margin)    
        }
        
        .doswiadczenie>.c2 {
            width: unset;
        }
        
        .doswiadczenie>.c2>h2 {
            font-size: 30px;
        }
          
              .doswiadczenie>.c1 {
        width: 100%;
        position: relative;
    }

        .doswiadczenie>.c1>img {
            height: auto;
            width: 100%;
            position: relative;
            bottom: 0;
            right: 0;
        }
    }
/* WIEDZA */

.wiedza {
    padding-top: 100px;
    padding-bottom: 200px;
}

    .wiedza>h2 {
        font-family: var(--secondary);
        text-transform: uppercase;
        font-size: 54px;
        margin-bottom: 100px;
        padding-left: var(--left-margin);
    }



/* KOMU POMAGAMY */

.komu-pomagamy h2 {
   font-family: var(--secondary);
    text-transform: uppercase;
    font-size: 54px;
    padding-left: var(--left-margin);
}

.komu-pomagamy .accordion {
    width: 100%;
    text-align: left;
    font-family: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 40px;
    padding: 18px 10% 18px 50%;
    border: none;
    border-radius: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1024px) {
    .komu-pomagamy .accordion {
        width: 100%;
        text-align: center;
        font-size: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 30px;
    }
}

.komu-pomagamy .accordion svg {
    transform: rotate(0deg);
    transition: .3s all ease;
    background: transparent;
}

.komu-pomagamy .panel {
    padding: 0 10vw 40px 50vw;
    display: none;
}

@media (max-width: 1024px) {
    .komu-pomagamy .panel {
        padding: var(--mobile-margin);
    }
}

.praca {
    display: flex;
    flex-direction: column;
    padding-top: 130px;
    padding-bottom: 130px;
}

.praca .c1 {
    /*! width: 100%; */
    margin-left: var(--left-margin);
    font-size: 54px;
    text-transform: uppercase;
    font-family: var(--secondary);
    box-sizing: border-box;
}

.praca .c2 {
    width: 100%;
    padding-left: var(--left-margin);
}

.praca .c2 p{
    margin: 0;
}

@media (max-width: 1024px) {
    .praca {
        flex-direction: column;
        padding: var(--mobile-margin);
        width: 100%;
    }
    
    .praca .c1 {
        margin: 0;
        width: 100%;
    }
    
    .praca .c2 {
        width: 100%;
    }
    
}

/* LOGO FIXED */


@media (max-width: 1024px) {
    .logo-fixed {
        display: block;
        padding: 20px var(--mobile-margin);
    }

    .logo-fixed img {
        width: 180px;
        height: auto;
    }
}

/* TRUDNY PRZYPADEK */
.trudny-przypadek {
    padding-bottom: 0;
}

@media (max-width: 1366px) {
    .quote { width: 364px;  }
}

.active-logo.preactivated {
    transition: 1s ease all;
}

.active-logo.activated {
/*    top: 35px;
    left: calc(10vw + (80vw / 12));
    width: 150px;*/
    z-index: 1;
    filter: drop-shadow(0 0 2px white);
}

.ord-header .logo.activated {
    filter: drop-shadow(0 0 2px black);
}

/* FORM AGREEMENT */

.agreement {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
}

.agreement>input {
    width: initial;
    margin-top: 5px;
}

.agreement>div>* {
    margin: 0;
    font-size: 16px;
    padding: 0;
}

.agreement a {
    text-decoration: underline;
}

.komu-pomagamy p {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}

.accordion.active svg {
    transform: rotate(180deg);
}

.case-studies .grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
}

.case-studies .grid img {
    width: 100%;
}

@media(max-width: 1280px) {
    .case-studies .grid{
        grid-template-columns: 1fr;
    }
}

.case-studies .wiecej-przypadkow {
    text-align: center;
    padding: 15px;
    border: 1px solid var(--dark);
    margin: 50px auto 150px auto;
    display: block;
    width: 320px;
}

/* || Icons Row */

.icons-row {
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content:  space-between;
    gap: 5px;
}

.icons-row img {
    width: 45px;
    height: auto;
    flex: 1 1 50px;
}

@media (min-width: 1024px) {
    .icons-row {
        position: absolute;
        gap: 20px;
        bottom: 0;
        left: 0;
    }

    .icons-row img {
        width: 8.1vw;
        height: auto;
    }
}

.warto-wiedziec__img {
    width: 100%;
}

.panel ul {
    font-size: 18px;
    line-height: 28px;
}

.case-studies p {
    max-width: 800px;
    margin: 50px auto;
}

.case-studies {
    padding-bottom: 150px;
}




.rodo {
    line-height: 1.5;
}

.rodo ol, .rodo ul {
    max-width: 800px;
    margin: 50px auto;
}

.rodo ul {
    list-style-type: none;
}

.rodo ol ol, .rodo ul ol {
    margin: 0px auto 25px auto;
}