/*Add your customer CSS for the landing page/frontend here*/

h1, h2, h3, h4, h5, h6 
{ 
    color:#092c61 !important;
}
@media (max-width: 768px) {
    .container, .container-md, .container-sm {
        max-width: 100%;
    }
}
.form-material .form-control, .form-material .form-control.focus, .form-material .form-control:focus
{
    background-image: -webkit-gradient(linear, left top, left bottom, from(#85ef6c), to(#2de800)), -webkit-gradient(linear, left top, left bottom, from(#e9edf2), to(#e9edf2));
    background-image: linear-gradient(#85ef6c, #2de800), linear-gradient(#e9edf2, #e9edf2);
}
#contact-us-form
{
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-around;
}
@media (max-width: 768px) {
    #contact-us-form
    {
     display:flex;
     padding-left: 30px;
     padding-right: 30px;
     flex-direction: column;
     align-content: center;
     flex-wrap: wrap;
 
     }
}
.featured_box.disabled {
    background-color: #ccc; /* Fond gris */
    color: #777; /* Texte gris */
    pointer-events: none; /* Désactive les clics */
    opacity: 0.6; /* Effet visuel d’élément désactivé */
    filter: grayscale(100%); /* Tout en nuances de gris */
}

