/*noinspection CssUnknownTarget*/
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

:root {
    --body-color: #ebebeb;
    --background-color-footer: #d6fe9b;
    --color-footer: #066d50;

    --background-color-btn-principale: #d1dfec;
    --background-color-btn-principale-border: black;
    --color-btn-principale: black;

    --background-color-btn-principale-hover: #d6fe9b;
    --background-color-btn-principale-border-hover: #d6fe9b;
    --color-btn-principale-hover: #066d50;

    --background-color-btn-menu: #003d8d;
    --background-color-btn-menu-hover: #8bbe57;

    --background-color-btn-upload: #d1dfec;
    --background-color-btn-upload-border: black;
    --color-btn-upload: black;

    --colore-h1-h2-h3-h4-h5: #000;

    --color-link: #066d50;

    --color-placeholder: #066d50;
}


body {
    font-family: 'Rubik', sans-serif;
    color: #000;
    background-position: top left;
    background-repeat: no-repeat;
    background-color: var(--body-color);
}

.upload-container {
    position: relative;
}

.upload-container input {
    border: 1px solid #92b0b3;
    background: #f1f1f1;
    outline: 2px dashed #92b0b3;
    outline-offset: -10px;
    padding: 10px 0px 10px 25px;
    text-align: center !important;
    width: 100%;
}

.upload-container input:hover {
    background: #ddd;
}

/*
.upload-container:before {
    position: absolute;
    top: 50px;
    content: " (or) Drag and Drop files here. ";
    color: rgba(0, 0, 0, .5);
    font-weight: 400;
}
*/

.progress {
    display: none;
    position: relative;
    height: 25px;
    border: 1px solid #ddd;
    padding: 1px;
    border-radius: 3px;
}

.bar {
    background-color: #B4F5B4;
    width: 0%;
    height: 30px;
    border-radius: 3px;
}

.percent {
    position: absolute;
    display: inline-block;
    top: 8px;
    left: 48%;
}

.footer-mybg {
    background-color: var(--background-color-footer);
    color: var(--color-footer);
}

.text_footer {
    color: var(--color-footer);
    text-decoration: underline;
    /* text-decoration: underline; */
}

.progress-bar {
    background-color: #12CC1A;
    color: #FFFFFF;
    width: 0%;
    -webkit-transition: width .3s;
    -moz-transition: width .3s;
    transition: width .3s;
    border-radius: 5px;
}


.bg1 {
    background-color: #dee2e6;
}

.bg0 {
    background-color: #fff;
}

.header_logo {
    width: 100%;
    height: auto;
    display: block;
}

.header_logo_tablet {
    width: 100%;
    height: auto;
    display: none;
}

.header_logo_mb {
    width: 100%;
    height: auto;
    display: none;
}

hr {
    border-top-color: #cccccc;
}

h1, h2, h3, h4, h5 {
    color: var(--colore-h1-h2-h3-h4-h5);
}

h1 {
    font-size: 50px;
    font-weight: normal;
}

h2 {
    font-size: 40px !important;
    font-weight: normal;
    text-align: center;
    /* margin: 1rem 0 1rem !important; */
}

h3 {
    font-size: 35px;
    font-weight: normal;
}

h4 {
    font-size: 25px;
    font-weight: normal;
}

h5 {
    font-size: 18px;
    font-weight: normal;
}


.header_text {
    font-size: 70px;
    font-weight: 1200;
    text-align: center;
    margin: 15px;
}

form {
    margin: 0 auto;
}

.form-control {
    /* border-radius: 10px; */
    color: var(--color-placeholder);
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
}

.form-control::placeholder {
    color: var(--color-placeholder);
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
}

textarea.form-control::placeholder {
    color: #999999;
    text-align: left;
}

.btn-project {
    background-color: var(--background-color-btn-principale);
    color: var(--color-btn-principale) !important;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 15px;
    min-width: 200px;
    border: 1px solid var(--background-color-btn-principale-border);
}

.btn-project:hover {
    background-color: var(--background-color-btn-principale-hover);
    color: var(--color-btn-principale-hover) !important;
    border: 1px solid var(--background-color-btn-principale-border-hover);
}

.btn-upload {
    background-color: var(--background-color-btn-upload);
    color: var(--color-btn-upload) !important;
    /*text-transform: uppercase;*/
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 15px;
    min-width: 200px;
    border: 1px solid var(--background-color-btn-upload-border);
}

