@font-face {
    font-family: "Trajan Pro 3";
    src: url('../fonts/Trajan Pro 3 Regular.otf');
}

.umb-block-grid__layout-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(var(--umb-block-grid--grid-columns, 1), minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-rows: minmax(50px, min-content);
    column-gap: var(--umb-block-grid--column-gap, 0);
    row-gap: var(--umb-block-grid--row-gap, 0);
}

.umb-block-grid__layout-item {
    position: relative;
    /* For small devices we scale columnSpan by three, to make everything bigger than 1/3 take full width: */
    grid-column-end: span min(calc(var(--umb-block-grid--item-column-span, 1) * 3), var(--umb-block-grid--grid-columns));
    grid-row: span var(--umb-block-grid--item-row-span, 1);
}


.umb-block-grid__area-container, .umb-block-grid__block--view::part(area-container) {
    position: relative;
    display: grid;
    grid-template-columns: repeat(var(--umb-block-grid--area-grid-columns, var(--umb-block-grid--grid-columns, 1)), minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-rows: minmax(50px, min-content);
    column-gap: var(--umb-block-grid--areas-column-gap, 0);
    row-gap: var(--umb-block-grid--areas-row-gap, 0);
}

.umb-block-grid__area {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* For small devices we scale columnSpan by three, to make everything bigger than 1/3 take full width: */
    grid-column-end: span min(calc(var(--umb-block-grid--area-column-span, 1) * 3), var(--umb-block-grid--grid-columns));
    grid-row: span var(--umb-block-grid--area-row-span, 1);
}


/**** Custom additions to the default Grid Layout Stylehseet: ****/


/* additional CSS options for area-container and areas: */
.umb-block-grid__area-container, .umb-block-grid__block--view::part(area-container) {
    max-width: var(--my-container-max-width);
    padding: var(--my-container-padding);
    margin-left: auto;
    margin-right: auto;
    --umb-block-grid--areas-column-gap: 60px;
    --umb-block-grid--areas-row-gap: 5px;
}

.umb-block-grid__area {
    justify-content: center;
}

.umb-block-grid__layout-item[data-content-element-type-alias="oneColumnSectionBlock"] .umb-block-grid__layout-container {
    --umb-block-grid--column-gap: 60px;
    --umb-block-grid--row-gap: 60px;
}

/*.umb-block-grid__layout-item[data-content-element-type-alias="twoColumnSectionBlock"] .umb-block-grid__layout-container {
    top: -55px;
    margin-bottom: -120px;
}*/

.umb-block-grid__layout-item[data-content-element-type-alias="modelRecrutareSection"] {
    right: -55px;
    top: -55px;
    margin-bottom: -105px;
}

.umb-block-grid__layout-item[data-content-element-type-alias="video"] {
    left: -120px;
}





/**** My custom website styles: ****/

:root, :host, body {
    font-family: 'Trebuchet MS';
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.umb-block-grid {
    container-type: inline-size;
    --my-container-max-width: 1200px;
    --my-container-padding: 0 20px;
}

@container (min-width: 720px) {
    .umb-block-grid__layout-container {
        --my-container-padding: 0 60px;
    }
}

section {
    padding: var(--section-padding, 60px 0);
}

    section[bright-contrast] {
        color: white;
        --my-bright-contrast:;
    }


/** only works on website. */
.umb-block-grid__layout-item:has(section[nobackgroundcolor]) +
.umb-block-grid__layout-item section[nobackgroundcolor] {
    padding-top: 0;
}

h1 {
    font-size: 60px;
    font-weight: 300;
    line-height: 0.96;
    margin: 0;
    margin-bottom: 20px;
    color: inherit;
}

h2 {
    font-size: 35px;
    font-weight: 300;
    line-height: 1.2;
    margin: 0;
    color: inherit;
}


/** Image */

img.image {
    object-fit: cover;
    height: 100%;
    width: 100%;
}





/** Rich Text */

.rich-text {
    font-weight: 300;
    color: inherit;
    /** Using CSS Calculation, which gives 1 for column spans of 1-11 and 2 for column span of 12. */
    columns: clamp(1, calc(var(--umb-block-grid--item-column-span) - 10), 2);
    column-gap: 60px;
}

    .rich-text > p:first-child {
        margin-top: 0;
    }






/** Hero */

.umb-block-grid__layout-item[data-content-element-type-alias="heroBlock"] .umb-block-grid__area-container,
.umb-block-grid__layout-item[data-content-element-type-alias="heroBlock"] .umb-block-grid__block--view::part(area-container) {
    padding: 0;
}

.hero {
    position: relative;
    height: 80vh;
    width: 100%;
    display: flex;
    align-items: end;
    padding: 60px 0;
    box-sizing: border-box;
}

    .hero[bright-contrast] {
        color: white;
        --my-bright-contrast:;
    }

    .hero .hero-background {
        position: absolute;
        inset: 0;
        background-position: 50% 50%;
        background-size: cover;
    }

        .hero .hero-background:after {
            content: '';
            position: absolute;
            inset: 0;
            background-color: rgba(0,0,0,.22);
            pointer-events: none;
        }

    .hero .hero-content {
        position: relative;
        width: 100%;
        max-width: var(--my-container-max-width);
        padding: var(--my-container-padding);
        margin-left: auto;
        margin-right: auto;
    }

        .hero .hero-content > h1 {
            max-width: 14em;
        }




/** Call to action */

.call-to-action {
    display: inline-block;
    --call-to-action--background-color--condition: var(--my-bright-contrast) white;
    background-color: var(--call-to-action--background-color--condition, #3544b1);
    --call-to-action--text-color--condition: var(--my-bright-contrast) black;
    color: var(--call-to-action--text-color--condition, white);
    font-weight: 500;
    padding: 14px 28px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: auto;
    max-width: 180px;
    text-decoration: none;
}



/** Inspiration */

.inspiration[bright-contrast] {
    --my-bright-contrast:;
}

.inspiration .area-container {
    max-width: var(--my-container-max-width);
    padding: var(--my-container-padding);
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-flow: row;
    column-gap: 60px;
}

.inspiration .left-area {
    grid-column-end: span 1;
    display: block;
    margin-bottom: 60px;
}

.inspiration .right-area {
    grid-column-end: span 1;
    display: block;
    margin-top: 60px;
    margin-right: -120px;
    transform: translateX(-120px);
}

.inspiration .content-area {
    grid-column-end: span 2;
    display: block;
}

.umb-block-grid__layout-item[data-content-element-type-alias="inspirationBlock"] .umb-block-grid__area[data-area-alias="leftArea"] {
    justify-content: start;
}

.umb-block-grid__layout-item[data-content-element-type-alias="inspirationBlock"] .umb-block-grid__area[data-area-alias="rightArea"] {
    justify-content: end;
}







/* Card */

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: black;
    background-color: white;
}

    .card .card-media {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        overflow: hidden;
    }

        .card .card-media img {
            object-fit: cover;
            height: 100%;
            width: 100%;
        }

    .card .card-content {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        font-weight: 300;
    }

        .card .card-content p {
            margin: 0;
        }


    .card.--medium {
        height: auto;
    }

        .card.--medium .card-media::after {
            content: '';
            position: absolute;
            inset: 0;
            background-color: rgba(0,0,0,.22);
            pointer-events: none;
        }

        .card.--medium .card-content {
            position: absolute;
            z-index: 1;
            bottom: 0;
            color: white;
        }

            .card.--medium .card-content h4 {
                font-size: 30px;
            }



/* ******* ANFP specific ********** */







p.section-content > a {
    text-decoration: none;
}




p.footer-content > a {
    color: #6C757D;
    text-decoration: none;
}

.footer .umb-block-grid__area {
    justify-content: flex-start;
}































.embededmap-container {
}





















/* ******* ANFP specific ********** */

p.section-content > a {
    text-decoration: none;
}

p.footer-content > a {
    color: #6C757D;
    text-decoration: none;
}

.footer .umb-block-grid__area {
    justify-content: flex-start;
}






/* Rich Text Styles*/
.short-line:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -40px;
    width: 31px;
    height: 3px;
    background-color: #024476;
    transform: translateY(-50%);
}

.short-line-white {
    color: white;
}

.short-line-black:before {
    background-color: #000000;
}

































.richtext-pdf-link:before {
    background-image: url("/media/qzhjjpsl/file-pdf-regular.svg");
    content: "";
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
    background-size: contain;
    display: inline-table;
    padding-right: 5px;
    vertical-align: text-bottom;
}
.richtext-pdf-link a {
    text-decoration: none !important;
    color: #005EA4;
}
.richtext-pdf-link a:hover {
    text-decoration: underline !important;
}

/** --- IconLink Element --- ***/
.iconlink {
    display: flex;
    margin-bottom: 15px;
    align-items: baseline;
}

.iconlink-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
}

