.taxonomy_carousel_section {
    width: 100%;
    position: relative;
    background: #f2f2f2;

    & h2, & h3 {
        font-weight: 400;
        font-size: 50px;
        margin: 0 0 50px;
        line-height: 1;
        color: #012D52;
        text-align: center;
    }

    & .section_top {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin: 0 0 50px;

        @media (max-width: 991px) {
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        & h2 {
            font-size: 40px;
            font-weight: 600;
            color: #0F55B2;
            margin: 0;

            @media (max-width: 991px) {
                font-size: 26px !important;
                margin: 0 0 30px;
            }
        }
	
        & .call_to_action_buttons {
            width: auto;

            @media (max-width: 991px) {
                & a {
                    width: auto !important;
                }
            }
        }
    }

    & .section_inner {
        margin: 0 -10px;

        & .slick-track {
            display: flex !important;
        }

        & .slick-slide {
            height: inherit !important;
            margin: 0 10px !important;
        }

        & .slick-list {
            width: 100%;

            & .tax_post {
                width: 100%;
                display: flex;
                flex-direction: column;
                
                /* Temporary - add white bg*/
                background: #fff;

                & .text_overlay {
                    position: absolute;
                    z-index: 2;
                    padding: 20px;
                    background: #1055b2;

                    & .blog_card_title {
                        text-decoration: none;

                        & h3 {
                            font-size: 20px;
                            font-weight: 500;
                            color: #fff;
                            margin: 0 0 10px;
                        }
                    }

                    & .view_link {
                        font-size: 16px;
                        font-weight: 500;
                        color: #fff;
                        transition: all .3s ease;

                        &:hover {
                            color: #fff;
                        }
                    }
                }

                & img {
                    position: relative;
                    z-index: 1;
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                    object-position: center;
                }
            }
        }
    }
}