/*
Theme Name: ACFB
Text Domain: acfb
Author: Swarm Agency
Author URI: https://swarmagency.com
*/
:root {
    --orange: #f36c21;
    --black: #000000;
    --dark-grey: #636570;
    --light-grey: #b7b7b7;
    --warm-light-grey: #F5F5F5;
    --green: #98AD24;
    --teal: #015866;
    --white: #ffffff;
    --section-padding: 1rem;
    --font-business: omnes-pro, sans-serif;
    --font-party: goodlife-sans-condensed, sans-serif;
    font-size: 4vw;
}

@media (min-width: 960px) {
    :root {
        --section-padding: 4rem;
        font-size: 1.125vw;
    }
}
* {
    box-sizing: border-box;
}
html {
    margin: 0;
    padding: 0;
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-business);
    font-weight: 400;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    font-style: normal;
    margin: 0;
    line-height: 1;
}
h2{
    font-size: 2.2rem;
}
h3 {
    font-size: 1.5rem;
}
h4{
    font-size: 1.25rem;
}
a {
    text-decoration: none;
    color: var(--orange);
}
p,ul,li{
    font-size: 1rem;
}
ul {
    padding-left: 3em;
    line-height: 2;
}
input[type="email"] {
    font-size: 1rem;
    font-family: var(--font-business);
    padding: 0.5em 1.25em;
    border-radius: 0.25rem;
    background: transparent;
    border: 0.075rem solid var(--light-grey);
    color: #ffffff;
}
input[type="submit"] {
    font-size: 1rem;
    font-family: var(--font-business);
}
button{
    cursor: pointer;
}
td,tr {
    padding: .5rem;
}
@media(min-width: 960px){
    p,ul,li{
        font-size: 1.33rem;
    }
    h2{
        font-size: 3rem;
    }
    h3 {
        font-size: 2rem;
    }
    h4{
        font-size: 1.5rem;
    }
    td,tr {
        font-size: 1.33rem;
    }
}