.iconlink-link {
    text-decoration: none !important;
    font-family: 'Trebuchet MS';
    font-size: 20px;
    color: #005EA4;
    margin-left: 30px;
}

    .iconlink-link:hover {
        text-decoration: underline !important;
    }

.umb-block-grid__layout-container:has(.iconlink) {
    row-gap: 0px;
}




/** --- PersonProfile Element --- ***/
.personprofile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 10px 20px 1px gray;
    padding: 10px;
    height: 100%;
}

.personprofile-noprofilepicture {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 10px 20px 1px gray;
    padding: 10px;
    height: 148px;
}

.personprofile-profilepicture {
    width: 300px;
    height: 300px;
    border-radius: 8%;
    background-size: cover;
    background-repeat: no-repeat;
}

.personprofile-fullname {
    font-weight: bold;
    font-family: 'Trebuchet MS';
    font-size: x-large;
}

.personprofile-organizationrole {
    font-family: 'Trebuchet MS';
    top: 80%;
}

.personprofile-cvlink {
    text-decoration: none !important;
    height: 50px;
    position: relative;
    top: 35%;
}

    .personprofile-cvlink:hover {
        text-decoration: underline !important;
    }

.personprofile-fullname-noprofilepicture {
    font-weight: bold;
    font-family: 'Trebuchet MS';
    font-size: x-large;
    position: absolute;
    top: 0;
}

.personprofile-organizationrole-noprofilepicture {
    font-family: 'Trebuchet MS';
    position: absolute;
    top: 30%;
    text-align: center;
    padding-inline: 5%;
}

.personprofile-cvlink-noprofilepicture {
    text-decoration: none !important;
    height: 50px;
    position: relative;
    top: 90%;
}

    .personprofile-cvlink-noprofilepicture:hover {
        text-decoration: underline !important;
    }


/** --- 3 dots PersonProfile Element--- **/
.dropdown-profile {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    font-size: 16px;
    border: none;
}


.showLeft-profile {
    right: 20px;
    position: absolute;
}

