.about-title-1 {
    color: #e03e2d; font-size: 14pt;
}
.about-title-2 {
    color: #169179; font-size: 14pt;
}
.about-title-3 {
    color: #f1c40f; font-size: 14pt;
}
.about-title-4 {
    color: #843fa1; font-size: 14pt;
}
.about-title-5 {
    color: #ba372a; font-size: 14pt;
}
.zone-navigation {
    margin-bottom: 2rem
}

.zone-navigation ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center
}

@media screen and (max-width: 576px) {
    .zone-navigation ul {
        -webkit-box-pack:start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

.zone-navigation ul li {
    margin-right: .5rem;
    margin-left: .5rem;
    list-style: none;
}

.zone-navigation ul li.active a {
    background-color: var(--background-static);
    color: #fff;
}

.zone-navigation ul a {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: .3s all ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
    border: 1px solid var(--background-static);
    border-radius: 25px;
    background-color: #fff;
    padding-right: 1rem;
    padding-left: 1rem;
    min-width: 200px;
    height: 48px;
    color: var(--background-static);
    font-size: 1.125rem;
    text-decoration: none;
}

@media screen and (max-width: 1024px) {
    .zone-navigation ul a {
        min-width:160px;
        height: 40px
    }
}

@media screen and (max-width: 400px) {
    .zone-navigation ul a {
        min-width:140px
    }
}

.zone-navigation ul a:hover {
    border: 1px solid var(--background-static);
    background-color: var(--background-static);
    color: #fff
}