/*
    Mobile: 1 --> 991               @media (max-width: 991px) { }
    Tablet: 992 --> 1199            @media (min-width: 992px) and (max-width: 1199px) { }
    Desktop: 1200 --> infinito      @media (min-width: 1200px) { }
    Table + Desktop: 992 --> inf    @media (min-width: 992px) { }
    Desktop Ultra: 1200 --> inf    @media (min-width: 1200px) { }
*/

/*--- POSITIONS - Always ---*/
.cont_center {
    display: flex;
    justify-content: center; /* Centra orizzontalmente */
    align-items: center; /* Centra verticalmente */
    text-align: center;
}

.cont_left {
    position: relative;
    float: left;
    height: 100%
}

.cont_right {
    position: relative;
    float: right;
    height: 100%;
}

.cont_center_abs {
    text-align: center;
    position: absolute; /* Posizionamento indipendente */
    left: 50%; /* Posiziona al 50% del contenitore */
    transform: translateX(-50%); /* Centra orizzontalmente */
}

/*--- POSITIONS - Mobile ---*/
@media (max-width: 991px) {
    .cont_desktop {
        display: none;
    }

    .cont_ultra {
        display: none;
    }

    .cont_menu {
        width: 100%;
    }

    .cont_page {
        width: 100%;
    }
}

/*--- POSITIONS - Tablet + Desktop ---*/
@media (min-width: 992px) {
    .cont_mobile {
        display: none;
    }

    .cont_ultra {
        display: none;
    }

    .cont_menu_page {
        width: 100%;
        display: table;
    }

    .cont_menu {
        position: relative;
        float: left;
        width: 25%;
    }

    .cont_page {
        position: relative;
        float: left;
        width: 75%;
    }
}

/*--- POSITIONS - Desktop Ultra---*/
@media (min-width: 1200px) {
    .cont_ultra {
        display: block;
    }

    .cont_ultra_hide {
        display: none;
    }
}

/*--- MARGIN & PADDING ---*/

.cont_max {
    max-width: 1200px;
    margin: 0 auto 0 auto;
}

.cont_border {
    background-color: white;
    border: 1px solid grey;
    border-radius: 10px;
}

.cont_shadow {
    border: 1px solid #f5f5f5;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.10);
    border-radius: 10px;
}

.cont_margin {
    margin: 10px 10px 10px 10px;
}

.cont_padding {
    padding: 10px 10px 10px 10px;
}

.cont_padding_big {
    padding: 60px;
    min-height: 80px;
}

/*--- POSITIONS - Mobile ---*/
@media (max-width: 991px) {
    .cont_padding_big {
        padding: 30px;
    }
}

.cont_service {
    margin: 5px;
    padding: 5px;
    border-radius: 3px;
    text-decoration: none;
    text-align: center;
    cursor: text;
    display: inline-block;
}

/*--- IMAGE ---*/
.cont_upload_image {
    text-align: center;
    border-color: #dee2e6;
}

/*--- CHECKBOX ---*/
.cont_checkbox {
    display: flex;
    align-items: center;
}

.cont_checkbox img {
    flex-shrink: 0;
}

/*--- VISUAL ---*/
.cont_visual_background {
    background-size: cover;
    background-position: center;
}

.cont_visual_title {
    background-color: rgba(211, 211, 211, 0.5);
    font-size: 50px;
    font-weight: 600;
    color: white;
    text-align: center;
    border-radius: 10px;
    line-height: 1.5;
    margin-bottom: 0;
}

/*--- POSITIONS - Mobile ---*/
@media (max-width: 991px) {
    .cont_visual_title {
        font-size: 35px;
    }

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

@media (min-width: 992px) {
    .cont_col_left {
        border-right: 1px solid #79747e;
        text-align: left;
    }

    .cont_col_center {
        border-right: 1px solid #79747e;
        text-align: center;
    }

    .cont_col_right {
        text-align: right;
    }
}

@media (max-width: 991px) {
    .cont_col_left {
        text-align: left;
    }

    .cont_col_center {
        text-align: left;
    }

    .cont_col_right {
        text-align: left;
    }
}

.cont_col_right a {
    width: calc(100% - 5px);
}

/*--- WIZARD NEED ---*/
.wizard_step {
    display: none
}

/*--- BOOTSTRAP ---*/
.col-12, .col-11, col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
    padding-left: 0;
}

.row {
    margin: 0;
}

/*--- FONT AWESOME ---*/
.fas, .fa {
    line-height: 1em;
}

/*--- HEADER ---*/
header {
    width: 100%;
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 1000; /* Bootstrap è 1050, questo deve essere MINORE */
    background-color: white;
}

/*--- 2 MENU ---*/
.app_menu {
    display: none;
    position: fixed;
    top: 80px;
    right: 0;
    width: 100%;
    z-index: 2000; /* Bootstrap è 1050, questo deve essere MAGGIORE */

}

.app_menu_inner {
    float: right;
    background-color: white;
    min-width: 300px;
    overflow-y: auto;
    max-height: calc(100vh - 80px);
}

#app_menu_background {
    display: none;
}

@media (max-width: 991px) {
    .manifesto-section .col-12, .testimonial-section .col-12 {
        padding-right: 0;
    }

    .manifesto-section .image_full {
        margin-bottom: 20px
    }
}

.cont_search {
    width: 100%;
    display: block;
    border-radius: 28px;
    background-color: rgba(48, 48, 48, 1);
    color: #CAC4D0;
    height: 3em;
    font-size: 24px;
    padding: 0.7em;
    margin: 0 0 10px 0;
}

@media (max-width: 991px) {
    .cont_search {
        font-size: 16px;
    }
}