.icons-profile li {
    background: none repeat scroll 0 0 black;
    height: 5px;
    width: 5px;
    line-height: 0;
    list-style: none inside none;
    margin-top: 3px;
    vertical-align: top;
    border-radius: 50%;
    pointer-events: none;
}

.dropdown-content-profile {
    display: none;
    position: relative;
    margin-top: 60px;
    background-color: #f9f9f9;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

    .dropdown-content-profile a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        .dropdown-content-profile a:hover {
            background-color: lightgray;
        }

.show {
    display: block;
}

/** --- Eroare placeholder --- ***/
.eroarePlaceHolderStyle {
    color: WHITE;
    font-family: 'Trebuchet MS';
    text-transform: uppercase;
    font-size: 15px;
    padding: 1.5rem;
    width: 70%;
    margin: 0 auto;
    height: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    background-color: RED
}


/** --- Social Media Share Links Element --- ***/
.socialmediasharelinks-container {
    display: flex;
    justify-content: center;
    background-color: #efeff3;
    padding: 1%;
}



/** --- Text Card Element --- ***/

.textcard-text {
}


/** --- Title Section website --- ***/
.titlesection-title-website {
    font-family: 'Trajan Pro Bold';
    text-transform: uppercase;
    font-size: 30px;
    height: 1rem;
    letter-spacing: 0px;
    color: #004890;
    opacity: 1;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: bold;
    border: 5px solid #004890;
    padding-left: 1.5em;
    box-sizing: border-box;
}

/** --- Title Section Element --- ***/

.titlesection-title {
    font-family: 'Trebuchet MS';
    text-transform: uppercase;
    font-size: 20px;
    padding: 2rem;
    height: 0;
    color: #FFFFFF;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    background-color: #275aa8;
}

@media (max-width: 768px){
    .titlesection-title-website {
        font-size: 15px;
    }

    .titlesection-title {
        padding: 1rem;
        height: auto;
    }
}


@media (max-width: 768px) {
    .titlesection-title-website {
        font-size: 15px;
        height: 1rem;
        letter-spacing: 0px;
        color: #004890;
        opacity: 1;
        text-align: left;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        font-weight: bold;
        border: 5px solid #004890;
        padding-left: 1.5em;
        box-sizing: border-box;
    }
}
/*.inner-text {
    width: 20em;
}*/
/** --- Titlu Concurs Element --- ***/
.titlu-concurs {
    font-family: 'Trebuchet MS';
    text-transform: uppercase;
    font-size: 30px;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
    text-align: center;
    font-weight: bold;
    padding: 1%;
    background-color: #efeff3;
    height: 55%;
}

    .titlu-concurs:before {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 31px;
        height: 3px;
        background-color: #024476;
        top: 10%;
    }


@media (max-width: 768px) {
    .titlu-concurs {
        font-size: 18px;
    }

        .titlu-concurs:before {
            width: 21px;
            height: 2px;
            top: 8%;
        }
}

/** Pages that are not in block grid **/
.page-container {
    grid-column-end: span 12;
    min-height: 500px;
    background-color: #efeff3;
}

.page-container-centeredsection {
    margin-right: auto;
    margin-left: auto;
    display: flex;
    max-width: 1200px;
    position: relative;
    flex-direction: column;
    justify-content: center;
    padding: 60px 20px 60px 20px;
}

.page-container-date {
    padding-inline: 1%;
    padding-block: 0.5%;
    border: 1px solid #0A75C7;
    background-color: #0A75C7;
    color: #FFFFFF;
    width: 6.3%;
}
/** Submit Form Page **/
.formtitle {
    font-weight: bold;
    font-family: 'Trebuchet MS';
}

.formtable {
    margin-top: 2rem;
    margin-left: 1rem;
    width: 60%;
}

.formtable-labelcolumn {
    vertical-align: initial;
    text-wrap: nowrap;
    padding-top: 5px;
}

.inputfield {
    font-size: 15px !important;
    opacity: 1 !important;
    padding-right: 5px;
    margin: 0.5rem 0 0.5rem 0;
    font-family: 'Trebuchet MS';
    width: 100%;
    border: 1px black solid;
}

.dropdownfield {
    font-size: 15px !important;
    opacity: 1 !important;
    padding-right: 5px;
    padding-left: 5px;
    margin: 0.5rem;
    font-family: 'Trebuchet MS';
    width: 100%;
    border: 1px black solid;
}

.checkboxfield {
    -webkit-transform: scale(1.5);
    vertical-align: middle;
}

.labelfield {
    font-family: 'Trebuchet MS';
    font-size: 15px;
    padding: 0.3rem;
}

::placeholder {
    font-family: 'Trebuchet MS';
    color: #a6a6a6;
    font-style: italic;
    font-size: 15px;
    opacity: 1;
}

.captcha-input {
    width: auto;
    margin-right: 10px;
    padding: 10px;
    padding-bottom: 0px;
    height: 40px;
    border: black 0px solid;
}

.captchaimage {
    margin-top: 10px;
    width: 60px;
    padding: 20px;
    font-weight: 400;
    padding-bottom: 0px;
    height: 40px;
    user-select: none;
    text-decoration: line-through;
    font-style: italic;
    font-size: x-large;
    border: black 2px solid;
    margin-left: 10px;
    display: inline-block;
}

.validation-message-style {
    color: red;
    padding: 10px;
    text-wrap: nowrap;
    visibility: hidden;
    font-family: 'Trebuchet MS';
}

.popup-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: visible;
    opacity: 1;
}