.main{
    overflow-x: hidden;
    overflow-y: visible;
}
.section {
    padding: 2rem 1rem;
}
.section__heading {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.section__sub-head {
    margin: 1rem 0;
}
@media(min-width: 960px){
    .home .main{
        padding-top: 6.5rem;
        margin-top: -6.5rem;
    }
    .section{
        padding: 4rem;
    }
    .section__heading {
        font-size: 3rem;
    }
    .section__sub-head{
        font-size: 1.33rem;
    }
}



.button {
    padding: 0.75em 1.5em;
    border: 0.125rem solid var(--light-grey);
    border-radius: 0.5rem;
    font-weight: 500;
    display: inline-block;
    min-width: 9em;
    text-align: center;
    transition: 
        transform .15s ease-in-out, 
        box-shadow .15s ease-in-out, 
        color .05s ease-in-out;
    box-shadow: 0rem .5rem .5rem rgba(0,0,0,0);
}
/* .button:hover{
    transform: translateY(-.5rem);
    box-shadow: 0rem .25rem .5rem rgba(0,0,0,.5);
} */
.button.white {
    border-color: var(--white);
    background-color: var(--white); 
    color: var(--orange);
}
.button.orange {
    background-color: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}
.button.outline{
    border-color: var(--orange);
}
.button.outline--white{
    border-color: var(--white);
    color: var(--white);
}

.button.orange:hover{
    background-color: var(--white);
    color: var(--orange);
}
.button.outline:hover{
    background-color: var(--orange);
    color: var(--white);
}
@media(min-width: 960px){
    .button{
        font-size: 1.33rem;
    }
}

.container--buttons {
    display: flex;
    margin: -.5rem;
    margin-top: .5rem;
    flex-direction: column;
    align-items: flex-start;
}
.container--buttons .button {
    margin: .5rem;
}
@media(min-width: 960px){
    .container--buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
}


.text-link{
    display: flex;
    align-items:center;
}
.text-link::after {
    content: '';
    height: 1.125em;
    width: 1.125em;
    background-image: url('/wp-content/uploads/link-arrow.svg');
    display: inline-block;
    position: relative;
    background-size: 1.125em;
    margin-left: .5em;
    transition: transform .1s ease-in-out;
}
.text-link:hover::after{
    transform: translatex(.25em);
    transition: transform .2s ease-in-out;
}




/*MAIN NAV*/
.main-nav {
    display: flex;
    position: relative;
    position: sticky;
    top: 0;
    width: 100%;
    height: 4rem;
    background-color: var(--white);
    z-index: 2000;
}
.main-nav__logo {
    width: 8.4rem;
    height: 2.7rem;
}
.main-nav__bar {
    height: 100%;
    padding: 0.5rem var(--section-padding);
    width: 100%;
    background-color: var(--white);
    position: relative;
    z-index: 1;
}
.hamburger-button {
    height: 1.5rem;
    width: 2rem;
    position: absolute;
    right: var(--section-padding);
    top: calc(2rem - 0.75rem);
    background: none;
    padding: 0;
    border: 0;
    outline: 0 !important;
}
.hamburger-button > div {
    height: 0.2rem;
    width: 100%;
    background-color: var(--dark-grey);
    position: absolute;
    transition: transform 0.275s cubic-bezier(0.5, -0.5, 0.5, 1.5);
    border-radius: 2rem;
}
.hamburger-button__bar--top {
    top: 0;
}
.hamburger-button__bar--middle {
    top: calc(.8rem - .1rem);
}
.main-nav.is-open .hamburger-button__bar--middle {
    transform: scaleX(0);
}
.hamburger-button__bar--bottom {
    top: calc(1.5rem - .2rem);
}
.main-nav.is-open .hamburger-button__bar--top {
    transform: rotate(45deg) translate(.45rem, .45rem);
}
.hamburger-button__bar--middle {
    top: calc(.8rem - .1rem);
    transform: scaleX(.8) translateX(10%);
}
.main-nav.is-open .hamburger-button__bar--bottom {
    transform: rotate(-45deg) translate(.45rem, -.45rem);
}
.main-nav__drawer {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: absolute;
    left: 0;
    top: 4rem;
    box-shadow: 0 0.4rem 0.5rem rgba(0, 0, 0, 0.15);
    transform: translateY(-100%);
    transition: 
        transform .2s ease-in-out,
        background-color .2s ease-in-out;
    background-color: var(--white);
}
.primary-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    line-height: normal;
}
.sub-menu{
    line-height: normal;
}
.primary-nav li{
    font-size: 1rem;
}
.primary-nav a {
    color: var(--black);
    text-transform: uppercase;
    font-weight: 500;
}
.utility-menu {
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    margin-top: auto;
}
.utility-menu__item {
    color: var(--black);
    text-transform: uppercase;
    font-weight: 500;
    margin: 0 1rem;
    justify-content: center;
}
/*mobile-only*/
@media (max-width: 959px){
    .main-nav{
        height: 100%;
    }
    .main-nav__bar{
        border-bottom: .15rem solid transparent;
        transition: 
            background-color .2s ease-in-out,
            border .2s ease-in-out;
    }
    .main-nav.is-open .main-nav__bar{
        background-color: var(--warm-light-grey);
        border-bottom: .1rem solid var(--light-grey);
    }
    .main-nav__drawer{
        height: 100vh;
        pointer-events: none;
        overflow: auto;
        padding-top: 4rem;
    }
    .main-nav__drawer .searchandfilter label {
        display: block;
        width: 100%;
        height: 3.5rem;
    }
    .main-nav__drawer .sf-input-text {
        height: 100%;
        width: 100%;
        border: 0;
        padding-left: var(--section-padding);
        font-family: var(--font-business);
        font-size: 1rem;
        border-bottom: .1rem solid var(--light-grey)
    }
    .main-nav__drawer .searchandfilter ul,
    .main-nav__drawer .searchandfilter li{
        padding: 0;
    }
    .main-nav.is-open .main-nav__drawer{
        transform: translateY(-4rem);
        pointer-events: all;
        background-color: var(--warm-light-grey)
    }
    .primary-nav{
        max-height: calc(100vh - 13.5rem);
        overflow-y: auto;
        overflow-x: hidden;
    }
    .primary-nav > li a{
        display: flex;
        padding: .575rem var(--section-padding);
        font-size: 1.75rem;
        white-space: nowrap;
    }
    .primary-nav > li{
        border-bottom: .1rem solid var(--light-grey);
        display: flex;
        flex-wrap: wrap;
        flex-shrink: 0;
    }
    .sub-menu{
        text-transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height .2s ease-in-out;
        padding: 0;
        list-style: none;
        order: 3;
        flex-basis: 100%;
    }
    .sub-menu::after{
        content: '';
        width: 100%;
        padding-bottom: 1rem;
        display: block;
    }
    .sub-menu .menu-item a{
        font-weight: normal;
        text-transform: none;
        font-size: 1.5rem;
    }
    .menu-item.is-open .sub-menu{
        max-height: 100vh;
    }
    .menu-item-has-children::after {
        content: '';
        width: 1.5rem;
        margin-left: auto;
        flex-shrink: 0;
        background-image: url('/wp-content/uploads/fold.svg');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: 50% 50%;
        margin-right: 1rem;
        filter: saturate(0%) brightness(70%) contrast(1000%);
        transform: rotate(180deg);
        transition: 
            filter .2s ease-in-out,
            transform .2s ease-in-out;
        background-size: 1.25rem;
    }
    .menu-item-has-children.is-open::after {
        filter: none;
        transform: rotate(0);
    }
}
/*desktop-only*/
@media (min-width: 960px) {
    .main-nav {
        display: flex;
        padding: 1rem 4rem;
        position: sticky;
        top: 0;
        width: 100%;
        box-shadow: 0 0.4rem 0.5rem rgba(0, 0, 0, 0.15);
        height: 6.5rem;
    }
    .main-nav__bar{
        height: auto;
        padding: 0;
        width: auto;
    }
    .main-nav__logo {
        width: 14rem;
        height: 4.5rem;
        margin-right: 1.5rem;
    }
    .hamburger-button{
        display: none;
    }

    .main-nav__drawer {
        flex-direction: row;
        width: 100%;
        position: relative;
        top: auto;
        box-shadow: none;
        margin: 0;
        transform: none;
    }
    .main-nav__drawer .searchandfilter{
        display: none;
    }
    .primary-nav {
        margin: auto 0 -1rem;
        padding: 0;
        flex-direction: row;
        margin-right: auto;
        height: 4.2rem; /*IE HACK*/
    }
    @supports(display: grid){
        .primary-nav {
            height: auto; /*IE UNHACK*/
        }
    }
    .primary-nav > li {
        position: relative;
        display: flex;
        justify-content: center;
    }
    .primary-nav a {
        color: var(--black);
        padding: 1.3rem 1rem;
        text-transform: uppercase;
        font-weight: 500;
    }
    .primary-nav > li > a{
        border-bottom: .2rem solid transparent;
    }
    .primary-nav > li:hover > a{
        border-bottom: .2rem solid var(--orange);
    }
    .sub-menu {
        position: absolute;
        top: 6rem;
        left: 0; /*IE HACK*/
        background-color: var(--white);
        padding: .5rem 0;
        border: .075rem solid var(--light-grey);
        border-bottom: .2rem solid var(--green);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-2rem);
        transition: 
            transform .15s ease-in-out,
            opacity .075s ease-in-out;
    }
    @supports (display: grid) {
        .sub-menu{
            left: auto; /*IE UNHACK*/
        }
    }
    .sub-menu::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 2rem;
        top: -2rem;
    }
    .sub-menu::after {
        content: '';
        width: 1.5rem;
        height: 1.5rem;
        background-color: var(--white);
        border: .075rem solid var(--light-grey);
        display: block;
        position: absolute;
        top: -.75rem;
        left: calc(50% - .925rem);
        transform: rotate(45deg);
    }
    .menu-item:hover .sub-menu{
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
        transition: 
            transform .15s ease-in-out,
            opacity .15s ease-in-out;
    }
    .sub-menu li{
        margin: 0;
        list-style: none;
    }
    .sub-menu a{
        padding: 1rem;
        margin: -.5rem 0;
        width: 100%;
        background-color: var(--white);
        display: block;
        white-space: nowrap;
        text-transform: none;
        position: relative;
        z-index: 10;
    }
    .sub-menu a:hover{
        background-color: var(--warm-light-grey);
        z-index: 11;
    }
    .utility-menu {
        padding: 0;
        margin: auto 0 0.5rem;
    }
    .utility-menu__item {
        color: var(--black);
        text-transform: uppercase;
        font-weight: 500;
        margin: 0 1rem;
        justify-content: flex-end;
        flex-direction: column;
        align-items: center;
    }
}



