.company-container {

    .company-top-container {
        margin: 16rem 0;
        padding: 8rem;
        border-radius: 1.6rem;
        background-color: #fff;

        .red-title {
            font-style: normal;
            font-weight: 700;
            font-size: 4rem;
            line-height: 150%;
            letter-spacing: 0.1em;
            color: #D62328;
            margin-bottom: 4rem;
        }

        .flex-top-company {
            display: flex;
            justify-content: space-between;

            .text-left-container {
                max-width: 74.8rem;

                & p {
                    font-style: normal;
                    font-weight: 500;
                    font-size: 1.8rem;
                    line-height: 180%;
                    letter-spacing: 0.1em;
                    color: #000000;
                }

                .red-list-container {
                    margin: 2rem 0;

                    .red-list {
                        line-height: normal;
                        .munber {
                            font-family: 'Jost';
                            font-style: normal;
                            font-weight: 500;
                            font-size: 2.6rem;
                            /* line-height: 200%; */
                            color: #D62328;
                        }
    
                        .text {
                            font-style: normal;
                            font-weight: 500;
                            font-size: 2.4rem;
                            /* line-height: 200%; */
                            letter-spacing: 0.1em;
                            color: #D62328;
                        }
                    }
                }

            }

            .company-img-container {
                width: 48.1rem;
            }
        }
    }

    .management-container {
        border-radius: 1.6rem;
        background-color: #fff;
        padding: 8rem;
        margin-bottom: 16rem;

        .management-grey-megacontainer {

            margin-top: 4rem;
            display: flex;
            gap: 2.4rem;
            flex-direction: column;

            .management-grey-container {
                width: 100%;
                background-color: #F1F1F1;
                padding: 3.2rem;
                border-radius: 1.6rem;

                .mana-red-title {
                    font-style: normal;
                    font-weight: 700;
                    font-size: 2.4rem;
                    line-height: 150%;
                    letter-spacing: 0.09em;
                    color: #D62328;
                    padding-bottom: 1.5rem;
                }

                & p {
                    font-style: normal;
                    font-weight: 500;
                    font-size: 1.6rem;
                    line-height: 160%;
                    letter-spacing: 0.1em;
                    color: #000000;
                }
            }
        }

    }

    .access-container {
        margin-bottom: 16rem;
        border-radius: 1.6rem;
        background-color: #fff;
        padding: 8rem;

        .infos-subcontainer {
            padding: 4rem 13.5rem 0; 

            .maps-img-container {
                width: 100%;
                margin-bottom: 4rem;
            }

            .main-infos-text {
                line-height: 180%;
                letter-spacing: 0.1em;
                font-style: normal;
                font-weight: 500;
                font-size: 1.8rem;
                line-height: 180%;
                color: #000000;

                .red-infos {
                    font-size: 2.2rem;
                    font-weight: 700;
                    line-height: 180%;
                    color: #D62328;
                }
            }

            .maps-link {
                font-style: normal;
                font-weight: 500;
                font-size: 2.2rem;
                line-height: 180%;
                letter-spacing: 0.1em;
                text-decoration-line: underline;
                color: #D62328;
                margin-top: 4rem;

                &:hover {
                    text-decoration: none;
                }
            }
        }

    }

    .infos-container {
        border-radius: 1.6rem;
        background-color: #fff;
        padding: 8rem;
        margin-bottom: 16rem;
        
        .table-container {
            margin-top: 4rem;
        }
    }

    .flex-btn-btn-container {
        display: flex;
        justify-content: space-between;
        padding-bottom: 16rem;

        .message-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 4rem;
            width: 69.6rem;

            background: #FFFFFF;
            box-shadow: 0px 0.2rem 0.4rem rgba(0, 0, 0, 0.15);
            border-radius: 0.8rem;

            .text {
                font-style: normal;
                font-weight: 700;
                font-size: 2.6rem;
                /* line-height: 150%; */
                letter-spacing: 0.09em;
                color: #D62328;
            }

            .btn-icon {
                width: 4.4rem;
            }
        }
    }
}

@media screen and (max-width: 767px) {
    .company-container {
        .company-top-container {
            margin: 8rem 0;
            padding: 4rem 2rem;

            .red-title {
                font-size: 2.4rem;
                margin-bottom: 2rem;
            }

            .flex-top-company {
                flex-direction: column;

                .text-left-container {
                    max-width: 100%;

                    & p {
                        font-size: 1.4rem;
                    }

                    .red-list-container {
                        margin: 1.5rem 0;

                        .red-list {
                            .munber {
                                font-size: 2rem;
                            }

                            .text {
                                font-size: 1.8rem;
                            }
                        }
                    }
                }

                .company-img-container {
                    width: 100%;
                    margin-top: 2rem;
                }
            }
        }

        .management-container {
            padding: 4rem 2rem;
            margin-bottom: 8rem;

            .management-grey-megacontainer {
                margin-top: 2rem;
                gap: 1.5rem;

                .management-grey-container {
                    padding: 2rem;

                    .mana-red-title {
                        font-size: 1.8rem;
                        padding-bottom: 1rem;
                    }

                    & p {
                        font-size: 1.4rem;
                    }
                }
            }
        }

        .access-container {
            margin-bottom: 8rem;
            padding: 4rem 2rem;

            .infos-subcontainer {
                padding: 2rem 0 0;

                .maps-img-container {
                    margin-bottom: 2rem;
                }

                .main-infos-text {
                    font-size: 1.4rem;

                    .red-infos {
                        font-size: 1.6rem;
                    }
                }

                .maps-link {
                    font-size: 1.4rem;
                    margin-top: 2rem;
                }
            }
        }

        .infos-container {
            padding: 4rem 2rem;
            margin-bottom: 8rem;

            .table-container {
                margin-top: 2rem;
            }
        }

        .flex-btn-btn-container {
            flex-direction: column;
            gap: 2rem;
            padding-bottom: 8rem;

            .message-btn {
                width: 100%;
                padding: 2rem;

                .text {
                    font-size: 2rem;
                }

                .btn-icon {
                    width: 3.2rem;
                }
            }
        }
    }
}