.pages-carte {
    width: 100%;
    height: 582px;
    display: flex;
    overflow: hidden;
    position: relative;
    align-items: center;
    background: #a8cc8c;
}

.pages-carte::after {
    top: 0;
    left: 50%;
    width: 190%;
    content: "";
    height: 396px;
    z-index: 4;
    position: absolute;
    border-radius: 50%;
    background: #ffffff;
    transform: translate(-50%, -72%);
}

.pages-carte__map {
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    /*opacity: 0.82;*/
    position: absolute;
    /*mix-blend-mode: multiply;*/
    /*filter: contrast(1.15) saturate(0.9);*/
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.pages-carte__gradient {
    top: 0;
    left: 0;
    width: 52%;
    height: 100%;
    position: absolute;
    background: linear-gradient(105deg, #a8cc8c 0%, rgba(168, 204, 140, 0.96) 36%, rgba(168, 204, 140, 0.55) 50%, rgba(168, 204, 140, 0) 66%);
}

.pages-carte__inner {
    z-index: 5;
    width: 100%;
    margin: 0 auto;
    max-width: 1620px;
    position: relative;
}

.pages-carte__content {
    gap: 18px;
    width: 100%;
    display: flex;
    max-width: 446px;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    color: #04533d;
}

.pages-carte__title {
    margin: 0;
    color: #04533d;
    font-size: 50px;
    font-weight: 400;
    line-height: 56px;
    text-transform: uppercase;
    font-family: var(--e-global-typography-primary-font-family, "Recording Artist JNL"), Sans-serif;
}

.pages-carte__address {
    color: #04533d;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    font-family: var(--e-global-typography-text-font-family, "Plus Jakarta Sans"), Sans-serif;
}

.pages-carte__address p {
    margin: 0;
}

.pages-carte__button {
    color: #04533d;
    display: inline-flex;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    min-height: 55px;
    border-radius: 5px;
    align-items: center;
    text-decoration: none;
    padding: 16px 24px;
    justify-content: center;
    background: #ffffff;
    font-family: var(--e-global-typography-text-font-family, "Plus Jakarta Sans"), Sans-serif;
}

/*RESPONSIVE*/

/*phone*/
@media (max-width: 767px) {

    .pages-carte {
        height: 440px;
        align-items: flex-start;
    }

    .pages-carte::after {
        width: 230%;
        height: 220px;
        transform: translate(-50%, -74%);
    }

    .pages-carte__map {
        width: 100%;
        background-position: 68% center;
    }

    .pages-carte__gradient {
        width: 100%;
        background: linear-gradient(145deg, #a8cc8c 0%, rgba(168, 204, 140, 0.82) 48%, rgba(168, 204, 140, 0) 100%);
    }

    .pages-carte__inner {
        padding-top: 120px;
    }

    .pages-carte__title {
        font-size: 36px;
        line-height: 40px;
    }

    .pages-carte__address {
        font-size: 15px;
        line-height: 23px;
    }

}

/*tablet*/
@media (min-width: 768px) and (max-width: 1023px) {

    .pages-carte {
        height: 500px;
    }

}

/*mobile and tablet*/
@media (max-width: 1023px) {

}

/*desktop*/
@media (min-width: 1025px) {

}

/*laptop 1*/
@media (min-width: 1024px) and (max-width: 1439px) {

    .pages-carte {
        height: 482px;
    }

}

/*laptop 2*/
@media (min-width: 1440px) and (max-width: 1700px) {

}

/*RESPONSIVE*/