.btn-project-menu {
    background-color: var(--background-color-btn-menu);
    color: #ffffff;
    border: 2px solid #ffffff;
    /*
    text-transform: uppercase;
     */
    font-weight: 500;
    font-size: 16px;
    padding-left: 13px;
    padding-right: 13px;
    border-radius: 0px 00px 20px 20px;
    min-width: 180px;
    margin-right: 30px;
}

.btn-project-menu:hover {
    background-color: var(--background-color-btn-menu-hover);
    color: #ffffff;
    border: 1px solid white;
}

.btn-project-menu-active {
    background-color: var(--background-color-btn-menu-hover);
    color: #ffffff;
    border: 1px solid white;
}

.menu-link {
    color: var(--color-link);
}

.menu-link:hover {
    color: #ffc107;
}

.text-underline {
    text-decoration: underline;
}

.color_text {
    color: #727677 !important;
}

.text_link {
    color: black !important;
    text-decoration: underline;
    /* text-decoration: underline; */
}

.download-pdf {
    color: #000 !important;
}

.text-large {
    font-size: 44px;
}

.text-small {
    font-size: 16px;
}

.mnw-150px {
    min-width: 150px;
}

.box_detail {
    padding: 25px 25px 15px 25px;
    border: 1px solid #ededed;
    /* background-color: #f8f8f8; */
    background-color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.box_detail h4 {
    color: black;
}


/*_*/

.policy_footer {
    position: relative;
    top: -30px;
    font-size: 12px;
    text-align: right;
    padding-right: 10px;
}

.my-fixed-bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    margin-top: 30px;
}

input::placeholder {
    color: black;
    font-size: 1.2em;
    font-style: italic;
}

@media (max-width: 1280px) {
    .header_logo {
        display: none;
    }
    .header_logo_tablet {
        display: block;
    }

    .header_logo_mb {
        display: none;
    }
}


@media (min-width: 768px) and (max-width: 1200px) {
    h1 {
        font-size: 43px;
    }

    h2 {
        font-size: 35px !important;
    }

    h4 {
        font-size: 27px !important;
    }

    .header_text {
        font-size: 50px;
        font-weight: 1200;
        text-align: center;
        margin: 15px;
    }

    .countdown .container_count div {
        background-color: transparent !important;
        font-size: 45px;
        line-height: 100px !important;
        width: 100px !important;
        height: 100px !important;
    }

    .btn-project-menu {
        min-width: 120px;
    }
}


@media (max-width: 767px) {

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 30px !important;
    }

    h4 {
        font-size: 23px !important;
    }

    .header_text {
        font-size: 45px;
        font-weight: 1200;
        text-align: center;
        margin: 15px;
    }

    .countdown {
        margin: 10px 0 0 0;
    }

    .container_countdown_page {
        margin-top: 44px;
    }

    .countdown .container_count div {
        background-color: transparent !important;
        font-size: 40px;
        line-height: 90px !important;
        width: 90px !important;
        height: 90px !important;
    }

    .btn-project-menu {
        min-width: 80px;
        margin-right: 20px;
    }

    .policy_footer {
        position: relative;
        top: -20px;
        font-size: 7px;
        text-align: right;
        padding-right: 55px;
    }

}

@media (max-width: 720px) {
    .header_logo {
        display: none;
    }
    .header_logo_tablet {
        display: none;
    }

    .header_logo_mb {
        display: block;
    }
}


/* Mobile portrait */

@media (max-width: 480px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 25px !important;
    }

    h4 {
        font-size: 20px !important;
    }

    .btn-project {
        font-weight: 400;
        font-size: 10px;
        padding-left: 10px;
        padding-right: 10px;
        border-radius: 15px;
        min-width: 100px;
    }

    .countdown {
        margin: 10px 0 0 0;
    }

    .header_text {
        font-size: 35px;
        font-weight: 1200;
        text-align: center;
        margin: 15px;
    }

    .container_countdown_page {
        margin-top: 40px;
    }

    .countdown .container_count div {
        background-color: transparent !important;
        font-size: 30px;
        line-height: 60px !important;
        width: 60px !important;
        height: 60px !important;
    }

    .textarea_qa_size {
        height: 100px !important;
        font-size: 10px;
    }

    .box_detail {
        padding: 5px 5px 5px 5px;
        border: 1px solid #ededed;
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .btn-project-menu {
        border: 2px solid #ffffff;
        /*
        text-transform: uppercase;
         */
        font-weight: 500;
        font-size: 13px;
        padding-left: 5px;
        padding-right: 5px;
        border-radius: 20px 0px 20px 0px;
        min-width: 100px;
        margin-top: 10px;
    }
}