/*   
Theme Name: Boston PIC
Theme URI: https://www.bostonpic.org/
Description: Custom WordPress theme for Boston PIC
Author: Yelling Mule
Author URI: https://www.yellingmule.com
Version: 1.0
*/

@charset "UTF-8";

/* =WordPress Core from http://codex.wordpress.org/CSS#WordPress_Generated_Classes
-------------------------------------------------------------- */

.alignnone {
    margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}
.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}
a img.alignnone {
    margin: 5px 20px 20px 0;
}
a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}
.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}
.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}
.wp-caption p.wp-caption-text {
    font-size: 13px;
    line-height: 17px;
    margin: 0;
    padding: 0.5rem 0;
}

/*CUSTOM SCSS
-------------------------------------------------------------- */

/*Required Styles*/

:root {
    --font-primary: "Plus Jakarta Sans", sans-serif;
    --font-secondary: "Titillium Web", sans-serif;
    --color-blue: #004f9e;
    --color-lightblue: #337ebd;
    --color-medblue: #004285;
    --color-darkblue: #013263;
    --color-teal: #3a97af;
    --color-pink: #bf4163;
    --color-green: #009e65;
    --color-aqua: #b0d5df;
    --color-bluegrey: #ebf5f7;
    --color-navy: #0a203f;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: var(--font-secondary);
}
main {
    margin-top: 183px;
}
a:hover,
a:active,
a:visited,
a:focus {
    text-decoration: none;
}
h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    color: #414443;
}
h1 {
    font-size: 48px;
}
h2 {
    font-size: 36px;
}
h3 {
    font-size: 30px;
}
h4 {
    font-size: 25px;
}
h5 {
    font-size: 18px;
}
h6 {
    font-size: 16px;
}
p {
    line-height: 1.75;
}
p.ym_lh_small {
    line-height: 1;
}
p,
ul {
    font-size: 16px;
    color: #2c2c2c;
}
p a,
p a span {
    color: var(--color-blue);
    font-weight: 700;
}
p a:hover,
p a:hover span {
    color: var(--color-teal);
    font-weight: 700;
}
.centered {
    text-align: center;
}
.right {
    text-align: right;
}
.left {
    text-align: left;
}

/*BUTTONS*/

.ym_button {
    display: inline-block;
    padding: 0.75rem 1.5rem 0.75rem 2rem;
    background: var(--color-teal);
    color: white;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 10px;
    position: relative;
}
.ym_button:hover {
    background: var(--color-blue);
    color: white;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}
.ym_button::after {
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image: url(public/img/arrow.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    margin: -4px 0 0 0.5rem;
    vertical-align: middle;
}
.ym_button:hover::after {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}
.ym_link {
    font-weight: 700;
    font-size: 16px;
    font-family: var(--font-primary);
    color: var(--color-teal);
    text-transform: uppercase;
}
.ym_link:hover {
    color: var(--color-teal);
}
.ym_link::after {
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image: url(public/img/arrow-teal.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    margin: -4px 0 0 0.5rem;
    vertical-align: middle;
}
.ym_link:hover::after {
    margin: -4px 0 0 1.5rem;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

/*HEADER*/

.ym_header {
    width: 100%;
    background: white;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0px 2px 12px rgba(10, 32, 63, 0.08);
}
.ym_header_tablet,
.ym_header_mobile {
    display: none;
}
.ym_header_logo {
    height: 108px;
    width: 100%;
    position: relative;
}
.ym_header_logo a {
    display: block;
    width: 100%;
    height: 100%;
}
.ym_header_logo img {
    height: 100%;
    width: auto;
    padding: 0.75rem 0;
}
.ym_header_right {
    text-align: right;
    padding: 1.5rem 0;
}
.ym_header_search,
.ym_header_translate {
    display: inline-block;
    vertical-align: middle;
}
.ym_header_search {
    width: 80px;
    position: relative;
    padding: 0 0 0 20px;
}
.ym_header_search.opened {
    width: 350px;
}
.ym_header_search::before {
    font: var(--fa-font-solid);
    content: "\f002";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 12px;
    padding: 0.5rem 0;
    height: 100%;
}
.ym_header_search form input {
    border: none;
    font-size: 14px;
    padding: 0.25rem 0;
    width: 100%;
}
.ym_header_search form input::placeholder {
    color: black;
}
.ym_header_search form input:focus-visible {
    outline: none;
    border-bottom: 1px solid lightgrey;
}
.ym_header_translate .goog-logo-link {
    display: none !important;
}
.ym_header_translate .goog-te-gadget {
    color: transparent !important;
    height: 38px;
    overflow: hidden;
}
.ym_header_translate .goog-te-gadget .goog-te-combo {
    margin: 0;
}
.ym_header_translate select {
    border: none;
    padding: 0.5rem;
    font-family: var(--font-secondary);
}
.ym_header_translate select:focus-visible {
    outline: none;
}
.ym_header_nav,
.ym_header_secondary_nav {
    list-style: none;
    margin: 0 -0.5rem;
    padding: 0;
}
.ym_header_nav li,
.ym_header_secondary_nav li {
    display: inline-block;
    position: relative;
}
.ym_header_nav li a,
.ym_header_secondary_nav li a {
    color: var(--color-navy);
    display: block;
    padding: 1.5rem 0.5rem;
}
.ym_header_nav {
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
}
.ym_header_secondary_nav {
    font-weight: 600;
    font-size: 16px;
    text-align: right;
}
.ym_header_nav li:hover::after {
    content: "";
    width: 100%;
    height: 5px;
    background: var(--color-teal);
    position: absolute;
    bottom: 0;
    left: 0;
}
.ym_header_secondary_nav li a:hover {
    color: var(--color-blue);
}
.ym_header_submenu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0.75rem 0;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    background: var(--color-blue);
    position: absolute;
    width: 288px;
    text-align: left;
}
.ym_header_submenu li {
    display: block;
}
.ym_header_submenu li a {
    display: block;
    padding: 0.75rem 2rem;
    color: white;
}
.ym_header_submenu li a:hover {
    font-weight: 700;
    color: white;
}
.ym_header_secondary_nav li:hover .ym_header_submenu {
    display: block;
}
.ym_header_megamenu {
    display: none;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    background: var(--color-blue);
    padding: 4rem 0;
}
.ym_header_nav li:hover .ym_header_megamenu {
    display: block;
}
.ym_header_megamenu h3 {
    color: white;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 28px;
    text-transform: none;
    margin: 0 0 1rem;
}
.ym_header_megamenu img {
    max-width: 100%;
    border-radius: 10px;
}
.ym_header_megamenu_lists {
    width: 100%;
    display: flex;
    text-transform: none;
    flex-wrap: wrap;
}
.ym_header_megamenu_list {
    flex: 1;
}
.ym_header_megamenu_list h5 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 0.5rem;
}
.ym_header_megamenu_list h5 a {
    color: var(--color-aqua);
    padding: 0.5rem 0;
}
.ym_header_megamenu_list h5 i {
    width: 1.5rem;
    text-align: center;
}
.ym_header_megamenu_list ul {
    list-style: none;
    margin: 0;
    padding: 0 0 0 1.5rem;
    font-weight: 400;
    font-size: 14px;
}
.ym_header_megamenu_list ul li {
    display: block;
}
.ym_header_megamenu_list ul li a {
    color: white;
    display: block;
    padding: 0.5rem 0;
}
.ym_header_megamenu_list h5 a:hover {
    color: var(--color-teal);
}
.ym_header_megamenu_list ul li a:hover {
    font-weight: 700;
}
.ym_header_megamenu_list ul li:hover::after {
    content: none;
}
.ym_header_megamenu .col-md-3 a {
    padding: 0;
}

/*FOOTER */

.ym_footer {
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 8rem 0 0 calc((100vw - 1140px) / 2);
}
.ym_footer_inner {
    background: var(--color-darkblue);
    border-top-left-radius: 25px;
    position: relative;
    overflow: hidden;
    padding: 4rem 0 2rem;
}
.ym_footer_inner::before {
    content: "";
    width: 28%;
    height: 100%;
    position: absolute;
    background: var(--color-blue);
    left: 0;
    top: 0;
}
.ym_footer_logo,
.ym_footer_logo img {
    width: 100%;
}
.ym_footer_logo {
    margin: 0 0 3rem;
}
.ym_footer_address {
    color: white;
    padding: 3rem 0 0;
}
.ym_footer_social {
    text-align: left;
    list-style: none;
    margin: 4rem 0 0;
    padding: 0;
    font-size: 18px;
}
.ym_footer_social li {
    display: inline-block;
    margin-right: 0.25rem;
}
.ym_footer_social li a {
    color: white;
}
.ym_footer_nav {
    list-style: none;
    margin: 0;
    padding: 0 1rem 0 0;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    -webkit-columns: 3;
    columns: 3;
    width: 100%;
}
.ym_footer_nav li {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}
.ym_footer_nav li a {
    color: var(--color-aqua);
}
.ym_footer_nav li ul {
    color: white;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    list-style: none;
    margin: 0 0 3rem;
    padding: 0 1rem 0 0;
}
.ym_footer_nav li ul li a {
    color: white;
    display: block;
    padding: 0.5rem 0;
}
.ym_footer_links {
    list-style: none;
    margin: 3rem 0 0;
    padding: 0;
    font-size: 12px;
}
.ym_footer_links li {
    display: inline-block;
}
.ym_footer_links li:not(:last-child) a::after {
    content: "|";
    margin: 0 0.5rem;
}
.ym_footer_links li a {
    color: #92adc8;
}
.ym_footer p {
    margin: 3rem 0 0;
    font-size: 12px;
    color: #92adc8;
}
.ym_footer p a {
    color: #92adc8;
}
.ym_footer_links li a:hover,
.ym_footer p a:hover {
    text-decoration: underline;
    color: #92adc8;
}

/*GRID HERO*/

.ym_hero {
    background: var(--color-bluegrey);
    border-bottom-left-radius: 100px;
    width: 100%;
    height: 525px;
    position: relative;
}
.ym_hero_content {
    display: flex;
    height: 100%;
    align-items: center;
    margin: -2rem 0 0;
}
.ym_hero_content span {
    font-weight: 700;
    font-size: 18px;
    color: var(--color-pink);
    text-transform: uppercase;
}
.ym_hero_content h1 {
    font-family: var(--font-primary);
    font-size: 64px;
    font-weight: 700;
    color: var(--color-navy);
}
.ym_hero_content h1 b,
.ym_hero_content h1 strong {
    color: var(--color-blue);
}
.ym_hero_content .ym_button {
    margin: 2rem 0 0;
}
.ym_hero_image_grid {
    position: relative;
}
.ym_hero_image_grid .row {
    margin: 0 -0.5rem;
}
.ym_hero_image_grid .col-md-6 {
    padding: 0 0.5rem;
}
.ym_hero_image {
    width: 100%;
    border-radius: 10px;
    filter: drop-shadow(0px 2px 12px rgba(10, 32, 63, 0.21));
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
#ym_hero_image_1,
#ym_hero_image_3 {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin: 0 0 1rem;
}
#ym_hero_image_1,
#ym_hero_image_2 {
    padding-bottom: 87.6%;
}
#ym_hero_image_3 {
    padding-bottom: 65%;
}
#ym_hero_image_4 {
    padding-bottom: 110%;
}

