.inner {
    width: 70%;
    height: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    font-size: 1.2em;
}

.tarifs {
    padding: 25px 0 100px 0;
    background-color: var(--secondary-color);
    color: var(--primary-text-color);
}

.wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.wrapper .text {
    width: 70%;
}

.wrapper img {
    width: 25%;
    min-width: 250px;
    height: auto;
}

.liens {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    flex-wrap: wrap;
}

.bloc {
    flex-basis: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bloc p {
    text-align: center;
}

.button {
    align-items: center;
    background-clip: padding-box;
    background-color: var(--footer-color);
    border: 1px solid transparent;
    border-radius: .25rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-family: var(--title-font), sans-serif;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    line-height: 1.25;
    margin: 0;
    min-height: 3rem;
    padding: calc(.875rem - 1px) calc(1.5rem - 1px);
    position: relative;
    text-decoration: none;
    transition: all 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    width: auto;
}

.button:hover,
.button:focus {
    background-color: var(--footer-color);
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.button:hover {
    transform: translateY(-1px);
}

.button:active {
    background-color: var(--footer-color);
    box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
    transform: translateY(0);
}

.button a {
    text-decoration: none;
    color: #fff;
}

@media only screen and (max-width: 1000px) {
    .inner {
        width: 95%;
    }

    .wrapper .text {
        width: 100%;
    }
}