        /* global box-sizing */
        html {
            font-family: sans-serif;
            overflow-x: hidden;
        }

        *,
        *:after,
        *:before {
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
            font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        /* html element 62.5% font-size for REM use */
        html {
            font-size: 62.5%;
        }

        body {
            margin: 0px;
            color: #222;
            font-size: 18px;
            line-height: 1.5;
        }

        h1 {
            font-weight: 900;
            margin: 0px;
        }

        h3 {
            font-weight: 900;
        }

        section.gray-bkg {
            overflow-y: hidden;
            padding: 65px 0px;
            background-color: white;
            -webkit-box-shadow: 0px 0px 120px #0000002b;
            box-shadow: 0px 0px 120px #0000002b;
        }

        /* clear */
        .clear:before,
        .clear:after {
            display: table;
            content: ' ';
        }

        .clear:after {
            clear: both;
        }

        .clear {
            *zoom: 1;
        }

        img {
            max-width: 100%;
            vertical-align: bottom;
        }

        a {
            color: #000;
            text-decoration: none;
        }

        a:hover {
            color: red;
        }

        a:focus {
            outline: 0;
        }

        a:hover,
        a:active {
            color: red;
            outline: 0;
        }

        input:focus {
            outline: 0;
            border: 1px solid #04A4CC;
        }

        p {
            font-size: 16pt;
        }

        .wp-block-button__link {
            cursor: pointer;
            padding: 5px 20px;
            background-color: red;
            color: white;
            -webkit-transition: .5s ease;
            transition: .5s ease;
            -webkit-box-shadow: 0px 0px 0px #0000003b;
            box-shadow: 0px 0px 0px #0000003b;
        }

        .wp-block-button__link:hover {
            padding: 5px 20px;
            background-color: white;
            color: red;
            -webkit-transition: .5s ease;
            transition: .5s ease;
            -webkit-box-shadow: 0px 0px 20px #0000003b;
            box-shadow: 0px 0px 20px #0000003b;
        }

        .post-list li {
            margin-top: 25px;
        }

        .post-image {
            border-radius: 8px;
            overflow: hidden;
        }

        /*------------------------------------*\ STRUCTURE \*------------------------------------*/
        /* wrapper */
        .wrapper {
            position: relative;
            margin: 0 auto;
            max-width: 1920px;
            width: 95%;
        }

        .main {
            margin: 0px;
            padding: 0px;
            background-color: #ffffff;
        }

        .post-thin {
            width: 95vw;
            max-width: 1080px;
            margin: 95px auto;
            background-color: white;
            padding: 20px;
        }

        /* header */
        .nav {
            top: 0;
            z-index: 99;
            overflow: hidden;
            padding: 5px 0px;
            width: 100vw;
            height: 75px;
            background-color: white;
            -webkit-transition: top 0.3s, height 0.3s ease;
            transition: top 0.3s, height 0.3s ease;
        }

        .nav.hidden {
            top: -170px;
        }

        /* logo */
        .logo {
            float: left;
            width: -webkit-fit-content;
            width: -moz-fit-content;
            width: fit-content;
        }

        .logo-img {
            max-height: 70px;
            height: 8vh;
        }

        #navbar {
            max-width: 1920px;
            width: 100%;
        }

        .nav.active {
            top: 0px !important;
            height: 100vh;
            -webkit-transition: top 0.3s, height 0.3s ease;
            transition: top 0.3s, height 0.3s ease;
        }

        /* Style the navbar links */
        #navbar ul {
            display: inline-block;
            padding-top: 50px;
            padding-left: 10px;
            width: 100vw;
            height: 60vh;
            list-style-type: none;
            justify-items: baseline;
        }

        #navbar li a {
            color: #666666;
            font-size: 20px;
            line-height: 68px;
        }

        #navbar li a:hover {
            color: black;
        }

        #navbar li a::after {
            display: block;
            width: 0%;
            border-top: solid 2px;
            color: red;
            content: " ";
            -webkit-transition: .5s ease;
            transition: .5s ease;
        }

        #navbar li a:hover::after {
            width: 100%;
            -webkit-transition: .5s ease;
            transition: .5s ease;
        }

        .nav-search:hover {
            color: red;
            cursor: pointer;
        }

        /* hero */
        .hero {
            min-height: 200px;
            max-height: 90vh;
            width: 100vw;
            height: 100vh;
        }

        .hero-wrapper {
            position: relative;
            display: block;
            overflow: hidden;
            margin: 0 auto;
            max-width: 1920px;
            width: 100%;
            height: 100%;
            color: black;
        }

        .hero-text {
            position: absolute;
            bottom: 20px;
            left: 10px;
            z-index: 2;
            -webkit-transition: .5s ease;
            transition: .5s ease;
            pointer-events: none;
        }

        .hero-wrapper h1 {
            text-transform: none;
            font-weight: 800;
            font-family: 'proxima-nova', sans-serif;
            -webkit-margin-after: 10px;
            margin-block-end: 10px;
        }

        .hero-wrapper h1 b {
            color: red;
        }

        .h1-end::after {
            display: block;
            margin-top: 8px;
            padding: 2px 5px;
            width: -webkit-fit-content;
            width: -moz-fit-content;
            width: fit-content;
            background: red;
            color: white;
            content: "Select a state above to view more information.";
            font-size: 12pt;
            line-height: 20px;
            -webkit-transition: 1s ease;
            transition: 1s ease;
        }

        .hero-icons {
            font-size: 23pt;
            pointer-events: all;
        }

        .hero-icons i {
            padding-right: 15px;
        }

        .hero-icons i:hover {
            padding-right: 15px;
            color: red;
            cursor: pointer;
        }

        .states-wrapper {
            position: absolute;
            top: 15px;
            right: -60px;
            width: 130vw;
            -webkit-transition: .5s ease;
            transition: .5s ease;
            -webkit-tap-highlight-color: transparent;
        }

        svg#states {
            -webkit-filter: drop-shadow(0px 0px 11px lightgray);
            filter: drop-shadow(0px 0px 11px lightgray);
        }



        .cls-2 {
            opacity: 0.25;
            pointer-events: none;
            fill: #00000054;
        }

        polygon.st-1 {
            cursor: pointer;
            -webkit-transition: 1s ease;
            transition: 1s ease;
            fill: white;
            -webkit-tap-highlight-color: transparent;
        }

        polygon.st-1:hover {
            -webkit-transition: 1s ease;
            transition: 1s ease;
            fill: red !important;
            -webkit-tap-highlight-color: transparent;
        }

        path.st-2 {
            cursor: pointer;
            -webkit-transition: 1s ease;
            transition: 1s ease;
            fill: white;
            -webkit-tap-highlight-color: transparent;
        }

        path.st-2:hover {
            -webkit-transition: 1s ease;
            transition: 1s ease;
            fill: red !important;
            -webkit-tap-highlight-color: transparent;
        }

        /* swiper */
        h3.wrapper.slider-header {
            margin-bottom: 25px;
            text-transform: capitalize;
            letter-spacing: 0pt;
            font-size: 22pt;
        }

        h3.wrapper.slider-header b {
            color: red;
        }

        #carousel {
            z-index: 2;
        }

        /* sidebar */
        .sidebar {}

        /* footer */
        .footer {
            position: -webkit-sticky;
            position: sticky;
            z-index: 10;
            display: -ms-grid;
            display: grid;
            margin-top: -11px;
            height: 720px;
            background-color: red;
            color: white;
            -ms-flex-line-pack: center;
            align-content: center;
        }

        .join-footer h3 {
            margin-top: 0px;
            margin-bottom: 22px;
            font-size: 28pt;
            line-height: 28pt;
        }

        button.join-white {
            padding: 5px 15px;
            border: none;
            border-radius: 360px;
            background-color: white !important;
            color: red;
            font-size: 14pt;
        }

        .contact-footer a img {
            max-width: 170px;
            font-weight: 400;
        }

        .contact-footer {
            display: -ms-grid;
            display: grid;
            margin-top: 65px;
            max-width: 720px;
            width: 100%;
            font-weight: 400;
            font-size: 9pt;
            -ms-grid-columns: 1fr 1fr;
            grid-template-columns: 1fr 1fr;
        }

        .contact-footer img {
            width: 120px;
        }

        p.wrapper.copyright {
            margin-top: 120px;
            font-weight: 400;
            font-size: 14px;
        }

        /*------------------------------------*\ PAGES \*------------------------------------*/
        h1.page-header::after {
            display: block;
            margin-top: 17px;
            margin-bottom: 37px;
            width: 70px;
            border-top: 3pt solid red;
            content: " ";
        }

        h1.page-header {
            font-size: 24pt;
        }

        h4 {
            width: 420px;
        }

        h4 strong {
            margin: 15px 0px;
            font-size: 62pt;
            line-height: 48pt;
        }

        h4 strong::before {
            color: red;
            content: open-quote;
        }

        h4 strong::after {
            color: red;
            content: close-quote;
        }

        /*------------------------------------*\ IMAGES \*------------------------------------*/
        /*------------------------------------*\ TYPOGRAPHY \*------------------------------------*/
        @font-face {
            font-weight: normal;
            font-style: normal;
            font-family: 'Font-Name';
            src: url('fonts/font-name.eot');
            src: url('fonts/font-name.eot?#iefix') format('embedded-opentype'), url('fonts/font-name.woff') format('woff'), url('fonts/font-name.ttf') format('truetype'), url('fonts/font-name.svg#font-name') format('svg');
        }

        /*------------------------------------*\ RESPONSIVE \*------------------------------------*/
        @media (max-width: 1080px) {
            .navtoggle {
                position: absolute;
                top: 0;
                right: 0;
                z-index: 111;
                width: 70px;
                height: 25px;
                cursor: pointer;
                -webkit-transform: scale(.65);
                transform: scale(.65);
            }

            .icon {
                position: absolute;
                top: 40px;
                right: 0;
                left: 0;
                margin: 0 auto;
                width: 35px;
                height: 2px;
                border-radius: 3px;
                background-color: #000;
                -webkit-transition: all 0.5s;
            }

            .navtoggle .icon:before {
                position: absolute;
                top: -10px;
                left: 0;
                width: 35px;
                height: 2px;
                border-radius: 3px;
                background-color: #000;
                content: "";
                -webkit-transition: ease 0.5s;
            }

            .navtoggle .icon:after {
                position: absolute;
                top: 10px;
                left: 0;
                width: 35px;
                height: 2px;
                border-radius: 3px;
                background-color: #000;
                content: "";
                -webkit-transition: ease 0.5s;
            }

            .icon.scroll {
                background-color: black !important;
                -webkit-transition: ease 0.5s;
            }

            .navtoggle .icon.scroll:before {
                background-color: black;
                -webkit-transition: ease 0.5s;
            }

            .navtoggle .icon.scroll:after {
                background-color: black;
                -webkit-transition: ease 0.5s;
            }

            .open .icon {
                background-color: transparent !important;
                -webkit-transition: ease 0.5s;
                -webkit-transform: rotate(180deg);
            }

            .open .icon:before {
                top: 0;
                background-color: #000;
                -webkit-transition: ease 0.5s;
                -webkit-transform: rotate(45deg);
            }

            .open .icon:after {
                top: 0;
                background-color: #000;
                -webkit-transition: ease 0.5s;
                -webkit-transform: rotate(-45deg);
            }

            .post-thin h1 {
                font-size: 40px;
                line-height: 54px;
                word-break: keep-all;
            }
        }

        @media only screen and (min-width:120px) {
            .hero-wrapper h1 {
                font-size: 31pt;
                line-height: 28pt;
            }

            .h1-end::after {
                font-size: 9pt;
            }

            .post-thin h1 {
                font-size: 45px;
                line-height: 54px;
                word-break: keep-all;
            }
        }

        @media only screen and (min-width:321px) {
            .hero-wrapper h1 {
                font-size: 41pt;
                line-height: 38pt;
            }

            .hero-wrapper h1::after {
                font-size: small;
            }

            .post-thin h1 {
                font-weight: 600;
                font-size: 50px;
                line-height: 54px;
                word-break: keep-all;
            }
        }

        @media only screen and (min-width:480px) {
            .hero-wrapper h1 {
                font-size: 52pt;
                line-height: 42pt;
            }
        }

        @media only screen and (min-width:768px) {
            .hero {
                max-height: 880px;
            }

            .hero-wrapper h1 {
                font-size: 62pt;
                line-height: 52pt;
            }

            .h1-end::after {
                content: "Select a state to view more information.";
                -webkit-transition: 1s ease;
                transition: 1s ease;
            }

            .join-footer h3 {
                margin-top: 0px;
                margin-bottom: 22px;
                font-size: 52pt;
                line-height: 42pt;
            }

            .hero-text {
                bottom: 20px;
            }

            .states-wrapper {
                width: 750px;
                top: 70px;
            }

            .contact-footer {
                font-size: 13pt;
            }

            .swiper-button-prev,
            .swiper-container-rtl .swiper-button-next {
                display: block;
            }

            .swiper-button-next,
            .swiper-container-rtl .swiper-button-prev {
                display: block;
            }
        }

        @media only screen and (min-width:1024px) {
            #navbar ul {
                display: -ms-inline-grid;
                display: inline-grid;
                float: right;
                -ms-flex-align: center;
                height: 60px;
                width: -webkit-fit-content;
                width: -moz-fit-content;
                width: fit-content;
                padding-top: 0px;
                list-style-type: none;
                grid-gap: 35px;
                -ms-grid-columns: auto 35px auto 35px auto 35px auto 35px auto 35px auto 35px auto 35px auto;
                grid-template-columns: repeat(8, auto);
                justify-items: center;
                -webkit-box-align: center;
                align-items: center;
            }

            #navbar li a {
                font-size: 13px;
                line-height: 13px;
            }

            .hero-wrapper h1 {
                font-size: 72pt;
                line-height: 62pt;
            }

            .hero-text {
                left: 35px;
            }

            .states-wrapper {
                right: -5px;
            }

            .main {
                margin: 0px 40px 50px 40px;
                padding: 40px 0px;
                background-color: #f2f2f2;
            }

            .post-thin {
                width: 95vw;
                max-width: 1080px;
                margin: 95px auto;
                background-color: white;
                padding: 100px;
            }

            .post-thin h1 {
                font-weight: 600;
                font-size: 65px;
                line-height: 70px;
                word-break: keep-all;
            }
        }

        @media only screen and (min-width:1140px) {
            .hero-text {
                top: 260px;
            }
        }

        @media only screen and (min-width:1280px) {
            .hero-wrapper {
                overflow: visible;
            }
        }

        @media only screen and (-webkit-min-device-pixel-ratio:1.5),
        only screen and (min-resolution:144dpi) {}

        /*------------------------------------*\ MISC \*------------------------------------*/
        ::-moz-selection {
            background: #04A4CC;
            color: #FFF;
            text-shadow: none;
        }

        ::selection {
            background: #04A4CC;
            color: #FFF;
            text-shadow: none;
        }

        ::-webkit-selection {
            background: #04A4CC;
            color: #FFF;
            text-shadow: none;
        }

        ::-moz-selection {
            background: #04A4CC;
            color: #FFF;
            text-shadow: none;
        }

        /*------------------------------------*\ WORDPRESS CORE \*------------------------------------*/
        .alignnone {
            margin: 5px 20px 20px 0;
        }

        .aligncenter,
        div.aligncenter {
            display: block;
            margin: 5px auto 5px auto;
        }

        .alignright {
            float: right;
            margin: 5px 0 20px 20px;
        }

        .alignleft {
            float: left;
            margin: 5px 20px 20px 0;
        }

        a img.alignright {
            float: right;
            margin: 5px 0 20px 20px;
        }

        a img.alignnone {
            margin: 5px 20px 20px 0;
        }

        a img.alignleft {
            float: left;
            margin: 5px 20px 20px 0;
        }

        a img.aligncenter {
            display: block;
            margin-right: auto;
            margin-left: auto;
        }

        .wp-caption {
            padding: 5px 3px 10px;
            max-width: 96%;
            border: 1px solid #F0F0F0;
            background: #FFF;
            text-align: center;
        }

        .wp-caption.alignnone {
            margin: 5px 20px 20px 0;
        }

        .wp-caption.alignleft {
            margin: 5px 20px 20px 0;
        }

        .wp-caption.alignright {
            margin: 5px 0 20px 20px;
        }

        .wp-caption img {
            margin: 0;
            padding: 0;
            max-width: 98.5%;
            width: auto;
            height: auto;
            border: 0 none;
        }

        .wp-caption .wp-caption-text,
        .gallery-caption {
            margin: 0;
            padding: 0 4px 5px;
            font-size: 11px;
            line-height: 17px;
        }

        .sticky {}

        .bypostauthor {}

        /*------------------------------------*\ PRINT \*------------------------------------*/
        @media print {
            * {
                background: transparent !important;
                -webkit-box-shadow: none !important;
                box-shadow: none !important;
                color: #000 !important;
                text-shadow: none !important;
            }

            a,
            a:visited {
                text-decoration: underline;
            }

            a[href]:after {
                content: " ("attr(href) ")";
            }

            abbr[title]:after {
                content: " ("attr(title) ")";
            }

            .ir a:after,
            a[href^="javascript:"]:after,
            a[href^="#"]:after {
                content: "";
            }

            pre,
            blockquote {
                border: 1px solid #999;
                page-break-inside: avoid;
            }

            thead {
                display: table-header-group;
            }

            tr,
            img {
                page-break-inside: avoid;
            }

            img {
                max-width: 100% !important;
            }

            @page {
                margin: 0.5cm;
            }

            p,
            h2,
            h3 {
                orphans: 3;
                widows: 3;
            }

            h2,
            h3 {
                page-break-after: avoid;
            }
        }

        .post-thin {
            border-radius: 8px;
        }

        .post-thin p {
            font-size: 12pt;
        }

        .post-thin h3 {
            font-size: 13pt;
        }

        .post-thin h1 br {
            display: none;
        }

        .post-thin .wp-block-separator {
            margin: 40pt auto;
        }

        .post-author img {
            border-radius: 100%;
        }

        .post-thin strong {
            color: red;
            display: block;
        }

        .heading > .line {
            -webkit-transform: translateY(100%);
            transform: translateY(100%);
            -webkit-animation-name: reveal-text;
            animation-name: reveal-text;
            -webkit-animation-duration: 540ms;
            animation-duration: 540ms;
            -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
            -webkit-animation-delay: 200ms;
            animation-delay: 200ms;
            -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
            -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        }

        .heading > .line:nth-child(2n) {
            -webkit-animation-delay: 400ms;
            animation-delay: 400ms;
        }

        .heading > .line:nth-child(3n) {
            -webkit-animation-delay: 500ms;
            animation-delay: 500ms;
        }

        .heading > .line:nth-child(4n) {
            -webkit-animation-delay: 550ms;
            animation-delay: 550ms;
        }

        .heading > .line:last-child {
            -webkit-animation-delay: 600ms;
            animation-delay: 600ms;
        }

        @-webkit-keyframes reveal-text {
            to {
                -webkit-transform: translateY(0);
                transform: translateY(0);
                -webkit-clip-path: polygon(0 0, 100% 0, 100% 140%, 0 140%);
                clip-path: polygon(0 0, 100% 0, 100% 140%, 0 140%);
            }
        }

        @keyframes reveal-text {
            to {
                -webkit-transform: translateY(0);
                transform: translateY(0);
                -webkit-clip-path: polygon(0 0, 100% 0, 100% 140%, 0 140%);
                clip-path: polygon(0 0, 100% 0, 100% 140%, 0 140%);
            }
        }

        ul.wp-block-latest-posts.has-dates.post-list {
            padding-left: 0px;
            list-style: none;
        }

        .team-member p {
            font-size: 17px;
        }


        .page h2 {
            margin: 60px auto;
        }

        .post-list br {
            display: none;
        }

        .post-box {
            padding: 35px;
            margin-top: 15px;
        }

        .post-box.one {}

        .post-box.two {}

        .post-box.three {}

        .post-box.four {}

        .post-box {
            overflow: hidden;
        }

        .supply-box img {
            width: 45%;
            position: fixed;
            top: 0px;
        }

        .supply-box .right img {
            right: 0px;
        }

        .supply-box .left img {
            left: 0px;
        }

        img.attachment-medium_large.size-medium_large {
            height: auto;
        }

        .post-author {
            margin-top: 40px;
        }

        .uagb-post-grid .uagb-post__image img {
            width: 100%;
            height: auto;
        }

        .uagb-post__inner-wrap {
            border: 0px solid #d60000;
            -webkit-transition: .5s ease;
            transition: .5s ease;
            min-height: 260px;
        }

        .uagb-post__inner-wrap:hover {
            border: 15px solid #d60000;
            -webkit-transition: .5s ease;
            transition: .5s ease;
            cursor: pointer;
        }

        .page-item .wrapper {}

        .page-item h3 {
            color: red;
            margin-top: 60px;
        }

        .hero-banner img {
            width: 95vw;
            max-width: 1080px;
        }

        .wp-block-cover__inner-container {
            display: grid;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

        .white-img {
            -webkit-filter: invert(1);
            filter: invert(1);
        }

        .ffwd_view_on_facebook_0 {
            display: none !important;
        }

        a.ffwd_view_on_facebook_0 {
            opacity: 0;
        }

        .ffwd_title_spun1_0 div {
            display: none !important;
        }

        .ffwd_title_spun1_0 {
            border-color: transparent !important;
        }

        p.ffwd_blog_style_object_messages_0 {
            max-width: 720px !important;
        }

        #ffwd_user_pic_0_6 {
            padding: 10px;
            border-radius: 11px !important;
        }

        div#ffwd_container2_0 {
            max-width: 720px !important;
            margin: auto !important;
        }

        .menu-item.red {
            padding: 0px 10px;
            border-radius: 50px;
            background-color: red;
            transition: background-color ease .5s;
        }

        .menu-item.red a {
            color: white !important;
            outline-color: white !important;

        }

        .menu-item.red a::after {
            color: transparent !important;
        }

        .menu-item.red:hover {
            background-color: #870000 !important;
            transition: background-color ease .5s;
        }

        .open .menu-item.red {
            border-radius: 5px;
            width: fit-content;
        }

        main {
            margin: 0px;
            padding: 0px;
            background-color: #ffffff;
        }

        @media only screen and (min-width: 1024px) {
            main {
                margin: 0px 40px 50px 40px;
                padding: 40px 0px;
                background-color: #f2f2f2;
            }
        }

        /* wide */
        .wide {
            min-height: 200px;
        }

        .wide-wrapper {
            position: relative;
            display: block;
            overflow: hidden;
            margin: 0 auto;
            max-width: 1230px;
            width: 100%;
            height: 100%;
            color: black;
            padding: 30px;
        }

        .wide-text {
            position: absolute;
            bottom: 20px;
            left: 10px;
            z-index: 2;
            -webkit-transition: .5s ease;
            transition: .5s ease;
            pointer-events: none;
        }

        .wide-wrapper h1 {
            text-transform: none;
            font-weight: 800;
            font-family: 'proxima-nova', sans-serif;
            -webkit-margin-after: 10px;
            margin-block-end: 10px;
        }

        .wide-wrapper h1 b {
            color: red;
        }

        @media only screen and (min-width:120px) {
            .wide-wrapper h1 {
                font-size: 30pt;
                line-height: 28pt;
            }

        }

        @media only screen and (min-width:321px) {
            .wide-wrapper h1 {
                font-size: 30pt;
                line-height: 38pt;
            }

            .wide-wrapper h1::after {
                font-size: small;
            }

        }


        @media only screen and (min-width:480px) {
            .wide-wrapper h1 {
                font-size: 42pt;
                line-height: 42pt;
            }
        }

        @media only screen and (min-width:768px) {
            .wide-wrapper h1 {
                font-size: 42pt;
                line-height: 42pt;
            }
        }

        @media only screen and (min-width:1280px) {
            .wide-wrapper {
                overflow: visible;
            }
        }

        .wide-wrapper.facebook-feed {
            display: flex;
            flex-flow: row;
            flex-wrap: wrap;
            justify-content: space-around;
        }

        .blog {
            width: 90%;
            margin: 100px auto;
        }

        .wide.red {
            background: red;
        }

        .two-columns {
            display: flex;
            flex-wrap: wrap;
            height: 100%;
            width: 100%;
        }

        .center-all {
            align-items: center;
        }

        .left img {
            filter: invert(1);
            padding: 15px;
        }

        .right {
            color: white;
            padding: 15px;
        }

        .right h2 {
            font-size: 43pt;
            line-height: 43pt;
            font-weight: 600;
        }

        .right h2::after {
            display: block;
            content: " ";
            height: 11px;
            width: 50%;
            background-color: white;
            margin-top: 20px;
        }

        .two-columns .left,
        .two-columns .right {
            width: 49%;
            height: 100%;
        }


        .lrg-pad {
            padding: 100px 30px;
        }

        .lt-gray {
            background-color: #f2f2f2;
        }

        strong {
            color: red;
        }

        .issues ul {
            padding: 0px;
            margin: 0px;
        }

        .issues ul li {
            list-style: none;
            background-color: white;
            margin: 10px 0px;
            padding: 15px;
        }

        .flex-articles {
            display: flex;
            flex-wrap: wrap;
        }

        .article-box {
            width: 33%;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            margin: 5px auto 5px .3%;
        }


        .article-box:nth-last-child(2) {
            order: 1;
        }

        .article-box:nth-last-child(3) {
            order: 2;
        }

        .article-box:nth-last-child(4) {
            order: 3;
        }

        .article-box:nth-last-child(5) {
            order: 4;
        }

        .article-box:nth-last-child(6) {
            order: 5;
        }

        .article-box:nth-last-child(7) {
            order: 6;
        }

        .article-box:nth-last-child(8) {
            order: 7;
        }

        .article-box:nth-last-child(9) {
            order: 8;
        }

        .article-box:nth-last-child(10) {
            order: 9;
        }

        .article-box:nth-last-child(11) {
            order: 10;
        }

        .article-box:nth-last-child(12) {
            order: 11;
        }

        .article-box:nth-last-child(13) {
            order: 12;
        }


        .article-img {
            width: 100%;
        }

        .article-content {
            padding: 15px;
        }



        .article-title {
            font-family: "Roboto", Sans-serif;
            font-size: 16px;
            font-weight: 900;
            line-height: 18px;
            letter-spacing: -0.5px;
            margin-top: 0px;
            max-width: 80%;
        }

        .article-date {
            font-size: 12px;
            text-transform: uppercase;
            color: gray;
        }

        .article-link {
            display: flex;
        }

        .article-btn {
            float: right;
            margin-left: auto;
        }


        .centered {
            text-align: center;
        }

        h1.page-header.centered::after {
            margin: 17px auto 37px auto;
        }

        .team-three {
            display: flex;
            flex-wrap: wrap;
        }

        .team-member {
            margin: 5px;
            width: 30%;
            max-width: 400px;
            background: white;
        }

        .team-wrapper {
            padding: 5px;
        }

        .team-bio {
            display: none;
            position: fixed;
            top: 110vh;
            left: 0px;
            background: white;
            color: black;
            height: 100vh;
            width: 100vw;
            z-index: 10000;
            flex-flow: row;
        }

        .in-view .team-bio {
            display: flex;
            top: 0vh;
        }


        .bio {
            padding: 60px;
            width: 50vw;
            overflow: scroll;
        }

        .bio-toggle {
            display: none;
            z-index: 20000;
            position: fixed;
            top: 30px;
            right: 30px;
            font-size: 30px;
            cursor: pointer;

        }

        .bio-toggle.in-view {
            display: block;
        }


        .red-btn {
            cursor: pointer;
            color: white;
            background: red;
            margin-top: 10px !important;
            padding: 5px 10px;
            transition: .5s ease;
        }

        .red-btn:hover {
            color: red;
            background: white;
        }

        .bio-image {
            width: 50vw !important;
            overflow: hidden;
            display: flex;
            justify-content: center;
        }

        .bio-image img {
            height: 100vh;
            max-width: none !important;
        }

        .team-img {
            height: auto;
            max-height: 290px;
            overflow: hidden;
            max-width: 400px;
            margin: auto;
        }

        .team-name {
            font-weight: bold;
        }

        .team-title {
            color: #ff0001;
        }


        a.pdf-btn {
            font-weight: 800;
            padding: 15px 30px;
            margin-bottom: 15px !important;
            background-color: #eaeaea;
            display: flex;
            width: fit-content;
            border-radius: 5px;
            align-items: center;
        }

        a.pdf-big {
            font-weight: 800;
            padding: 5px;
            margin-bottom: 5px !important;
            background-color: #eaeaea;
            width: fit-content;
            border-radius: 5px;
            align-items: center;
            display: block;
        }

        .pdf-btn i {
            margin-right: 5px;
        }

        .flex.four {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .flex.four a {
            width: 33%;
            text-align: center;
        }

        .flex.four a:last-child {
            margin-left: .5%;
            margin-right: auto;
        }

        @media only screen and (max-width: 1024px) {

            .article-box,
            .team-member,
            .flex.four a {
                width: 48%;
            }

            .two-columns .left,
            .two-columns .right {
                width: 100%;
            }
        }

        @media only screen and (max-width: 600px) {

            .article-box,
            .team-member,
            .flex.four a {
                width: 100%;
            }

            .two-columns .left,
            .two-columns .right {
                width: 100%;
            }

            .team-bio {
                display: none;
                position: fixed;
                top: 110vh;
                left: 0px;
                background: white;
                color: black;
                height: 100vh;
                width: 100vw;
                z-index: 10000;
                flex-flow: column;
            }

            .in-view .team-bio {
                display: flex;
                top: 0vh;
            }


            .bio {
            padding: 30px;
            width: 100vw;
            height: 50vh;
            overflow: scroll;
            padding-bottom: 25vh!important;
            }

            .bio-toggle {
                display: none;
                z-index: 20000;
                position: fixed;
                top: 10px;
                right: 20px;
                font-size: 30px;
                cursor: pointer;
                color:white;
            }

            .bio-toggle.in-view {
                display: block;
            }

            .bio-image {
                width: 100vw !important;
                overflow: hidden;
                display: flex;
                justify-content: center;
            }

            .bio-image img {
                height: 50vh;
                max-width: none !important;
            }
        }
        
        .hide{
            opacity: 0!important;
        }
        
        html.open {
  overflow-y: hidden!important;
}