/*CONTENT*/

.ym_content {
    padding: 5rem 0;
    position: relative;
}
.ym_content_top_large {
    padding-top: 10rem;
}
.ym_content_top_small {
    padding-top: 2.5rem;
}
.ym_content_top_none {
    padding-top: 0;
}
.ym_content_bottom_large {
    padding-bottom: 10rem;
}
.ym_content_bottom_small {
    padding-bottom: 2.5rem;
}
.ym_content_bottom_none {
    padding-bottom: 0;
}
.ym_content_grey,
.ym_content_bluegrey {
    background: var(--color-bluegrey);
}
.ym_content_blue {
    background: var(--color-blue);
}
.ym_content_medblue {
    background: var(--color-medblue);
}
.ym_content_darkblue {
    background: var(--color-darkblue);
}
.ym_content_medblue h1,
.ym_content_medblue h2,
.ym_content_medblue h3,
.ym_content_medblue h4,
.ym_content_medblue h5,
.ym_content_medblue h6,
.ym_content_medblue p,
.ym_content_medblue ul,
.ym_content_medblue ol,
.ym_content_medblue li,
.ym_content_medblue p a .ym_content_darkblue h1,
.ym_content_darkblue h2,
.ym_content_darkblue h3,
.ym_content_darkblue h4,
.ym_content_darkblue h5,
.ym_content_darkblue h6,
.ym_content_darkblue p,
.ym_content_darkblue ul,
.ym_content_darkblue ol,
.ym_content_darkblue li,
.ym_content_darkblue p a {
    color: white !important;
}
.ym_content h2.centered {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-navy);
    font-size: 48px;
    margin: 0 0 2rem;
}
.ym_content h5.centered {
    color: var(--color-pink);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
}
.ym_content h5 a{
    color:var(--color-lightblue);
}
.ym_content h5 a:hover{
    color:var(--color-medblue);
}
.ym_content_colorblock,
.ym_content_colorblock_large {
    position: relative;
}
.ym_content_colorblock::before {
    content: "";
    width: 100%;
    height: 7.5rem;
    background: white;
    position: absolute;
    bottom: 0;
    left: 0;
}
.ym_content_colorblock_large::before {
    content: "";
    width: 100%;
    height: 15rem;
    background: white;
    position: absolute;
    bottom: 0;
    left: 0;
}
.ym_general_content h1 {
    color: var(--color-blue);
    margin: 0 0 1.5rem;
}
.ym_general_content h2 {
    color: var(--color-navy);
    margin: 0 0 1.5rem;
}
.ym_general_content h3 {
    color: var(--color-blue);
    font-family: var(--font-primary);
    font-size: 32px;
    margin: 0 0 1.5rem;
}
.ym_general_content h4 {
    color: var(--color-teal);
    font-size: 28px;
    margin: 0 0 1.5rem;
}
.ym_general_content h5 {
    color: var(--color-pink);
    margin: 0 0 1.5rem;
    font-size: 22px;
}
.ym_general_content h6 {
    color: var(--color-medblue);
    margin: 0 0 1.5rem;
    font-size: 18px;
    font-weight: 700;
}
.ym_content_columns .ym_general_content h5 {
    color: var(--color-pink);
}
.ym_content ul,
.ym_general_content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
}
.ym_content ul li:not(.gform_wrapper li),
.ym_general_content ul li:not(.gform_wrapper li) {
    padding: 0 0 0 2rem;
    margin: 0 0 1rem;
    position: relative;
}
.ym_content ul li:not(.slick-dots li):not(.gform_wrapper li):not(.ym_staff_categories ul li)::before,
.ym_general_content ul li:not(.slick-dots li):not(.gform_wrapper li):not(.ym_staff_categories ul li)::before {
    content: "\f101";
    font: var(--fa-font-solid);
    color: var(--color-teal);
    position: absolute;
    top: 0.35rem;
    left: 0;
    font-size: 14px;
}
.ym_content ul li a,
.ym_general_content ul li a {
    color: var(--color-blue);
    font-weight: 700;
}
.ym_content ul li a:hover,
.ym_general_content ul li a:hover {
    color: var(--color-teal);
    font-weight: 700;
}
.ym_general_content img {
    border-radius: 10px;
}
.col-lg-5 .ym_general_content img {
    width: 100%;
    max-width: max-content;
    height: auto;
    object-fit: contain;
    display: block;
}
.ym_general_content .ym_button {
    margin: 0.5rem 0 0;
}

