/*INFORMATIONAL LIST BLOCK*/

    .informational-list-block {
        position: relative;
        padding-bottom: 50px;
    }

    /*FIX BLOCK PREVIEW*/

        .acf-block-preview .informational-list-block h1 {
            padding-bottom: 25px !important;
        }

        .acf-block-preview .informational-list-column h2 {
            padding-bottom: 15px !important;
        }

    /*ADD MARGIN BOTTOM TO THE INFORMATIONAL LIST BLOCK TITLE*/

        .informational-list-block .informational-list-title {
            margin-bottom: 25px;
        }

    /*HOLDER*/

        /*COLUMN*/

            /*COLUMN TITLE*/

                .informational-list-column .subtitle {
                    margin-bottom: 15px;
                }

            /*SUBHOLDER*/

                /*IF BORDER IS ENABLED*/

                    .informational-list-subholder.bordered {
                        padding: 15px;
                        border: 1px solid #f15a24;
                    }

                /*LINK*/

                    /*SET LINK TO BLOCK*/

                        .informational-list-subholder a {
                            display: block;
                        }

                    /*IF THERE IS MORE THAN ONE LINK, ADD MARGIN BOTTOM*/

                        .informational-list-subholder > a:not(:only-child) {
                            margin-bottom: 5px;
                        }

                    /*REMOVE THE MARGIN FOR THE LAST CHILD*/

                        .informational-list-subholder a:last-of-type {
                            margin-bottom: 0px;
                        }

                    /*LINK HOVER AND FOCUS*/

                        .informational-list-subholder a:hover, .informational-list-subholder a:focus {
                            color: #f15a24 !important; /*THIS OVERRIDES THE INLINE STYLES*/
                            text-decoration: underline;
                            text-underline-offset: 5px;
                        }

/*MEDIA QUERIES*/

    @media (max-width: 1600px) {



    }

    @media (max-width: 1400px) {



    }

    @media (max-width: 1250px) {



    }

    @media (max-width: 1200px) {

        .informational-list-column {
            width: 100% !important;
            margin-bottom: 15px;
        }

        .informational-list-column:last-of-type {
            margin-bottom: 0px;
        }
    }

    @media (max-width: 800px) {



    }