/*PAGE HEADER*/
.page-header {
    padding: 2rem 1rem;
    background-color: #fafafa;
}   
.page-header__page-name {
    font-weight: bold;
    text-transform: uppercase;
    color: var(--dark-grey);
    margin-bottom: 1rem;
}
.page-header__heading{
    font-size: 3.5rem;
    line-height: 1;
}
.page-header__sub-heading {
    margin: 1rem 0;
}
.page-header__image {
    margin: 2rem -1rem -2rem 3rem;
    padding-top: 70%;
    position: relative;
}
.page-header__main-image {
    position: absolute;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: 50%;
    z-index: 5;
    height: calc(100% - 0rem);
}
.page-header__bg-rect-1 {
    height: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    z-index: 1;
    background-size: 100%;
    background-position: left top;
    background-repeat: no-repeat;
}
.page-header__bg-rect-2 {
    height: 40%;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70%;
    z-index: 2;
    background-size: 1.15rem;
}
@media(min-width: 960px){
    .page-header{
        padding: 4rem;
    }
    .container--page-header{
        display: flex;
        margin: -2rem;
    }
    .page-header__page-name{
        font-size: 1.125rem;
    }
    .page-header__heading{
        font-size: 5rem;
    }
    .page-header__content,
    .page-header__image{
        width: calc(50% - 4rem);
        margin: 2rem;
        flex-shrink: 0;
    }
    .page-header__sub-heading {
        margin: 1rem 0;
        font-size: 1.33rem;
    }
    .page-header__image {
        padding-top: 40%;
        margin: -2rem -2rem -2rem auto;
        width: calc(50% + 2rem);
    }
    .page-header__main-image {
        padding: 0;
        height: calc(100% - 4rem);
    }

}



