/* Globals */
:root {
  --yellowPrimary: #FFCE15;
  --yellowPale1: #fdf3c5;
  --yellowPale2: #fefae8;
  --yellowPale3: #ffe68d;
}
html {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    height: 100%;
}
.btn {
    background-color: var(--yellowPrimary);
    border-radius: 100px;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .3s;
    padding: .5rem 1.5rem;
}
.btn:hover {
    background-color: var(--yellowPrimary);
    color: #000;
    filter: brightness(1.1);
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
}
#main {
    flex: 1 0 auto;
    overflow: hidden;
}
.modal-backdrop.show {
    opacity: .85;
}
.section-margin {
    margin: 20vh 0;
}
.section-margin.reduced {
    margin: 10vh 0;
}
.section-margin.reduced-top {
    margin-top: 10vh;
}
.section-padding {
    padding: 16vh 0;
}
.yellow-bg {
    background-color: var(--yellowPrimary);
}
.yellow-grad-bg {
    background-image: linear-gradient(var(--yellowPale2), var(--yellowPale1));
}
.wrapper {
    display: flex;
    height: 100%;
    flex-direction: column;
}
/* /Globals */

/* Bar Headers */
.bar-header {
    background-color: var(--yellowPrimary);
    color: #000;
    margin-bottom: 1rem;
    padding: .5rem 1rem;
    position: relative;
    width: fit-content;
}
.bar-header.centered {
    margin-left: auto;
    margin-right: auto;
}
.bar-header::after {
    background-color: var(--yellowPrimary);
    bottom: 0;
    content: '';
    position: absolute;
    right: 100%;
    top: 0;
    width: 100vw;
    z-index: -100;
}
.bar-header:not(.centered) {
    padding: .5rem 1rem .5rem 0;
}
.bg-fade-section .bar-header,
.bg-fade-section .bar-header::after,
.yellow-bg .bar-header,
.yellow-bg .bar-header::after {
    background-color: #fff;
}
@media (min-width: 576px) {
    .bar-header.right::after {
        width: 10vw;
    }
}
@media (min-width: 992px) {
    .bar-header {
        padding: .5rem 1.5rem;
    }
    .bar-header:not(.centered) {
        padding: .5rem 1.5rem .5rem 0;
    }
}
/* /Bar Headers */