.popup {
    margin: 70px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    width: 30%;
    position: relative;
    transition: all 5s ease-in-out;
}

    .popup h2 {
        margin-top: 0;
        color: #333;
        font-family: 'Trebuchet MS';
        font-weight: bold;
    }

    .popup .close {
        position: absolute;
        top: 0;
        right: 10px;
        transition: all 200ms;
        font-size: 30px;
        font-weight: bold;
        text-decoration: none;
        color: #333;
        cursor: default;
    }

        .popup .close:hover {
            color: #06D85F;
            cursor: pointer;
        }

    .popup .content {
        max-height: 30%;
        overflow: auto;
        font-family: 'Trebuchet MS';
        font-size: 20px;
    }

@media(max-width: 601px){
    .popup h2 {
        font-size: 20px;
    }
}


































.richtext-icon-link:before {
    background-image: url("/media/x0xduvai/arrow-up-right-from-square-solid.svg");
    content: "";
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
    background-size: contain;
    display: inline-table;
    padding-right: 5px;
    vertical-align: text-bottom;
}
.richtext-icon-link a {
    text-decoration: none !important;
    color: #005EA4;
}
.richtext-icon-link a:hover {
    text-decoration: underline !important;
}






































.richtext-download-item:before {
    background-image: url("/media/eb1aorle/download.svg");
    content: "";
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
    background-size: contain;
    display: inline-table;
    padding-right: 5px;
    vertical-align: text-bottom;
}
.richtext-download-item a {
    text-decoration: none !important;
    color: #005EA4;
}
.richtext-download-item a:hover {
    text-decoration: underline !important;
}









.richtext-clock-item:before {
    background-image: url("/media/mncpc3hy/clock.svg");
    content: "";
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-size: contain;
    display: inline-table;
    padding-right: 5px;
    vertical-align: text-bottom;
}






.richtext-phone-item:before {
    background-image: url("/media/kbbftbme/phone.svg");
    content: "";
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-size: contain;
    display: inline-table;
    padding-right: 5px;
    vertical-align: text-bottom;
}




.richtext-mail-item:before {
    background-image: url("/media/dtkfwhci/envelope.svg");
    content: "";
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-size: contain;
    display: inline-table;
    padding-right: 14px;
    vertical-align: text-bottom;
}





.richtext-sent-item:before {
    background-image: url("/media/xqbngxou/sent.svg");
    content: "";
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-size: contain;
    display: inline-table;
    padding-right: 5px;
    vertical-align: text-bottom;
}






.richtext-gps-item:before {
    background-image: url("/media/azzhve5z/location.svg");
    content: "";
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-size: contain;
    display: inline-table;
    padding-right: 5px;
    vertical-align: text-bottom;
}



































.titlu-underline:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 31px;
    height: 3px;
    background-color: #024476;
    top: 7%;
}




































.emailbutton {
    appearance: button;
    backface-visibility: hidden;
    background-color: #405cf5;
    border-radius: 6px;
    border-width: 0;
    box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset,rgba(50, 50, 93, .1) 0 2px 5px 0,rgba(0, 0, 0, .07) 0 1px 1px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    font-family: -apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Ubuntu,sans-serif;
    font-size: 100%;
    height: 44px;
    line-height: 1.15;
    margin: 12px 0 0;
    outline: none;
    overflow: hidden;
    padding: 0 25px;
    position: relative;
    text-align: center;
    text-transform: none;
    transform: translateZ(0);
    transition: all .2s,box-shadow .08s ease-in;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 100%;
}

    .emailbutton:disabled {
        cursor: default;
    }

    .emailbutton:focus {
        box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset, rgba(50, 50, 93, .2) 0 6px 15px 0, rgba(0, 0, 0, .1) 0 2px 2px 0, rgba(50, 151, 211, .3) 0 0 0 4px;
    }













































/**formular*/

#generated-captcha {
    text-decoration: line-through;
    font-weight: bold;
    text-align: center;
    font-size: 35px;
    background-color: #ede7f6;
    border-radius: 6px;
    border: none;
    padding: 6px;
    outline: none;
    color: #1d1d1d;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif
}

#entered-captcha {
    border: 2px solid #c5c7f7;
    font-family: monospace;
    outline: none;
    border-radius: 6px;
    padding: 8px 15px;
    font-size: 15px;
}

.captcha-button {
    border: none;
    margin-left: 5px;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-family: monospace;
    font-weight: bold;
    outline: none;
    background-color: #64f394;
}

.captcha-label-valid {
    color: red;
    visibility: hidden;
    font-family: 'Trebuchet MS';
}

.form-button {
    border: 1px solid var(--unnamed-color-000000);
    color: white;
    background: #005EA4 0% 0% no-repeat padding-box;
    border: 1px solid #000000;
    border-radius: 50px;
    opacity: 1;
    font-family: 'Trebuchet MS';
    font-size: large;
    cursor: pointer;
    margin: 0.5rem;
    padding: 0.5rem;
}

    .form-button:disabled {
        border: 1px solid #999999;
        background-color: #cccccc;
        color: #666666;
    }



























































p.proiect-section-content a {
    margin-bottom: 0.75em;
    display: block;
}

/* Sunt situatii in care continutul din footer e afisat deasupra unor dropdown-uri din pagina.
Regula urmatoare fixeaza problema.
 */
body > div:nth-last-child(2 of .umb-block-grid) {
    position: relative;
    z-index: 1;
}


/* Functia de accesibiltate nu este vizibilia tot timoul in site si nu poate fi accesata mereu.
Regula urmatoare fixeaza problema.
 */
