.title {
    text-align: center;
    font-size: 3rem;
    font-weight: lighter;
    background: -webkit-linear-gradient(var(--white), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.office-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
    row-gap: 30px;


}

.office {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    min-width: 200px;
}


.country {
    font-size: 32px;
    margin: 0;
    color: var(--white)
        /* color:var(--yellow) */
        /* background: -webkit-linear-gradient(var(--white), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.office:not(.tunis) {
    opacity: 0.3;
}

.office.tunis .country {
    background: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    color: var(--yellow)
}

.country.small {
    font-size: 22px;
}

.line {
    width: 80%;
    height: 5px;
    border: none;
    border-radius: 10px;
    margin: 0;
    background: linear-gradient(90deg, var(--white) 57%, rgba(255, 255, 255, 0) 100%);
    opacity: 1;
}

.text {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.text.small {
    font-size: 14px;
}

.text svg {
    height: 15px;
    width: 15px;
    fill: var(--white);
}

.link {
    padding: 10px 20px;
    background-color: #40C351;
    color: var(--white);
    border-radius: 10px;
    font-size: 11px;
    display: flex;
    gap: 10px;
    text-align: center;
    text-decoration: none;
    align-items: center;
    justify-content: center;
}

.link svg {
    height: 15px;
    width: 15px;
    fill: var(--white);
}


@media only screen and (max-width: 991px) {
    .office {
        gap:10px
    }
    .office .country {
        font-size: 22px;
    }

    .office .line {
        height: 2px !important;
    }
    .office .text {
        font-size: 14px;
    }
}