/* BG Fade Sections */
.bg-fade-section .section-btn,
.yellow-bg .section-btn {
    background-color: #fff;
}
.bg-fade-section .section-btn:hover,
.yellow-bg .section-btn:hover {
    background-color: var(--yellowPale3);
}
.bg-fade-section {
    position: relative;
    z-index: 100;
}
.bg-fade-section .container {
    position: relative;
    z-index: 100;
}
.yellow-fade-bg {
    background-image: linear-gradient(var(--yellowPale1), var(--yellowPale2));
    height: 100%;
    height: 100dvh;
    left: 0;
    opacity: 0;
    position: fixed;
    pointer-events: none;
    top: 0;
    width: 100%;
    transition: all .5s;
    z-index: -1;
}
.yellow-fade-bg.visible {
    opacity: 1;
}
@media (min-width: 576px) {
    .fade-left,
    .fade-right {
        opacity: 0;
        transform: translateX(40px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-left {
        transform: translateX(-40px);
    }
    .fade-left.animate-in,
    .fade-right.animate-in {
        opacity: 1;
        transform: translateX(0);
    }
    .fade-right-persist {
        opacity: 0;
        transform: translateX(40px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-right-persist.animate-in {
        opacity: 1;
        transform: translateX(0);
    }
    .fade-up,
    .fade-up-first,
    .fade-up-last {
        opacity: 0;
        transform: translateY(12vh);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-up.animate-in,
    .fade-up-first.animate-in,
    .fade-up-last.animate-in {
    opacity: 1;
    transform: translateY(0);
    }
}
/* /BG Fade Sections */

/* Contact Form */
.contact-form-card {
    background-color: var(--yellowPrimary);
    padding: 1.5rem;
}
.contact-form .btn-submit {
    background-color: #fff;
}
.contact-form .btn-submit:hover {
    background-color: var(--yellowPale3);
}
.contact-form .errors {
    color: red;
    padding: 0;
}
.contact-form .errors li {
    list-style: none;
}
.contact-form input,
.contact-form input:focus,
.contact-form textarea,
.contact-form textarea:focus {
    background: none;
    border: none;
    border-bottom: 2px solid #000;
    border-radius: 0;
    color: #000;
    outline: none !important;
    box-shadow: none !important;
}
.contact-form textarea:focus~label:after,
.contact-form textarea:not(:placeholder-shown)~label:after {
    display: none;
}
.contact-form label,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #000;
}
.contact-form-section {
    position: relative;
}
.contact-form-section .section-bg {
    background-size: cover;
    background-position: center;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -100;
}
@media (min-width: 768px) {
    .contact-form-card {
        margin-bottom: 2rem;
        margin-top: 2rem;
        padding: 2rem 3rem 2rem 2rem;
    }
}
@media (min-width: 992px) {
    .contact-form-card {
        margin-bottom: 3rem;
        margin-top: 3rem;
        padding: 2.5rem 3.5rem 2.5rem 2.5rem;
    }
}
@media (min-width: 1200px) {
    .contact-form-card {
        margin-bottom: 4rem;
        margin-top: 4rem;
        padding: 3rem 8vw 3rem 3rem;
    }
}
@media (min-width: 1400px) {
    .contact-form-card {
        margin-bottom: 4.5rem;
        margin-top: 4.5rem;
        padding: 3.5rem 10vw 3.5rem 3.5rem;
    }
}
@media (min-width: 1600px) {
    .contact-form-card {
        padding: 3.5rem 14vw 3.5rem 3.5rem;
    }
}
@media (min-width: 1800px) {
    .contact-form-card {
        padding: 3.5rem 18vw 3.5rem 3.5rem;
    }
}
/* /Contact Form */

/* Contact Page */
.contact-page-card {
    background-color: var(--yellowPrimary);
    padding: 2rem 2rem 1rem 2rem;
    margin-top: -3rem;
}
@media (min-width: 992px) {
    .contact-page-card {
        padding: 2.5rem 2.5rem 1.5rem 2.5rem;
        margin-top: -4rem;
    }
}
@media (min-width: 1200px) {
    .contact-page-card {
        padding: 3rem 3rem 2rem 3rem;
        margin-top: -5rem;
    }
}
/* /Contact Page */

/* Download Cards */
.download-card {
    background-color: var(--yellowPrimary);
    color: #000;
    float: right;
    margin: .4rem 0 1rem 1rem;
    padding: 1rem 1rem 0 1rem;
    width: 50vw;
    max-width: 250px;
    transition: all .3s;
}
.download-card:hover {
    filter: brightness(1.1);
}
@media (min-width: 576px) {
    .download-card {
        margin: .4rem 0 1.25rem 1.25rem;
        padding: 1.25rem 1.25rem .25rem 1.25rem;
    }
}
@media (min-width: 768px) {
    .download-card {
        margin: .4rem 0 1.5rem 1.5rem;
        padding: 1.5rem 1.5rem .5rem 1.5rem;
    }
}
@media (min-width: 992px) {
    .download-card {
        margin: .4rem -2rem 1.75rem 2rem;
        max-width: 275px;
        padding: 1.75rem 1.75rem .75rem 1.75rem;
    }
}
@media (min-width: 1200px) {
    .download-card {
        margin: .4rem -4rem 2rem 2.5rem;
        max-width: 300px;
        padding: 2rem 2rem 1rem 2rem;
    }
}
/* /Download Cards */

/* Homepage Hero */
.homepage-hero {
    background-image: linear-gradient(var(--yellowPale2), var(--yellowPale1));
    min-height: 70vh;
    padding: 9rem 0 5vh 0;
}
.homepage-hero h1 {
    font-size: calc(1.6rem + 1.6vw);
    margin-bottom: 1rem;
}
.homepage-hero-img {
    width: 70%;
}
.homepage-hero-img {
    -webkit-animation: mover 2s infinite  alternate;
    animation: mover 2s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}
@media (min-width: 768px) {
    .homepage-hero {
        padding: 10vh 0 5vh 0;
    }
    .homepage-hero-img {
        width: 100%;
    }
}
@media (min-width: 992px) {
    .homepage-hero-btn {
        font-size: 1.1rem;
        padding: .5rem 2rem;
    }
    .homepage-hero p {
        font-size: 1.1rem;
    }
}
@media (min-width: 1200px) {
    .homepage-hero {
        padding: 11vh 0 5.5vh 0;
    }
} 
@media (min-width: 1200px) {
    .homepage-hero {
        padding: 12vh 0 6vh 0;
    }
} 
/* /Homepage Hero */

/* Image Only Section */
.img-only-section .section-img {
    width: 100%;;
}
/* /Image Only Section */

/* Image Plus Section */
.img-plus-section .img-plus-img {
    background-position: center;
    background-size: cover;
    min-height: 250px;
}
.img-plus-section {
    overflow: hidden;
}
.img-plus-section *:not(.yellow-fade-bg) {
    z-index: 100;
}
.img-plus-section .list-item-icon {
    width: 70px;
}
.img-plus-section .text-area,
.img-plus-section .list-item-copy {
    line-height: 1.6;
}
.img-plus-section.home .text-area,
.img-plus-section.home .list-item-copy {
    font-weight: 500;
}
.img-plus-section.yellow-bg {
    padding: 1.5rem 0;
}
.img-plus-section.img-contain .col-sm-5 {
    align-self: center;
}
.img-plus-section .img-plus-picture {
    display: block;
}
.img-plus-section .img-plus-picture img {
    height: auto;
    width: 100%;
}
@media (min-width: 576px) {
    .img-plus-copy-col {
        margin-bottom: 1rem;
        margin-top: 1rem;
        padding: 0 2rem;
    }
    .img-plus-section .img-plus-img {
        min-height: 50vh;
        height: 100%;
    }
    .img-plus-section.home .img-plus-img {
        min-height: 70vh;
    }
    .img-plus-section .img-plus-picture {
        padding: 2rem;
    }
}
@media (min-width: 992px) {
    .img-plus-copy-col {
        margin-bottom: 2rem;
        margin-top: 2rem;
    }
    .img-plus-copy-col.right {
        padding: 0 4rem 0 3rem;
    }
    .img-plus-copy-col.left {
        padding: 0 3rem 0 4rem;
    }
    .img-plus-section .text-area,
    .img-plus-section .list-item-copy {
        font-size: 1.1rem;
    }
    .img-plus-section.yellow-bg {
        padding: 2rem 0;
    }
    .section-btn {
        padding: .5rem 2rem;
    }
}
@media (min-width: 1200px) {
    .img-plus-copy-col {
        margin-bottom: 3rem;
        margin-top: 3rem;
    }
    .img-plus-copy-col.right {
        padding: 0 10vw 0 4rem;
    }
    .img-plus-copy-col.left {
        padding: 0 4vw 0 10rem;
    }
    .img-plus-section.home .img-plus-img {
        min-height: 75vh;
    }
    .img-plus-section .text-area,
    .img-plus-section .list-item-copy {
        font-size: 1.15rem;
    }
    .img-plus-section.yellow-bg {
        padding: 2.5rem 0;
    }
    .img-plus-section .img-plus-picture {
        padding: 3rem;
    }
}
@media (min-width: 1400px) {
    .img-plus-copy-col.right {
        padding: 0 17.5vw 0 5.5rem;
    }
    .img-plus-copy-col.left {
        padding: 0 5.5vw 0 17.5rem;
    }
    .img-plus-section.home .img-plus-img {
        min-height: 80vh;
    }
    .img-plus-section .text-area,
    .img-plus-section .list-item-copy {
        font-size: 1.2rem;
    }
    .img-plus-section.yellow-bg {
        padding: 3rem 0;
    }
}
@media (min-width: 1600px) {
    .img-plus-copy-col.right {
        padding: 0 20vw 0 7rem;
    }
    .img-plus-copy-col.left {
        padding: 0 7vw 0 20rem;
    }
}
/* /Image Plus Section */

/* Filter Menu */
.filter-menu-form .form-check-input[type=checkbox] {
    border-radius: 2px;
    border: 2px solid #000;
}
.filter-menu-form .form-check-input[type=checkbox]:active {
    background-color: #000;
}
.filter-menu-heading {
    background-color: #000;
    color: var(--yellowPrimary);
    font-weight: 500;
    padding: .5rem 1rem;
    position: relative;
    display: block;
    text-decoration: none;
}
.filter-menu-heading .caret {
    font-size: 2rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}
.filter-menu-inner {
    background-color: var(--yellowPrimary);
    padding: 1rem;
}
@media (min-width: 992px) {
    .filter-menu-heading {
        padding: .75rem 2rem;
    }
}
/* /Filter Menu */

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    flex-shrink: 0;
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
}
.footer-copyright {
    font-size: .8rem;
}
.footer-logo {
    height: 160px;
}
.footer-nav-link {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    padding: .25rem 0;
    transition: all .3s;
}
.footer-nav-link:hover {
    color: var(--yellowPrimary);
}
.footer-social-link {
    color: #fff;
    font-size: 1.8rem;
    margin-right: .8rem;
    transition: all .3s;
}
.footer-social-link:hover {
    color: var(--yellowPrimary);
}
@media (min-width: 576px) {
    .footer {
        padding-bottom: 3rem;
        padding-top: 3rem;
    }
    .footer-logo {
        height: 160px;
    }
}
@media (min-width: 768px) {
    .footer {
        padding-bottom: 3.5rem;
        padding-top: 3.5rem;
    }
    .footer-logo {
        height: 160px;
    }
    .footer-nav {
        border-top: 2px solid #fff;
        padding-top: 1rem;
    }
    .footer-nav-link {
        font-size: 1.1rem;
        padding: .4rem 0;
    }
    .footer-social-link {
        font-size: 1.6rem;
        margin-right: .6rem;
    }
}
@media (min-width: 992px) {
    .footer {
        padding-bottom: 4rem;
        padding-top: 4rem;
    }
    .footer-logo {
        height: 180px;
    }
    .footer-nav-link {
        padding: .5rem 0;
    }
    .footer-social-link {
        font-size: 1.8rem;
        margin-right: .8rem;
    }
}
@media (min-width: 1200px) {
    .footer {
        padding-bottom: 4.5rem;
        padding-top: 4.5rem;
    }
    .footer-btn {
        font-size: 1.1rem;
        padding: .5rem 2rem;
    }
    .footer-logo {
        height: 200px;
    }
    .footer-nav-link {
        font-size: 1.2rem;
    }
    .footer-social-link {
        font-size: 2rem;
        margin-right: 1rem;
    }
}
@media (min-width: 1400px) {
    .footer {
        padding-bottom: 5rem;
        padding-top: 5rem;
    }
    .footer-btn {
        font-size: 1.15rem;
        padding: .5rem 2.5rem;
    }
    .footer-logo {
        height: 220px;
    }
    .footer-social-link {
        font-size: 2.2rem;
    }
}
/* /Footer */

/* Link Card */
.link-card .card-copy {
     transition: all .3s;
}
.link-card .card-heading {
    transition: all .3s;
}
.link-card .card-img {
    margin-bottom: .5rem;
    transition: all .3s;
    width: 100%;
}
.link-card-link {
    color: #000;
    display: block;
    text-decoration: none;
    position: relative;
}
.link-card-link::after {
    background: none;
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    transition: all .3s;
}
.link-card-link:hover::after {
    background-color: var(--yellowPrimary);
    bottom: -1rem;
    top: -1rem;
    left: -1rem;
    right: -1rem;
}
.bg-fade-section .link-card-link:hover::after  {
    background-color: #fff;
}
/* /Link Card */

/* Logo Sliders & Grids */
.underline-heading {
    position: relative;
    width: fit-content;
}
.underline-heading::after {
    bottom: -.8rem;
    border-bottom: 2px solid var(--yellowPrimary);
    content: '';
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 50%;
}
.logo-grid .logo {
    padding: 0 1rem;
    width: 100%;
}
.logo-grid .logo-link {
    filter: grayscale(1);
    transition: all .3s;
}
.logo-slider {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
}
.logo-slider .logo-link {
    flex: 0 0 auto;
    padding: 0 2rem;
    transition: all .3s;
}
.logo-grid .logo-link:hover,
.logo-slider .logo-link:hover {
    filter: brightness(1.15) drop-shadow(1px 1px 5px #00000039);

}
.logo-slider .logo {
    max-height: 180px;
    max-width: 200px;
    width: 100%;
}
@media (min-width: 576px) {
    .logo-grid .logo {
        padding: 0;
    }
}
@media (min-width: 992px) {
    .logo-slider .logo-link {
        padding: 0 3rem;
    }
}
@media (min-width: 1200px) {
    .logo-grid .logo {
        padding: 0 .5rem;
    }
}
@media (min-width: 1400px) {
    .logo-grid .logo {
        padding: 0 1rem;
    }
}
/* /Logo Sliders & Grids */

/* Main Nav */
.main-nav {
    position: absolute;
    padding: 1rem 1rem;
    width: 100%;
    z-index: 10000;
}
.main-nav.black .menu {
    color: #000;
}
.main-nav.black .menu:hover {
    color: var(--yellowPrimary);
}
.main-nav.black .menu .label {
    color: var(--yellowPrimary);
}
.main-nav .brand {
    height: 80px;
    transition: opacity 0.3s ease;
}
.main-nav .brand-light {
    opacity: 0;
    position: absolute;
    top: 0;
}
.main-nav .brand-dark {
    position: absolute;
    top: 0;
}
.modal-open .main-nav .brand-dark {
    opacity: 0;
}
.modal-open .main-nav .brand-light {
    opacity: 1;
}
.main-nav .brand-link {
    align-self: start;
    display: inline-block;
    position: flex;
    transition: all .3s;
}
.main-nav .brand-link:hover {
    filter: brightness(1.1);
}
.main-nav .close {
    display: none;
}
.main-nav-modal .modal-content {
    align-self: flex-end;
    background: none;
    border: none;
    width: fit-content;
}
.modal-open .main-nav .menu {
    display: none;
}
.modal-open .main-nav .close {
    color: var(--yellowPrimary);
    display: block;
}
.main-nav-link {
    color: var(--yellowPrimary);
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s;
}
.main-nav-link:hover {
    filter: brightness(1.2);
}
.main-nav-links {
    padding: 0 1rem;
}
.main-nav .menu {
    font-size: 2.4rem;
    margin-right: 1rem;
    transition: all .3s;
    position: relative;
}
.main-nav .menu:hover .label {
    display: block;
    right: 125%;
    opacity: 1;
}
.main-nav .menu .label {
    /* display: none; */
    font-size: 1.8rem;
    font-weight: 600;
    position: absolute;
    right: -100%;
    text-transform: uppercase;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s;
    z-index: -1;
    opacity: 0;
}
#mainNavModal {
    height: calc(100% - 110px);
    margin-top: 110px;
}
#mainNavModal .modal-content {
    margin-bottom: 10vh;
}
@media (min-width: 576px) {
    .main-nav {
        padding: 1rem 0;
    }
    .main-nav .brand {
        height: 85px;
    }
    .main-nav-link {
        font-size: 1.7rem;
    }
    .main-nav-links {
        padding: 0;
    }
    .main-nav .menu {
        font-size: 2.5rem;
    }
    #mainNavModal {
    height: calc(100% - 120px);
    margin-top: 120px;
}
}
@media (min-width: 768px) {
    .main-nav .brand {
        height: 90px;
    }
    .main-nav-link {
        font-size: 1.9rem;
    }
    .main-nav .menu {
        font-size: 2.6rem;
    }
}
@media (min-width: 992px) {
    .main-nav .brand {
        height: 95px;
    }
    .main-nav-link {
        font-size: 2.1rem;
    }
    .main-nav .menu {
        font-size: 2.7rem;
    }
    #mainNavModal {
        height: calc(100% - 130px);
        margin-top: 130px;
    }
}
@media (min-width: 1200px) {
    .main-nav {
        padding: 1.5rem 0;
    }
    .main-nav .brand {
        height: 110px;
    }
    .main-nav-link {
        font-size: 2.3rem;
    }
    .main-nav .menu {
        font-size: 2.9rem;
    }
    #mainNavModal {
        height: calc(100% - 150px);
        margin-top: 150px;
    }
}
@media (min-width: 1400px) {
    .main-nav {
        padding: 2rem;
    }
    .main-nav .brand {
        height: 125px;
    }
    .main-nav-link {
        font-size: 2.5rem;
    }
    .main-nav .menu {
        font-size: 3.1rem;
    }
    #mainNavModal {
        height: calc(100% - 180px);
        margin-top: 180px;
    }
}
/* /Main Nav */