body > div:nth-last-child(1 of #sidepanel-acc) {
    z-index: 2;
}






























































/*img{*/
/*    pointer-events: none;*/
/*}*/

/*organziare concurs button*/
.concurs-org-btn {
    width: 177px;
    height: 50px;
    border: 1px solid var(--unnamed-color-000000);
    color: #FFFFFF;
    background: #0A75C7 0% 0% no-repeat padding-box;
    border: 1px solid #FFFFFF;
    border-radius: 50px;
    opacity: 1;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    line-height: 50px;
    display: inline-block;
}

/*buton pt element tip bloc */
.btn-block-element {
    background: #0A75C7;
    color: #FFFFFF;
    font-family: 'Trebuchet MS';
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    padding: 10px 20px;
    line-height: 30px;
    display: inline-block;
    white-space: nowrap;
    position: relative;
}
/*}*/


/*----------Concursuri Afisate astazi.cshtml------------*/
.concursuri-zilnic-container {
    border: 1px solid #ebe7d9;
    margin: 4px;
    padding: 4px;
    width: 100%;
    color: #707070;
    background-color: white;
    border-radius: 20px;
}

.concursuri-zilnic-image {
    object-fit: contain;
    align-self: center;
    padding: 0.5rem;
}

.concursuri-zilnic-title {
    font-family: 'Trebuchet MS';
    color: black;
    font-size: 17px;
    padding: 0.5rem;
    text-decoration: none !important;
}

    .concursuri-zilnic-title:hover {
        text-decoration: underline !important;
    }

.concursuri-zilnic-fields-container {
    text-align: justify;
    margin-left: 10%;
    background-color: #acdcf2;
    border-radius: 20px;
    padding: 0.5rem;
}

.concursuri-zilnic-field {
    font-family: 'Trebuchet MS';
    color: black;
    font-size: 15px;
    margin-left: 0.5rem;
}

/*-----Concurs.html--------------*/
.concurs-titlu {
    font-weight: bold;
    font-family: 'Trebuchet MS';
    font-size: 25px;
}

.concurs-message-info-block {
    border: 2px solid #0A75C7;
    text-align: center;
    margin: 50px auto;
}

.concurs-message-info-circle-mark {
    font-size: 3rem !important;
    color: #0A75C7;
}

.concurs-message-info-text {
    font-size: 1.2rem;
    font-family: 'Trebuchet MS';
}

.concurs-collapsible {
    background-color: #0A75C7;
    text-decoration: solid;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 20px;
    font-weight: bold;
}
    /* TARGET ICON */

    .concurs-collapsible::after {
        content: '\27A4';
        color: white;
        font-weight: bold;
        float: right;
        margin-left: 5px;
        transform: rotate(90deg);
    }

.concurs-active:after {
    content: "\27A4";
    color: white;
    transform: rotate(180deg);
}

.concurs-active, .concurs-collapsible:hover {
    border-left: 2px solid #0A75C7;
    border-right: 2px solid #0A75C7;
    border-bottom: 2px solid #0A75C7;
}

.concurs-collapsible-content {
    padding: 0 18px 18px;
    display: none;
    overflow: hidden;
    background-color: white;
    border: 1px solid #ccc;
    font-family: 'Trebuchet MS';
}

.concurs-field {
    font-family: 'Trebuchet MS';
    color: black;
    font-size: 15px;
    margin-left: 0.5rem;
}

.concurs-text-block {
    font-family: 'Trebuchet MS';
    color: black;
    font-size: 15px;
    padding: 2rem;
}

.concurs-post-fieldset {
    font-family: 'Trebuchet MS';
    border: 3px solid #004990;
    background: white;
    border-radius: 5px;
    display: flex;
    margin-top: 2rem;
}

    .concurs-post-fieldset legend {
        font-family: 'Trebuchet MS';
        background: #004990;
        color: #fff;
        padding: 5px 10px;
        font-size: 20px;
        border-radius: 5px;
        box-shadow: 0 0 0 3px #ddd;
        margin-left: 20px;
    }
/* Data ultimei modificari */
.data-ultimei-modificari {
    text-align: right;
    font-style: italic;
    margin:2em;
}
    
/*--------- Categorie-speta-----------*/
.categorie-spete-collapsible {
    background-color: #0A75C7;
    text-decoration: solid;
    color: white;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 20px;
}
    /* TARGET ICON */

    .categorie-spete-collapsible::after {
        content: '\27A4';
        color: white;
        float: right;
        margin-left: 5px;
        transform: rotate(90deg);
    }

    .categorie-spete-active, .categorie-spete-collapsible:hover {
        border-left: 2px solid #0A75C7;
        border-right: 2px solid #0A75C7;
        border-bottom: 2px solid #0A75C7;
    }

    .categorie-spete-active:after {
        content: "\27A4";
        color: white;
        transform: rotate(180deg);
    }

.categorie-spete-collapsible-content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: white;
    border: 1px solid #ccc;
    font-family: 'Trebuchet MS';
}

/*--------------- Speta ----------------*/
.speta-collapsible {
    background-color: #0A75C7;
    text-decoration: solid;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 20px;
    font-weight: bold;
}

    .speta-active, .speta-collapsible:hover {
        border-left: 2px solid #0A75C7;
        border-right: 2px solid #0A75C7;
        border-bottom: 2px solid #0A75C7;
    }

.speta-collapsible-content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: white;
    border: 1px solid #ccc;
    font-family: 'Trebuchet MS';
}

