﻿
/* Contenitore principale */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header: centrare e rimuovere spazi */
.header-banner {
    background-color: #007bff;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    min-height: 250px;
    margin: 0;
    padding: 0;
}

    .header-banner .row {
        margin: 0;
        padding: 0;
    }

    .header-banner .col-12 {
        margin: 0;
        padding: 0;
    }

    .header-banner h2 {
        font-size: 2.5rem;
        font-weight: bold;
    }

/* Form */
.bv-form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-width {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

    .form-width:focus {
        border-color: #007bff;
        outline: none;
    }

/* Etichette */

/* Bottone invia */
.main-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .main-button:hover {
        background-color: #0056b3;
    }

/* Caselle di controllo */
.checkbox {
    display: flex;
    align-items: center;
}

    .checkbox input[type="checkbox"] {
        margin-right: 10px;
    }

/* Messaggi di successo e errore */
.alert {
    padding: 20px;
    border-radius: 5px;
    font-size: 1rem;
    margin-top: 20px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

/* Sezione contatti */
.box-white {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.content-second-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.font-small {
    font-size: 0.9rem;
}

.color-light-blue {
    color: #007bff;
}

.color-black {
    color: #333;
}

.text-decoration {
    text-decoration: none;
}

    .text-decoration:hover {
        text-decoration: underline;
    }

.mt-4 {
    margin-top: 20px;
}

.mt-2 {
    margin-top: 10px;
}

.pt-4 {
    padding-top: 20px;
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.flex-column {
    flex-direction: column;
}

.m-0 {
    margin: 0;
}

/* ReCaptcha */
.g-recaptcha {
    margin-top: 10px;
}

/* #region CONTACT FORM */
#contact_success_message {
    display: none;
}

#contact_error_message {
    display: none;
}

.help-block {
    font-size: 13px;
    position: absolute;
    float: left;
}

.form-control-feedback.glyphicon-remove {
    display: none !important;
}

.sidebar-image-box {
    position: relative;
}

    .sidebar-image-box:hover .overlay-card-sidebar {
        opacity: 1;
    }

.overlay-card-sidebar {
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(73, 71, 214, 0.5);
    cursor: pointer;
    transition: 0.4s;
}

    .overlay-card-sidebar img {
        height: 50px;
        width: 50px;
    }

/* #endregion */

.container.imgHeaderAllPage.header-banner.heading {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
}


    .container.imgHeaderAllPage.header-banner.heading.ai-style-change-7 {
        display: flex;
        justify-content: center;
        align-items: center;
    }

.row.align-items-center.h-100.ai-style-change-1 {
    margin: 0;
}
.grecaptcha-badge {
    visibility: hidden !important;
}