.time_to_shine_section {
    overflow: hidden;

    & .container {
        position: relative;
        z-index: 2;
        padding-top: 100px;
        padding-bottom: 100px;

        @media (max-width: 991px) {
            padding-top: 50px;
            padding-bottom: 50px;
        }

        & .section_inner {
            width: 100%;
    
            & .text_area {
                width: 100%;
                text-align: center;
    
                & p:first-of-type {
                    font-size: 2.4rem;
                    color: var(--primary);
                    text-align: center;
                    font-family: "DM Sans";
                    font-style: normal;
                    font-weight: 400;
                    line-height: normal;
                }

                & h2, & h3 {
                    font-size: 5rem;
                    font-weight: 400;

                    @media (max-width: 991px) {
                        font-size: 3rem;
                    }
                }
            }

            & .steps-wrapper {
                position: relative;
                margin: 5rem 0 10rem;

                @media (max-width: 991px) {
                    margin: 3rem 0;
                }

                & .steps {
                    position: relative;
                    z-index: 1;

                    @media (min-width: 992px) {
                        display: flex;
                        justify-content: space-between;
                        gap: 5rem;
                    }

                    @media (max-width: 991px) {
                        margin-bottom: 3rem;
                    }

                    & .slick-list {
                        @media (max-width: 991px) {
                            margin-bottom: 3rem;
                        }
                    }

                    & .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;
                            margin: 0 1rem;
                        }

                        & .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;
                flex-wrap: wrap;

                & .left_side {
                    width: 50%;

                    @media (max-width: 991px) {
                        width: 100%;
                    }

                    & img {
                        border: 2px solid var(--primary);
                    }
                }

                & .right_side {
                    width: 40%;

                    @media (max-width: 991px) {
                        width: 100%;
                    }

                    & .sub_text {
                        & h2, & h3 {
                            font-size: 5rem;
                            font-weight: 400;

                            @media (max-width: 991px) {
                                font-size: 3rem;
                                text-align: center;
                            }
                        }
                    }

                    & .call_to_action_buttons {
                        margin-top: 4rem;
                    }
                }
            }
        }
    }
}