/* Main Nav Sticky */
.main-nav.is-sticky {
    position: fixed;
}
.main-nav.is-sticky .brand,
.main-nav.is-sticky .brand-link {
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.3s;
    width: 0;
}
.main-nav.is-sticky .menu:not(.close) {
    position: relative;
}
.main-nav.is-sticky .menu:not(.close)::before {
    background-color: var(--yellowPrimary);
    border-radius: 50%;
    content: '';
    height: 65px;
    left: 50%;
    position: absolute;
    top: calc(50% - 2px);
    transform: translate(-50%, -50%);
    transition: background-color 0.3s ease;
    width: 65px;
    z-index: -1;
}
.main-nav.is-sticky .menu:not(.close):hover::before {
    background-color: #000;
}
.modal-open .main-nav.is-sticky .menu:not(.close) {
    display: none;
}
.main-nav.is-sticky .menu:not(.close):hover .label {
    background-color: #000;
    border-radius: 4px;
    padding: 0 .75rem 0 .5rem;
    right: 100%;
}
.main-nav.is-sticky .menu:not(.close) .label {
    background-color: transparent;
    border-radius: 4px;
    padding: 0 .75rem 0 .5rem;
    transition: right 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}
/* /Main Nav Sticky */

/* Modals */
.modal-yellow .modal-content {
    border-radius: 0;
    background-color: var(--yellowPrimary);
    padding: 3rem;
    position: relative;
}
.modal-yellow .modal-content .btn-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
}
/* /Modals */

