#neptune_apropos {
    padding-top: 100px;
    padding-bottom: 100px;
}

#neptune_apropos .neptune_apropos-container {
    display: flex;
}

#neptune_apropos .neptune_apropos-container .bloc1 h2 {
    text-align: left;
    margin-bottom: 0;
}

#neptune_apropos .bloc1 {
    width: 50%;
}

#neptune_apropos .bloc1 h2 {
    width: 80%;
}

#neptune_apropos .bloc1 div p {
    width: 90%;
    margin-bottom: 0;
}

#neptune_apropos .bloc1 h2::after {
    content: '';
    display: block;
    width: 32px;
    height: 3px;
    background-color: var(--main-color);
    margin-top: 30px;
    margin-bottom: 23px;
    border-radius: 10px;
}

#neptune_apropos .bloc1 .link {
    margin-top: 31px;
}

#neptune_apropos .bloc2 {
    position: relative;
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

#neptune_apropos .bloc2 .main-image {
    display: block;
    width: 100%;
    max-width: 650px;
    height: auto;
    max-height: clamp(260px, 30vw, 360px);
    object-fit: cover;
}

#neptune_apropos .bloc2 .image-overlay {
    position: absolute;
    top: -55px;
    left: 70%;
    z-index: 2;
    width: 310px;
    height: 210px;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 768px) {
    #neptune_apropos .bloc1 {
        width: 100%;
    }
    #neptune_apropos .neptune_apropos-container {
        gap: 20px;
    }
    #neptune_apropos .bloc1 div p {
        width: 100%;
    }
}
@media (max-width: 550px) {
    #neptune_apropos {
        padding-top: 60px;
        padding-bottom: 60px;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    #neptune_apropos .neptune_apropos-container {
        flex-direction: column;
        position: relative;
    }

    #neptune_apropos .neptune_apropos-container .image-overlay {
        display: none;
    }

    #neptune_apropos .bloc1 {
        width: 100%;
    }

    #neptune_apropos .neptune_apropos-container .bloc1 h2 {
        width: 100%;
    }

    #neptune_apropos .bloc2 {
        width: 100%;
        padding-top: 40px;
    }

    #neptune_apropos .bloc2 .main-image {
        width: 100%;
    }

    #neptune_apropos .bloc1 .link {
        position: absolute;
        bottom: -70px;
        width: 100%;
    }

}

@media screen and (min-width: 550px) and (max-width: 768px) {
    #neptune_apropos .neptune_apropos-container .image-overlay {
        display: none;
    }

    #neptune_apropos .bloc2 {
        width: 100%;
    }

    #neptune_apropos .neptune_apropos-container {
        flex-direction: column;
    }
}

@media screen and (min-width: 768px) and (max-width: 1280px) and (orientation: landscape) {
    #neptune_apropos .bloc2 .image-overlay {
        display: none;
    }

    #neptune_apropos .bloc2 .main-image {
        max-height: clamp(240px, 28vw, 320px);
    }

}
@media (min-width: 1200px) {
    #neptune_apropos .neptune_apropos-container {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
    #neptune_apropos .bloc2 .image-overlay {
        display: none;
    }

    #neptune_apropos .bloc2 .main-image {
        max-height: clamp(240px, 32vw, 320px);
    }
}