/* Page Les offres
============================================================ */

/* Header
------------------------------- */

.offer-header {
    width: 1100px;
    max-width: 100%;
    margin: 60px auto 90px auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.offer-header .title {
    font-size: 4.3rem;
    font-weight: 400;
    line-height: 1.2;
}

.offer-header .subtitle {
    font-weight: 700;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .offer-header {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .offer-header .title {
        font-size: 2.8rem;
    }
}

/* Category
------------------------------- */

.offer-category {
    width: 1100px;
    max-width: 100%;
    margin: 90px auto 120px auto;
    padding: 0 15px;
}

.offer-category .title {
    font-size: 3.25rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.offer-category .subtitle {
    font-weight: 700;
}

.offer-category .text {
    margin-bottom: 30px;
}

.offer-category .wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
    gap: 30px;
    margin-top: 25px;
    margin-bottom: 30px;
}

.offer-category .offer {
    text-align: center;
    background-color: #fff;
    border-radius: 50px;
    padding: 45px;
}

.offer-category .offer .title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.offer-category .offer .subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #379EC9;
    margin-bottom: 15px;
}

.offer-category .offer .price {
    font-size: 2.25rem;
    font-weight: 700;
    margin-top: 15px;
}

.offer-category .offer .price-details {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 15px;
}

@media (max-width: 992px) {
    .offer-category {
        margin: 70px auto;
    }

    .offer-category .title {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .offer-category .wrapper {
        grid-template-columns: 1fr;
    }

    .offer-category .offer {
        padding: 25px;
        border-radius: 25px;
    }

    .offer-category .offer .price {
        font-size: 1.8rem;
    }
}

/* Conditions
------------------------------- */

.offer-conditions {
    margin-top: 160px;
    margin-bottom: 140px;
    padding: 0 15px;
}

.offer-conditions .title {
    font-size: 3.25rem;
    font-weight: 400;
    text-align: center;
    max-width: 1330px;
    margin: 0 auto 25px auto;
}

.offer-conditions .wrapper {
    width: 1330px;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 45px;
    background-color: #fff;
    border-radius: 50px;
    display: grid;
    grid-template-columns: 5fr 7fr;
    align-items: center;
    gap: 30px;
}

.offer-conditions .list {
    margin-bottom: 50px;
}

.offer-conditions .list li {
    display: flex;
    align-items: center;
    gap: 25px;
    font-weight: 700;
}

.offer-conditions .list li::before {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="46" height="36" viewBox="0 0 46 36"><rect id="Rectangle_2537" data-name="Rectangle 2537" width="46" height="36" rx="18" fill="%23b5ddd5"/></svg>');
    line-height: 0;
}

.offer-conditions .list li + li {
    margin-top: 20px;
}

.offer-conditions .image {
    width: 100%;
    height: auto;
    border-radius: 50px;
}

.offer-conditions .btn-tertiary {
    margin-top: 15px;
}

@media (max-width: 992px) {
    .offer-conditions {
        margin-top: 80px;
        margin-bottom: 60px;
    }

    .offer-conditions .title {
        font-size: 2rem;
    }

    .offer-conditions .wrapper {
        grid-template-columns: 1fr;
        padding: 30px 40px;
    }

    .offer-conditions .image {
        border-radius: 25px;
    }
}