.realisations{
    border-bottom: 1px solid;
    padding-bottom: 5rem;
}

.realisations .active{
    font-weight: bold;
}

.realisations ul {
    list-style-type:none;
    padding-left:0px;
    display:flex;
    justify-content: center;
}

.realisations ul li a {
    margin:0px 10px;
    text-decoration:none;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.realisations .category_secondary {
    margin-top:2rem;
    margin-bottom:5rem;
}

.realisations .category_primary a {
    color:var(--primaryColor);
    text-transform:uppercase;
    font-weight: 500;
    border: solid 1px;
    padding: 5px 25px;
    border-radius: 20px;
}

.realisations .category_primary .active{
    background-color:var(--secondaryColor);
    color:#FFF;
    font-weight: 500;
    border:none;
}

.realisations .category_secondary a {
    font-weight: 600;
    border: solid 1px;
    padding: 5px 15px;
    border-radius: 25px;
    font-family:'Jura';
}

.realisations .category_secondary a:hover {
    color:var(--secondaryColor);
}

.realisations .category_secondary .active{
    background-color:var(--secondaryColor);
    color:#FFF;
    font-weight: 600;
    border:none;
}

.realisations ul .h5 {
    margin-top:0px;
}

.realisations h2.h4 {
    text-transform:uppercase;
    font-weight: 600;
}

.realisations .realisations-icon {
    text-align: center;
    margin-bottom:5rem;
}

.realisations .realisations_title {
    display: flex;
    align-items: baseline;
}

.realisations .realisations_title h4{
    margin-left: 10px;
    margin-top: 25px;
    font-weight: 600;
    font-size:16px;
    max-width: 180px;
}

.realisations .realisations_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 48px;
}

.realisations_list .realisations_area img{
    max-width: 100%;
    border-radius: 20px;
    height: 220px;
    object-fit: cover;
}

.realisations_list .realisations_area a{
    text-decoration: none;
    color: inherit;
}

.realisations_list .realisations_cta{
    border: 1px solid;
    border-radius: 20px;
    padding: 0 1em 1em 1em;
    height: 202px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
}

.realisations_list .realisations_cta h4{
    text-transform: uppercase;
    font-weight: 600;
}

@media screen and (max-width: 1024px) {
    .realisations {
        grid-template-columns: 1fr 1fr;
        justify-items: center;

    }

   .realisations .realisations_list {
        grid-template-columns: 1fr 1fr;
    }

    .realisations ul {
        flex-wrap: wrap;
    }

    .realisations .category_primary li, .realisations .category_secondary li {
        margin-bottom:1.5rem;
    }

    .realisations .category_secondary {
        margin-top:0px;
    }
}

@media screen and (max-width: 768px) {
    .realisations {
        grid-template-columns: 1fr;
        justify-items: center;

    }

   .realisations .realisations_list {
        grid-template-columns: 1fr;
    }

    .realisations ul {
        flex-wrap: wrap;
    }

    .realisations .category_primary li, .realisations .category_secondary li {
        margin-bottom:1.5rem;
    }

    .realisations .category_secondary {
        margin-top:0px;
    }

    .realisations_list .realisations_area img {
        height:240px;
    }
}