/* Page Hero */
.page-hero {
    min-height: 250px;
}
.page-hero-bg {
    background-position: center;
    background-size: cover;
    height: 250px;
    width: 100%;
}
.page-hero .hero-copy {
    background-color: var(--yellowPrimary);
    padding: 2rem 2rem 1rem 2rem;
    margin-top: -3rem;
}
.simple-hero {
    background-color: var(--yellowPrimary);
    padding: .6rem 2rem;
    width: fit-content;
}
.simple-hero h1 {
    margin: 0;
    width: fit-content;
}
.simple-hero-section {
    margin-bottom: 5rem;
    margin-top: 7rem;
}
@media (min-width: 576px) {
    .page-hero-bg {
        height: 300px;
    }
}
@media (min-width: 768px) {
    .page-hero-bg {
        height: 350px;
    }
}
@media (min-width: 992px) {
    .page-hero-bg {
        height: 400px;
    }
    .page-hero .hero-copy {
        padding: 2.5rem 2.5rem 1.5rem 2.5rem;
        margin-top: -4rem;
    }
    .simple-hero {
        padding: 1rem 3rem;
    }
    .simple-hero-section {
        margin-bottom: 6rem;
        margin-top: 8rem;
    }
}
@media (min-width: 1200px) {
    .page-hero-bg {
        height: 450px;
    }
    .page-hero .hero-copy {
        padding: 3rem 3rem 2rem 3rem;
        margin-top: -5rem;
    }
    .simple-hero {
        padding: 1.2rem 4rem;
    }
    .simple-hero-section {
        margin-bottom: 7rem;
    }
}
@media (min-width: 1400px) {
    .page-hero-bg {
        height: 500px;
    }
    .simple-hero {
        padding: 1.4rem 5rem;
    }
    .simple-hero-section {
        margin-bottom: 8rem;
    }
}
/* /Page Hero */

