/* Dropdown Button */
.dropbtn {
    font-size: 16px;
    text-transform: uppercase;
    line-height: 15.37px;
    letter-spacing: 0.8px;
    color: #5B5C60;
    background-color: white;
    padding: 16px;
    border: none;
    cursor: pointer;
}


.icon-filter{
    padding-right: 0.5em;
    position: relative;
    top: 2px;
}

.icon-arrow {
    position: relative;
    bottom: 1px;
    left: 1em;
}

.arrow-down {
    transform: rotate(0deg);
    transition: transform .2s linear;
}

.arrow-down.open {
    transform: rotate(180deg);
    transition: transform .2s linear;
}
/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    /* display: inline-block; */
    margin-bottom: 2em;
    /* display: flex; */
    justify-content: center;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    width: 54%;
    background-color: white;
    /* min-width: 47em; */
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    margin: auto;
    left: 0;
    right: 0;
}

/* Links inside the dropdown */
.dropdown-content a {
    font-family: "AvenirNext", Arial, Helvetica, sans-serif;
    color: #5B5C60;
    font-size: 16px;
    text-align: left;
    padding: 1em 1.5em 1em 2.5em;
    text-decoration: none;
    display: block;
    border-top: 1px solid #f3f3f3;
    border-right: 1px solid #f3f3f3;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    color: white;
    background-color: #39AF4F
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
    display: grid;
    grid-template-columns: 1fr 1fr;
    transition: all ease-in .3s;
}

.more-blog {
    padding-bottom: 7em;
    padding-top: 0;
}

.grid-container.audience-grid.extra-blog-container {
    margin-top: 25px;
}
.center {
    display: flex;
    justify-content: center;
    padding-bottom: 7em;
}
.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #39AF4F;
    width: 100px;
    height: 100px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin .8s linear infinite;
}

.audience-grid .grid-overlay-text {
    display: block;
    padding: 0px 40px;
    padding-top: 5em;
    text-align: left;
    padding-bottom: 2em;
}

.grid-date {
    color: white;
    font-size: 15px;
    position: relative;
    bottom: 43px;
    text-align: left;
    padding-left: 42px;
}

.footer_newsletter_signup .left-column p {
    font-size: 36px;
    color: #FFF !important;
    font-style: italic;
    text-align: left;
    padding-left: 20%;
    margin: 0;
    line-height: 1.2em;
}

.newsletter-subtext {
    font-size: 15px !important;
    font-style: normal !important;
    line-height: 21px;
    color: #FFFFFF;
}

.footer_newsletter_signup.green {
    background: #39AF4F;
    padding-top: 1em;
    padding-bottom: 1em;
    margin: 8em 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-item:hover .grid-overlay {
    background-color: rgba(63, 195, 128, .5);
}

.audience-grid .grid-title { font-size: 21px }
/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


@media screen and (max-width: 1150px) {
    .dropdown-content { width: 100%; }
}


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

    .audience-grid .grid-title { font-size: 20px; }

}
@media only screen and (max-width: 568px) {
    .grid-container { grid-template-columns: auto auto;  }

    .audience-grid .grid-title { font-size: 12px; }

    .dropdown-content a {
        font-size: 16px;
        padding-left: 1em;
    }

    .footer_newsletter_signup.green {
        display: block;
        margin: 4em 0 !important;
    }

    .grid-section .audience-grid {
        grid-auto-rows: 230px;
        grid-gap: 15px;
    }

    .audience-grid .grid-overlay-text {
        padding: 0px 14px;
        position: relative;
        top: 64px;
    }

    .show {
        grid-template-columns: 1fr;
    }

}
