body {
    background-color: #061d26;
}

.post-container {
    padding-inline: 5%;
    padding-top: 200px;
}

.back-button {
    display: block;
    border: 1px solid #e5f4fc;
    color: #e5f4fc;
    border-radius: 100px;
    padding: 6px 12px;
    width: -moz-fit-content;
    width: fit-content;
    text-decoration: none;
    margin-bottom: 26px;
}
a:hover {
    color: #e5f4fc !important;
}

.localisation {
    margin-bottom: 44px;
}

.tags-container {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}
@media (max-width: 768px) {
    .tags-container {
        gap: 16px;
    }
}
.description-container ul li,
.mission-container ul li,
.profile-container ul li {
    list-style-type: disc;
}

.description-container ol li,
.mission-container ol li,
.profile-container ol li {
    list-style-type: decimal;
}

.post-tag {
    background-color: #501f60;
    border-radius: 1000px;
    padding: 8px 16px;
    padding-top: 9px;
    color: #f2f2f2;
    font-weight: 200;
}

.proposition {
    padding-bottom: 200px;
    margin-right: -5%;
    padding-inline: 5%;
    /* background: url("../images/offre-bg.png"); */
    background-repeat: no-repeat;
    background-position: bottom -100px right 0px;
}
@media (max-width: 1024px) {
    .proposition {
        background-size: 25%;
    }
}
@media (max-width: 768px) {
    .proposition {
        background-size: 33vw;
    }
}
@media (max-width: 425px) {
    .proposition {
        background: none;
    }
}
.proposition ul {
    margin-left: 32px;
    margin-top: 16px;
}
.proposition ul li {
    margin-top: 12px;
}

.bottom-container {
    margin-inline: -5%;
    background-color: #f2f2f2;
    padding-inline: 5%;
    padding-bottom: 5%;
}

.mission-container {
    padding: 5%;
    background-color: #501f60;
    /* box-shadow: 7px 7px 10px #501f60; */
    position: relative;
    border-radius: 16px;
    top: -150px;
    margin-bottom: -100px;
}

.mission-container ul {
    margin-left: 32px;
    margin-top: 16px;
}
.mission-container ul li {
    margin-top: 12px;
}

.bottom-section,.plus-offre-section {
    padding-inline: 5%;
}

.profil-description {
    margin-left: 32px;
    margin-right: calc(10% + 32px);
    line-height: 28px;
    margin-bottom: 28px;
}

.join-button {
    display: flex;
    box-shadow: 7px 7px 10px rgba(3, 58, 75, 0.7);
    margin: auto;
    margin-block: 65px;
}

.offre-carousel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 24px;
    margin-right: -5%;
}

.swiper {
    width: 100%;
    height: auto;
}
.swiper-slide {
    width: -moz-fit-content;
    width: fit-content;
}

.swiper-content {
    width: 256.34px;
    height: 256.34px;
    background-color: #061d26;
}

.swiper-button-disabled {
    opacity: 0.6;
}
.swiper-button-prev,
.swiper-button-next {
    position: static;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #501f60;
    transform: translateY(50%);
}
.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 12px;
    color: #8d6799;
    font-weight: 700;
}
.swiper-button-prev::after {
    transform: translate(-2px, 1px);
}
.swiper-button-next::after {
    transform: translate(1px, 1px);
}
.navigation-container-desktop {
    display: flex;
    gap: 8px;
}

.navigation-container-mobile {
    display: none;
    grid-template-columns: 44px 1fr 44px;
    width: 80%;
    margin: auto;
    margin-top: 40px;
}
.swiper-pagination {
    position: relative;
    margin-top: 20px;
}
.swiper-pagination-bullet {
    background-color: #0f759a;
}
.swiper-pagination-bullet-active {
    background-color: #0f759a;
}

@media (max-width: 768px) {
    .partner-header a {
        display: none;
    }
    .navigation-container-desktop {
        display: none;
    }
    .navigation-container-mobile {
        display: grid;
    }
    .offre-carousel {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ******************************Offre Card************************* */
.offre-card {
    display: block;
    width: 306px;
    height: 184.23px;
    position: relative;
    overflow: hidden;
}

.offre-card img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    object-fit: cover;
}

.offre-card .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    /* background: linear-gradient(
        360deg,
        rgba(4, 29, 38, 0.8) 0%,
        rgba(4, 29, 38, 0.397262) 72.55%,
        rgba(4, 29, 38, 0) 100%
    ); */
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 1) 0%,
        rgba(255, 255, 255, 0) 0%,
        #501f60 92%
    );
}

.offre-card .text {
    position: absolute;
    width: 90%;
    bottom: 24px;
    left: 16px;
    z-index: 3;
    color: #F2F2F2;
}