/*IMAGE LINKS*/

.ym_icon_links .row {
    margin: 0;
}
.ym_icon_links .col-xl-3,
.ym_icon_links .col-xl-4 {
    margin: 2rem 0 0;
    padding: 0;
}
.ym_icon_link {
    height: 100%;
    position: relative;
    padding: 0 1.5rem 3rem 0;
    margin: 0 1.5rem 0 0;
    border-right: 1px solid var(--color-bluegrey);
}
.ym_icon_links .col-xl-3:last-of-type .ym_icon_link,
.ym_icon_links .col-xl-4:last-of-type .ym_icon_link {
    border: none;
}
.ym_icon_link a {
    display: block;
}
.ym_icon_link_icon {
    width: 62px;
    height: 62px;
    border-radius: 10px;
    text-align: center;
    padding: 1rem 0.5rem;
    display: inline-block;
    border: 2px solid var(--color-navy);
    margin: 0 1rem 0 0;
}
.ym_icon_link_icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    margin: 0 auto;
}
.ym_icon_link_teal .ym_icon_link_icon {
    border-color: var(--color-teal);
}
.ym_icon_link_pink .ym_icon_link_icon {
    border-color: var(--color-pink);
}
.ym_icon_link_blue .ym_icon_link_icon {
    border-color: var(--color-blue);
}
.ym_icon_link_green .ym_icon_link_icon {
    border-color: var(--color-green);
}
.ym_icon_link h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    display: inline-block;
    margin: 0;
    vertical-align: middle;
}
.ym_icon_link p {
    margin: 1rem 0 0;
    font-family: var(--font-primary);
    font-size: 14px;
}
.ym_icon_link span {
    position: absolute;
    bottom: 0;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
}
.ym_icon_link a:hover span {
    text-decoration: underline;
}
.ym_icon_link_teal span {
    color: var(--color-teal);
}
.ym_icon_link_pink span {
    color: var(--color-pink);
}
.ym_icon_link_blue span {
    color: var(--color-blue);
}
.ym_icon_link_green span {
    color: var(--color-green);
}
.ym_icon_link_teal a:hover h3 {
    color: var(--color-teal);
}
.ym_icon_link_blue a:hover h3 {
    color: var(--color-blue);
}
.ym_icon_link_pink a:hover h3 {
    color: var(--color-pink);
}
.ym_icon_link_green a:hover h3 {
    color: var(--color-green);
}

/*CONTENT & COLLAGE*/

.ym_collage {
    position: relative;
}
.ym_collage_images {
    position: relative;
    width: 100%;
    height: 650px;
}
.ym_collage_images::before {
    content: "";
    background: var(--color-bluegrey);
    border-radius: 10px;
    width: 55%;
    height: 60%;
    position: absolute;
    top: 15%;
    right: 10%;
}
.ym_collage_b .ym_collage_images {
    height: 500px;
}
.ym_collage_b .ym_collage_images::before {
    content: none;
}
.ym_collage_image {
    position: absolute;
    border-radius: 10px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
#ym_collage_image_1 {
    width: 80%;
    height: 57%;
    top: 0;
    left: -10px;
}
#ym_collage_image_2 {
    width: 25%;
    height: 18%;
    top: 59%;
    left: 28%;
}
#ym_collage_image_3 {
    width: 45%;
    height: 35%;
    bottom: 0;
    right: 0;
}
.ym_collage_b #ym_collage_image_1 {
    width: 45%;
    height: 45%;
    left: -5%;
    bottom: 0;
    top: auto;
    right: auto;
    z-index: 1;
}
.ym_collage_b #ym_collage_image_2 {
    width: 60%;
    height: 65%;
    top: 10%;
    left: 13%;
}
.ym_collage_b #ym_collage_image_3 {
    width: 25%;
    height: 25%;
    bottom: 25%;
    right: 0;
    z-index: 1;
}
.ym_collage_b .ym_collage_bg {
    width: calc(45% + 20px);
    height: calc(45% + 20px);
    background: white;
    position: absolute;
    left: calc(-5% - 10px);
    bottom: -10px;
    border-radius: 10px;
    display: block;
    z-index: 0;
}
.ym_collage_b .offset-md-6 #ym_collage_image_1 {
    width: 25%;
    height: 25%;
    left: 0;
    bottom: 35%;
    top: auto;
    right: auto;
}
.ym_collage_b .offset-md-6 #ym_collage_image_2 {
    width: 60%;
    height: 65%;
    top: 0;
    left: 27%;
}
.ym_collage_b .offset-md-6 #ym_collage_image_3 {
    width: 45%;
    height: 45%;
    bottom: 0;
    right: -5%;
    z-index: 1;
}
.ym_collage_b .offset-md-6 .ym_collage_bg {
    width: calc(45% + 20px);
    height: calc(45% + 20px);
    background: white;
    position: absolute;
    left: auto;
    right: calc(-5% - 10px);
    bottom: -10px;
    border-radius: 10px;
    display: block;
    z-index: 0;
}
.ym_collage_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.ym_collage_content .container,
.ym_collage_content .row {
    height: 100%;
}
.ym_collage_content_text {
    display: flex;
    height: 100%;
    align-items: center;
}
.ym_collage_content_indent {
    padding-left: 12.5%;
}
.offset-md-5 .ym_collage_content_indent {
    padding-left: 0;
}
.ym_collage_content_padded {
    padding-right: 20%;
}
.offset-md-5 .ym_collage_content_padded {
    padding-right: 0;
    padding-left: 20%;
}
.ym_collage_content_text h5 {
    color: var(--color-pink);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
}
.ym_collage_content_text h2,
.ym_content h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-navy);
    font-size: 44px;
    margin: 0 0 2rem;
}
.ym_collage_content_text p {
    font-size: 16px;
    line-height: 1.75;
}
.ym_collage_content_text .ym_button {
    margin: 2rem 0 0;
}

/*CONTENT & STATISTICS*/

.ym_content_angled {
    padding: 5rem 0;
    position: relative;
    background: var(--color-blue);
}
.ym_content_angled::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 30px solid var(--color-teal);
    border-right: 100vw solid transparent;
    position: absolute;
    top: 0;
    left: 0;
}
.ym_content_angled::after {
    content: "";
    width: 0;
    height: 0;
    border-bottom: 30px solid var(--color-aqua);
    border-left: 100vw solid transparent;
    position: absolute;
    bottom: 0;
    right: 0;
}
.ym_content_angled h1,
.ym_content_angled h2,
.ym_content_angled h3,
.ym_content_angled h4,
.ym_content_angled h5,
.ym_content_angled h6,
.ym_content_angled ul,
.ym_content_angled ol,
.ym_content_angled li,
.ym_content_angled p {
    color: white;
}
.ym_content_middle_image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.ym_content_flex {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.ym_content_angled .ym_content_flex h5 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
}
.ym_content_angled .ym_content_flex h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 48px;
    margin: 0 0 2rem;
}
.ym_content_angled .ym_content_flex p {
    padding-left: 10%;
    padding-right: 1rem;
}
.ym_stat {
    padding: 0.5rem 0;
}
.ym_stat h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 36px;
}
.ym_stat p {
    font-size: 14px;
}

/*SPOTLIGHTS*/