/* People Grid */
.people-grid .headshot {
    border-radius: 600px;
    position: relative;
    width: 100%;
}
.people-grid h4 {
    margin-bottom: .2rem;
}
.people-grid p {
    font-weight: 500;
    margin: 0;
}
.people-grid .person-link,
.people-grid .person-link h4,
.people-grid .person-link p {
    color: #000;
    text-decoration: none;
    transition: all .3s;
}
.people-grid .person-link picture {
    position: relative;
    z-index: 10;
}
.people-grid .person-link picture::after {
    border-radius: 1000px;
    background-color: var(--yellowPrimary);
    content: '';
    height: 100%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all .3s;
    width: 100%;
    z-index: -1;
}
.people-grid .person-link:hover picture::after {
    height: 110%;
    width: 110%;
}
.people-grid .person-link:hover h4,
.people-grid .person-link:hover p {
    text-shadow: 1px 1px 10px #fff;
    transform: scale(1.05);
}
/* /People Grid */

/* Person Detail */
.person-detail .headshot {
    border-radius: 1000px;
    width: 100%;
}
/* /Person Detail */

/* Resources */
.resource-card img {
    max-width: 300px;
}
.filter-columns {
    columns: 2;
}
.filter-columns .filter-menu-form {
    break-inside: avoid;
}
@media (min-width: 768px) {
    .filter-columns {
        columns: 3;
    }
}
@media (min-width: 992px) {
    .filter-columns {
        columns: 4;
    }
}
@media (min-width: 760px) {
    .resource-card img {
        max-width: 400px;
    }
}
/* /Resources */