/*INFO-DRAWERS*/
.info-drawers.read-more-hidden .info-drawer:nth-child(n+6) {
    display: none;
}

.info-drawer {
    overflow: hidden;
    transition: max-height .3s ease-in-out, background-color .3s ease-in-out;
    position: relative;
    border-bottom: .125rem solid var(--light-grey);
}
.info-drawer:not(.is-open) {
    max-height: 4rem !important;
}
.info-drawer__heading {
    font-size: 1.33rem;
    height: 4rem;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    transition: color .3s ease-in-out;
    font-weight: 500;
}
.info-drawer__arrow {
    margin-left: auto;
    width: .8em;
    transform: rotate(-180deg);
    transition: transform .3s ease-in-out;
}
.info-drawer.is-open .info-drawer__arrow {
    transform: rotate(0); 
}
.info-drawer.is-open .info-drawer__arrow line {
    stroke: var(--orange);
}
.info-drawer__content {
    padding: 0 0 2rem;
}
@media(min-width: 960px){
    .info-drawer:not(.is-open) {
        max-height: 6rem !important;
    }
    .info-drawer__heading{
        height: 6rem;
        font-size: 2.2rem;
        font-weight: 400;
    }
    .info-drawer__content{
        font-size: 1.33rem;
    }
}





/*TIMELINE*/
.container--timeline__year {
    background-color:#F5F5F5;
    border-bottom: .2rem solid var(--orange);
    position: relative;
}
.timeline__year-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4em;
    font-size: 1.25rem;
    color: var(--light-grey);
}
.timeline__year-content span {
    transition: transform .2s ease-in-out, color .2s ease-in-out;
    pointer-events: none;
}
.is-active .timeline__year-content span {
    color: var(--orange);
    transform: scale(2);
    font-weight: 500;
}
.timeline__year-pointer{
    position: absolute;
    width: 2rem;
    left: calc(50% - 1rem);
}