.ym_spotlight_slider {
    margin: 0 -1rem 0 !important;
}
.ym_spotlight_slider .slick-dots {
    position: relative;
    text-align: left;
    bottom: auto;
    padding: 3rem 1rem 0;
}
.ym_spotlight_slider .slick-dots li button:before {
    color: var(--color-teal);
}
.ym_spotlight_slider .slick-dots li::before {
    content: none;
}
.ym_spotlight_slider .slick-arrow,
.ym_logo_slider .slick-arrow {
    width: 55px;
    height: 55px;
    background-color: var(--color-teal);
    border-radius: 50%;
}
.ym_spotlight_slider .slick-arrow:hover,
.ym_logo_slider .slick-arrow:hover {
    background-color: var(--color-blue);
}
.ym_spotlight_slider .slick-arrow::before,
.ym_logo_slider .slick-arrow::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-image: url(public/img/arrow.svg);
    background-size: 40% auto;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 1;
}
.ym_spotlight_slider .slick-prev,
.ym_logo_slider .slick-prev {
    left: -4rem;
    -webkit-transform: scaleX(-1) translate(0, -50%);
    transform: scaleX(-1) translate(0, -50%);
}
.ym_spotlight_slider .slick-next,
.ym_logo_slider .slick-next {
    right: -4rem;
}
.ym_spotlight_slide {
    padding: 3rem 1rem 1rem;
}
.ym_profile {
    background: white;
    box-shadow: 0px 4px 12px rgba(3, 35, 67, 0.15);
    border-radius: 10px;
    padding: 3rem;
}
.ym_profile_image {
    width: 100%;
    height: calc(100% + 3rem);
    margin: -6rem 0 0;
    border-radius: 10px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.ym_profile_quote {
    padding: 0 0 0 2rem;
}
.ym_profile_quote h5 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-pink);
}
.ym_profile_quote h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.75;
}
.ym_profile_quote p {
    margin: 2rem 0 0;
}
.ym_profile_excerpt {
    padding: 0 2rem;
    display: flex;
    align-items: center;
    height: 100%;
}
.ym_profile_excerpt p {
    font-size: 16px;
    line-height: 1.75;
}
.ym_profile_excerpt a {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    color: var(--color-teal);
}
.ym_profile_excerpt a:hover {
    text-decoration: underline;
}
.ym_spotlight_button {
    margin: -2rem 0 0;
}
.ym_spotlight_block {
    box-shadow: 0px 2px 18px rgba(5, 30, 55, 0.19);
    border-radius: 10px;
    overflow: hidden;
    margin: 2rem 0 0;
}
.ym_spotlight_block a {
    display: block;
    height: 100%;
}
.ym_spotlight_block a:hover .ym_link::after {
    margin: -4px 0 0 1.5rem;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}
.ym_spotlight_block .row {
    margin: 0;
}
.ym_spotlight_block .ym_spotlight_block_col {
    padding: 0;
}
.ym_spotlight_block_image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.ym_spotlight_block_text {
    padding: 3rem;
    background: white;
    position: relative;
    height: 100%;
}
.ym_spotlight_block_text h5 {
    font-weight: 400;
    font-size: 14px;
    font-family: var(--font-secondary);
    text-transform: uppercase;
}
.ym_spotlight_block_text h3 {
    font-weight: 700;
    font-size: 18px;
    font-family: var(--font-secondary);
}
.ym_spotlight_block_text p {
    font-weight: 400;
    font-size: 14px;
    font-family: var(--font-secondary);
}
.ym_spotlight_blocks .col-lg-6 {
    margin: 2rem 0 0;
}
.ym_spotlight_blocks .col-lg-6 .ym_spotlight_block {
    height: 100%;
    margin: 0;
}
.ym_spotlight_blocks .col-lg-6 .ym_spotlight_block .row {
    height: 100%;
}
.ym_spotlight_blocks .col-lg-6 .ym_spotlight_block .ym_link {
    position: absolute;
    bottom: 2.5rem;
    left: 3rem;
}
.ym_spotlight_blocks .col-lg-6 .ym_spotlight_block_text {
    padding: 3rem 3rem 4rem;
}

/*LOGOS*/

