<!-- start Simple Custom CSS and JS -->
<style type="text/css">
#informal-sector {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #A3D3C7;
    color: #333;
    padding: 1rem;
    @media (min-width: 600px) {
        padding: 2rem;
    }
    > * {
        width: 1300px;
        max-width: calc(100vw - 2rem);
    }

    h1, h2, h3, h4 {
        color: #164373;
        line-height: 1;
    }
    @media (max-width: 600px) {
        h3 { font-size: 1.4rem; }
    }
    a {
        color: #164373;
    }
    ul {
        margin-top: 0.75rem;
        margin-bottom: 0.75rem;
        list-style-type: disc;
        li {
            margin-left: 2rem;
            padding-left: 0;
            background-image: none;
        }
        li::marker {
            color: #164373;
        }
    }
    h1, h2 {
        text-transform: uppercase;
    }
    strong {
        font-weight: 600;
    }
    .sector-btn {
        cursor: pointer;
        display: inline-block;
        margin: 1rem 0;
        background-color: #164373;
        padding: 1rem 1.5rem;
        border-radius: 1.5rem;
        color: #9AD5C1;
        font-size: 1rem;
        text-transform: uppercase;
        text-decoration: none;
        @media (min-width: 420px) {
            font-size: 1.2rem;
        }
        @media (min-width: 600px) {
            font-size: 1.6rem;
        }
    }

    .hero {
        h1 {
            text-transform: uppercase;
            font-size: 3.6rem;
        }
        img {
            width: 1300px;
            max-width: calc(100vw - 2rem);
            @media (min-width: 600px) {
                margin-bottom: 2rem;
            }
        }
    }
    section {

    }
    .intro {

    }
    .fullwidth {
        text-align: center;
    }

    .two-col {
        display: flex;
        align-items: flex-start;
        justify-content: center;

        img {
            width: stretch;
            margin: 1rem 1.5rem;
            @media (min-width: 600px) {
                max-width: 480px;
            }
        }
    }

    .dt-only {
        display: none;
        @media (min-width: 800px) {
            display: block;
        }
    }
    .mob-only {
        @media (min-width: 800px) {
            display: none;
        }
    }

    /* Form */
    #modal-overlay {
        display: flex;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.6);
        align-items: center;
        justify-content: center;
        z-index: 9999;
        width: 100%;

        #modal {
            background: #fff;
            padding: 1.5rem;
            max-width: 480px;
            width: 100%;
            position: relative;
            border-radius: 6px;

            #close-modal {
                position: absolute;
                top: 8px;
                right: 8px;
                background: none;
                border: none;
                font-size: 1.5rem;
                cursor: pointer;
                color: black;

                &:hover {
                    color: white;
                    color: #164373;
                }
            }
        }
    }

    .hidden {
        display: none !important;
    }

    #signup-form {
        display: flex;
        flex-direction: column;
        line-height: 1;
    }
    #map-form {
        display: flex;
        flex-direction: column;
        line-height: 1;
    }

    .formIntro, #mapFormIntro {
        margin: 1rem 0;
    }

    input {
        color: #164373;
        border: 2px solid #164373;
        background-color: #9AD5C1;
        font-weight: 600;
        width: 100%;

        &:focus-visible {
            outline-color: #164373;
        }
    }

    /* Map */
    .map {
        text-align: center;
        iframe {
            border: none;
            max-width: calc(100vw -2rem);
        }
    }

    .dtz {
        padding: 0 2rem;
        background-color: #164373;
    }
}</style>
<!-- end Simple Custom CSS and JS -->