/*--------- imageDownloadItem.cshtml-----------*/
.image-download-item-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    height: 180px;
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: 0.5s;
}


    .image-download-item-profile:hover {
        filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.7));
        border-radius: 25%;
        transition: 0.5s;
    }

.image-download-item-title {
    font-size: 30px;
    font: normal normal 600 18px/25px Raleway;
    letter-spacing: 0px;
    color: #0A75C7;
    font-family: 'Trebuchet MS';
    opacity: 1;
    color: #FFFFFF;
    text-align: center;
    font-weight: bold;
    position: absolute;
    top: 20%;
}

.image-download-item-title-btn {
    width: 157px;
    height: 50px;
    border: 1px solid var(--unnamed-color-000000);
    color: #0A75C7;
    font-family: 'Trebuchet MS';
    background: #FFFFFF;
    border-radius: 50px;
    opacity: 1;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
    position: absolute;
    bottom: 10%;
    opacity: 1;
}

/*----------LegislatieItem.cshtml--------*/
.legi-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    height: 180px;
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: 0.5s;
}


    .legi-profile:hover {
        filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.7));
        border-radius: 25%;
        transition: 0.5s;
    }

.titlu-legi-profile {
    font-size: 30px;
    font: normal normal 600 18px/25px Raleway;
    letter-spacing: 0px;
    color: #0A75C7;
    font-family: 'Trebuchet MS';
    opacity: 1;
    color: #FFFFFF;
    text-align: center;
    font-weight: bold;
    position: absolute;
    top: 20%;
}

.legi-btn {
    width: 157px;
    height: 50px;
    border: 1px solid var(--unnamed-color-000000);
    color: #0A75C7;
    font-family: 'Trebuchet MS';
    background: #FFFFFF;
    border-radius: 50px;
    opacity: 1;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
    position: absolute;
    bottom: 10%;
    opacity: 1;
}

/*--------------LegislatieItemBig.cshtml-----------------*/
.legi-profile-big {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    background-color: #FFFFFF;
    height: 386px;
    width: 120%;
    margin-left: -20%;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: 0.5s;
}

    .legi-profile-big:hover {
        filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.7));
        border-radius: 25%;
        transition: 0.5s;
    }

.titlu-legi-profile-big {
    font-size: 30px;
    font: normal normal 600 18px/25px Raleway;
    letter-spacing: 0px;
    color: #0A75C7;
    font-family: 'Trebuchet MS';
    opacity: 1;
    color: #FFFFFF;
    text-align: center;
    font-weight: bold;
    position: absolute;
    top: 20%;
}

.legi-btn-big {
    width: 157px;
    height: 50px;
    border: 1px solid var(--unnamed-color-000000);
    color: #0A75C7;
    font-family: 'Trebuchet MS';
    background: #FFFFFF;
    border-radius: 50px;
    opacity: 1;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
    position: absolute;
    bottom: 10%;
}

/*----------ModelRecrutare.cshtml--------*/
.recrutare {
    background-color: white;
    border: 1px solid #ccc;
    width: 130%;
}

    .recrutare:hover {
        background-color: #edf6fd;
    }

        .recrutare:hover .list {
            display: block;
            background-color: #edf6fd;
        }

.list {
    display: none;
    position: absolute;
    top: 0;
    left: 130.85%;
    background-color: white;
    border: 1px solid #ccc;
    padding: 10px;
    width: 119%;
    transition: transform 1s ease;
    z-index: 2;
    border-left: none;
}

