/* Nagłówek ze zdjęciem */
#privacy_header{
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    min-height: 250px;
}

#privacy_header .fog{
    position: absolute;
    width: 100%;
    min-height: 250px;
    z-index: 1;
    background-color: var(--color-dark-blue);
    opacity: 0.7;
}

#privacy_header .container{
    position: relative;
    z-index: 2;
}

#privacy_header .header_content{
    min-height: 250px;
    padding-top: 30px;
}

#privacy_header .header_content > div {
    width: 70%;
    margin: 0 auto;
}

#privacy_header .header_content .header_info{
    display: flex;
    flex-direction: row;
    margin-top: 30px;
    margin-bottom: 50px;
    width: 50%;
    align-items: center;
    justify-content: center;
}

#privacy_header .header_content .header_info > div {
    width: 50%;
}

#privacy_header .header_content .header_info > div > img {
    max-width: 280px;
}

#privacy_header .header_content .header_info > div > h2{
    font-family: Space Grotesk;
    font-size: 36px;
    line-height: 48px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 20px;
}
#privacy_header .header_content .header_info > div > h4{
    color: var(--color-white);
}
/*  end     -   Nagłówek ze zdjęciem   -   end  */

/* Artykuł */
#article_content{
    padding-top: 30px;
    padding-bottom: 80px;
}

#article_content h2{
    font-family: 'Mulish';
    font-style: normal;
    font-weight: bold;
    line-height: 150%;
    margin-bottom: 20px;
}

#article_content h3{
    padding-bottom: 10px;
    margin-top: 50px;
}

#article_content p{
    font-family: Mulish;
    /*font-size: 16px;*/
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--color-black);
}

#article_content > div > div{
    margin-bottom: 55px;
}

#article_content > div > div > h3{
    padding-bottom: 10px;
}
/*  end     -   Artykuł   -   end  */

/*  Inne case study */
#case_study{
    margin-top: 0px;
}

#case_study .product_elem > .elem_imgs{
    padding-left: 0px;
}

/*  end -   Inne case study -   end */


/*  MEDIA   */
@media screen and (min-width: 1100px) and (max-width: 1300px){

    #privacy_header .header_content .header_info{
        width: 70%;
    }

    #case_study .product_elem > .elem_imgs{
        width: 550px;
    }

}

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

    #privacy_header .header_content .header_info{
        width: 90%;
    }

    #case_study .product_elem > .elem_imgs{
        width: 420px;
    }
}

@media screen and (min-width: 0px) and (max-width: 901px){

    #privacy_header .header_content .header_info{
        width: 90%;
        flex-direction: column;
    }

    #privacy_header .header_content .header_info > div{
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 90%;
    }

    #privacy_header .header_content .header_info > div:nth-of-type(2){
        margin-top: 30px;
    }

    #privacy_header .fog{
        min-height: 200px;
    }

    #privacy_header .header_content{
        min-height: 600px;
    }
}

@media screen and (min-width: 0px) and (max-width: 501px){

    #case_study .product_elem > .elem_imgs{
        flex-direction: column;
        padding-left: 40px;
    }

    #case_study .product_elem > .elem_desc{
        padding: 40px 230px 40px 40px !important;
    }

    #case_study .product_elem > .elem_desc > h3{
        line-height: 36px;
    }

    #case_study .product_elem > .elem_desc > h4{
        line-height: 28px;
        margin-bottom: 10px;
    }
    #case_study .product_elem > .elem_desc > p{
        line-height: 18px;
    }
}