.timeline__content-content {
    max-width: 70rem;
    margin: 2rem auto;
    padding: 0 var(--section-padding);
}
.timeline__content-content h2 {
    font-size: 2.5rem;
    margin-bottom: .5em;
    font-family: var(--font-business);
}
#timelineContentSlider > .tns-item{
    font-size: 1rem !important;
}
@media(min-width: 720px){
    .timeline__year-content{
        font-size: 1.5rem;
    }
    .timeline__year-pointer{
        width: 3rem;
        left: calc(50% - 1.5rem);
    }
}
@media(min-width: 1440px){
    .timeline__year-content{
        font-size: 2.25rem;
    }
    .timeline__year-pointer{
        width: 4rem;
        left: calc(50% - 2rem);
    }
    #timelineContentSlider > .tns-item{
        font-size: 1.25rem !important;
    }
}


/*ICON CALLOUTS*/
.section--icon-callouts {
    padding: 4rem var(--section-padding);
}
.icon-callouts{
    display: flex;
    flex-wrap: wrap;
    margin: -1rem;
}
.icon-callout{
    width: calc(100% - 2rem);
    margin: 1rem;
    display: flex;
}
.icon-callout__icon{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 4.5rem;
    flex-shrink: 0;
    margin-right: 1rem;
}
.icon-callout__icon img {
    max-width: 14rem;
    max-height: 12rem;
    width: 100%;
}
.icon-callout__heading {
    font-size: 2.2rem;
    margin-bottom: .5rem;
}
.icon-callout__copy{
    text-align: left;
}
@media(min-width: 960px){
    .section--icon-callouts {
        padding: 4rem;
    }
    .icon-callouts{
        margin: -2rem;
    }
    .icon-callout{
        width: calc(33.33% - 4rem);
        flex-direction: column;
        margin: 2rem;
    }
    .icon-callout__icon{
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        height: 12rem;
        margin: 0 0 2rem;
    }
    .icon-callout__icon img {
        max-width: 14rem;
        max-height: 12rem;
    }
    .icon-callout__heading {
        font-size: 3rem;
        text-align: center;
    }
    .icon-callout__copy{
        text-align: center;
        font-size: 1.33rem;
    }
}


