* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}*/

.container {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.grid-item {
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s;
}

.grid-item:hover {
    transform: scale(1.05);
}

.grid-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.grid-item p {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

/**************** Modifs ******************/

@media (min-width: 993px) {
    .article .service-entry p, .article .entry-heading {
      margin-right: 50px;
    }    
}

@media screen and (max-width: 991.98px) {
    .service-single .service-entry .entry-content .entry-infos {
      text-align: left!important;
    }
}

.article .service-entry p {
    font-size: 1rem;
    line-height: 1.77777778;
    font-family: 'GothamBook';
    color: #636363;
}

.article ul li, .article ol li{
    font-size: 1rem;
    line-height: 1.77777778;
    text-align: left!important;
    font-family: 'GothamBook';
    color: #636363;
}

.article ul li{
    list-style-type: circle;
}
.article ol li{
    list-style-type: decimal;
}

.article ul li:not(:first-child) {
    margin-top: 10px;
}

.article a:link {
    color: var(--global--color-primary);
    text-decoration: underline;
}

.article a:visited {
    color: var(--global--color-primary-alt);
}

.article a:hover {
    color: var(--global--color-yellow);
}

.article h4 {
    margin-top: 48px;
}
.article h6 {
    margin-top: 38px;
}

.top-20 {
    margin-top: 20px;
}

.no-bullet li{
    list-style-type: none!important;
}
  
  
  
  