@import url('variables.css');

section.header {
    position: relative;
    /*z-index: 2;*/
    background-repeat: no-repeat;
    padding: 60px 0;
}

section.header h1 {
    font-size: 44px;
    color: var(--leadingColor-5);
    max-width: 100%;
    margin-bottom: 20px;
    /* font-weight: bold; */
}

section.header .box:not(:last-of-type) {
    margin-right: 15px;
    margin-bottom: 10px;
}

section.header .box {
    border-radius: 5px;
    border: 1px solid #dfdfdf;
}

section.header .inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

section.header .box a {
    font-size: 16px;
    /* font-weight: 600; */
    padding: 16px 20px;
    -webkit-transition: background-color .3s ease-out;
    -o-transition: background-color .3s ease-out;
    transition: background-color .3s ease-out;
}

section.header .box a svg {
    color: var(--leadingColor-5);
    width: 20px;
    height: 20px;
}

section.header a {
    color: #3d3d3d;
    text-decoration: none;
}

section.header .box img {
    width: auto;
    margin-right: 10px;
}


section.content {
    background: #f4f4f4;
    padding-top: 40px;
    padding-bottom: 40px;
}

section.content .block-wrapper.space {
    margin: 40px 0;
}

section.content .pattern {
    background-color: #f2f2f2;
    border-radius: 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}

section.content .block-docs {
    padding: 30px 60px 30px 30px;
    -webkit-box-shadow: 0 1px 3px 1px rgba(0,0,0,.08);
    box-shadow: 0 1px 3px 1px rgba(0,0,0,.08);
    border: 1px solid rgba(0,0,0,.08);
    background-color: #fff;
    margin-bottom: 20px;
}

section.content .block-files {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
    grid-column-gap: 30px;
}

section.content .block-files .single-doc.block-with-doc {
    padding: 16px;
    position: relative;
}

section.content .block-files .single-doc {
    border-top: 1px solid hsla(0,0%,59.2%,.3);
    display: -ms-flex;
    display: flex;
    align-items: center;
    padding: 16px;
    grid-row-gap: 7px;
    font-size: 11px;
    color: #9e9e9e;
    position: relative;
}

section.content .block-files .single-doc p {
    margin-bottom: 0;
}

section.content .block-files .single-doc a, section.content .block-files .single-doc .highlight {
    font-size: 14px;
}

section.content a {
    color: #3d3d3d;
    text-decoration: none;
}

section.content a:hover {
    color: var(--leadingColor-5);
}

section.content .block-files .single-doc svg {
    width: 16px;
    height: 16px;
    color: var(--leadingColor-5);
}

    /*section.content .block-files .single-doc .open-in-new:before,*/
/*section.content .block-files .single-doc .doc-file:before {*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 19px;*/
/*}*/

/*section.content .block-files .single-doc .open-in-new:before {*/
/*    content: url("/assets/media/icons/svg/open-in-new-tab.svg");*/
/*}*/

/*section.content .block-files .single-doc .doc-file:before {*/
/*    content: url("/assets/media/icons/svg/pdf.svg");*/
/*}*/

section.content .block-docs img {
    -o-object-fit: contain;
    object-fit: contain;
    height: auto;
    max-width: 143px;
    max-height: 50px;
    position: relative;
}

section.content .block-docs .title {
    font-size: 16px;
    color: #676767;
}

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

    section.content .block-files {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
        grid-column-gap: 0;
        grid-row-gap: 0;
    }

    section.content .block-docs {
        padding-left: 20px;
        padding-right: 20px;
    }

}

@media (max-width: 768px) {
    section.header h1 {
        font-size: 26px;
    }
    section.content .block-wrapper.space {
        margin-top: 0;
    }
}

section.content .with-archive .block-files {
    display: block !important;
}