/* GENERAL BASE STYLES */
:root {
    --header-height-mobile: 120px;
    --header-height-desktop: 206px;
    --box-shadow: 0px 1px 3px rgba(0,0,0,0.2);
    --box-shadow-inset: 0px 0px 3px rgba(0,0,0,0.1) inset;
    --text-shadow: 0px 1px 4px rgba(0,0,0,0.3);

    --color-black: #000;
    --color-gray: #F8F8F8;
    --color-purple-a-1: #f1eaff;
    --color-purple-a-2: #e5d4ff;
    --color-purple-a-3: #dcbfff;
    --color-purple-a-4: #d0a2f8;
    --color-purple-b-1: #433878;
    --color-purple-b-2: #7e60bf;
    --color-purple-b-3: #e4b1f0;
    --color-purple-b-4: #ffe1ff;
    --color-purple-c-1: #5b0788;
    --color-purple-c-2: #713abe;
    --color-purple-c-3: #9d76c1;
    --color-purple-c-4: #e5cff7;
    --color-white: #FFF;
    --font-family-1: 'Work Sans', sans-serif;
    --font-family-2: 'FontAwesome';
}
*,
*:after,
*:before {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
::selection {
	background: var(--color-purple-c-1);
	color: var(--color-white);
	text-shadow: none;
}
::-webkit-selection {
	background: var(--color-purple-c-1);
	color: var(--color-white);
	text-shadow: none;
}
::-moz-selection {
	background: var(--color-purple-c-1);
	color: var(--color-white);
	text-shadow: none;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
body,
html {
    height: 100%;
}
body {
    background-color: var(--color-purple-a-1);
    color: var(--color-black);
    font-family: var(--font-family-1);
    font-size: 18px;
    font-weight: normal;
    height: fit-content;
    line-height: 32px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
@media (min-width: 992px) {
    body {
        font-size: 22px;
        line-height: 36px;
    }
}
a {
    color: var(--color-black);
    transition: 300ms color ease, 300ms background-color ease;
    text-decoration: underline;
}
a:hover,
a:active,
a:focus {
    color: var(--color-purple-b-2);
}
p {
    margin-bottom: 20px;
}
.cta {
    appearance: none;
    background: var(--color-purple-b-1);
    border-radius: 0;
    color: var(--color-white);
    display: block;
    font-family: var(--font-family-1);
    font-size: 18px;
    font-weight: bold;
    line-height: 20px;
    padding: 10px 14px 12px;
    text-align: center;
    text-decoration: none;
    transition: 300ms background-color ease, 300ms opacity ease;
    user-select: none;
    width: fit-content;
}
.cta:hover,
.cta:active,
.cta:focus {
    background-color: var(--color-purple-b-2);
    color: var(--color-white);
    opacity: 1;
    text-decoration: none;
}
/* .cta-alt {
    background-color: var(--color-black);
}
.cta-alt:hover,
.cta-alt:active,
.cta-alt:focus {
    background-color: var(--color-black);
}
.cta-alt-2 {
    background-color: var(--color-black);
    border-color: var(--color-black);
}
.cta-alt-2:hover,
.cta-alt-2:active,
.cta-alt-2:focus {
    background-color: var(--color-black);
} */
img {
    display: block;
    height: auto;
    max-width: 100%;
    width: 100%;
}
h1,
h2 {
    font-family: var(--font-family-1);
    font-weight: 800;
    text-transform: uppercase;
}
h1 {
    color: var(--color-purple-b-1);
    font-size: 30px;
    line-height: 32px;
    margin: 0 0 20px 0;
    text-align: center;
}
@media (min-width: 992px) {
    h1 {
        font-size: 40px;
        line-height: 42px;
        margin: 0 0 40px 0;
    }
}
h2 {
    color: var(--color-purple-b-2);
    font-size: 24px;
    line-height: 30px;
    margin: 0 0 10px 0;
    text-align: center;
}
@media (min-width: 992px) {
    h2 {
        font-size: 34px;
        line-height: 40px;
        margin-bottom: 20px;
    }
}
hr {
    border-top-color: var(--color-white);
    margin: 20px 0;
}
.container {
    transition: 300ms width ease;
}
@media (min-width: 1400px) {
    .container {
        /* width: 1370px; */
        /* width: 100%; */
    }
}
.container.inner {
    padding: 0;
}
.mb-0 {
    margin-bottom: 0 !important;
}
@keyframes right {
    0% , 100%{transform: translateY(-10px) }
    50% { transform: translateY(10px) }
}

@keyframes left {
    0% , 100%{ transform: translateY(10px) }
    50% { transform: translateY(-10px) }
}

/* HEADER */
/* General */
header {
    background: var(--color-purple-b-1);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 3;
}
/* Mobile */
header.header-mobile {
    /* height: var(--header-height-mobile); */
}
header.header-mobile .intro {
    background: var(--color-purple-b-2);
    color: var(--color-white);
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    left: -15px;
    line-height: 22px;
    overflow: hidden;
    padding: 8px 15px;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100vw;
}
header.header-mobile .top-section {
}
header.header-mobile .top-section .mobile-nav-toggle {
    bottom: 31px;
    color: var(--color-white);
    display: block;
    /* display: none; */
    font-size: 28px;
    left: 15px;
    height: 28px;
    outline: none !important;
    position: absolute;
    transition: 300ms color ease;
    width: 30px;
    z-index: 1;
}
header.header-mobile .top-section .mobile-nav-toggle:hover,
header.header-mobile .top-section .mobile-nav-toggle:active,
header.header-mobile .top-section .mobile-nav-toggle:focus {
}
header.header-mobile .top-section .logo-column {
}
header.header-mobile .top-section .logo-column .logo {
    display: block;
    margin: 18px auto;
    opacity: 1;
    text-align: center;
    transition: 300ms opacity ease;
    width: fit-content;
}
header.header-mobile .top-section .logo-column .logo:hover,
header.header-mobile .top-section .logo-column .logo:active,
header.header-mobile .top-section .logo-column .logo:focus {
    opacity: 0.8;
}
header.header-mobile .top-section .logo-column .logo .logo-img {
    height: 46px;
    width: auto;
}
header.header-mobile.mobile-nav-open .top-section .mobile-nav-toggle {
}
header.header-mobile .bottom-section {
    background-color: var(--color-purple-a-1);
    display: none;
    /* height: calc(100vh - var(--header-height-mobile)); */
    left: 0;
    margin: 0;
    overflow: auto;
    padding: 42px 0;
    position: absolute;
    top: auto;
    width: 100vw;
}
header.header-mobile.mobile-nav-open .bottom-section {
    display: block;
}
header.header-mobile.mobile-nav-open .bottom-section::after {
    /* background: rgba(255,255,255,0.90); */
    background-color: var(--color-purple-a-1);
    bottom: 0;
    content: '';
    display: block;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: var(--header-height-mobile);
    width: 100%;
    z-index: -1;
}
header.header-mobile .bottom-section nav.primary {
    margin-bottom: 0;
}
header.header-mobile .bottom-section nav > ul {
    /* align-items: center; */
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}
header.header-mobile .bottom-section nav.secondary > ul {
    gap: 4px;
}
header.header-mobile .bottom-section nav > ul > li {
    margin-left: 0;
}
header.header-mobile .bottom-section nav > ul > li > a {
    color: var(--color-purple-b-1);
    display: block;
    font-size: 20px;
    font-weight: 900;
    line-height: 24px;
    margin-bottom: 20px;
    text-decoration: none;
    text-transform: uppercase;
    width: fit-content;
}
header.header-mobile .bottom-section nav > ul > li:last-of-type > a {
    margin-bottom: 0;
}
header.header-mobile .bottom-section nav > ul > li > a i {
    /* display: none; */
    font-size: 18px;
    margin-right: 4px;
    text-align: center;
    width: 30px;
}
header.header-mobile .bottom-section nav.secondary > ul > li > a {
    color: var(--color-black);
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
}
header.header-mobile .bottom-section nav > ul > li > a:hover,
header.header-mobile .bottom-section nav > ul > li > a:active,
header.header-mobile .bottom-section nav > ul > li > a:focus {
    color: var(--color-black);
}
header.header-mobile .bottom-section nav.secondary > ul > li > a:hover,
header.header-mobile .bottom-section nav.secondary > ul > li > a:active,
header.header-mobile .bottom-section nav.secondary > ul > li > a:focus {
    color: var(--color-white);
}
header.header-mobile .bottom-section nav > ul > li > ul {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}
header.header-mobile .bottom-section nav > ul > li > ul > li {
    margin-left: 0;
}
header.header-mobile .bottom-section nav > ul > li > ul > li > a {
    color: var(--color-white);
    display: block;
    font-size: 18px;
    line-height: 28px;
    text-transform: uppercase;
    transition: 300ms color ease;
}
header.header-mobile .bottom-section nav > ul > li > ul > li > a:hover,
header.header-mobile .bottom-section nav > ul > li > ul > li > a:active,
header.header-mobile .bottom-section nav > ul > li > ul > li > a:focus {
    color: var(--color-black);
}
header.header-mobile .bottom-section nav > ul > li > ul > li.menu-item-has-children > a {
    cursor: default;
}
header.header-mobile .bottom-section nav > ul > li > ul > li > ul {
    display: inline-block;
    list-style: none;
    margin-bottom: 5px;
    padding: 0;
    width: 100%;
}
header.header-mobile .bottom-section nav > ul > li > ul > li > ul > li {
    margin-left: 0;
}
header.header-mobile .bottom-section nav > ul > li > ul > li > ul > li > a {
    color: var(--color-white);
    display: block;
    font-size: 18px;
    line-height: 28px;
    padding-left: 20px;
    transition: 300ms color ease;
}
header.header-mobile .bottom-section nav > ul > li > ul > li > ul > li > a:hover,
header.header-mobile .bottom-section nav > ul > li > ul > li > ul > li > a:active,
header.header-mobile .bottom-section nav > ul > li > ul > li > ul > li > a:focus {
    color: var(--color-black);
}
/* Desktop */
header.header-desktop {
    box-sizing: content-box;
    height: var(--header-height-desktop);
}
/* @media (min-width: 1400px) {
    header.header-desktop .header-inner {
        width: 100%;
    }
} */
header.header-desktop .intro {
    background: var(--color-purple-b-2);
    color: var(--color-white);
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    left: -15px;
    line-height: 24px;
    overflow: hidden;
    padding: 8px 15px;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100vw;
}
header.header-desktop .top-section {
    position: relative;
}
header.header-desktop .top-section .logo-column {
    margin-bottom: 0;
}
header.header-desktop .top-section .logo-column .logo {
    display: inline-block;
    margin: 30px 0 -15px;
    opacity: 1;
    text-align: left;
    transform-origin: center;
    transition: 300ms opacity ease;
}
header.header-desktop .top-section .logo-column .logo:hover,
header.header-desktop .top-section .logo-column .logo:active,
header.header-desktop .top-section .logo-column .logo:focus {
    /* transform: scale(1.08); */
    opacity: 0.8;
}
header.header-desktop .top-section .logo-column .logo .logo-img {
    height: 100px;
    width: auto;
}
header.header-desktop .top-section .welcome-section {
    /* animation: fadeIn 2s ease 1s; */
    animation-fill-mode: forwards;
    color: var(--color-black);
    /* opacity: 0; */
    font-size: 13px;
    position: absolute;
    right: 140px;
    top: 20px;
}
header.header-desktop .top-section .welcome-section .welcome-text {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
}
header.header-desktop .top-section .welcome-section .welcome-text .time-of-day {
}
header.header-desktop .top-section .welcome-section .welcome-text .first-name {
    color: var(--color-black);
    font-weight: bold;
    text-decoration: none;
}
header.header-desktop .top-section .welcome-section .welcome-text .first-name:hover {
    color: var(--color-black);
}
header.header-desktop .top-section .welcome-section .notifications-count {
    background-color: var(--color-black);
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    color: var(--color-white);
    display: inline-block;
    font-size: 11px;
    font-weight: bold;
    height: 22px;
    line-height: 21px;
    margin: 0 0 0 4px;
    text-align: center;
    text-decoration: none;
    text-shadow: var(--text-shadow);
    transition: 300ms background-color ease;
    vertical-align: middle;
    width: 22px;
}
header.header-desktop .top-section .welcome-section .notifications-count:hover {
    background-color: var(--color-black);
}
header.header-desktop .top-section .welcome-section .separator {
    background-color: var(--color-black);
    display: inline-block;
    font-size: 0;
    height: 16px;
    margin: 0 5px;
    vertical-align: middle;
    width: 1px;
}
header.header-desktop .top-section .welcome-section .sign-out-link {
    display: inline-block;
    vertical-align: middle;
}
header.header-desktop .top-section nav {
    /* margin-top: 39px; */
    /* margin-top: 19px; */
    margin-top: 87px;
    position: relative;
}
@media (min-width: 1200px) {
    header.header-desktop .top-section nav {
        margin-top: 62px;
    }
}
header.header-desktop .top-section nav ul {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
header.header-desktop .top-section nav ul li {
    position: relative;
}
header.header-desktop .top-section nav > ul > li {
    display: inline-block;
    position: relative;
}
header.header-desktop .top-section nav > ul > li:last-of-type {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}
header.header-desktop .top-section nav > ul > li > a {
    border-radius: 0;
    color: var(--color-white);
    display: block;
    font-size: 18px;
    font-weight: bold;
    /* height: 36px; */
    line-height: 20px;
    padding: 10px 14px 12px;
    text-decoration: none;
    transition: 300ms background-color ease;
    user-select: none;
    white-space: nowrap;
}
header.header-desktop .top-section nav > ul > li > a:hover,
header.header-desktop .top-section nav > ul > li > a:active,
header.header-desktop .top-section nav > ul > li > a:focus {
    background-color: var(--color-purple-b-1);
    /* color: var(--color-white); */
}
header.header-desktop .top-section nav > ul > li > a.active {
    /* border-bottom: 3px solid var(--color-navy); */
    background-color: var(--color-purple-b-1);
}
header.header-desktop .top-section nav > ul > li > a i {
    /* display: none; */
    font-size: 0;
    transition: 300ms font-size ease, 300ms margin-right ease;
}
@media (min-width: 768px) {
    header.header-desktop .top-section nav > ul > li > a i {
        font-size: 12px;
        margin-right: 5px;
    }
}
header.header-desktop .top-section nav > ul > li > ul {
    box-shadow: 0 1px 15px rgba(0,0,0,0.8);
    display: none;
    left: 0;
    position: absolute;
    top: 35px;
    text-align: left;
    width: 342px;
    z-index: 1;
}
header.header-desktop .top-section nav > ul > li:last-of-type > ul {
    left: auto;
    right: 0;
    width: 356px;
}
header.header-desktop .top-section nav > ul > li:hover > ul {
    display: block;
}
header.header-desktop .top-section nav > ul > li > ul > li {
    position: relative;
}
header.header-desktop .top-section nav > ul > li > ul > li > a {
    border-bottom: 1px solid var(--color-black);
    color: var(--color-white);
    display: block;
    font-size: 18px;
    height: 51px;
    line-height: 51px;
    padding: 0 22px;
    transition: 300ms background-color ease;
}
header.header-desktop .top-section nav > ul > li > ul > li:last-child > a {
    border-bottom: none;
}
header.header-desktop .top-section nav > ul > li > ul > li > ul {
    box-shadow: 0 1px 15px rgba(0,0,0,0.8);
    display: none;
    left: 342px;
    position: absolute;
    top: 0;
    width: 305px;
    z-index: 1;
}
header.header-desktop .top-section nav > ul > li > ul > li:hover > a {
}
header.header-desktop .top-section nav > ul > li > ul > li:hover > ul {
    display: block;
}
header.header-desktop .top-section nav > ul > li > ul > li > ul > li > a {
    border-bottom: 1px solid var(--color-black);
    color: var(--color-white);
    display: block;
    font-size: 18px;
    height: 51px;
    line-height: 51px;
    padding: 0 22px;
    transition: 300ms background-color ease;
}
header.header-desktop .top-section nav > ul > li > ul > li > ul > li:last-child > a {
    border-bottom: none;
}
header.header-desktop .top-section nav > ul > li > ul > li > ul > li:hover > a {
}
header.header-desktop .nav-wrapper {
    background-color: var(--color-purple-b-2);
    display: block;
    left: -15px;
    position: relative;
    width: 100vw;
}
header.header-desktop nav {
    max-width: 1170px;
    padding: 0;
}
header.header-desktop nav > ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
header.header-desktop nav > ul > li {
    display: inline-block;
    position: relative;
    width: fit-content;
}
/* @media (min-width: 1400px) {
    header.header-desktop .bottom-section nav > ul > li {
        max-width: 200px;
    }
} */
header.header-desktop nav > ul > li > a {
    color: var(--color-white);
    display: block;
    font-family: var(--font-family-1);
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    padding: 8px 15px;
    text-align: center;
    text-decoration: none;
    transition: 300ms background-color ease;
    user-select: none;
    white-space: nowrap;
}
header.header-desktop nav > ul > li > a:hover,
header.header-desktop nav > ul > li > a:active,
header.header-desktop nav > ul > li > a:focus {
    background-color: var(--color-purple-c-1);
}
/* @media (min-width: 1400px) {
    header.header-desktop .bottom-section nav > ul > li > a {
        padding: 7px 20px;
    }
} */
header.header-desktop nav > ul > li > a.active {
    background-color: var(--color-purple-c-1);
}
/* header.header-desktop nav > ul > li:last-of-type a {
    border-right: 1px solid var(--color-black);
} */
header.header-desktop nav > ul > li > a i {
    display: none;
}
header.header-desktop nav > ul > li > a.has-down-arrow i {
    display: inline-block;
    margin-left: 4px;
    position: relative;
    top: -1px;
}
header.header-desktop nav > ul > li > ul {
    display: none;
    left: 0;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    position: absolute;
    right: 0;
    top: 36px;
}
header.header-desktop nav > ul > li:hover > a + ul {
    display: block;
}
header.header-desktop nav > ul > li > ul > li {
    display: inline-block;
    position: relative;
    width: 100%;
}
header.header-desktop nav > ul > li > ul > li > a {
    background-color: var(--color-black);
    border-left: 1px solid var(--color-black);
    border-top: 1px solid var(--color-black);
    color: var(--color-white);
    display: block;
    font-family: var(--font-family-1);
    font-size: 13px;
    font-weight: bold;
    height: 36px;
    line-height: 20px;
    padding: 7px 12px;
    text-align: center;
    text-decoration: none;
    text-shadow: var(--text-shadow);
    text-transform: uppercase;
    transition: 300ms background-color ease;
    user-select: none;
    white-space: nowrap;
}
header.header-desktop nav > ul > li > ul > li > a:hover,
header.header-desktop nav > ul > li > ul > li > a:active,
header.header-desktop nav > ul > li > ul > li > a:focus {
    /* background-color: var(--color-green-alt); */
    background-color: var(--color-black);
}
header.header-desktop nav > ul > li > ul > li > a.active {
    background-color: var(--color-black);
}

/*------------------------------------*\
    BOOTSTRAP OVERRIDES
\*------------------------------------*/
.modal .modal-dialog {
    margin: 0;
    transform: none !important;
    width: 100%;
}
@media (min-width: 768px) {
    .modal .modal-dialog {
        align-items: center;
        display: flex;
        justify-content: center;
        margin: 0;
        min-height: 100vh;
        width: 100%;
    }
}
.modal .modal-dialog .modal-content {
    border: none;
    border-radius: 0;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: 300ms width ease;
    width: 100%;
}
@media (min-width: 768px) {
    .modal .modal-dialog .modal-content {
        border-radius: 10px;
    }
}
@media (min-width: 768px) {
    .modal.modal-delete .modal-dialog .modal-content {
        width: 510px;
    }
}
.modal .modal-dialog .modal-content .modal-header {
    background-color: var(--color-black);
    border-radius: 0;
    border-bottom: none;
    padding: 15px;
}
.modal .modal-dialog .modal-content .modal-header .title {
    color: var(--color-white);
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    margin-bottom: 0;
    text-shadow: var(--text-shadow);
}
.modal .modal-dialog .modal-content .modal-header .close {
    color: var(--color-white);
    font-size: 20px;
    opacity: 1;
    position: absolute;
    right: 15px;
    text-shadow: none;
    top: 17px;
    transition: 300ms color ease;
}
.modal .modal-dialog .modal-content .modal-header .close:hover,
.modal .modal-dialog .modal-content .modal-header .close:active,
.modal .modal-dialog .modal-content .modal-header .close:focus {
    color: var(--color-black);
}
.modal .modal-dialog .modal-content .modal-body {
    padding: 22px 15px 15px;
}
.modal .modal-dialog .modal-content .modal-footer {
    background-color: var(--color-black);
    border-top: 1px solid var(--color-black);
    padding: 15px;
}
.modal .modal-dialog .modal-content .modal-footer .cta-wrapper {
    display: flex;
    flex-direction: row;
    gap: 5px;
    justify-content: flex-end;
}
.modal .modal-dialog .modal-content .modal-footer .cta-wrapper .stick-left {
    left: 15px;
    position: absolute;
}
.modal-backdrop {
    background-color: var(--color-white);
}
.modal-backdrop.in {
    opacity: 0.8;
}
#modal-general-message::after,
.modal-secondary::after {
    background: rgba(255, 255, 255, 0.5);
    bottom: 0;
    content: '';
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: -1;
}
@media (min-width: 768px) {
    #modal-general-message .modal-dialog .modal-content {
        width: 310px;
    }
}

/* MAIN */
main {
    margin-top: var(--header-height-mobile);
    min-height: calc(100vh - var(--header-height-mobile) - 178px);
    padding: 20px 15px;
    transition: 300ms padding ease;
}
@media (min-width: 992px) {
    main {
        /* margin-top: 106px; */
        margin-top: var(--header-height-desktop);
        min-height: calc(100vh - var(--header-height-desktop) - 178px);
        /* padding: 100px 15px 140px; */
        padding: 40px 15px 50px;
    }
}
/* @media (min-width: 1400px) {
    main .container {
        width: 100%
    }
} */
main ul,
main ol {
    margin-bottom: 30px;
    padding-left: 20px;
}
main ul li,
main ol li {
    margin-bottom: 4px;
}
main .spacer {
    height: 30px;
}
@media (min-width: 992px) {
    main .spacer {
        height: 50px;
    }
}

main .columns {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
@media (min-width: 992px) {
    main .columns {
        align-items: center;
        flex-direction: row;
    }
}
@media (min-width: 992px) {
    main .columns .column {
    }
}
main .columns .column .image {
}

main .tiles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (min-width: 992px) {
    main .tiles {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
    }
}
main .tiles .tile {
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    padding: 40px;
    width: 100;
}
@media (min-width: 992px) {
    main .tiles .tile {
        width: calc(50% - 15px);
    }
}
main .tiles .tile .title {
    display: block;
    font-size: 32px;
    font-weight: bold;
    line-height: 38px;
    margin-bottom: 30px;
    text-align: center;
    text-decoration: none;
}
main .tiles .tile:nth-of-type(1) {
    border-top: 8px solid var(--color-purple-c-1);
}
main .tiles .tile:nth-of-type(1) .title {
    color: var(--color-purple-c-1);
}
main .tiles .tile:nth-of-type(2) {
    /* border-top: 8px solid var(--color-purple-c-2); */
    border-top: 8px solid #a33b93;
}
main .tiles .tile:nth-of-type(2) .title {
    /* color: var(--color-purple-c-2); */
    color: #a33b93;
}
main .tiles .tile:nth-of-type(3) {
    /* border-top: 8px solid var(--color-purple-c-3); */
    border-top: 8px solid var(--color-purple-b-1);
}
main .tiles .tile:nth-of-type(3) .title {
    /* color: var(--color-purple-c-3); */
    color: var(--color-purple-b-1);
}
main .tiles .tile:nth-of-type(4) {
    border-top: 8px solid var(--color-purple-c-2);
}
main .tiles .tile:nth-of-type(4) .title {
    color: var(--color-purple-c-2);
}
main .tiles .tile:nth-of-type(5) {
    border-top: 8px solid var(--color-purple-c-3);
}
main .tiles .tile:nth-of-type(5) .title {
    color: var(--color-purple-c-3);
}

/* HOME */
body.home main h1 {
    display: none;
}
body.home main .intro {
    align-items: center;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
@media (min-width: 992px) {
    body.home main .intro {
        flex-direction: row;
        line-height: 32px;
        margin-bottom: 40px;
    }
}
body.home main .intro .left {
    width: 100%;
}
body.home main .intro .left video {
    aspect-ratio: 16/9;
    background: var(--color-black);
    display: block;
    width: 100%;
}
body.home main .intro .left .caption {
    background: var(--color-purple-c-3);
    color: var(--color-white);
    margin: 0;
    padding: 8px 10px;
    font-size: 22px;
    font-style: italic;
    font-weight: 600;
    line-height: 34px;
    text-align: center;
}
body.home main .intro .right {
    padding: 40px;
    width: 100%;
}
body.home main .intro .right .logo-img {
    height: auto;
    margin: 0px auto 30px;
    width: 300px;
}
body.home main .intro .right p .big {
    font-size: 28px;
}
body.home main .quote {
    background-color: var(--color-white);
    color: var(--color-purple-c-1);
    font-size: 24px;
    font-style: italic;
    line-height: 30px;
    padding: 30px;
    text-align: center;
}
body.home main .quote p {
    margin-bottom: 0;
}
body.home main .tiles {
}
body.home main .tiles .tile .title-and-description-wrapper {
    height: 100%;
}
body.home main .tiles .tile .title-and-description-wrapper .title {
}
body.home main .tiles .tile .title-and-description-wrapper .title .smaller {
    font-size: 24px;
    font-style: italic;
    font-weight: normal;
    text-align: center;
}
body.home main .tiles .tile .title-and-description-wrapper .description {
    display: block;
    margin: 0 auto;
    width: fit-content;
}
body.home main .tiles .tile .title-and-description-wrapper .description li {
    font-weight: bold;
}
body.home main .tiles .tile .cta {
}

/* ELDER ABUSE AWARENESS */
@media (min-width: 1200px) {
    body.elder-abuse-awareness .what-is-elder-abuse-image {
        max-width: 900px;
    }
}
body.elder-abuse-awareness .wead-logo {
    margin-bottom: 60px;
    max-height: 375px;
}
@media (min-width: 992px) {
    body.elder-abuse-awareness .wead-logo {
        margin-bottom: 0;
    }
}

/* ELDER ABUSE MEDIA CAMPAIGN */
body.elder-abuse-media-campaign .quote {
    color: rgb(163, 59, 147); /* TODO: match with hex on 4th tile */
    font-size: 28px;
    font-style: italic;
    font-weight: bold;
    line-height: 34px;
    margin-bottom: 30px;
    text-align: center;
}
@media (min-width: 992px) {
    body.elder-abuse-media-campaign .quote {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 40px;
    }
}
body.elder-abuse-media-campaign .tiles {
    gap: 30px;
    margin-bottom: 30px;
}
body.elder-abuse-media-campaign .tiles .tile {
    gap: 40px;
}
@media (min-width: 992px) {
    body.elder-abuse-media-campaign .tiles .tile {
        flex-direction: row;
        flex-wrap: wrap;
        /* gap: 30px; */
        width: 100%;
    }
    body.elder-abuse-media-campaign .tiles .tile:nth-child(2n) {
        flex-direction: row-reverse;
    }
}
body.elder-abuse-media-campaign .tiles .tile .left {
}
@media (min-width: 992px) {
    body.elder-abuse-media-campaign .tiles .tile .left {
        width: 66%;
    }
    body.elder-abuse-media-campaign .tiles .tile.has-portrait-video .left {
        width: calc(50% - 20px);
    }
}
body.elder-abuse-media-campaign .tiles .tile .left .title {
    background: var(--color-purple-c-3);
    color: var(--color-white);
    margin: 0;
    padding: 8px 10px;
    font-size: 22px;
    font-style: italic;
    font-weight: 600;
    line-height: 34px;
    text-align: center;
}
body.elder-abuse-media-campaign .tiles .tile .left video {
    aspect-ratio: 16/9;
    background: var(--color-black);
    display: block;
    width: 100%;
}
body.elder-abuse-media-campaign .tiles .tile.has-portrait-video .left video {
    aspect-ratio: 9/16;
}
body.elder-abuse-media-campaign .tiles .tile .right {
}
@media (min-width: 992px) {
    body.elder-abuse-media-campaign .tiles .tile .right {
        align-items: center;
        display: flex;
        width: 30%;
    }
    body.elder-abuse-media-campaign .tiles .tile.has-portrait-video .right {
        width: calc(50% - 20px);
    }
}
body.elder-abuse-media-campaign .tiles .tile .right .description {
    font-weight: bold;
    margin-bottom: 0;
}
body.elder-abuse-media-campaign .tiles .tile .bottom {
    width: 100%;
}
@media (min-width: 992px) {
    body.elder-abuse-media-campaign .tiles .tile:nth-of-type(1) .bottom .image,
    body.elder-abuse-media-campaign .tiles .tile:nth-of-type(3) .bottom .image,
    body.elder-abuse-media-campaign .tiles .tile:nth-of-type(5) .bottom .image {
        border-left-style: solid;
        border-left-width: 500px;
    }
    body.elder-abuse-media-campaign .tiles .tile:nth-of-type(1) .bottom .image {
        border-left-color: var(--color-purple-c-1);
    }
    body.elder-abuse-media-campaign .tiles .tile:nth-of-type(3) .bottom .image {
        border-left-color: var(--color-purple-b-1);
    }
    body.elder-abuse-media-campaign .tiles .tile:nth-of-type(5) .bottom .image {
        border-left-color: var(--color-purple-c-3);
    }
    body.elder-abuse-media-campaign .tiles .tile:nth-of-type(1) .bottom .image,
    body.elder-abuse-media-campaign .tiles .tile:nth-of-type(3) .bottom .image,
    body.elder-abuse-media-campaign .tiles .tile:nth-of-type(5) .bottom .image {
        border-right: 100px solid var(--color-purple-a-2);
    }

    body.elder-abuse-media-campaign .tiles .tile:nth-of-type(2) .bottom .image,
    body.elder-abuse-media-campaign .tiles .tile:nth-of-type(4) .bottom .image {
        border-right-style: solid;
        border-right-width: 500px;
    }
    body.elder-abuse-media-campaign .tiles .tile:nth-of-type(2) .bottom .image {
        border-right-color: #a33b93;
    }
    body.elder-abuse-media-campaign .tiles .tile:nth-of-type(4) .bottom .image {
        border-right-color: var(--color-purple-c-2);
    }
    body.elder-abuse-media-campaign .tiles .tile:nth-of-type(2) .bottom .image,
    body.elder-abuse-media-campaign .tiles .tile:nth-of-type(4) .bottom .image {
        border-left: 100px solid var(--color-purple-a-2);
    }
}

/* PRODUCTION SERVICES */
body.production-services .tiles {
    gap: 30px;
}
body.production-services .tiles .tile {
    gap: 40px;
}
@media (min-width: 992px) {
    body.production-services .tiles .tile {
        flex-direction: row;
        flex-wrap: wrap;
        /* gap: 30px; */
        width: 100%;
    }
    body.production-services .tiles .tile:nth-child(2n) {
        flex-direction: row-reverse;
    }
}
body.production-services .tiles .tile .left {
}
@media (min-width: 992px) {
    body.production-services .tiles .tile .left {
        width: 66%;
    }
}
body.production-services .tiles .tile .left .title {
    background: var(--color-purple-c-3);
    color: var(--color-white);
    margin: 0;
    padding: 8px 10px;
    font-size: 22px;
    font-style: italic;
    font-weight: 600;
    line-height: 34px;
    text-align: center;
}
body.production-services .tiles .tile .left video {
    aspect-ratio: 16/9;
    background: var(--color-black);
    display: block;
    width: 100%;
}
body.production-services .tiles .tile .right {
}
@media (min-width: 992px) {
    body.production-services .tiles .tile .right {
        align-items: center;
        display: flex;
        width: 30%;
    }
}
body.production-services .tiles .tile .right .description {
    font-weight: bold;
    margin-bottom: 0;
}
body.production-services .tiles .tile .bottom {
    width: 100%;
}
@media (min-width: 992px) {
    body.production-services .tiles .tile:nth-of-type(1) .bottom .image,
    body.production-services .tiles .tile:nth-of-type(3) .bottom .image,
    body.elder-abuse-media-campaignproduction-services .tiles .tile:nth-of-type(5) .bottom .image {
        border-left-style: solid;
        border-left-width: 500px;
    }
    body.production-services .tiles .tile:nth-of-type(1) .bottom .image {
        border-left-color: var(--color-purple-c-1);
    }
    body.production-services .tiles .tile:nth-of-type(3) .bottom .image {
        border-left-color: var(--color-purple-b-1);
    }
    body.production-services .tiles .tile:nth-of-type(5) .bottom .image {
        border-left-color: var(--color-purple-c-3);
    }
    body.production-services .tiles .tile:nth-of-type(1) .bottom .image,
    body.production-services .tiles .tile:nth-of-type(3) .bottom .image,
    body.production-services .tiles .tile:nth-of-type(5) .bottom .image {
        border-right: 100px solid var(--color-purple-a-2);
    }

    body.production-services .tiles .tile:nth-of-type(2) .bottom .image,
    body.production-services .tiles .tile:nth-of-type(4) .bottom .image {
        border-right-style: solid;
        border-right-width: 500px;
    }
    body.production-services .tiles .tile:nth-of-type(2) .bottom .image {
        border-right-color: #a33b93;
    }
    body.production-services .tiles .tile:nth-of-type(4) .bottom .image {
        border-right-color: var(--color-purple-c-2);
    }
    body.production-services .tiles .tile:nth-of-type(2) .bottom .image,
    body.production-services .tiles .tile:nth-of-type(4) .bottom .image {
        border-left: 100px solid var(--color-purple-a-2);
    }
}

/* ABOUT */
body.about main .white-pane {
    background-color: var(--color-white);
    padding: 30px;
}
body.about main .columns {
    margin-bottom: 30px;
}
@media (min-width: 1200px) {
    body.about main .columns .column .miss-m-image {
        max-width: 900px;
    }
}
body.about .tiles {
    gap: 30px;
    margin-bottom: 30px;
}
body.about .tiles .tile {
    gap: 40px;
}
@media (min-width: 992px) {
    body.about .tiles .tile {
        flex-direction: row;
        flex-wrap: wrap;
        /* gap: 30px; */
        width: 100%;
    }
    body.about .tiles .tile:nth-child(2n) {
        flex-direction: row-reverse;
    }
}
body.about .tiles .tile .left {
}
@media (min-width: 992px) {
    body.about .tiles .tile .left {
        width: calc(40% - 20px);
    }
}
body.about .tiles .tile .left .title {
    background: var(--color-purple-c-3);
    color: var(--color-white);
    margin: 0;
    padding: 16px 10px 20px;
    text-align: center;
}
body.about .tiles .tile .left .title .name {
    display: block;
    font-size: 28px;
    font-weight: 800;
    line-height: 34px;
    margin-bottom: 4px;
}
body.about .tiles .tile .left .title .position {
    display: block;
    font-size: 22px;
    font-style: italic;
    font-weight: 600;
    line-height: 30px;
}
body.about .tiles .tile .left video {
    aspect-ratio: 16/9;
    background: var(--color-black);
    display: block;
    width: 100%;
}
body.about .tiles .tile .right {
}
@media (min-width: 992px) {
    body.about .tiles .tile .right {
        align-items: center;
        display: flex;
        width: calc(60% - 20px);
    }
}
body.about .tiles .tile .right .description {
    font-weight: bold;
    margin-bottom: 0;
}
body.about .tiles .tile .bottom {
    width: 100%;
}
@media (min-width: 992px) {
    body.about .tiles .tile:nth-of-type(1) .bottom .image,
    body.about .tiles .tile:nth-of-type(3) .bottom .image,
    body.about .tiles .tile:nth-of-type(5) .bottom .image {
        border-left-style: solid;
        border-left-width: 500px;
    }
    body.about .tiles .tile:nth-of-type(1) .bottom .image {
        border-left-color: var(--color-purple-c-1);
    }
    body.about .tiles .tile:nth-of-type(3) .bottom .image {
        border-left-color: var(--color-purple-b-1);
    }
    body.about .tiles .tile:nth-of-type(5) .bottom .image {
        border-left-color: var(--color-purple-c-3);
    }
    body.about .tiles .tile:nth-of-type(1) .bottom .image,
    body.about .tiles .tile:nth-of-type(3) .bottom .image,
    body.about .tiles .tile:nth-of-type(5) .bottom .image {
        border-right: 100px solid var(--color-purple-a-2);
    }

    body.about .tiles .tile:nth-of-type(2) .bottom .image,
    body.about .tiles .tile:nth-of-type(4) .bottom .image {
        border-right-style: solid;
        border-right-width: 500px;
    }
    body.about .tiles .tile:nth-of-type(2) .bottom .image {
        border-right-color: #a33b93;
    }
    body.about .tiles .tile:nth-of-type(4) .bottom .image {
        border-right-color: var(--color-purple-c-2);
    }
    body.about .tiles .tile:nth-of-type(2) .bottom .image,
    body.about .tiles .tile:nth-of-type(4) .bottom .image {
        border-left: 100px solid var(--color-purple-a-2);
    }
}
/* body.about .photo {
    display: block;
    margin: 0 auto 20px;
    width: 250px;
}
body.about .name {
    font-size: 36px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 5px;
    text-align: center;
}
body.about .title {
    color: var(--color-purple-b-1);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
} */

/* FOOTER */
footer {
    background-color: var(--color-gray);
    padding: 35px 0 25px;
}
footer .logo {
    display: block;
    margin: 0 auto 12px;
    max-width: 168px;
}
footer .copyright {
    font-size: 14px;
    line-height: normal;
    margin-bottom: 0;
    text-align: center;
}
footer .links {
    text-align: center;
}
footer .links a {
    font-size: 14px;
    line-height: normal;
}