.ym_logo_slide {
    margin: 0 1rem;
}
.ym_logo {
    width: 100%;
    padding-bottom: 40%;
    position: relative;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.ym_logo a{
    display:block;
    width:100%;
    height:100%;
    position: absolute;
    top:0;
    left:0;
}
.ym_logo_slider .slick-arrow {
    width: 35px;
    height: 35px;
}
.ym_logo_blocks .row {
    margin: 0 -0.5rem;
}
.ym_logo_blocks .col-md-3,
.ym_logo_blocks .col-md-4 {
    padding: 0 0.5rem;
    margin: 0.5rem 0;
}
.ym_logo_block {
    background: white;
    box-shadow: 0px 4px 24px rgba(3, 42, 81, 0.24);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
}
.ym_logo_blocks .col-md-4 .ym_logo_block {
    padding: 4rem 1.5rem;
}
.ym_logo_block_link,
.ym_logo_blocks .col-md-4 .ym_logo_block.ym_logo_block_link {
    padding: 0;
}
.ym_logo_block a {
    padding: 2rem 1.5rem;
    display: block;
}
.ym_logo_blocks .col-md-4 .ym_logo_block a {
    padding: 4rem 1.5rem;
}
.ym_logo_block_logo {
    width: 100%;
    padding-bottom: 50%;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.ym_logo_blocks .col-md-4 .ym_logo_block_logo {
    width: 70%;
    padding-bottom: 40%;
    margin: 0 auto;
}
.ym_logo_block h4 {
    color: var(--color-navy);
    font-size: 22px;
    font-family: var(--font-primary);
    margin: 1rem 0 0;
}
.ym_logo_block h4.ym_nomargin {
    margin: 0;
}
.ym_logo_block a:hover h4 {
    color: var(--color-darkblue);
}

/*TITLE BAR*/

.ym_title_bar {
    background-color: var(--color-bluegrey);
    border-bottom-left-radius: 70px;
    position: relative;
}
.ym_title_bar h1 {
    padding: 3.5rem 0;
    font-size: 58px;
    margin: 0;
    color: var(--color-navy);
    font-family: var(--font-primary);
    font-weight: 700;
    width: 72%;
}
.ym_title_bar_blocks {
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
    height: 100%;
}
.ym_title_bar_block {
    float: left;
    width: 33.33%;
    height: 100%;
}
.ym_title_bar_block_blue {
    background: var(--color-blue);
}
.ym_title_bar_block_darkblue {
    background: var(--color-darkblue);
}
.ym_title_bar_block_teal {
    background: var(--color-teal);
}
.ym_title_bar_block_pink {
    background: var(--color-pink);
}
.ym_title_bar_block_green {
    background: var(--color-green);
}
.ym_title_bar_block_aqua {
    background: var(--color-aqua);
}
.ym_title_bar_block_bluegrey {
    background: var(--color-bluegrey);
}
.ym_title_bar_block_navy {
    background: var(--color-navy);
}
.ym_title_bar_block_lightblue {
    background: var(--color-lightblue);
}
.ym_title_bar_image {
    position: relative;
    padding: 2rem 0;
}
.ym_title_bar_image::before {
    content: "";
    width: 100%;
    height: 75%;
    background: var(--color-bluegrey);
    position: absolute;
    top: 0;
    left: 0;
}
.ym_title_bar_image.ym_title_bar_image_blue::before {
    background: var(--color-blue);
}
.ym_title_bar_image .ym_title_bar_blocks {
    height: 75%;
    z-index: 0;
}
.ym_title_image {
    width: 100%;
    padding-bottom: 100%;
    border-radius: 10px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    position: relative;
}
.ym_title_bar_content {
    position: absolute;
    top: 20%;
    -webkit-transform: translate(0, -20%);
    transform: translate(0, -20%);
}
.ym_title_bar_content h1 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 58px;
    margin: 0 0 2rem;
}
.ym_title_bar_content p {
    font-size: 18px;
}
.ym_title_bar_image.ym_title_bar_image_blue .ym_title_bar_content h1,
.ym_title_bar_image.ym_title_bar_image_blue .ym_title_bar_content p {
    color: white;
}
.ym_title_bar_image.ym_title_bar_image_blue .ym_title_bar_content p b {
    display: block;
    font-size: 24px;
    font-family: var(--font-primary);
    margin: 0 0 0.75rem;
}

/*NEWS/POSTS*/

.ym_content_spotlights_news::before {
    content: "";
    width: 1px;
    height: calc(100% - 10rem);
    background: rgba(1, 50, 99, 0.4);
    position: absolute;
    left: 57.5%;
    -webkit-transform: translate(-57.5%, 0);
    transform: translate(-57.5%, 0);
    bottom: 5rem;
}
.ym_content_spotlights_news::after {
    content: "";
    height: 4rem;
    display: block;
}
.ym_content_spotlights_news .ym_button {
    position: absolute;
    bottom: -4rem;
}
.ym_text_post {
    margin: 0 0 3rem;
}
.ym_text_post h5,
.ym_image_post h5,
.ym_news_post h5 {
    font-weight: 400;
    font-size: 14px;
    font-family: var(--font-secondary);
    text-transform: uppercase;
}
.ym_text_post h3,
.ym_news_post h3 {
    font-weight: 700;
    font-size: 18px;
    font-family: var(--font-secondary);
}
.ym_text_post p,
.ym_image_post p,
.ym_news_post p {
    font-weight: 400;
    font-size: 14px;
    font-family: var(--font-secondary);
}
.ym_image_posts {
    background: var(--color-bluegrey);
    padding: 1rem;
}
.ym_posts .row,
.ym_image_posts .row {
    margin: 0 -0.5rem;
}
.ym_posts .col-md-4,
.ym_image_posts .col-md-4 {
    padding: 0 0.5rem;
    margin: 0.5rem 0;
}
.ym_image_post {
    background: white;
    box-shadow: 0px 4px 18px rgba(6, 38, 69, 0.08);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    position: relative;
}
.ym_image_post a {
    display: block;
    padding: 1.5rem 1.5rem 5rem;
}
.ym_image_post h3 {
    font-weight: 700;
    font-size: 24px;
    font-family: var(--font-primary);
}
.ym_image_post_image {
    width: 100%;
    padding-bottom: 60%;
    position: relative;
    border-radius: 10px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.ym_image_post span.ym_button {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: transparent;
    border: 2px solid var(--color-teal);
    color: var(--color-teal);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.ym_image_post span.ym_button::after {
    background-image: url(public/img/arrow-teal.svg);
}
.ym_image_post a:hover span.ym_button {
    background: var(--color-teal);
    color: white;
}
.ym_image_post a:hover span.ym_button::after {
    background-image: url(public/img/arrow.svg);
}
.ym_news_posts .col-lg-4 {
    margin: 1rem 0;
}
.ym_news_post {
    background: white;
    box-shadow: 0px 2px 18px rgba(3, 17, 30, 0.11);
    border-radius: 10px;
    height: 100%;
}
.ym_news_post a {
    display: block;
    padding: 2rem;
}
.ym_news_post_image {
    width: 100%;
    padding-bottom: 60%;
    border-radius: 10px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 0 0 1.5rem;
}
.ym_news_post a:hover .ym_link::after {
    margin: -4px 0 0 1.5rem;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

/*VISUAL CHECKLIST*/

.ym_visual_checklist {
    padding: 5rem;
    border-radius: 10px;
}
.ym_visual_checklist_items {
    display: flex;
    flex-wrap: wrap;
    margin: 2rem 0 0;
    position: relative;
}
.ym_visual_checklist_item {
    flex: 1;
    padding-right: 6%;
}
.ym_checklist_circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: black;
    position: relative;
    background-size: 50%;
    background-position: center center;
    background-repeat: no-repeat;
}
.ym_checklist_circle svg {
    position: absolute;
    top: 40px;
    left: 40px;
}
.ym_checklist_circle line {
    stroke-width: 2px;
    stroke-dasharray: 6px;
}
.ym_checklist_circle_blue {
    background-color: var(--color-blue);
}
.ym_checklist_circle_blue line {
    stroke: var(--color-blue);
}
.ym_checklist_circle_darkblue {
    background-color: var(--color-darkblue);
}
.ym_checklist_circle_darkblue line {
    stroke: var(--color-darkblue);
}
.ym_checklist_circle_teal {
    background-color: var(--color-teal);
}
.ym_checklist_circle_teal line {
    stroke: var(--color-teal);
}
.ym_checklist_circle_pink {
    background-color: var(--color-pink);
}
.ym_checklist_circle_pink line {
    stroke: var(--color-pink);
}
.ym_checklist_circle_green {
    background-color: var(--color-green);
}
.ym_checklist_circle_green line {
    stroke: var(--color-green);
}
.ym_checklist_circle_aqua {
    background-color: var(--color-aqua);
}
.ym_checklist_circle_aqua line {
    stroke: var(--color-aqua);
}
.ym_checklist_circle_navy {
    background-color: var(--color-navy);
}
.ym_checklist_circle_navy line {
    stroke: var(--color-navy);
}
.ym_visual_checklist_items .ym_visual_checklist_item:last-of-type svg {
    display: none;
}
.ym_checklist_circle img {
    width: 28px;
    position: absolute;
    bottom: 0;
    right: -14px;
}
.ym_visual_checklist_item h3 {
    font-size: 24px;
    font-family: var(--font-primary);
    margin: 1.5rem 0 1rem;
}

/*CTA BLOCK*/

.ym_cta_block {
    background: var(--color-medblue);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.ym_cta_block .row {
    margin: 0;
}
.ym_cta_block .ym_cta_block_col {
    padding: 0;
}
.ym_cta_block_image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.ym_cta_block_content {
    padding: 5rem;
    color: white;
}
.ym_cta_block_content h1,
.ym_cta_block_content h2,
.ym_cta_block_content h3,
.ym_cta_block_content h4,
.ym_cta_block_content h5,
.ym_cta_block_content h6,
.ym_cta_block_content p,
.ym_cta_block_content ul,
.ym_cta_block_content ol,
.ym_cta_block_content li {
    color: white;
}
.ym_cta_block_links {
    background: var(--color-teal);
    padding: 3rem 5rem;
}
.ym_cta_block_links .ym_link {
    color: white;
    padding: 1rem 0;
}
.ym_cta_block_links .ym_link:hover {
    color: white;
}
.ym_cta_block_links .ym_link:not(:first-of-type)::before {
    content: "";
    width: 1px;
    height: 58px;
    background: white;
    opacity: 0.5;
    margin: 0 3rem;
    display: inline-block;
    vertical-align: middle;
}
.ym_cta_block_links .ym_link::after {
    background-image: url(public/img/arrow.svg);
}

/*PHOTO COLLAGE*/

.ym_image_collage .row {
    margin: 0 -0.5rem;
}
.ym_image_collage .ym_collage_col {
    padding: 0 0.5rem;
}
.ym_image_collage_image {
    width: 100%;
    padding-bottom: 60%;
    border-radius: 10px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}
.ym_image_collage .ym_collage_col:nth-of-type(1) .ym_image_collage_image {
    height: 100%;
    padding-bottom: 0;
}
.ym_image_collage .ym_collage_col:nth-of-type(2) .ym_image_collage_image:first-of-type {
    margin: 0 0 1rem;
}
.ym_image_collage .ym_collage_col:nth-of-type(3) .ym_image_collage_image {
    height: 100%;
    padding-bottom: 0;
}

/*TEXT LINK BLOCKS*/

.ym_link_blocks .row {
    margin: 0 -0.5rem;
}
.ym_link_blocks .col-xl-3 {
    margin: 1rem 0;
    padding: 0 0.5rem;
}
.ym_link_block {
    background: white;
    border: 2px solid var(--color-blue);
    border-radius: 10px;
    position: relative;
    height: 100%;
}
.ym_link_block a {
    display: block;
    padding: 2.5rem 2rem 5rem;
}
.ym_link_block h4 {
    font-size: 18px;
    font-weight: 700;
}
.ym_link_block span.ym_link {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
}
.ym_link_block a:hover span.ym_link::after {
    margin: -4px 0 0 1.5rem;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}
.ym_link_block_blue {
    border-color: var(--color-blue);
}
.ym_link_block_darkblue {
    border-color: var(--color-darkblue);
}
.ym_link_block_teal {
    border-color: var(--color-teal);
}
.ym_link_block_pink {
    border-color: var(--color-pink);
}
.ym_link_block_green {
    border-color: var(--color-green);
}
.ym_link_block_aqua {
    border-color: var(--color-aqua);
}
.ym_link_block_navy {
    border-color: var(--color-navy);
}

/*RESOURCES & EVENTS*/

.ym_resources_events_content {
    border-top: 1px solid rgba(1, 50, 99, 0.2);
}
.ym_resources_events_content::before {
    content: "";
    width: 35%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--color-bluegrey);
}
.ym_resources_events_content h4 {
    font-family: var(--font-primary);
    font-size: 24px;
    line-height: 1.35;
}
.ym_resource_list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    font-weight: 700;
    font-size: 18px;
}
.ym_resource_list li {
    display: block;
    position: relative;
}
.ym_resource_list li a {
    display: block;
    color: var(--color-teal);
    padding: 1rem 0;
}
.ym_resource_list li a::after {
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image: url(public/img/arrow-teal.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 1.25rem;
}
.ym_resource_list li a:hover::after {
    right: -1rem;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}
.ym_event_blocks .col-md-6 {
    margin: 2rem 0 0;
}
.ym_event_block {
    background: white;
    box-shadow: 0px 4px 8px 2px rgba(2, 24, 46, 0.15);
    border-radius: 10px;
    padding: 2rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}
.ym_event_block .ym_button {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    border-radius: 0;
    text-transform: none;
    font-family: var(--font-secondary);
}
.ym_event_block .ym_button::after {
    content: none;
}
.ym_event_block p {
    font-size: 14px;
}
.ym_event_block span {
    color: var(--color-pink);
    font-size: 14p;
    font-weight: 300;
    margin: 2rem 0 0;
    display: inline-block;
}
.ym_event_block span b {
    font-weight: 700;
}

/*RESEARCH*/

.ym_title_section p {
    padding: 0 10%;
}
.ym_research_blocks .row {
    margin: 0 -0.5rem;
}
.ym_research_blocks .col-lg-6 {
    margin: 1rem 0 0;
    padding: 0 0.5rem;
}
.ym_research_blocks_full {
    background: var(--color-bluegrey);
    padding: 4rem 0;
    margin: 3rem 0 0;
}
.ym_research_blocks_full .col-lg-6 {
    margin: 0.5rem 0;
}
.ym_research_block {
    background: white;
    border: 2px solid var(--color-blue);
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}
.ym_research_block_blue {
    border-color: var(--color-blue);
}
.ym_research_block_darkblue {
    border-color: var(--color-darkblue);
}
.ym_research_block_teal {
    border-color: var(--color-teal);
}
.ym_research_block_pink {
    border-color: var(--color-pink);
}
.ym_research_block_green {
    border-color: var(--color-green);
}
.ym_research_block_aqua {
    border-color: var(--color-aqua);
}
.ym_research_block_navy {
    border-color: var(--color-navy);
}
.ym_research_block_title {
    background: var(--color-blue);
    padding: 0.5rem 1.5rem;
    height: 85px;
    display: flex;
    align-items: center;
}
.ym_research_block_blue .ym_research_block_title {
    background: var(--color-blue);
}
.ym_research_block_darkblue .ym_research_block_title {
    background: var(--color-darkblue);
}
.ym_research_block_teal .ym_research_block_title {
    background: var(--color-teal);
}
.ym_research_block_pink .ym_research_block_title {
    background: var(--color-pink);
}
.ym_research_block_green .ym_research_block_title {
    background: var(--color-green);
}
.ym_research_block_aqua .ym_research_block_title {
    background: var(--color-aqua);
}
.ym_research_block_navy .ym_research_block_title {
    background: var(--color-navy);
}
.ym_research_block_title h4 {
    color: white;
    font-family: var(--font-primary);
    font-size: 24px;
}
.ym_research_block_content {
    padding: 1.5rem;
}
.ym_research_blocks_full .ym_research_block_content {
    padding: 3rem 2rem;
    height: 100%;
}
.ym_research_block_image {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.ym_research_blocks_full .ym_research_block_image {
    background-size: 75%;
}
.ym_research_block a {
    display: block;
    height: 100%;
}
.ym_research_block a:hover .ym_link::after {
    margin: -4px 0 0 1.5rem;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}
.ym_research_blocks_full .ym_research_block .row {
    margin: 0;
    height: 100%;
}
.ym_research_blocks_full .ym_research_block .col-sm-4,
.ym_research_blocks_full .ym_research_block .col-sm-5,
.ym_research_blocks_full .ym_research_block .col-sm-6,
.ym_research_blocks_full .ym_research_block .col-sm-7,
.ym_research_blocks_full .ym_research_block .col-sm-8 {
    padding: 0;
}
.ym_research_blocks_full .ym_research_block a:hover .ym_research_block_content {
    background: var(--color-blue);
}
.ym_research_blocks_full .ym_research_block a:hover .ym_research_block_content h5,
.ym_research_blocks_full .ym_research_block a:hover .ym_research_block_content p,
.ym_research_blocks_full .ym_research_block a:hover .ym_research_block_content .ym_link,
.ym_research_blocks_full .ym_research_block a:hover .ym_research_block_content .ym_link:hover {
    color: white;
}
.ym_research_blocks_full .ym_research_block a:hover .ym_research_block_content .ym_link::after {
    background-image: url(public/img/arrow.svg);
}

/*CONTENT & IMAGE*/

.ym_content_image {
    width: 100%;
    padding-bottom: 80%;
    position: relative;
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.ym_content_image img {
    border-radius: 10px;
}
.ym_content_image_75 {
    background-size: 75%;
    padding-bottom: 0;
    text-align: center;
}
.ym_content_image_75 img {
    width: 75%;
    height: auto;
    border-radius: 10px;
    margin: 0 auto;
}
.ym_content_image_50 {
    background-size: 50%;
    padding-bottom: 0;
    text-align: center;
}
.ym_content_image_50 img {
    width: 50%;
    height: auto;
    border-radius: 10px;
    margin: 0 auto;
}
.ym_content_image_25 {
    background-size: 25%;
    padding-bottom: 0;
    text-align: center;
}
.ym_content_image_25 img {
    width: 25%;
    height: auto;
    border-radius: 10px;
    margin: 0 auto;
}
.col-md-12 .ym_content_image_d {
    padding-bottom: 0;
}

.ym_content_video {
    width: 100%;
    padding-bottom: 56.25%;
    position: relative;
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.ym_content_video iframe,
.ym_content_video video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.ym_content_image_tall {
    width: 95%;
    padding-bottom: 115%;
    position: relative;
    border-radius: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.order-md-2 .ym_content_image_tall {
    float: right;
}
.ym_content_image_stat {
    position: absolute;
    bottom: 3rem;
    left: -2rem;
    width: 65%;
    padding: 1rem 2rem;
    color: white;
    border-radius: 10px;
    z-index: 1;
}
.ym_content_image_stat::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 1rem solid red;
    border-left: 1.5rem solid transparent;
    position: absolute;
    left: 0.5rem;
    bottom: -1rem;
    z-index: 0;
    -webkit-filter: brightness(85%);
    filter: brightness(85%);
}
.order-md-2 .ym_content_image_stat {
    left: auto;
    right: -2rem;
}
.order-md-2 .ym_content_image_stat::before {
    border-right: 1.5rem solid transparent;
    border-left: none;
    left: auto;
    right: 0.5rem;
}
.ym_content_image_stat h3 {
    font-size: 36px;
    font-weight: 700;
    font-family: var(--font-primary);
    color: white;
}
.ym_content_image_stat p {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    color: white;
}
.ym_content_image_stat_blue {
    background: var(--color-blue);
}
.ym_content_image_stat_blue::before {
    border-color: var(--color-blue);
}
.ym_content_image_stat_darkblue {
    background: var(--color-darkblue);
}
.ym_content_image_stat_darkblue::before {
    border-top-color: var(--color-darkblue);
}
.ym_content_image_stat_teal {
    background: var(--color-teal);
}
.ym_content_image_stat_teal::before {
    border-top-color: var(--color-teal);
}
.ym_content_image_stat_pink {
    background: var(--color-pink);
}
.ym_content_image_stat_pink::before {
    border-top-color: var(--color-pink);
}
.ym_content_image_stat_green {
    background: var(--color-green);
}
.ym_content_image_stat_green::before {
    border-top-color: var(--color-green);
}
.ym_content_image_stat_aqua {
    background: var(--color-aqua);
}
.ym_content_image_stat_aqua::before {
    border-top-color: var(--color-aqua);
}
.ym_content_image_stat_navy {
    background: var(--color-navy);
}
.ym_content_image_stat_navy::before {
    border-top-color: var(--color-navy);
}
.ym_content_image_text h5 {
    color: var(--color-pink);
}

/*COLOR LINK BLOCKS*/

.ym_color_block_row {
    border-radius: 10px;
    overflow: hidden;
    margin: 2rem 0 0;
}
.ym_color_block_row .row {
    margin: 0;
}
.ym_color_block_row .col-lg-4,
.ym_color_block_row .col-lg-3 {
    padding: 0;
}
.ym_color_block_column {
    height: 100%;
}
.ym_color_block_column_blue {
    background: var(--color-blue);
}
.ym_color_block_column_darkblue {
    background: var(--color-darkblue);
}
.ym_color_block_column_teal {
    background: var(--color-teal);
}
.ym_color_block_column_pink {
    background: var(--color-pink);
}
.ym_color_block_column_green {
    background: var(--color-green);
}
.ym_color_block_column_aqua {
    background: var(--color-aqua);
}
.ym_color_block_column_navy {
    background: var(--color-navy);
}
.ym_color_block_column_lightblue {
    background: var(--color-lightblue);
}
.ym_color_block_column a {
    padding: 2rem;
    color: white;
    display: block;
}
.ym_color_block_column h5,
.ym_color_block_column p,
.ym_color_block_column .ym_link,
.ym_color_block_column .ym_link:hover {
    color: white;
}
.ym_color_block_column h5 {
    height: 45px;
}
.ym_color_block_column p {
    font-size: 14px;
}
.ym_color_block_column .ym_link::after {
    background-image: url(public/img/arrow.svg);
}
.ym_color_block_image {
    width: 100%;
    padding-bottom: 70%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 2rem 0 0;
}
.ym_color_block_column a:hover .ym_link::after {
    margin: -4px 0 0 1.5rem;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

/*TESTIMONIALS*/
.ym_testimonial_slider .slick-list {
    padding: 1rem 20%;
}
.ym_testimonial_slider .slick-arrow{
    width:40px;
    height:40px;
    background:var(--color-teal);
    border-radius:50%;
    z-index:999;
}
.ym_testimonial_slider .slick-arrow::before{
    color:white;
    font-size:20px;
}
.ym_testimonial_slider .slick-next{
    right:20%;
}
.ym_testimonial_slider .slick-prev{
    left:20%;
}
.ym_testimonial_slide {
    margin: 1rem;
}
.ym_testimonial {
    background: white;
    padding: 5rem 5rem 3rem;
    text-align: center;
    box-shadow: 0px 4px 18px rgba(5, 32, 60, 0.19);
    border-radius: 10px;
    border-top: 10px solid var(--color-blue);
    position: relative;
}
.ym_testimonial::before {
    content: "\f10d";
    font: var(--fa-font-solid);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-pink);
    position: absolute;
    top: -30px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    line-height: 50px;
    vertical-align: middle;
    text-align: center;
}
.ym_testimonial p {
    font-size: 18px;
    font-weight: 400;
}
.ym_testimonial h4 {
    margin: 3rem 0 0;
    color: var(--color-blue);
    font-size: 18px;
    font-weight: 600;
}
.ym_testimonial h5 {
    margin: 0;
    color: var(--color-darkblue);
    font-weight: 600;
    font-size: 14px;
}
.ym_testimonial_slider .slick-dots {
    position: relative;
    bottom: auto;
}
.ym_testimonial_slider .slick-dots li.slick-active button:before {
    color: var(--color-teal);
}
.ym_testimonial_slider .slick-dots li button:before {
    color: var(--color-darkblue);
}

/*TIMELINE*/
.ym_timeline {
    margin: 0;
}
.ym_timeline_slide {
    padding: 1rem 0 0;
}
.ym_timeline_entry {
    color: white;
    overflow: visible;
    background: var(--color-blue);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    height: 455px;
}
.ym_timeline_entry .row,
.ym_timeline_entry .col-xl-7 {
    height: 100%;
}
.ym_timeline_year {
    font-family: var(--font-primary);
    font-size: 90px;
    margin: -2.75rem 0 0;
    color: var(--color-aqua);
    font-weight: 700;
    display: block;
}
.ym_timeline_entry h3 {
    color: white;
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 3rem;
}
.ym_timeline_entry p {
    color: white;
    font-size: 18px;
}
.ym_timeline_image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-top-right-radius: 10px;
}
.ym_timeline_dates {
    background: var(--color-blue);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    position: relative;
}
.ym_timeline_dates::before {
    content: "";
    width: 100%;
    height: 1px;
    background: white;
    display: block;
    position: absolute;
    top: 55px;
}
.ym_timeline_date_slider {
    padding: 3rem 0;
}
.ym_timeline_slider_arrows {
    text-align: right;
    padding: 28px 0;
}
.ym_timeline_slider_arrows .slick-arrow {
    width: 55px;
    height: 55px;
    background-color: var(--color-teal);
    border-radius: 50%;
    position: relative;
    -webkit-transform: none;
    transform: none;
    top: auto;
    left: auto;
    right: auto;
    margin: 0 0 0 1rem;
    display: inline-block;
    vertical-align: middle;
}
.ym_timeline_slider_arrows .slick-arrow:hover {
    background-color: var(--color-darkblue);
}
.ym_timeline_slider_arrows .slick-arrow::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-image: url(public/img/arrow.svg);
    background-size: 40% auto;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 1;
}
.ym_timeline_slider_arrows .slick-prev {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.ym_timeline_slider_arrows .slick-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.ym_timeline_slider_arrows .slick-disabled:hover {
    background-color: var(--color-teal);
}
.ym_timeline_date_slide h5 {
    color: white;
    font-weight: 400;
    font-size: 18px;
}
.ym_timeline_date_slide.slick-current h5 {
    font-weight: 700;
    color: var(--color-aqua);
    font-size: 20px;
}
.ym_timeline_date_slide::before {
    content: "";
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
    display: block;
    margin: 5px 0 1.39rem;
}
.ym_timeline_date_slide.slick-current::before {
    background: var(--color-aqua);
    width: 15px;
    height: 15px;
    margin: 0 0 1rem;
}

/*NUMBER BLOCKS*/

.ym_number_blocks .col-lg-4 {
    margin: 2rem 0 0;
}
.ym_number_block {
    border: 2px solid var(--color-blue);
    border-radius: 10px;
    background: white;
    padding: 2rem;
    height: 100%;
}
.ym_number_block .ym_num {
    color: white;
    background: var(--color-teal);
    font-weight: 700;
    font-size: 14px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    vertical-align: middle;
    text-align: center;
    border-radius: 50%;
    display: block;
    margin: 0 0 1.5rem;
}
.ym_number_block h5 {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    color: var(--color-medblue);
}

/*ACCORDIONS*/

.ym_accordion {
    text-align: left;
    margin: 0;
}
.ym_accordion_section {
    position: relative;
    border-bottom: 1px solid var(--color-aqua);
    margin: 0;
}
.ym_accordion h3 {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 18px;
    padding-right: 3rem;
}
.ym_accordion_section.opened h3 {
    font-weight: 700;
}
.ym_accordion .ym_accordion_section:last-of-type {
    margin-bottom: 0;
}
.ym_accordion_q {
    position: relative;
    cursor: pointer;
    padding: 2rem 0;
}
.ym_accordion_q h5 {
    text-align: left;
    font-weight: 400;
    font-size: 18px;
}
.ym_accordion_section::after {
    content: "\f107";
    font: var(--fa-font-solid);
    position: absolute;
    right: 0;
    top: 1.75rem;
    pointer-events: none;
    color: var(--color-teal);
    width: 22px;
    height: 22px;
    line-height: 22px;
    vertical-align: middle;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--color-teal);
    font-size: 12px;
}
.ym_accordion_section.opened::after {
    content: "\f106";
    color: white;
    background: var(--color-teal);
}
.ym_accordion_a {
    display: none;
    padding: 0 0 2rem;
}
.ym_accordion_a p:last-child {
    margin: 0;
}

/*STAFF*/

.ym_staff .row {
    margin: 0 -0.75rem;
}
.ym_staff .col-lg-2 {
    padding: 0 0.75rem;
    margin: 1rem 0 2rem;
}
.ym_staff_member {
    position: relative;
    padding: 0 0 2rem;
    height: 100%;
}
.ym_staff_member.centered {
    padding: 0;
}
.ym_staff_member h5 {
    font-weight: 700;
    font-size: 18px;
    color: var(--color-darkblue);
}
.ym_staff_member a {
    display: block;
    width: 100%;
    height: 100%;
}
.ym_staff_member a:hover h5 {
    color: var(--color-pink);
}
.ym_staff_member p {
    font-size: 16px;
    line-height: 1.25;
}
.ym_staff_member.centered p {
    padding: 0 0.5rem;
}
.ym_staff_member p.school {
    font-size: 13px;
    color: var(--color-medblue);
    font-weight: 400;
    margin: 0.5rem 0 0;
    display: none;
}
.ym_staff_member.centered p.school {
    display: block;
    padding: 0;
}
.ym_staff_member .ym_link {
    margin: 1rem 0 0;
    display: block;
    position: absolute;
    bottom: 0;
}
.ym_staff_member .ym_link::after {
    content: none;
}
.ym_staff_image {
    width: 100%;
    padding-bottom: 100%;
    filter: drop-shadow(0px 4px 18px rgba(4, 30, 56, 0.1));
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0 0 1rem;
}
.ym_school_select {
    text-align: right;
    padding: 0.5rem 0;
}
.ym_school_select h5,
.ym_school_select .ym_select {
    display: inline-block;
}
.ym_school_select h5 {
    font-weight: 600;
    font-size: 14px;
    margin: 0 1rem 0 0;
}
.ym_school_select .ym_select {
    max-width: 300px;
    position: relative;
    cursor: pointer;
}
.ym_school_select .ym_select::after {
    content: "\f0d7";
    font: var(--fa-font-solid);
    position: absolute;
    right: 0;
    top: 0;
    padding: 0.75rem 0.5rem;
    color: var(--color-aqua);
    font-size: 12px;
    pointer-events: none;
}
.ym_school_select .ym_select select {
    width: 100%;
    -webkit-appearance: none;
    padding: 0.5rem;
    border-radius: 5px;
    border: 1px solid var(--color-aqua);
    cursor: pointer;
    font-size: 14px;
}
.ym_staff_categories {
    border-bottom: 1px solid var(--color-aqua);
    margin: 0 0 4rem;
}
.ym_staff_categories ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
    width: 100%;
    font-weight: 600;
    font-size: 18px;
}
.ym_staff_categories ul li {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    color: var(--color-darkblue);
}
.ym_staff_categories ul li::before {
    content: none;
}
.ym_staff_categories ul li:hover,
.ym_staff_categories ul li.active {
    color: var(--color-teal);
}
.ym_staff_modal .modal-dialog {
    max-width: 1200px;
}
.ym_staff_modal .modal-content {
    padding: 5rem;
}
.ym_staff_modal .ym_modal_close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1.5rem;
    color: var(--color-blue);
    background: transparent;
    border: none;
}
.ym_staff_modal p i {
    font-size: 12px;
}
.ym_staff_modal .ym_general_content h6 {
    margin: 0;
}
.ym_staff_modal .ym_general_content h6:not(:first-of-type) {
    margin: 0.25rem 0 1rem;
}

/*UPDATES*/

.ym_updates_spotlight {
    background: white;
    box-shadow: 0px 2px 18px rgba(3, 17, 30, 0.11);
    border-radius: 10px;
    margin: 0 0 2rem;
}
.ym_updates_spotlight a {
    padding: 2rem;
    display: block;
}
.ym_updates_spotlight_image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 10px;
}
.ym_updates_spotlight_featured .ym_updates_spotlight_image {
    padding-bottom: 60%;
    margin: 0 0 2rem;
}
.ym_updates_spotlight h5 {
    color: var(--color-pink);
    font-size: 18px;
    text-transform: uppercase;
}
.ym_updates_spotlight h3 {
    font-family: var(--font-primary);
    font-size: 28px;
}

.ym_media {
    background: var(--color-teal);
    padding: 3rem 2rem;
    color: white;
    border-radius: 10px;
}
.ym_media h5,
.ym_media p,
.ym_media .ym_link,
.ym_media .ym_link:hover {
    color: white;
}
.ym_media p {
    margin: 0 0 2rem;
}
.ym_media .ym_link::after {
    background-image: url(public/img/arrow.svg);
}

/*FORMS*/

.gform_wrapper
    input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not(
        [type="file"]
    ),
.gform_wrapper textarea {
    border: 1px solid var(--color-medblue);
    border-radius: 5px;
    padding: 0.5rem !important;
}
.gform_wrapper form li,
.gform_wrapper li {
    padding-left: 0 !important;
}
.gform_wrapper .gform_footer input.button,
.gform_wrapper .gform_footer input[type="submit"]{
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--color-teal);
    color: white;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 10px;
    position: relative;
    border: none;
}
.gform_wrapper .gform_footer input.button:hover,
.gform_wrapper .gform_footer input[type="submit"]:hover {
    background: var(--color-blue);
    color: white;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

/*TITLE STYLES*/

.ym_content h2.ym_title_navy{
    color: var(--color-navy);
}
.ym_content h2.ym_title_blue{
    color: var(--color-blue);
}
.ym_content h2.ym_title_darkblue{
    color: var(--color-darkblue);
}
.ym_content h2.ym_title_pink{
    color: var(--color-pink);
}
.ym_content h2.ym_title_teal{
    color: var(--color-teal);
}
.ym_content h2.ym_title_green{
    color: var(--color-green);
}

/* INSTAGRAM */

.instagram-gallery__actions{
	display:none !important;
}
.swiper-button-next, .swiper-button-prev{
	color:var(--color-teal);
}
