.btn-classic {
    position: relative;
    font-family: "Maven Pro", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--secondary-color);
}
.btn-classic:before {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 0;
    bottom: 0;
    right: -25px;
    margin: auto;
    border-radius: 50%;
    background-color: var(--btn-color-2);
}
.btn-classic:after {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    top: 0;
    bottom: 0;
    right: -30px;
    margin: auto;
    border-radius: 50%;
    background-color: rgba(0,255,255,0.3);
}


.btn-blanc {
    position: relative;
    font-family: "Maven Pro", sans-serif;
    font-weight: 500;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 25px;
    padding: 10px 55px 10px 25px;
    display: block;
    width: fit-content;
}
.btn-blanc:before {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    border-radius: 50%;
    background-color: var(--btn-color-2);
}
.btn-blanc:after {
    position: absolute;
    content: "";
    width: 22px;
    height: 22px;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    border-radius: 50%;
    background-color: rgba(0,255,255,0.3);
}

.btn-color-2 {
    position: relative;
    font-family: "Maven Pro", sans-serif;
    font-weight: 500;
    color: #fff;
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 10px 55px 10px 25px;
    border-radius: 25px;
    display: block;
    width: fit-content;
    text-align: center;
    transition: 0.25s all;
}
.btn-color-2:before {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    border-radius: 50%;
    background-color: var(--btn-color-2);
}
.btn-color-2:after {
    position: absolute;
    content: "";
    width: 22px;
    height: 22px;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    border-radius: 50%;
    background-color: rgba(0,255,255,0.3);
}
.btn-color-2:hover {
    background-color: #fff;
    color: var(--secondary-color);
    transition: 0.25s all;
}

.btn-activites {
    position: relative;
    font-size: 0.875rem;
    font-family: "Maven Pro", sans-serif;
    font-weight: 500;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    background-color: #fff;
    text-transform: uppercase;
    border-radius: 25px;
    padding: 10px 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    width: fit-content;
    letter-spacing: 0.5px;
	white-space: nowrap;
	flex-shrink: 0;
}
.btn-activites img {
    width: 25px;
    max-height: 25px;
}
.btn-activites:hover,
.btn-activites.active {
    color: var(--secondary-color);
    background-color: rgba(229,234,247,0.74);
}