.arrow {
    position: absolute;
    top: 50%;
    right: -25%;
    border: solid gray;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transition: transform 0.3s ease;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.recrutare:hover .arrow {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

/*-------ModelRecrutareLarge.cshtml------*/
.recrutare-large {
    position:relative;
    background-color: white;
    border: 1px solid #ccc;
    width: 100%;
}

    .recrutare-large:hover {
        border-left: 2px solid #0A75C7;
        border-right: 2px solid #0A75C7;
        border-top: 2px solid #0A75C7;
    }

        .recrutare-large:hover .list-large {
            display: block;
            border-left: 2px solid #0A75C7;
            border-right: 2px solid #0A75C7;
            border-bottom: 2px solid #0A75C7;
        }

.list-large {
    display: none;
    position: absolute;
    top: 100%;
    left: -2px;
    background-color: white;
    padding-inline: 3%;
    width: calc(94% + 0.5px);
    transition: transform 1s ease;
    z-index: 2;
    border-top: none;
}

.arrow-large {
    position: absolute;
    top: 50%;
    right: 2%;
    border: solid gray;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transition: transform 0.3s ease;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.recrutare-large:hover .arrow-large {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

/*----ModelRecrutareLargeOpen.cshtml-----*/
	.recrutare-large-open {
		background-color: white;
		border: 1px solid #ccc;
		width: 108.2%;
		height: 200%;
	}

		.recrutare-large-open:hover {
			border: 2px solid #0A75C7;
		}

.arrow-large-open {
    position: absolute;
    top: 5%;
    right: -6.8%;
    border: solid gray;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-315deg);
}

/*-----ModelRecrutareSection.cshtml------*/
.modelRecrutareSection {
    max-width: 20%;
}

/*-------StudiiAnalizeCard.cshtml--------*/
.studii-analize-profile {
    background-color: #FFFFFF;
    height: 386px;
    width: 100%;
    box-shadow: 5px 5px 10px 2px rgba(0,0,0,.3);
    z-index: 0;
    padding: 5px;
}

    .studii-analize-profile:hover {
        border: 2px solid #0A75C7;
    }

.studii-analize-image {
    width: 100%;
    height: 60%;
    object-fit: contain;
}

.studii-analize-text{
    text-decoration:none !important;
}
}




































































/*-------ProgrameDeFormare.cshtml---------*/
.programe-formare-container {
    display: flex;
    flex-wrap: wrap;
}

.programe-formare-categorie {
    font: normal normal 600 20px / 25px Trebuchet MS;
    color: white;
    display: flex;
    justify-content: center;
    cursor: pointer;
    align-items: center;
    text-align: center;
    padding: 10px;
    width: 20%;
    height: 100px;
    transition: transform .5s;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin: 0.5em;
    text-decoration: none !important;
    background-repeat: no-repeat;
    background-size: cover;
}

    .programe-formare-categorie:hover {
        transform: scale(1.06);
        text-decoration: underline !important;
    }

/*------------Quote Block-------------*/

.quote-block {
    width: 100%;
    max-width: 1400px;
    border: 2px solid #0A75C7;
    text-align: center;
    margin: 50px auto;
    position: relative;
    box-sizing: border-box;
}

    .quote-block::before {
        content: '';
        position: absolute;
        top: 72px;
        left: -11px;
        width: 12px;
        height: 80px;
        background-color: #efeff3;
    }

.info-circle-mark {
    position: absolute;
    top: 72px;
    left: -30px;
    font-size: 5em;
    color: #0A75C7;
}

.quote-text {
    padding: 5%;
    padding-inline: 5%;
    font-family: 'Trebuchet MS';
    word-wrap: break-word;
}

@media (max-width: 680px) {
    .quote-block {
        max-width: 320px;
        padding: 10px;
        right: 5px;
    }

        .quote-block::before {
            top: 38px;
            height: 36px;
            left: -11px;
        }

    .info-circle-mark {
        font-size: 2em;
        top: 40px;
        left: -15px;
    }

    .quote-text {
        padding-inline: 2%;
        font-size: 10px;
    }

    p.section-content.section-content-nomargin {
        font-family: 'Trebuchet MS';
        font-size: 16px;
        margin: 0;
    }

    p.section-content.section-content-nomargin-16 {
        font-family: 'Trebuchet MS';
        font-size: 13px;
        margin: 0;
    }

    a.section-content .section-content-nomargin{
        width: 30px;
    }

    img {
        overflow-clip-margin: content-box;
        overflow: clip;
        max-width: auto;
    }

}
    

/*-----------------Masura de Reforma------------------*/



.masuraicon {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 20px 1px gray;
    padding: 10px;
    background-color: #FFFFFF;
    transition: transform .5s;
    height: 430px;
    width: 290px;
}

    .masuraicon:hover {
        transform: scale(1.04);
    }

.masura-picture {
    width: 260px;
    height: 150px;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 181px;
}


.header-masura-container {
    height: 43px;
    width: 100%;
    object-fit: contain;
}

.p .masura-rezumat {
    max-height: 20%;
    min-height: 10%;
    text-align: center;
}

.masura-card-footer {
    position: absolute;
    bottom: 10%;
    width: 100%;
}

    .masura-card-footer img {
        width: 100%;
    }


@media (max-width: 1023px) {

    .masura-picture {
        max-width: 247px;
    }

    .banner-element-image {
        width: 75% !important;
        margin-left:25%;
    }
}


/*-----------Biblioteca de spete------*/
.biblioteca-spete-container {
    display: flex;
    flex-wrap: wrap;
}

.biblioteca-spete-categorie {
    font: normal normal 600 20px / 25px Trebuchet MS;
    color: white;
    display: flex;
    justify-content: center;
    cursor: pointer;
    align-items: center;
    text-align: center;
    padding: 10px;
    width: 20%;
    height: 100px;
    transition: transform .5s;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin: 0.5em;
    text-decoration: none !important;
}

    .biblioteca-spete-categorie:hover {
        transform: scale(1.06);
        text-decoration: underline !important;
    }



/*------canvas.cshtml------*/
.canavs-iframe {
    width: 100%;
    height: 50vh;
}

/*classses form responsiveness*/
@media (min-width:1024px) {
    .umb-block-grid__layout-item {
        grid-column-end: span min(var(--umb-block-grid--item-column-span, 1), var(--umb-block-grid--grid-columns));
    }

    .umb-block-grid__area {
        grid-column-end: span var(--umb-block-grid--area-column-span, 1);
    }
}

@media (max-width: 600px) {
    .umb-block-grid__area-container, .umb-block-grid__block--view::part(area-container) {
        grid-template-columns: 1fr;
    }

    .umb-block-grid__area {
        --umb-block-grid--grid-columns: 1 !important;
    }

    .titlesection-title-website {
        font-size: 15px;
        height: 1rem;
        letter-spacing: 0px;
        color: #004890;
        opacity: 1;
        text-align: left;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        font-weight: bold;
        border: 5px solid #004890;
        padding-left: 1.5em;
        box-sizing: border-box;
    }

    .biblioteca-spete-categorie {
        width: 100%;
    }

    .legi-profile {
        padding: 10px 0 10px 0;
    }

    .legi-profile-big {
        padding: 10px 0 10px 0;
        margin-left: 0;
        width: 100%;
    }

    .image-download-item-profile {
        padding: 0;
    }

    .recrutare-large {
        width: 100%;
    }

    .recrutare-large-open {
        width: 100%;
    }

    .recrutare-large:hover .list-large {
        width: 94%;
        top: 82%;
        padding-top: 0;
    }

    p.section-content.section-content-nomargin {
        font-size: 15px;
    }

    .card-colaborator {
        width: 100%;
        padding: 0;
    }

    .arrow-colaborator {
        right: 1%;
    }

    .card-colaborator:hover .list-colaborator {
        width: 100%;
        padding: 0;
    }

    div.rich-text p a img{
        max-width:100%;
    }
}

/**umb_name:Section Supra Title, black line*/
p.short-line.short-line-black.short-line-supra-title {
	font-family: 'Trebuchet MS';
}

/**umb_name:Section Supra Title, white line*/
p.short-line.short-line-white.short-line-supra-title {
	font-family: 'Trebuchet MS';
}

/**umb_name:H1*/
.h1 {
	font-size: 60px;
	font-weight: 300;
	line-height: 1.2;
	margin: 0;
	color: inherit;
}

/**umb_name:H2*/
.h2 {
	font-size: 39px;
	font-weight: 300;
	line-height: 1.2;
	margin: 0;
	color: inherit;
}

/**umb_name:H3*/
h3 {
	font-size: 30px;
	font-weight: 300;
	line-height: 1.2;
	margin: 0;
	color: inherit;
}

/**umb_name:H4*/
h4 {
	font-size: 21px;
	font-weight: 300;
	line-height: 1.2;
	margin: 0;
	color: inherit;
}

/**umb_name:Lead Paragraph*/
p.lead-paragraph {
	font-size: 18px;
}

/**umb_name:Website Title*/
.websiteTitle {
	font-size: 15px;
}

/**umb_name:Cod SMIS*/
.codSmis {
	font-size: 10px;
}

/**umb_name:Short Line*/
.short-line {
	position: relative;
	left: 40px;
}

/**umb_name:Anunt*/
.anunt-text {
	max-width: 250px;
}

/**umb_name:Section, Trebuchet MS, 30*/
p.section-content.section-content-title {
	font-family: 'Trebuchet MS';
	font-size: 30px;
	margin: 0;
}

/**umb_name:Section, Trebuchet MS, 20*/
p.section-content.section-content-nomargin {
	font-family: 'Trebuchet MS';
	font-size: 20px;
	margin: 0;
}

/**umb_name:Section, Trebuchet MS, 16*/
p.section-content.section-content-nomargin-16 {
	font-family: 'Trebuchet MS';
	font-size: 16px;
	margin: 0;
}

/**umb_name:Footer, Trebuchet MS, 30*/
p.footer-content.footer-content-title {
	font-family: 'Trebuchet MS';
	font-size: 30px;
	margin: 0;
}

/**umb_name:Footer, Trebuchet MS, 16*/
p.footer-content.footer-content-nomargin {
	color: #6C757D;
	font-family: 'Trebuchet MS';
	font-size: 16px;
	margin: 0;
	text-decoration: none;
}

/**umb_name:Footer cr, Trebuchet MS, 16*/
p.footer-cr-content.footer-cr-content-nomargin {
	color: #FFFFFF;
	font-family: 'Trebuchet MS';
	font-size: 16px;
	margin: 0;
	text-decoration: none;
}

/**umb_name:Pdf Link*/
.richtext-pdf-link {
	color: #005EA4;
	display: block;
}

/**umb_name:Icon Link*/
.richtext-icon-link {
	color: #000000;
	border-bottom: none;
}

/**umb_name:Download Item*/
.richtext-download-item {
	color: #000000;
	border-bottom: none;
}

/**umb_name:Clock Item*/
.richtext-clock-item {
}

/**umb_name:Phone Item*/
.richtext-phone-item {
}

/**umb_name:Mail Item*/
.richtext-mail-item {
}

/**umb_name:Sent Item*/
.richtext-sent-item {
}

/**umb_name:Gps Item*/
.richtext-gps-item {
}

/**umb_name:Titlu Concurs*/
.concurs-title {
	font-family: 'Trajan Pro 3';
	font-size: 30px;
	letter-spacing: 0px;
	color: #0A75C7;
	opacity: 1;
	font-weight: bold;
	top: 5%;
	text-align: center;
	display: flex;
	justify-content: center;
}

/**umb_name:Titlu Underline*/
.titlu-underline {
	font-family: 'Trebuchet MS';
	text-transform: uppercase;
	font-size: 30px;
	letter-spacing: 0px;
	color: #000000;
	opacity: 1;
	text-align: center;
	font-weight: bold;
}

/**umb_name:Proiect Title*/
p.proiect-title {
	font-size: 30px;
	font-family: 'Trajan Pro 3';
	letter-spacing: 0px;
	color: #005EA4;
	opacity: 1;
	margin: auto;
	width: 600px;
}

/**umb_name:Proiect Section Title*/
p.proiect-section-title {
	text-align: left;
	font-size: 20px;
	font: normal normal normal 25px/29px Trebuchet MS;
	letter-spacing: 0px;
	color: #005EA4;
	opacity: 1;
	margin: auto;
	width: 600px;
}

/**umb_name:Proiect Section Content, Trebuchet MS, 20*/
p.proiect-section-content {
	font-family: 'Trebuchet MS';
	font-size: 20px;
	margin: auto;
	width: 600px;
}

/**umb_name:Blue text*/
p.blue-text {
	color: #005EA4;
}

/**umb_name:Black text*/
p.black-text {
	color: #000000;
}
