.main-renfo {
    .renfo-head {
        height: 7rem;
        background-color: green;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 6rem;
        position: relative;

        &::before {
            content: "";
            position: absolute;
            bottom: -19px;
            width: 0;
            height: 0;
            border-top: 20px solid green;
            border-left: 30px solid transparent;
            border-right: 30px solid transparent;
        }

        @media screen and (max-width: 500px) {
            height: 6rem;
        }

        .head-content {
            & h2 {
                text-align: center;
                color: white;
                margin-bottom: 0;

                @media screen and (max-width: 500px) {
                    padding: 0 0.8rem;
                }
            }
        }
    }

    .event-detail {
        margin-bottom: 7rem;

        @media screen and (max-width: 700px) {
            margin-bottom: 4rem;
        }

        .detail-content {
            display: flex;
            flex-direction: row-reverse;
            justify-content: center;
            gap: 4rem;
            padding: 0 1.5rem;

            @media screen and (max-width: 1000px) {
                gap: 2rem;
            }

            @media screen and (max-width: 950px) {
                flex-direction: column-reverse;
                align-items: center;
            }

            .detail-img {
                width: 40rem;
                overflow: hidden;
                line-height: 0;

                @media screen and (max-width: 700px) {
                    display: none;
                }

                img {
                    border-radius: 2rem;
                    width: 100%;
                }
            }

            .detail-des {
                width: 32rem;
                align-self: center;

                @media screen and (max-width: 950px) {
                    width: 100%;
                }

                h2 {
                    margin-bottom: 1rem;
                }

                p {
                    line-height: 1.7;
                    margin-bottom: 2rem;
                }

                a {
                    text-decoration: none;
                    padding: 1.3em 3em;
                    font-size: 12px;
                    text-transform: uppercase;
                    letter-spacing: 2px;
                    font-weight: 700;
                    color: white;
                    background-color: #23c483;
                    border: none;
                    border-radius: 45px;
                    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
                    transition: all 0.3s ease 0s;
                    outline: none;

                    &:hover {
                        box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
                        color: #000000;
                    }
                }

                span {
                    background-color: #092363;
                    color: white;
                    font-weight: 700;
                    padding: 0.2rem 0.8rem;
                    border-radius: 50%;
                    display: inline-block;
                    margin: 0 5px 10px 0;
                }

                strong {
                    color: #092363;
                }
            }
        }
    }

    .revue {
        box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
        rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
        padding: 1.5rem 0;

        .title {
            text-align: center;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            color: #245f47;
        }

        .custom-title {
            font-size: 1.1rem;
        }

        .content {
            padding: 0 0 0 1.5rem;
        }

        .entreprise {
            margin-bottom: 2rem;
        }
    }
}
