#home .grid {
    margin-top:30px;
    margin-left: 45px;
    display: flex;
    gap: 40px;
}

#home .grid .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#home .grid .text-content {
    display: flex;
    flex-direction: column;
}

#home .grid .text-content .title {
    color:#0bd1d1;
    font-size: 40px;
    font-weight: bold;
}

#home .grid .text-content .subtitle {
    font-size: 20px;
}

#home .grid .text-content .description {
    margin-top: 15px;
    font-size: 14px;
}

#home .grid .text-content .warning-suspended {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}

#home .grid .text-content .cta-espace-client:hover {
    text-decoration: none;
    background-color: #4fafaf;
}

#home .grid .icons-content {
    display: flex;
    gap: 30px;
    flex-direction: column;
}

#home .grid .icons-content .icon-content {
    display: flex;
    gap: 20px;
}

#home .grid .icons-content .icon-content svg {
    width: 50px;
    height: 50px;
    fill: #0bd1d1;

}

#home .grid .icons-content .icon-content .text {
    display: flex;
    gap: 5px;
    flex-direction: column;

}

#home .grid .icons-content .icon-content .text .title {
    font-size: 14px;
    font-weight: bold;
}

#home .grid .icons-content .icon-content .text .subtitle {
    font-size: 12px;
}

#home .grid .infos-content {
    display: flex;
    flex-direction: column;
    padding: 18px 16px;
    background-color: #f6f6f6;
    color:#000;
}

#home .grid .infos-content .title {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
}

#home .grid .infos-content .ellipse {
    display: flex;
    gap: 3px;
    align-items: center;
}

#home .grid .infos-content .ellipse::before {
    content: "";
    height: 16px;
    width: 16px;
    display: inline-block;
    border-radius: 50%;
}

#home .grid .infos-content .green-fill::before {
    background:#54b252;
}

#home .grid .infos-content .red-fill::before {
    background: #cb2e4b;
}

#home .grid .infos-content .myupdate {
    margin-left: 5px;
    width: fit-content;
    background-color: #0bd1d1;
    color: #fff;
    padding: 5px 8px;
    border-radius: 2px;
    font-size: 12px;
}

#home .grid .infos-content .myupdate:hover {
    text-decoration: none;
    background-color: #4fafaf;
}