.time_to_shine_section {
    overflow: hidden;

    & .container {
        position: relative;
        z-index: 2;

        & .section_inner {
            width: 100%;
    
            & .text_area {
                width: 100%;
                text-align: center;

                & h2, & h3 {
                    font-size: 5rem;
                    font-weight: 400;

                    @media (max-width: 991px) {
                        font-size: 3rem;
                    }
                }
    
                & p {
                    & a {
                        color: var(--text);
                    }
                }
            }

            & .steps-wrapper {
                position: relative;
                margin-top: 5rem;

                & .steps {
                    display: flex;
                    justify-content: space-between;
                    position: relative;
                    z-index: 1;

                    @media (min-width: 992px) {
                        gap: 5rem;
                    }

                    @media (min-width: 991px) {
                        gap: 3rem;
                    }

                    @media (max-width: 768px) {
                        flex-direction: column;
                        gap: 30px;
                    }

                    & .step {
                        width: 100%;
                        text-align: center;
                        position: relative;
                        border: 2px solid var(--primary);
                        border-radius: 1rem;
                        padding: 3rem;
                        background: #FFDBBC;

                        @media (min-width: 992px) {
                            display: flex;
                            flex-direction: column;
                            align-items: center;
                        }

                        @media (max-width: 991px) {
                            text-align: center;
                        }

                        & .step-title {
                            font-size: 1.8rem;
                            font-weight: 400;
                            margin: 2rem 0 0;
                            line-height: 1.5;
                        }
                    }

                    & .slick-dots {
                        margin-top: 0;
                    }
                }
            }

            & .iwt_area {
                width: 100%;
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-between;

                & .left_side {
                    width: 58%;
                }

                & .right_side {
                    width: 38%;

                    & h2, & h3 {
                        font-size: 5rem;
                        font-weight: 400;

                        @media (max-width: 991px) {
                            font-size: 3rem;
                        }
                    }

                    & .call_to_action_buttons {
                        margin-top: 4rem;
                    }
                }
            }
        }
    }
}