/*CALLOUT SLIDER*/
.section--callouts-slider{
    position: relative;
    margin-top: 5rem;
    background-image: url('/wp-content/uploads/paper-texture.jpg');
    background-size: 10rem;
    padding: 8rem 0 8rem;
}
.callouts-slider__heading-box {
    background-color: var(--dark-grey);
    position: absolute;
    padding: 2rem 4rem 3rem var(--section-padding);
    color: var(--white);
    top: -5rem;
    left: 0;
    margin-right: 1rem;
}
.callouts-slider__heading {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.callouts-slider {
    display: flex;
    margin: -1rem;
    padding: 0 var(--section-padding);
}
/*slide*/
.callouts__slider__slide {
    width: calc(33.33% - 2rem);
    padding: 4rem 2rem;
    text-align: center;
    margin: 1rem;
    border: .125rem solid transparent;
    transition: transform .15s ease-in-out, box-shadow .15s ease-in-out, border .15s ease-in-out;
    box-shadow: 0rem .5rem .5rem rgba(0,0,0,0);
    float: none;
}
.callouts__slider__slide:hover{
    border-color: var(--dark-grey);
    transform: translateY(-.5rem);
    box-shadow: 0rem .25rem .5rem rgba(0,0,0,.5);
}
.callouts-slider__icon {
    height: 8rem;
    margin: 0 auto 2rem;
    /* filter: grayscale(1);
    transition: filter .15s ease-in-out; */
}
/* .callouts__slider__slide:hover .callouts-slider__icon{
    filter: grayscale(0);
} */
.callouts-slider__slide-heading {
    font-size: 2.2rem;
}
.callouts-slider__slide-content {
    margin: 2rem 0;
}
.slick-track{
    display: flex !important;
}
@media(min-width: 960px){
    .callouts-slider {
        padding: 0 4rem;
    }
    .section--callouts-slider{
        padding-top: 8rem;
        margin-top: 8rem;
    }
    .callouts-slider__heading-box{
        padding: 3rem 12rem 4rem var(--section-padding);
        top: -7rem;
    }
    .callouts-slider__heading {
        font-size: 3rem;
    }
    .callouts-slider__sub-heading {
        font-size: 1.33rem;
    }
    .callouts-slider__slide-content {
        font-size: 1.33rem;
    }
    /*slide*/
    .callouts-slider__icon {
        height: 10rem;
    }
    .callouts-slider__slide-heading {
        font-size: 3rem;
    }
}
@media(max-width: 959px){
    .callouts__slider__slide{
        border-color: var(--dark-grey);
        margin: .5rem;
    }
    .callouts__slider__slide.slick-active{
        border-color: var(--dark-grey);
        transform: translateY(-.5rem);
        box-shadow: 0rem .25rem .5rem rgba(0,0,0,.5);
    }
    /* .callouts__slider__slide.slick-active .callouts-slider__icon{
        filter: grayscale(0);
    } */
    .slick-dots {
        position: absolute;
        bottom: -5.5rem;
        display: flex !important;
        padding: 0;
        justify-content: center;
        width: calc(100% - 2rem);
        list-style: none;
    }
    .slick-dots li {
        padding: .15rem;
        margin: 1rem;
        border: .15rem solid var(--dark-grey);
        border-radius: 50%;
        transition: border .15s ease-in-out;
    }
    .slick-dots li.slick-active {
        border-color: var(--orange);
    }
    .slick-dots li button {
        height: .75rem;
        width: .75rem;
        font-size: 0;
        display: block;
        border: none;
        background-color: transparent;
        border-radius: 50%;
        padding: 0;
        transition: background-color .15s ease-in-out;
    }
    .slick-dots li.slick-active button {
        background-color: var(--orange);
    }
}

/*TILE SLIDER*/
/*CALLOUT SLIDER*/
.section--tile-slider{
    position: relative;
    background-size: 10rem;
    padding: 8rem 0 8rem;
}
.tile-slider__heading-box {
    background-color: var(--dark-grey);
    position: absolute;
    padding: 2rem 4rem 3rem var(--section-padding);
    color: var(--white);
    top: -5rem;
    left: 0;
    margin-right: 1rem;
}
.tile-slider__heading {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    margin-top: -4rem;
    text-align: center;
}

.tile-slider {
    display: flex;
    margin: -1rem;
    padding: 0 var(--section-padding);
}
/*slide*/
.tile-slider__slide.tile-slider__slide {
    width: calc(33.33% - 2rem);
    padding: 1rem;
    text-align: center;
    margin: 1rem;
    border: .125rem solid var(--dark-grey);
    transition: transform .15s ease-in-out, box-shadow .15s ease-in-out;
    box-shadow: 0rem .5rem .5rem rgba(0,0,0,0);
    float: none;
    height: auto;
    display: flex !important;
    flex-direction: column;
}
.tile-slider__slide:hover{
    transform: translateY(-.5rem);
    box-shadow: 0rem .25rem .5rem rgba(0,0,0,.5);
}
.tile-slider__image{
    width: 100%;
    height: 9.5rem;
    object-fit: contain;
}
.tile-slider__slide-title {
    margin-top: 1em;
    text-align: left;
}
.tile-slider__slide-description {
    text-align: left;
    margin-bottom: 2rem;
}
.tile-slider__slide-link {
    color: var(--dark-grey);
    margin-bottom: 1rem;
    margin-top: auto;
}
.tile-slider .slick-track{
    display: flex !important;
}

.tile-slider__slide{
    border-color: var(--dark-grey);
    margin: .5rem;
}
.tile-slider .slick-dots {
    position: absolute;
    bottom: -5.5rem;
    display: flex !important;
    padding: 0;
    justify-content: center;
    width: calc(100% - 2rem);
    list-style: none;
}
.tile-slider .slick-dots li {
    padding: .15rem;
    margin: 1rem;
    border: .15rem solid var(--dark-grey);
    border-radius: 50%;
    transition: border .15s ease-in-out;
}
.tile-slider .slick-dots li.slick-active {
    border-color: var(--orange);
}
.tile-slider .slick-dots li button {
    height: .75rem;
    width: .75rem;
    font-size: 0;
    display: block;
    border: none;
    background-color: transparent;
    border-radius: 50%;
    padding: 0;
    transition: background-color .15s ease-in-out;
}
.tile-slider .slick-dots li.slick-active button {
    background-color: var(--orange);
}
@media(max-width: 959px){
    .tile-slider__slide.slick-active{
        transform: translateY(-.5rem);
        box-shadow: 0rem .25rem .5rem rgba(0,0,0,.5);
    }
}
@media(min-width: 960px){
    .tile-slider {
        padding: 0 4rem;
    }
    .section--tile-slider{
        padding-top: 8rem;
    }
    .tile-slider__heading-box{
        padding: 3rem 12rem 4rem var(--section-padding);
        top: -7rem;
    }
    .tile-slider__image{
        height: 13.5rem;
    }
    .tile-slider__heading {
        font-size: 3rem;
    }
    .tile-slider__sub-heading {
        font-size: 1.33rem;
    }
    .tile-slider__slide-content {
        font-size: 1.33rem;
    }
    .tile-slider__slide-link{
        font-size: 1.33rem;
    }
    /*slide*/
    .tile-slider__slide.tile-slider__slide{
        border-width: .2rem;
    }
    .tile-slider__slide:hover{
        transform: translateY(-.5rem);
        box-shadow: 0rem .25rem .5rem rgba(0,0,0,.5);
    }
    .tile-slider__icon {
        height: 10rem;
    }
    .tile-slider__slide-heading {
        font-size: 3rem;
    }
    .tile-slider .slick-dots{
        width: calc(100% - 8rem);
    }
}


/*CALLOUT TILES*/
.section--callout-tiles.has-cutout-image{
    position: relative;
}
.section--callout-tiles .section__sub-head{
    margin-bottom: 2rem;
}
.callout-tile {
    padding: 1rem .75rem;
    border: .125rem solid var(--dark-grey);
    transition: transform .15s ease-in-out, box-shadow .15s ease-in-out;
    box-shadow: 0rem .5rem .5rem rgba(0,0,0,0);
}
.callout-tile:hover {
    transform: translateY(-.5rem);
    box-shadow: 0rem .5rem .5rem rgba(0,0,0,.35);
}
.callout-tile + .callout-tile{
    margin-top: 1rem;
}
.callout-tile__heading {
    font-size: 1.5rem;
    line-height: 1.2;
}
.large-tiles .callout-tile__heading{
    font-size: 2.2rem;
}
.callout-tile__link-wrap {
    display: flex;
    justify-content: space-between;
}
.callout-tile__link {
    color: var(--dark-grey);
    font-weight: 500;
}
.callout-tile__link:hover{
    color: var(--black);
}
.callout-tiles__cutout-image {
    position: absolute;
    pointer-events: none;
}
@media(min-width: 960px){
    .section--callout-tiles.has-cutout-image{
        padding-bottom: 4rem;
    }
    .callout-tiles {
        display: flex;
        margin: -.5rem;
        flex-wrap: wrap;
    }
    .callout-tile.callout-tile{
        margin: .5rem;
        display: flex;
        flex-direction: column;
        padding: 2rem;
        width: calc(25% - 1.01rem);
    }
    .large-tiles .callout-tile.callout-tile{
        width: calc(50% - 1.01rem);
    }
    .callout-tile__heading {
        font-size: 1.75rem;
    }
    .large-tiles .callout-tile__heading{
        font-size: 3rem;
    }
    .callout-tile__content {
        font-size: 1.33rem;
    }
    .callout-tile__link{
        margin-top: auto;
        font-size: 1.33rem;
    }
}




/*FOOTER*/
.footer {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 1rem var(--section-padding);
    position: relative;
    overflow: hidden;
}
.footer__heading {
    font-family: var(--font-business);
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: .5em;
    color: var(--white);
    display: block;
}
.footer__navs-and-sign-up {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.5rem;
}
.footer__navs-and-sign-up::after {
    content: "";
    order: 4;
    flex-grow: 2;
}
.footer__contact-nav,
.footer__about-us-nav,
.footer__sign-up {
    margin: 1.5rem;
}
.footer__contact-nav > div {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}
.footer__phone a{
    color: white;
}
.footer__social-links {
    display: flex;
    margin: -.5rem;
    margin-top: .5rem;
}
.footer__social-link {
    width: 1.25rem;
    height: 1.125rem;
    margin: .5rem;
    opacity: .5;
    transition: opacity .15s ease-in-out;
}
.footer__social-link:hover{
    opacity: 1
}
.footer__social-icon {
    max-width: 100%;
    max-height: 100%;
}
.footer__contact-nav > div:last-child {
    margin-bottom: 0;
}
.footer__sign-up {
    order: 5;
}
.footer__sign-up > div {
    font-size: 0.875rem;
    margin-bottom: 1em;
}
.footer__legal {
    font-size: 0.875rem;
    padding: 1.5rem 0 0.5rem;
    border-top: 0.075rem solid var(--light-grey);
}
.footer__legal a {
    color: inherit;
    text-decoration: underline;
}
.footer__sign-up-form {
    display: flex;
    margin: 0 -0.5rem;
}
.footer__sign-up-form input {
    margin: 0 0.5rem;
}
.footer__sign-up-form input::placeholder{
    color: #ffffff;
    opacity: .7;
}
.footer__sign-up-form .button{
    min-width: 0;
}

.about-us-nav {
    padding: 0;
    list-style: none;
    line-height: normal;
    margin: 0;
}
.about-us-nav a {
    color: inherit;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}
.about-us-nav li:last-child a {
    margin-bottom: 0;
}
.footer__associations {
    display: flex;
    justify-content: flex-end;
    margin: 2rem 0 0;
}
.footer__association-link{
    display: block;
}
.footer__association-link + .footer__association-link{
    margin-left: 1rem;
}
.footer__association-img {
    max-width: 10rem;
    height: 3.5rem;
    width: auto;
    
}
@media(min-width: 960px){
    .footer{
        padding: 1rem 4rem;
        width: 100%;
    }
}




/*MODAL*/
.container--modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,.75);
    z-index: 5000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease-in-out;
}
.container--modal.is-open{
    opacity: 1;
    pointer-events: all;
}
.modal {
    background-color: white;
    padding: .5rem;
    text-align: center;
    position: relative;
    transform: translateY(100vh);
    transition: none;
    pointer-events: none;
}
.container--modal.is-open .modal{
    transform: translateY(0);
    transition: transform 3s cubic-bezier(.16,.99,0,1);
}
.modal__close-icon {
    position: absolute;
    height: 1.5rem;
    width: 1.5rem;
    top: -2rem;
    right: .5rem;
    cursor: pointer;
}
.modal__content {
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.container--modal.is-open .modal__content{
    pointer-events: all;
}
.modal__pre-heading {
    font-size: .9rem;
    font-style: italic;
}
.modal__heading {
    font-size: 3rem;
    margin: 1rem 0;
}
.modal__copy {
    margin-bottom: 1.5rem;
}
.modal__content .modal__heading{
    max-width: 17rem;
}
@media(min-width: 960px){
    .modal {
        display: flex;
        width: 60rem;
    }
    .modal__image {
        padding-top: 50%;
        width: 50%;
        flex-shrink: 0;
        background-size: cover;
        background-position: 50%;
    }
    .modal__content {
        padding: 3rem 2rem;
    }
    .modal__content .modal__heading{
        max-width: 21rem;
    }
}


/*HELPERS*/
.party-font{
    font-family: var(--font-party);
}
.paper-bg {
    background-image: url('/wp-content/uploads/paper-texture.jpg');
    background-size: 10rem;
}
.grey{
    color: var(--dark-grey);
}
.italic{
    font-style: italic;
}
.affiliation-logo {
    height: 3rem;
    display: block;
    margin-bottom: 1rem;
}


/*NINJA FORM OVERRIDES*/
.nf-form-cont {
    max-width: 1000px;
    font-size: 16px;
    margin: 0 auto;
}
.nf-form-content {
    padding: 0 !important;
    margin: -5px !important;
}
.nf-form-content h1{
    font-size: 48px;
    margin: 20px 0;
}
.nf-form-content p{
  font-size: 16px;
}
@media(max-width: 959px){
    .nf-form-content h1{
        font-size: 36px;
    }
}