.equipment_and_pricing_section {

    & .container {
        position: relative;
        z-index: 2;
        padding-bottom: 100px;

        & .section_inner {
            width: 100%;

            & h2, & h3 {
                width: 100%;
                text-align: center;
                font-weight: 400;
                font-size: 5rem;
                margin: 0 0 5rem;
                line-height: 1;
                color: var(--primary);
            }

            & .content {
                width: 100%;
                display: flex;
                justify-content: center;
                margin: 0 0 5rem;
            }

            & .equipment-nearest-status {
                width: 100%;
                text-align: center;
                margin: 0 0 5rem;
            }

            & .sunbed-tabs {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 2rem;
                margin-bottom: 5rem;
                flex-wrap: wrap;

                & .sunbed-tab {
                    padding: 1rem 2rem;
                    border-radius: 1rem;
                    color: #FFF;
                    text-align: center;
                    font-family: "DM Sans";
                    font-size: 1.8rem;
                    font-style: normal;
                    font-weight: 700;
                    line-height: normal;
                    border: 1px solid var(--primary);
                    color: var(--primary);
                    cursor: pointer;
                    background: none;

                    &:hover {
                        background: #f7f2ef;
                    }

                    &.active {
                        background: #3a2416;
                        color: #fff;
                        border-color: #3a2416;
                    }
                }
            }

            /* Grid */
            & .sunbed-grid {
                display: flex;
                flex-wrap: wrap;
                gap: 5rem;
                justify-content: center;

                & .sunbed-card {
                    display: flex;;
                    flex: 0 1 calc((100% - 10rem) / 3);
                    max-width: 40rem;
                    border: 2px solid var(--primary);
                    padding: 3rem;
                    text-align: center;
                    background: var(--white);
                    flex-direction: column;

                    @media (max-width: 991px) {
                        flex: 0 1 calc((100% - 5rem) / 2);
                    }

                    @media (max-width: 767px) {
                        flex: 0 1 100%;
                    }

                    & .sunbed-img img {
                        width: auto;
                        height: 23rem;
                        margin-bottom: 2rem;
                    }

                    & .sunbed-title {
                        color: #42251A;
                        text-align: center;
                        font-family: "Aboreto";
                        font-size: 2.4rem;
                        font-style: normal;
                        font-weight: 400;
                        line-height: 98%;
                        letter-spacing: 4.6px;
                        text-transform: uppercase;
                        margin: 2rem 0 3rem;
                    }

                    & .sunbed-price {
                        margin: 0 0 3rem;
                    }

                    & .buttons {
                        margin-top: auto;

                        & a:first-of-type {
                            margin-bottom: 2rem;
                        }
                    }
                }
            }
        }
    }
}