﻿body {
}

.required-field::after {
    content: " *";
    color: red;
}

.text-align-left {
    text-align:left;
}

.section-title .title {
    text-transform: none;
}

.nav-tabs .nav-item .home-tab {
    padding: 10px 10px;
    margin-right: 20px;
}

ul.shareRs li {
    display: inline-block;
    margin-right: 5px;
    list-style: none;
}

ul.shareRs li a {
    color: inherit; /* garde la couleur de l’icône */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid currentColor; /* cercle autour de l’icône */
    text-decoration: none;
    transition: transform 0.3s ease, filter 0.3s ease;
}

    /* Facebook */
ul.shareRs li.facebook a {
    color: #1877F2;
}

/* Twitter (X) */
ul.shareRs li.twitter a {
    color: #000000;
}

/* LinkedIn */
ul.shareRs li.linkedIn a {
    color: #0A66C2;
}

/* WhatsApp */
ul.shareRs li.whatsApp a {
    color: #25D366;
}

/* Email */
ul.shareRs li.email a {
    color: #ff8a00;
}

/* Effet hover */
ul.shareRs li a:hover {
    transform: scale(1.15); /* zoom */
    filter: brightness(1.2); /* rend la couleur plus vive */
}