/* State Switcher */
    .two-state-switcher-section .bar-header {
        margin-bottom: 2.5rem;
    }
    
    .state-switcher-btns li:nth-of-type(1) .nav-link {
        border-bottom-left-radius: 100px;
        border-top-left-radius: 100px;
    }
    .state-switcher-btns li:nth-of-type(2) .nav-link {
        border-bottom-right-radius: 100px;
        border-top-right-radius: 100px;
    }
    .state-switcher-btns .nav-link {
        border: 2px solid var(--yellowPrimary);
        border-radius: 0;
        color: #000;
        font-weight: 700;
        padding: .5rem 2rem;
        text-transform: uppercase;
    }
    .state-switcher-btns .nav-link.active {
        background: var(--yellowPrimary);
        color: #000;
    }
    .state-switcher-btns .nav-link:hover {
        background-color: var(--yellowPrimary);
    }
    .two-state-switcher-section .check-img {
        width: 50px;
    }
    .two-state-switcher-section .state-img {
        background-position: center;
        background-size: contain;
        height: 100%;
        width: 75%;
        margin-right: 25%;
    }
    .two-state-switcher-section .state-info-item-copy {
        font-size: 1rem;
        font-weight: 700;
    }
@media (min-width: 576px) {
    .two-state-switcher-section .state-img {
        width: 100%;
        margin-right: 0;
    }
}
@media (min-width: 768px) {
    .two-state-switcher-section .bar-header {
        margin-bottom: 3rem;
    }
}
@media (min-width: 992px) {
    .two-state-switcher-section .bar-header {
        margin-bottom: 3.5rem;
    }
    .two-state-switcher-section .check-img {
        width: 60px;
    }
    .two-state-switcher-section .state-info-item-copy {
        font-size: 1.2rem;
    }
}
@media (min-width: 1200px) {
    .two-state-switcher-section .bar-header {
        margin-bottom: 4rem;
    }
    .two-state-switcher-section .check-img {
        width: 75px;
    }
    .two-state-switcher-section .state-info-item-copy {
        font-size: 1.25rem;
    }
}
@media (min-width: 1400px) {
    .two-state-switcher-section .state-info-item-copy {
        font-size: 1.3rem;
    }
}
/* /State Switcher */

