/* ===================================
   BLOC BOÎTES
   =================================== */

.block-boites {
    width: 100%;
}

.bloc-boites-wrapper {
    width: 100%;
}

.bloc-boites-wrapper .row {
    margin: 0;
}

.bloc-boites-wrapper [class*="col-"] {
    padding: 0;
}

/* Boîte Item */
.boite-item {
    display: flex;
    align-items: center;
    min-height: 500px;
    padding: 80px 140px 80px 140px;
    width: 100%;
}

.bg-grey {
    background-color: rgba(54, 69, 0, 0.1);
}

.bg-yellow {
    background-color: rgba(220, 220, 1, 0.2);
}

.bg-white {
    background-color: #ffffff;
}

/* Boîte Content */
.boite-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Header */
.boite-header {
    display: flex;
    flex-direction: column;
    gap: 39px;

    @media (min-width: 992px) {
        margin-bottom: 70px;

    }
}

.boite-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 50px;
    letter-spacing: 5px;
    color: rgba(54, 69, 0, 0.85);
    margin: 0;
    line-height: 1;
}

.boite-underline {
    width: 124px;
    height: 5px;
    background-color: #DCDC01;
}

/* Description */
.boite-desc {
    width: 100%;
    margin-bottom: 25px;
}

.boite-desc p {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    /* font-size: 20px; */
    letter-spacing: 4px;
    color: #364500;
    line-height: 1.5;
    margin: 0;

    @media (max-width: 992px) {
        font-weight: 300 !important;
    }
}

/* Link Button */
.boite-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-bottom: 1px solid rgba(54, 69, 0, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    width: max-content;
}

.boite-link:hover {
    opacity: 0.7;
}

.boite-link svg {
    width: 21px;
    height: 21px;
}

.boite-link svg path {
    stroke: rgba(54, 69, 0, 0.85);
}

.boite-link span {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    /* font-size: 18px;
    letter-spacing: 3.6px; */
    color: rgba(54, 69, 0, 0.85);
    text-transform: uppercase;
    white-space: nowrap;
}

/* Responsive */
@media screen and (max-width: 1400px) {
    .boite-item {
        padding: 40px !important;
    }

    .boite-title {
        font-size: 4vw;
    }

    /* .boite-desc p {
        font-size: 18px;
    } */
}

@media screen and (max-width: 992px) {
    .boite-item {
        min-height: 400px;
    }

    .boite-content {
        gap: 60px;
    }

    .boite-title {
        text-align: left !important;
        font-size: 5vw;
    }

    /* .boite-desc p {
        font-size: 16px;
        letter-spacing: 2px;
    } */

    /* .boite-link span {
        font-size: 16px;
        letter-spacing: 2.4px;
    } */
}

@media screen and (max-width: 768px) {
    .boite-item {
        padding: 40px 20px;
        min-height: 350px;
    }

    .boite-content {
        gap: 40px;
    }

    .boite-header {
        gap: 20px;
    }

    .boite-title {
        font-size: 6vw;
        letter-spacing: 3px;
    }

    .boite-underline {
        width: 80px;
        height: 3px;
    }

    /* .boite-desc p {
        font-size: 14px;
        letter-spacing: 1.4px;
    } */

    .boite-link {
        gap: 8px;
        padding: 8px;
    }

    .boite-link svg {
        width: 18px;
        height: 18px;
    }

    .boite-link span {
        /* font-size: 14px; */
        letter-spacing: 2px;
    }
}

@media screen and (max-width: 576px) {
    .boite-item {
        padding: 30px 15px;
        min-height: 300px;
    }

    .boite-content {
        gap: 30px;
    }

    .boite-title {
        font-size: 7vw;
    }
}