.beds_section {
    & .container {
        & .section_inner {
            width: 100%;
    
            & .text_area {
                width: 100%;

                &:first-of-type {
                    & p {
                        font-size: 4rem;
                        margin: 0 0 3rem;
                        line-height: 1;

                        @media (max-width: 991px) {
                            font-size: 2rem;
                        }
                    }
                }

                & h2, & h3, & h4, & h5 {
                    font-weight: 400;
                    font-size: 5rem;
                    margin: 3rem 0 6rem;

                    @media (max-width: 991px) {
                        font-size: 3rem;
                        text-align: center;
                    }
    
                    & span {
                        color: var(--primary);
                        font-size: inherit;
                        font-weight: inherit;
                    }
                }
    
                & p {
                    & a {
                        color: var(--text);
                    }
                }
            }

            & .bed_columns {
                @media (min-width: 992px) {
                    display: flex;
                    flex-direction: row;
                }

                & .bed_col {
                    display: flex;
                    flex-direction: column;
                    align-items: center;

                    @media (min-width: 992px) {
                        width: 33.33%;
                    }

                    & h3 {
                        width: 30rem;
                        max-width: 100%;
                        text-align: center;
                        font-size: 3rem;
                        font-weight: 400;
                        color: var(--primary);
                        margin: 3rem 0;

                        @media (max-width: 991px) {
                            width: 100%;
                        }
                    }

                    & img {
                        width: auto;
                        height: 30rem;
                    }

                    & .points {
                        & .point {
                            width: 32rem;
                            max-width: 100%;
                            border: 1.5px solid var(--primary);
                            padding: 1rem;
                            display: flex;
                            align-items: center;
                            border-radius: 1rem;

                            &:not(:last-of-type) {
                                margin-bottom: 1rem;
                            }

                            & svg {
                                width: 2.5rem;
                                min-width: 2.5rem;
                                height: auto;
                                flex-shrink: 0;
                                margin-right: 1rem;
                            }

                            & span {
                                color: var(--primary);
                                flex: 1 1 auto;
                                min-width: 0;
                            }
                        }
                    }

                }
            }
        }
    }
} 