/* Testimonials */
.testimonial-copy {
    font-style: italic;
    margin-bottom: .5rem;
}
.testimonial-copy-area {
    position: relative;
}
.testimonial-copy-area:after {
    content: url('/assets/core/yellow-quote.svg');
    left: -2rem;
    position: absolute;
    top: -2rem;
    width: 5rem;
    z-index: -100;
}
.testimonial-copy-area:before {
    bottom: -1rem;
    content: url('/assets/core/yellow-quote.svg');
    position: absolute;
    right: 2rem;
    transform: rotate(180deg);
    width: 5rem;
    z-index: -100;
}
.testimonial-img {
    border-radius: 500px;
    width: 100%;
}
.testimonial-img.no-crop {
    border-radius: 0;
}
.testimonial-name {
    font-size: 1.3rem;
    font-weight: 700;
}
.testimonial-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: -.25rem;
}
@media (min-width: 992px) {
    .testimonial-copy {
        font-size: 1.1rem;
    }
    .testimonial-name {
        font-size: 1.5rem;
    }
    .testimonial-title {
        font-size: 1.2rem;
    }
}
@media (min-width: 1400px) {
    .testimonial-copy {
        font-size: 1.2rem;
    }
    .testimonial-name {
        font-size: 1.7rem;
    }
    .testimonial-title {
        font-size: 1.3rem;
    }
}
/* /Testimonials */

/* Testimonials Carousel */
.testimonial-img.no-crop {
    height: auto;
    max-height: 300px;
    max-width: 300px;
    object-fit: contain;
    width: 100%;
}
.testimonials-section {
    overflow: hidden;
}
.testimonials-swiper {
    overflow: visible;
}
.swiper-slide {
    opacity: 0.5;
    transition: opacity 0.3s ease;
    padding: 3rem 0;
}
.swiper-slide-active {
    opacity: 1;
}
/* Testimonials Carousel */

/* Text Only */
@media (min-width: 992px) {
    .text-only-section,
    .text-only-section p,
    .text-only-section ol,
    .text-only-section ul {
        font-size: 1.1rem;
    }
}
/* /Text Only */