.service {
    max-width: 15rem;
    justify-self: center;
    display: grid;
    grid-template:
        "line"
        "dot"
        "descr" 1fr;
    justify-items: center;
    align-items: flex-start;
    text-align: center;
    color: var(--bs-indigo);
}

.service::after {
    content: "";
    grid-area: line;
    height: 2rem;
    border-right: 2px dotted currentColor;
}

.service:last-child::before {
    content: "";
    grid-area: dot;
    width: 1rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--bs-blue);
    justify-self: center;
    margin-bottom: 0.5rem;
}

.icon-box {
    cursor: pointer;
}

#more {
    display: none;
}

.brand-font {
    font-family: 'Oswald', sans-serif !important;
}


#logo {
    max-height: 4rem;
    height: auto;
    width: auto;
}

#logo2 {
    max-height: 6rem;
    height: auto;
    width: auto;
}

#urgentLink.flottant {
    position: fixed;
    bottom: 50px; /* Distance du bas de la page */
    right: 10px; /* Distance du côté droit de la page */
    z-index: 1000; /* S'assurer qu'il est au-dessus des autres éléments */
}

@media only screen and (max-width: 300px) {
    #contactDiv {
      display: none;
    }
  }