/*   
Theme Name: Forward Financing
Theme URI: https://www.forwardfinancing.com/
Description: Custom WordPress theme for Forward Financing
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: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

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

:root {
    --font-heading: museo-sans-rounded, sans-serif;
    --font-body: museo-sans, sans-serif;
    --color-dark: #113841;
    --color-teal: #4ed8ae;
    --color-darkteal: #265963;
    --color-purple: #9b73f5;
    --color-yellow: #EFE01C;
    --color-blue:#39CAEB;
    --color-orange:#F89B17;
    --color-grey: #979797;
    --color-lightgrey: #EAEDEE;
    --color-text: #000000;
    --color-bg: #e5e5e5;
}

/*Required Styles*/

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: var(--font-body);
}
a:hover,
a:active,
a:visited,
a:focus {
    text-decoration: none;
}
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
}
h1 {
    font-size: 55px;
    color: white;
    font-weight: 400;
}
h2 {
    font-size: 32px;
    color: var(--color-darkteal);
    font-weight: 400;
    line-height: 1.4;
}
h3 {
    font-size: 28px;
    color: var(--color-darkteal);
    font-weight: 400;
}
h4 {
    font-size: 24px;
    color: var(--color-darkteal);
    font-weight: 400;
}
h5 {
    font-size: 18px;
    color: var(--color-darkteal);
    font-weight: 400;
}
h6 {
    font-size: 16px;
    color: var(--color-darkteal);
    font-weight: 400;
}
p,
ul {
    font-size: 18px;
    color: var(--color-text);
    font-weight: 300;
    line-height: 1.4;
}
p a {
    color: var(--color-purple);
    font-weight: 600;
    text-decoration: underline;
}
p a:hover {
    color: var(--color-purple) !important;
    text-decoration: none;
}
.centered {
    text-align: center;
}
.right {
    text-align: right;
}
.left {
    text-align: left;
}
.ym_mobile{
    display:none;
}

/*BUTTONS & LINKS*/

.ym_button {
    display: inline-block;
    padding: 0.6rem 1.5rem 0.5rem;
    color: var(--color-dark);
    background: var(--color-teal);
    text-transform: uppercase;
    border: 2px solid var(--color-teal);
    border-radius: 25px;
    font-family: var(--font-heading);
    font-weight: 600;
}
.ym_button:hover {
    color: var(--color-teal);
    background: transparent;
}
.ym_button_outline {
    border-color: white;
    background: transparent;
    color: white;
}
.ym_button_outline:hover {
    color: var(--color-dark);
    border-color: var(--color-teal);
    background: var(--color-teal);
}
.ym_link {
    display: inline-block;
    position: relative;
    padding-right: 1.5rem;
    color: blue;
    transition-duration: 0.5s;
}
.ym_link::after {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 0;
}
.ym_link:hover {
    color: blue;
    padding-right: 2rem;
}
.ym_content_links {
    margin: 2rem 0 0;
}
.ym_content_links a:not(:last-of-type) {
    margin-right: 1rem;
}

/*ALERT BAR*/

.ym_alert_bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    z-index: 1000;
    text-align: center;
        background: var(--color-teal);
    color: var(--color-darkteal);
    padding: 0rem 1rem;
    display: block;
    height: 40px;
    vertical-align: middle;
}
.ym_alert_bar a {
    margin-top: 7px;
    display: inline-block;
    margin-left: 20px;
    color: var(--color-dark);
    text-decoration: none;
    }
/*.ym_alert_bar a {
    display: block;
    background: var(--color-teal);
    color: var(--color-darkteal);
    padding: 0.5rem 0;
}*/
/*.ym_alert_bar a:hover {
    background: var(--color-darkteal);
    color: white;
}*/
.ym_alert_bar a:hover p {
    color: white;
}
.ym_alert_bar p {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-darkteal);
}
.ym_alert_toggle {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 14px;
    color: var(--color-darkteal);
    padding: 0.6rem 1rem;
    z-index: 1000;
    cursor: pointer;
}
.ym_alert_bar:hover .ym_alert_toggle,
.ym_alert_toggle:hover {
    color: white;
}
body.logged-in .ym_alert_bar {
    top: 32px;
}

/*HEADER*/

main {
    /*set this to the height of the header*/
    margin-top: 108px;
}
.ym_header {
    width: 100%;
    background: var(--color-dark);
    position: fixed;
    z-index: 1000;
}
.ym_header .container {
    max-width: 80%;
}
.ym_header,
.ym_header_logo {
    height: 80px;
}
.ym_header_logo a {
    display: block;
    height: 100%;
    width: 100%;
}
.ym_header_logo img {
    height: 100%;
    padding: 1rem 0;
}
.ym_header_right {
    text-align: right;
}
.ym_header_nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
    text-align: center;
    width: 100%;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
}
.ym_header_nav li {
    display: inline-block;
    position: relative;
}
.ym_header_nav li a {
    display: block;
    padding: 1.75rem 1rem;
    color: white;
}
.ym_header_nav li a:hover,
.ym_header_nav li:hover > a,
.ym_header_nav li.current-menu-item a {
    color: white;
}
.ym_header_nav li a:hover::after,
.ym_header_nav li:hover > a::after,
.ym_header_nav li.current-menu-item a::after {
    content: "";
    width: calc(100% - 1rem);
    height: 6px;
    border-radius: 3px;
    background: var(--color-teal);
    position: absolute;
    bottom: 1.25rem;
    left: 0.5rem;
}
.ym_header_nav li .sub-menu {
    display: none;
    margin: 0;
    padding: 0 0 10px;
    position: absolute;
    background: var(--color-dark);
    border: 2px solid var(--color-darkteal);
    border-top: none;
    width: 250px;
    font-size: 16px;
    text-align: left;
    border-radius: 0 0 10px 10px;
    margin-left: -2px;
}
.ym_header_nav li .sub-menu li {
    display: block;
}
.ym_header_nav li .sub-menu li a {
    padding: 0.5rem 1rem;
}
.ym_header_nav li .sub-menu li a:hover {
    background: var(--color-teal);
    color: var(--color-dark);
}
.ym_header_nav li .sub-menu li a::after {
    content: none;
}
.ym_header_nav li:hover .sub-menu {
    display: block;
}
.ym_submenu_toggle {
    display: none;
}
.ym_header_button {
    display: flex;
    align-items: center;
    justify-content: right;
    height: 100%;
}
.ym_header_mobile {
    display: none;
}

/*FOOTER*/

.ym_footer_main {
    padding: 4rem 0;
    background: var(--color-bg);
}
.ym_footer h4 {
    line-height: 1.4;
    margin: 0 0 1rem;
}
.ym_footer_nav {
    list-style: none;
    margin: 0;
    padding: 0;
    -moz-columns: 2;
    columns: 2;
    font-size: 24px;
    color: var(--color-darkteal);
    font-weight: 400;
}
.ym_footer_nav li {
    page-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
    margin: 0 0 1rem;
    line-height: 1.4;
}
.ym_footer_nav li a {
    color: var(--color-darkteal);
}
.ym_footer_nav li a:hover {
    color: var(--color-dark);
}
.ym_footer_nav li ul {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 18px;
}
.ym_footer_nav li ul li {
    margin: 0.5rem 0 0;
}
.ym_footer p {
    color: var(--color-darkteal);
    font-size: 18px;
    margin: 0 0 0.5rem;
}
.ym_footer_social {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    font-size: 24px;
}
.ym_footer_social li {
    display: inline-block;
    margin-right: 0.5rem;
}
.ym_footer_social li a {
    color: var(--color-darkteal);
}
.ym_footer_social li a:hover {
    color: var(--color-teal);
}
.ym_footer_links li a:hover {
    color: var(--color-darkteal);
}
.ym_footer_main h4 a {
	color:var(--color-darkteal);
}
.ym_footer_main h4 a:hover {
    color: var(--color-dark);
}
.ym_footer_links {
    list-style: none;
    margin: 0;
    padding: 0 0 0 1rem;
    font-size: 18px;
    font-weight: 300;
}
.ym_footer_links li {
    margin: 0 0 1rem;
}
.ym_footer_links li a {
    color: var(--color-grey);
}
.ym_footer_logo {
    display: block;
    margin: 0 0 1rem;
    text-align: left;
}
.ym_footer_logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
}
.ym_footer_bottom {
    background: var(--color-dark);
    padding: 1rem 0;
}
.ym_footer_bottom_light{
    background:var(--color-darkteal);
}
.ym_footer_bottom p {
    font-size: 12px;
    color: white;
    margin: 0.25rem 0;
}

/*HERO*/

.ym_hero {
    width: 100%;
    height: 610px;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}
/*.ym_hero::before {
    content: "";
    width: 400px;
    height: 200px;
    position: absolute;
    bottom: 2rem;
    left: -10%;
    background-image: url(public/img/hero-arrow-large.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
}*/
.ym_hero::after {
    content: "";
    width: 55%;
    height: 100%;
    position: absolute;
    top:0;
    right: 0;
    background-image: url(public/img/pattern-faded.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    z-index: 0;
}
.ym_hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.ym_hero .row,
.ym_hero_overlay .container,
.ym_hero_overlay .row {
    height: 100%;
}
.ym_hero_content {
    padding-right:10%;
    margin-top:-3rem;
}
.ym_hero_content .ym_button {
    margin: 2rem 0 0;
}
.ym_hero_content h1 {
    margin: 0;
}
.ym_hero_content p {
    color: white;
    margin: 1rem 0 0;
    line-height:1.5;
    font-size:20px;
    font-weight:300;
}
.ym_hero_shape,
.ym_hero_shape svg {
    height: 110%;
    z-index: 1;
    position: relative;
}

/*TITLE BAR*/

.ym_title_bar {
    width: 100%;
    height: 300px;
    background: var(--color-dark);
    position: relative;
    display: flex;
    align-items: center;
}
.ym_title_bar::before {
    content: "";
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(public/img/title-pattern.png);
    background-size: cover;
    background-position: top left;
    background-repeat: no-repeat;
}
.ym_title_bar h1,
.ym_title_bar span,
.ym_title_bar p {
    color: white;
}
.ym_title_bar h1,
.ym_title_bar span {
    line-height: 1.1;
}
.ym_title_bar span {
    font-size: 55px;
    font-weight: 400;
    text-transform: capitalize;
}
.ym_title_bar_content {
    width: 100%;
}
.ym_title_bar .ym_button {
    margin: 1rem 0 0;
}

/*CONTENT*/

.ym_content {
    padding: 5rem 0;
    position: relative;
}
.ym_content_grey {
    background: var(--color-bg);
}
.ym_content_top_large {
    padding-top: 10rem;
}
.ym_content_bottom_large {
    padding-bottom: 10rem;
}
.ym_content_top_small {
    padding-top: 2.5rem;
}
.ym_content_bottom_small {
    padding-bottom: 2.5rem;
}
.ym_content_top_none {
    padding-top: 0;
}
.ym_content_bottom_none {
    padding-bottom: 0;
}
.ym_content h2.caps{
    font-weight:700;
    font-size:21px;
    color:var(--color-dark);
    text-transform: uppercase;
    margin:0 0 1rem;
}
.ym_flex {
    display: flex;
    height: 100%;
    align-items: center;
}
.ym_flex_full{
    height:calc(100vh - 78px);
}
.logged-in .ym_flex_full{
    height:calc(100vh - 110px);
}
.ym_general_content h1,
.ym_general_content h2,
.ym_general_content h3,
.ym_general_content h4,
.ym_general_content h5 {
    margin: 0 0 1.5rem;
}
.ym_general_content h1 {
    color: var(--color-darkteal);
    font-size: 48px;
}
.ym_general_content p {
    line-height: 1.5;
}
.ym_general_content p:last-of-type {
    margin: 0;
}
.ym_general_content a:not(.ym_button) {
    color: var(--color-purple);
    font-weight: 600;
    text-decoration: underline;
}
.ym_general_content a:not(.ym_button):hover {
    color: var(--color-purple);
    text-decoration: none;
}
.ym_general_content blockquote,
.ym_general_content blockquote p {
    color: var(--color-darkteal);
    font-weight: 600;
    font-style: italic;
    font-size: 25px;
    margin: 0 0 2rem;
}
.ym_general_content h6 {
    font-size: 12px;
    font-weight: 300;
    color: var(--color-text);
}
.ym_general_content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 1.75;
}
.ym_general_content ul li:not(.gform_wrapper li) {
    padding: 0 0 0 1.5rem;
    position: relative;
}
.ym_general_content ul li::before {
    content: "\f061";
    font: var(--fa-font-solid);
    color: var(--color-teal);
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 0.4rem;
}
.ym_general_content .ym_button {
    margin: 2rem 0 0;
}
.ym_general_content .ym_content_button {
    margin: 0 0 2rem;
}
.ym_general_content table {
    border: 1px solid lightgrey;
    font-weight: 300;
    margin: 1.5rem 0;
}
.ym_general_content table td {
    padding: 1rem;
    border: 1px solid lightgrey;
}

/*PATTERN*/

.ym_pattern_left {
    background-image: url(public/img/pattern-left.svg);
    background-size: contain;
    background-position: left bottom;
    background-repeat: no-repeat;
    width: 50%;
    height: 400px;
    bottom: 1rem;
    left: 0;
    position: absolute;
}
.ym_pattern_right {
    background-image: url(public/img/pattern-right.svg);
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
    width: 50%;
    height: 400px;
    top: 1rem;
    right: 0;
    position: absolute;
}

/*IMAGES*/

.ym_content_image {
    width: 100%;
    padding-bottom: 80%;
    position: relative;
    overflow: hidden;
    min-height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 25px;
}
.ym_content_image.contain {
    background-size: contain;
}
.ym_content_image a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.ym_content_image_caption {
    background: var(--color-darkteal);
    color: white;
    padding: 0.75rem;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    position: absolute;
    bottom: 0.75rem;
    right: 0;
}
.ym_content_image_caption h5,
.ym_content_image_caption p {
    color: white;
    margin: 0;
}
.ym_content_image_caption p {
    font-weight: 300;
    font-size: 12px;
}

/*VIDEO*/

.ym_video {
    width: 100%;
    padding-bottom: 56.25%;
    position: relative;
    overflow: hidden;
}
.ym_video iframe,
.ym_video video {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.ym_video_modal .modal-dialog {
    max-width: 75%;
}
.ym_video_modal .close {
    position: absolute;
    top: 0;
    right: 0;
    color: white;
    padding: 2rem;
    opacity: 1;
}
.ym_video_play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    width: 100px;
    height: 70px;
    line-height: 70px;
    background: rgba(38, 89, 99, 0.5);
    border: 2px solid white;
    border-radius: 10px;
    text-align: center;
}
.ym_content_image a:hover .ym_video_play {
    background: var(--color-teal);
}
.wp-video {
    border-radius: 25px;
}

/*ICON BLOCKS*/

.ym_icon_blocks .col-xl-4,
.ym_icon_blocks .col-xl-3,
.ym_icon_blocks .col-md-6 {
    margin: 3rem 0 0;
}
.ym_icon_blocks {
    margin-top: -3rem;
}
.ym_icon_block {
    text-align: center;
}
.ym_icon_block.ym_icon_block_left {
    text-align: left;
}
.ym_icon_block .ym_icon {
    width: 70px;
    padding-bottom: 70px;
    position: relative;
    overflow: hidden;
    margin: 0 auto 1rem;
}
.ym_icon_block .ym_icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}
.ym_icon_block p {
    margin: 0;
}
.ym_icon_block a:hover h4 {
    color: var(--color-purple);
}

/*TESTIMONIALS*/

.ym_testimonials::before {
    content: "";
    width: 200px;
    height: 280px;
    background-image: url(public/img/corner-shape-01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    position: absolute;
    top: 0;
    right: 0;
}
.ym_testimonials::after {
    content: "";
    width: 200px;
    height: 280px;
    background-image: url(public/img/corner-shape-02.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    position: absolute;
    bottom: 0;
    left: 0;
}
.ym_testimonials .ym_general_content blockquote {
    margin: 0 0 2rem;
}
.ym_testimonials .ym_general_content p,
.ym_testimonials .ym_general_content span {
    display: block;
    font-weight: 300;
    font-size: 16px;
}
.ym_testimonial_slider {
    margin-bottom: 0 !important;
}
.ym_testimonial_slider_controls {
    position: relative;
    text-align: center;
    margin: 2rem auto 0;
    display: inline-block;
    min-width: 200px;
    width: auto;
    height: 30px;
}
.ym_testimonial_slider_controls .slick-arrow::before {
    color: var(--color-grey);
    font-size: 18px;
}
.ym_testimonial_slider_controls .slick-dots {
    bottom: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}
.ym_testimonial_slider_controls .slick-dots li,
.ym_testimonial_slider_controls .slick-dots li button {
    width: 20px;
    height: 20px;
}
.ym_testimonial_slider_controls .slick-dots li button::before {
    color: var(--color-darkteal);
    font-weight: 900;
}
.ym_testimonial_slider_controls .slick-dots li.slick-active button::before {
    color: var(--color-teal);
}

.ym_testimonial_static_slider{
    padding:0 3rem;
}
.ym_testimonial_static_slider .slick-list,
.ym_testimonial_static_slider .slick-track,
.ym_testimonial_static_slider .slick-slide,
.ym_testimonial_static_slider .ym_testimonial_slide_inner{
    height:100%;
}
.ym_testimonial_static_slider .slick-arrow::before{
    font-size: 26px;
    color:var(--color-dark);
}
.ym_testimonial_static_slider .ym_testimonial_slide_inner{
    background:var(--color-darkteal);
    border-radius: 10px;
}
.ym_testimonial_static_slider .ym_testimonial_slide_inner .row{
    margin:0;
    height:100%;
}
.ym_testimonial_static_slider .ym_testimonial_slide_inner .ym_col{
    padding:0;
    height:100%;
}
.ym_testimonial_static_slider .ym_testimonial_slide_inner blockquote,
.ym_testimonial_static_slider .ym_testimonial_slide_inner span{
    color:white;
    display:block;
}
.ym_testimonial_static_slider .ym_testimonial_slide_inner span{
    font-weight:300;
}
.ym_testimonial_static_slider .ym_testimonial_slide_inner span:first-of-type{
    font-weight:700;
}
.ym_testimonial_static_slider .ym_testimonial_slide_inner blockquote{
    font-size:20px;
    font-weight:700;
    font-style: normal;
}
.ym_testimonial_static_slider .ym_testimonial_slide_inner .ym_general_content{
    padding:2rem;
}
.ym_testimonial_static_slider .ym_testimonial_slide_inner .ym_content_image{
    border-radius:10px;
}

/* photo slider */
.ym_photo_slider_new{
    padding:0 3rem;
}
.ym_photo_slider_new .slick-list,
.ym_photo_slider_new .slick-track,
.ym_photo_slider_new .slick-slide,
.ym_photo_slider_new .ym_testimonial_slide_inner{
    height:100%;
    margin-right: 5px;
}
.ym_photo_slider_new .slick-arrow::before{
    font-size: 26px;
    color:var(--color-dark);
}
.ym_photo_slider_new .ym_testimonial_slide_inner{
    background:var(--color-darkteal);
    border-radius: 10px;
}
.ym_photo_slider_new .ym_testimonial_slide_inner .row{
    margin:0;
    height:100%;
}
.ym_photo_slider_new .ym_testimonial_slide_inner .ym_col{
    padding:0;
    height:100%;
}
.ym_photo_slider_new .ym_testimonial_slide_inner blockquote,
.ym_photo_slider_new .ym_testimonial_slide_inner span{
    color:white;
    display:block;
}
.ym_photo_slider_new .ym_testimonial_slide_inner span{
    font-weight:300;
}
.ym_photo_slider_new .ym_testimonial_slide_inner span:first-of-type{
    font-weight:700;
}
.ym_photo_slider_new .ym_testimonial_slide_inner blockquote{
    font-size:20px;
    font-weight:700;
    font-style: normal;
}
.ym_photo_slider_new .ym_testimonial_slide_inner .ym_general_content{
    padding:2rem;
}
.ym_photo_slider_new .ym_testimonial_slide_inner .ym_content_image{
    border-radius:10px;
}


/*CTA BANNER*/

.ym_cta_banner {
    width: 100%;
    height: 480px;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}
.ym_cta_banner_mobile {
    display: none;
}
.ym_cta_banner .ym_banner_shape::before {
    content: "";
    width: 90%;
    height: 175px;
    position: absolute;
    bottom: 2rem;
    left:0;
    background-image: url(public/img/arrow-pattern-big.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
/*    transform: scaleY(-1);*/
}
.ym_cta_banner .ym_banner_shape_right::before {
    content: "";
    width: 90%;
    height: 175px;
    position: absolute;
    top: 2rem;
    right:0;
    background-image: url(public/img/arrow-pattern-big-right.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
/*    transform: scaleY(-1);*/
}
/*.ym_cta_banner_right::before {
    bottom: -2rem;
    left: -2rem;
    width: 250px;
}*/
/*.ym_cta_banner::after {
    content: "";
    width: 300px;
    height: 150px;
    position: absolute;
    top: 2rem;
    right: -5%;
    background-image: url(public/img/hero-arrow-group.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
}*/
.ym_cta_banner_right::after {
    right: 30%;
    height: 200px;
    z-index: 0;
}

.ym_cta_banner_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.ym_cta_banner .row,
.ym_cta_banner_overlay .container,
.ym_cta_banner_overlay .row {
    height: 100%;
}
.ym_cta_banner_content .ym_button {
    margin: 2rem 0 0;
}
.ym_cta_banner_content h2 {
    margin: 0;
    color: white;
    font-size:28px;
}
.ym_cta_banner_content p {
    margin: 1rem 0 0;
    color: white;
}
.ym_cta_banner_content p a {
    color: var(--color-teal);
}
.ym_banner_shape,
.ym_banner_shape svg {
    height: 492px;
    margin-top: -3px;
}
.ym_banner_shape svg,
.ym_banner_shape_right svg {
    position: absolute;
    left: 0;
}
.ym_banner_shape_right,
.ym_banner_shape_right svg {
    height: 492px;
    z-index: 1;
}
.ym_banner_shape_right svg {
    left: auto;
    right: 0;
}
.ym_testimonial_banner {
    height: 550px;
}
.ym_testimonial_banner::before,
.ym_testimonial_banner::after {
    content: none;
}
.ym_testimonial_banner .ym_banner_shape_right,
.ym_testimonial_banner .ym_banner_shape_right svg {
    height: 100%;
    min-height: 550px;
}
.ym_testimonial_banner .ym_cta_banner_content {
    padding: 3rem 0;
}
.ym_testimonial_banner h2,
.ym_testimonial_banner h3,
.ym_testimonial_banner h4,
.ym_testimonial_banner h5,
.ym_testimonial_banner h6,
.ym_testimonial_banner p,
.ym_testimonial_banner blockquote {
    color: white;
}
.ym_testimonial_banner blockquote::before {
    content: "";
    width: 50px;
    height: 50px;
    background-image: url(public/img/quote.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    left: -60px;
    top: -10px;
}
.ym_testimonial_banner blockquote,
.ym_testimonial_banner blockquote p {
    font-style: italic;
    font-size: 25px;
    font-weight: 600;
    position: relative;
}

/*ACCORDIONS*/

.ym_accordion {
    text-align: left;
    margin: 0;
}
.ym_accordion_section {
    position: relative;
    border: 1px solid #d3d3d3;
    margin: 1rem 0;
    background: white;
    border-radius: 10px;
}
.ym_accordion .ym_accordion_section:last-of-type {
    margin-bottom: 0;
}
.ym_accordion_q {
    position: relative;
    cursor: pointer;
    padding: 1.5rem 1.25rem;
}
.ym_accordion_q h5 {
    text-align: left;
    margin: 0;
    color: var(--color-dark);
    font-weight: 600;
}
.ym_accordion_section::after {
    content: "\f107";
    font: var(--fa-font-solid);
    position: absolute;
    right: 1.25rem;
    top: 1.75rem;
    pointer-events: none;
    text-align: center;
    color: var(--color-teal);
    font-size: 16px;
}
.ym_accordion_section.opened::after {
    content: "\f106";
}
.ym_accordion_a {
    display: none;
    padding: 0 1.25rem 2rem;
}
.ym_accordion_a p:last-child {
    margin: 0;
}

/*POSTS*/

.ym_posts .col-lg-4 {
    margin: 0 0 2rem;
}
.ym_post_image {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--color-darkteal);
    text-align: center;
    border-radius: 25px;
}
.ym_post_image img {
    width: 100%;
    height: 200px;
    object-fit: cover;

    transition-duration: 0.3s;
    background-color: white;
}
.ym_post_image span {
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0, -50%);
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    transition-duration: 0.5s;
    font-family: var(--font-heading);
}
.ym_post_image span.ym_post_time {
    display: inline-block;
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    background: var(--color-teal);
    width: 50px;
    height: 35px;
    padding: 0.5rem;
    transform: none;
    top: auto;
    border-radius: 10px;
}
.ym_post_image .ym_video_tag {
    display: inline-block;
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: var(--color-teal);
    height: 35px;
    padding: 0.5rem;
    transform: none;
    top: auto;
    border-radius: 10px;
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}
.ym_post_image .ym_video_tag i {
    font-size: 12px;
    margin-right: 0.25rem;
}
.ym_post:hover .ym_post_image img {
    opacity: 0.25;
}
.ym_post:hover .ym_post_image span {
    display: block;
}
.ym_post:hover .ym_post_image span.ym_post_time,
.ym_post:hover .ym_post_image .ym_video_tag {
    display: none;
}

.ym_post h4 {
    font-size: 18px;
    margin: 1rem 0 0.5rem;
}
.ym_post p {
    font-weight: 300;
    font-size: 16px;
}
.ym_post {
    height: 100%;
    position: relative;
    padding: 0 0 1rem;
}
.ym_post::after {
    content: "";
    width: 100%;
    height: 5px;
    border-radius: 3px;
    background: var(--color-teal);
    display: block;
    position: absolute;
    bottom: 0;
}
.ym_post_featured {
    margin: 0 0 2rem;
}
.ym_post_content_image {
    border-radius: 25px;
    overflow: hidden;
    margin: 1.5rem 0;
}
.ym_post_content_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*PAGINATION*/

.ym_pagination a {
    color: var(--color-purple);
    font-weight: 600;
    text-decoration: underline;
}
.ym_pagination a:hover {
    color: var(--color-purple);
    text-decoration: none;
}

/*TEAM*/

.ym_team .col-lg-4 {
    margin: 2rem 0 0;
}
.ym_team_member {
    text-align: center;
}
.ym_team_member_image {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    margin: 0 0 1rem;
    background: var(--color-darkteal);
    border: 2px solid var(--color-teal);
}
.ym_team_member_image img {
    height: 100%;
    width: auto;
    position: absolute;
    margin: auto;
    top: -9999px;
    right: -9999px;
    bottom: -9999px;
    left: -9999px;
    transition-duration: 0.3s;
}
.ym_team_member_image span {
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    transform: translate(0, -50%);
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    transition-duration: 0.5s;
    font-family: var(--font-heading);
}
.ym_team_member:hover .ym_team_member_image img {
    opacity: 0.25;
}
.ym_team_member:hover .ym_team_member_image span {
    display: block;
}
.ym_team_social {
    font-size: 30px;
    text-align: center;
}
.ym_team_social a {
    color: var(--color-darkteal);
}
.ym_team_social a:hover {
    color: var(--color-teal);
}
.ym_team_article {
    width: 100%;
    height: 100%;
    background: var(--color-darkteal);
    border-radius: 25px;
    overflow: hidden;
}
.ym_team_article a {
    display: block;
    padding: 1.5rem 1rem;
}
.ym_team_article h5 {
    color: white;
    text-transform: uppercase;
    font-style: italic;
    text-align: center;
    padding: 0 1rem;
    height: 70px;
    display:flex;
    align-items:center;
}
.ym_team_article_image {
    width: 50%;
    padding-bottom: 40%;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    border: 5px solid var(--color-teal);
    margin: 1rem auto;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.ym_team_article_content {
    display: flex;
    width: 100%;
}
.ym_team_article_attr {
    flex: 0 0 70%;
}
.ym_team_article_attr p {
    font-size: 15px;
    color: white;
    margin: 0;
}
.ym_team_article_attr p:last-of-type {
    color: var(--color-teal);
}
.ym_team_article_logo {
    height: 52px;
}
.ym_team_article_logo img {
    max-height: 100%;
    max-width: 100%;
    height: auto;
    width: auto;
}
.ym_team_article:hover {
    background: var(--color-dark);
}
.ym_team_articles {
    margin: -2rem 0 2rem;
}
.ym_team_articles .col-md-4 {
    margin: 2rem 0 0;
}

/*FORMS*/

.gform_wrapper .top_label .gfield_label {
    margin: 0 0 0.25rem;
    color: var(--color-dark) !important;
}
.gform_wrapper
    input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="image"]):not([type="file"]):not([type="button"]),
.gform_wrapper select,
.gform_wrapper textarea {
    border: 1px solid lightgrey;
    border-radius: 5px;
    padding: 0.5rem !important;
}
.gform_wrapper .ginput_container {
    margin: 0 0 1.5rem !important;
}
.gform_wrapper .gfield_required {
    color: var('red') !important;
}
.gform_required_legend {
    display: none;
}
.gform_wrapper input[type="button"],
.gform_wrapper input[type="submit"],
.gform_wrapper .button,
.gform_wrapper button {
    display: inline-block;
    padding: 0.6rem 1.5rem 0.5rem !important;
    color: var(--color-dark) !important;
    background: var(--color-teal) !important;
    text-transform: uppercase !important;
    border: 2px solid var(--color-teal) !important;
    border-radius: 25px !important;
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
}
.gform_wrapper input[type="button"]:hover,
.gform_wrapper input[type="submit"]:hover,
.gform_wrapper .button:hover,
.gform_wrapper button:hover {
    color: var(--color-teal) !important;
    background: transparent !important;
}
.gform_wrapper .gfield_radio li label {
    margin: 2px 0 -5px 4px;
}

/*BANNER IMAGE*/

.ym_banner_image {
    width: 100%;
}
.ym_banner_image img {
    width: 100%;
    height: auto;
}

/*REVIEWS*/

.ym_reviews {
    margin: -2rem 0 0;
}
.ym_reviews .col-md-6 {
    margin: 2rem 0 0;
}
.ym_review_section {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
}
.ym_review_section_logo {
    width: 100%;
    padding-bottom: 27.5%;
    overflow: hidden;
    position: relative;
}
.ym_review_section_logo a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.ym_review_section_logo img {
    max-height: 100%;
    max-width: 250px;
    width: auto;
    height: auto;
    position: absolute;
    margin: auto;
    top: -9999px;
    right: -9999px;
    bottom: -9999px;
    left: -9999px;
}
.ym_review_text {
    position: relative;
    display: flex;
    height: 100%;
    flex-direction: column;
    margin: 1rem 0 0;
    padding-bottom: 4rem;
}
.ym_review_text .ym_content_button {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 0 1rem;
}
.ym_review_text h5 {
    margin: 2rem 0 0;
}
.ym_review_text span {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 12px;
}

/*PROCESS*/

.ym_process_graphic {
    width: 100%;
    padding-bottom: 36%;
    position: relative;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(public/img/process-flow.svg);
}
.ym_process_graphic_bonus{
    background-image: url(public/img/process-flow-bonus.svg);
}
.ym_process_step {
    position: absolute;
    width: 25%;
    text-align: center;
    padding: 0 1rem;
    display: block;
    cursor: pointer;
}
.ym_process_step p {
    font-size: 16px;
}
.ym_process_step span {
    width: 50px;
    height: 50px;
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    line-height: 50px;
    display: inline-block;
    border-radius: 50%;
    margin: 0 0 0.5rem;
    transition-duration: 0.5s;
}
.ym_process_step:hover span {
    transform: scale(1.2);
}
.ym_process_step#step_1 {
    left: 16%;
    top: 11%;
}
.ym_process_step#step_2 {
    right: 13%;
    top: 11%;
}
.ym_process_step#step_3 {
    top: 66%;
    right: 14%;
}
.ym_process_step#step_4 {
    top: 66%;
    left: 38%;
}
.ym_process_step#step_5 {
    top: 66%;
    left: 15%;
}

.ym_process_graphic_bonus .ym_process_step#step_2{
    left:39%;
    right:auto;
}
.ym_process_graphic_bonus .ym_process_step#step_3{
    right: 13%;
    left:auto;
    top: 11%
}
.ym_process_graphic_bonus .ym_process_step#step_4{
    top: 66%;
    right: 14%;
    left:auto;
}
.ym_process_graphic_bonus .ym_process_step#step_5{
    top: 66%;
    left: 38%;
    right:auto;
}
.ym_process_graphic_bonus .ym_process_step#step_6{
    top: 66%;
    left: 15%;
    right:auto;
}


.ym_process_descriptions {
    margin: 4rem 0 0;
}
.ym_process_description {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 2rem 0;
}
.ym_process_image {
    flex: 0 0 25%;
    padding-bottom: 20%;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.ym_process_image span,
.ym_process_image svg {
    display: none;
}
.ym_process_content {
    padding: 1rem 0 1rem 10%;
}
.ym_process_content p:last-of-type {
    margin: 0;
}
.ym_process_description.active .ym_process_image {
    flex: 0 0 40%;
    padding-bottom: 35%;
}
.ym_process_description.active .ym_process_image span {
    display: block;
    padding: 1rem 15%;
    font-size: 30px;
    margin: 0;
    color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.ym_process_description.active .ym_process_image span.ym_title_dark {
    color: var(--color-dark);
}
.ym_process_description.active .ym_process_image svg {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.ym_process_description.active .ym_process_content h3 {
    display: none;
}

/*TECHNOLOGY*/

.ym_content_tech::before {
    content: "";
    width: 50%;
    height: 72%;
    position: absolute;
    right: 0;
    top: 68%;
    transform: translate(0, -68%);
    background-image: url(public/img/side-shape.svg);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

/*TIMELINE*/

.ym_timeline_slider_container {
    position: relative;
    cursor: url(public/img/history-cursor.png), auto;
}
.ym_timeline_slider .slick-list {
    padding: 0 !important;
}
.ym_timeline_slider .slick-dots li,
.ym_timeline_slider .slick-dots li button {
    width: 18px;
    height: 18px;
}
.ym_timeline_slider .slick-dots li.slick-active button {
    margin: 0 5px;
}
.ym_timeline_slider .slick-dots li.slick-active button:before {
    color: var(--color-teal);
    font-size: 18px;
    line-height: 18px;
}
.ym_timeline_slider .slick-dots li button::before {
    line-height: 18px;
}
.ym_timeline_slide_inner {
    width: 100%;
    padding-bottom: 45%;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.ym_timeline_slide_overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(17, 56, 65, 0.5);
}
.ym_timeline_slide_content {
    position: absolute;
    width: 33%;
    top: 0;
    left: 10%;
    color: white;
    padding: 2rem 0;
}
.ym_timeline_slide_content h2,
.ym_timeline_slide_content p {
    color: white;
}
.ym_timeline_slide_year {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 275px;
    font-weight: 900;
    font-family: var(--font-body);
}

/*IMAGE/LOGO SLIDER*/

.ym_image_slide {
    margin: 0 1rem;
}
.page-id-16 .ym_image_slide_inner {
    padding-bottom: 50%;
}
.ym_image_slide_inner {
    width: 100%;
    padding-bottom: 50%;
    position: relative;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.ym_image_slide_inner a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.ym_image_slider .slick-arrow {
    opacity: 0.25;
    height: 34px;
    z-index: 100;
}
.ym_image_slider .slick-arrow:hover {
    opacity: 0.75;
}

/*JOBS*/

.ym_content_jobs form label {
    display: block;
}
.ym_content_jobs form {
    margin: 0 0 2rem;
}
.ym_select {
    position: relative;
    display: block;
    width: 100%;
}
.ym_select::after {
    content: "\f107";
    font: var(--fa-font-solid);
    color: var(--color-teal);
    position: absolute;
    right: 0;
    top: 0;
    pointer-events: none;
    padding: 1.25rem 1rem;
}
.ym_select select {
    -webkit-appearance: none;
    width: 100%;
    height: 100%;
    padding: 1rem;
    border: 1px solid lightgrey;
    border-radius: 10px;
}
.ym_job_department {
    margin: 0 0 2rem;
}
.ym_job_listing {
    display: block;
    background: white;
    border: 1px solid lightgrey;
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    position: relative;
}
.ym_job_listing::after {
    content: "\f061";
    font: var(--fa-font-solid);
    color: var(--color-teal);
    position: absolute;
    right: 0;
    top: 0;
    pointer-events: none;
    padding: 1.25rem 1rem;
}
.ym_job_listing h5 {
    margin: 0;
    padding-right: 2rem;
}
.ym_job_listing:hover h5 {
    color: var(--color-teal);
}
.ym_job_listing p {
    margin: 0.5rem 0 0;
}

/*VIDEOS FILTERING*/

.ym_video_sidebar {
    background: #ffffff;
    position: relative;
    z-index: 1;
    transition: all 0.2s;
    padding: 0 2rem 0 0;
}
.ym_video_sidebar::after {
    content: "";
    height: 100%;
    position: absolute;
    left: -100%;
    width: 100%;
    top: 0;
    background: white;
}
.ym_video_sidebar form {
    transition: all 0.2s;
}
.ym_video_sidebar .ym_sidebar_section {
    margin: 0 0 2rem;
}
.ym_label_container {
    position: relative;
    padding-left: 30px;
}
.ym_label_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.ym_checkbox_name {
    margin: 0;
    line-height: 1.5;
}
.ym_checkbox_selected {
    font-weight: 600;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: solid #f0f0f0 1px;
}
/* On mouse-over, add a grey background color */
.ym_label_container:hover input ~ .checkmark {
    background-color: var(--color-teal);
}
/* When the checkbox is checked, add a blue background */
.ym_label_container input:checked ~ .checkmark {
    background-color: #f0f0f0;
}
.ym_label_container input:checked + .ym_label_container {
    font-weight: 500;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
/* Show the checkmark when checked */
.ym_label_container input:checked ~ .checkmark:after {
    display: block;
}
/* Style the checkmark/indicator */
.ym_label_container .checkmark:after {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--color-teal);
}
.ym_video_content .col-md-6 {
    margin: 0 0 2rem;
}
.ym_video_content .ym_post {
    padding-bottom: 4rem;
}
.ym_categories {
    position: absolute;
    bottom: 1rem;
    left: 0;
    width: 100%;
}
.ym_categories span {
    display: inline-block;
    color: var(--color-dark);
    text-transform: uppercase;
    margin: 0 1rem 0 0;
    font-weight: 600;
    font-size: 14px;
    background: transparent;
    padding: 0;
}

.ym_general_content .wp-video {
    border-radius: 25px;
    overflow: hidden;
}

video,
.ym_video {
    border-radius: 25px;
    overflow: hidden;
}
.modal-content {
    border: none;
    background-color: transparent;
}
/* Add smooth scroll */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
}




/*FEATURED CONTENT*/

.ym_featured{
    position:relative;
    padding:3rem 0;
}
.ym_featured_overlap{
    margin-top:-3rem;
    z-index:100;
    padding-top:0;
}
.ym_featured_block{
    background:var(--color-lightgrey);
    border-radius:10px;
    padding:2rem;
}
.ym_featured_block h5{
    color: var(--color-dark);
    font-size:21px;
    font-weight:700;
    text-transform:uppercase;
    margin:0 0 1rem;
}
.ym_featured_story{
    height:100%;
}
.ym_featured_story .row{
    margin:0;
    height:100%;
}
.ym_featured_story .ym_col{
    padding:0;
    height:100%;
}
.ym_featured_story a{
    display:block;
    background:white;
    border-radius:10px;
    height:100%;
}
.ym_featured_story h4{
    font-size:18px;
}
.col-md-12 .ym_featured_story h4{
    font-size:24px;
}
.ym_featured_story span{
    color:var(--color-purple);
    text-decoration: underline;
    font-weight:700;
    position:absolute;
    bottom:1rem;
}

.ym_featured_story span:hover{
    text-decoration: none;
}

.ym_featured_story_text{
    padding:1rem 1rem 2.5rem;
}
.ym_featured_story_image{
    width:100%;
    height:100%;
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius:10px;
}
.ym_featured_story_image.ym_image_contain{
    background-size:80%;
}
.col-md-6 .ym_featured_story_image.ym_image_contain{
    background-size:65%;
}


/*EOY REPORT*/

.ym_year_header{
    background:var(--color-dark);
    position:fixed;
    width:100%;
    padding:0;
    z-index:1000;
}
.ym_year_header .container{
    max-width:90%;
}
.ym_year_header .ym_header_logo,
.ym_year_header .ym_header_logo a{
    height:100%;
}
.ym_year_header .ym_header_logo a{
    display:flex;
    align-items: center;
}
.ym_year_header .ym_header_logo img{
    padding:1.25rem 0;
    max-height:80px;
}
.ym_year_header_mobile{
    display:none;
    color:white;
    font-size:18px;
    text-align:right;
}
.ym_year_header_nav{
    list-style:none;
    margin:0;
    padding:0;
    height:100%;
}
.ym_year_header_nav li{
    display:inline-block;
    max-width:calc(100% / 7.2);
    width:auto;
    height:100%;
    vertical-align: middle;
    position:relative;
}
.ym_year_header_nav li a{
    color:white;
    display:flex;
    padding:1.93rem 1rem;
    height:100%;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.ym_year_header_nav li:hover > a,
.ym_year_header_nav li a:hover{
    color:var(--color-teal);
}
.ym_year_header_subnav{
    display:none;
    position:absolute;
    background:var(--color-darkteal);
    text-align:center;
    width:auto;
    min-width:300px;
    border-radius:15px;
    list-style:none;
    margin:0;
    padding:0;
    left:50%;
    -webkit-transform:translate(-50%,0);
    transform:translate(-50%,0);
    font-size:16px;
    top:112px;
}
.ym_year_header_subnav::before{
    content:'';
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 10px solid var(--color-teal);
    position:absolute;
    top:-20px;
    left:50%;
    -webkit-transform:translate(-50%,0);
    transform:translate(-50%,0);
    pointer-events: none;
}
.ym_year_header_subnav li{
    display:block;
    width:100%;
    max-width:100%;
}
.ym_year_header_subnav li a{
    color:white;
    display:block;
    padding:1rem;
    height:auto;
}
.ym_year_header_nav li:hover > .ym_year_header_subnav{
    display:block;
}
main.ym_year{
    margin-top:112px;
}
main.ym_year .container{
    max-width:1368px;
}
.ym_year_hero{
    width:100%;
    height:calc(100vh - 112px);
    background:var(--color-dark);
    position:relative;
}
.logged-in .ym_year_hero{
    height:calc(100vh - 144px);
}
.ym_year_hero_overlay{
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
    mix-blend-mode: hard-light;
    width:100%;
    height:100%;
}
.ym_year_hero_overlay::before{
    content:'';
    width:340px;
    height:350px;
    position:absolute;
    top:-2rem;
    right:2rem;
    background-image:url(public/img/eoy/pattern-top-right.png);
    background-size:contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.ym_year_hero_overlay::after{
    content:'';
    width:340px;
    height:350px;
    position:absolute;
    bottom:2rem;
    left:2rem;
    background-image:url(public/img/eoy/pattern-bottom-left.png);
    background-size:contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.ym_year_hero_content{
    position:absolute;
    top:35%;
    left:0;
    right:0;
    width:100%;
    -webkit-transform:translate(0,-35%);
    transform:translate(0,-35%);
    text-align:center;
}
.ym_year_hero_content h1{
    font-size:97px;
    font-weight:600;
    font-family:var(--font-heading);
    color:white;
    line-height:120px;
}
.ym_year_hero_content h2{
    font-size:70px;
    font-weight:400;
    font-family:var(--font-body);
    color:white;
    line-height:90px;
}
.ym_year_hero_scroll{
    position:absolute;
    left:0;
    right:0;
    bottom:13vh;
    width:100%;
    text-align:center;
    z-index:100;
}
.ym_year_hero_scroll a{
    color:white;
    text-transform: uppercase;
    font-family:var(--font-heading);
    font-size:23px;
    font-weight:400;
}
.ym_year_hero_scroll::before{
    content:'';
    width:1px;
    height:15vh;
    background:white;
    position:absolute;
    bottom:4rem;
    left:50%;
    transform:translate(-50%,0);
    display:block;
}
.ym_year_hero_scroll:hover::before{
    height:17vh;
    transition-duration: 0.5s;
}
.ym_year_content{
    padding:4rem 0;
    position:relative;
}
.ym_year_content_grey{
    background:var(--color-lightgrey);
}
.ym_year_content_darkteal{
    background:var(--color-darkteal);
}
.ym_year_content_dark{
    background:var(--color-dark);
}
.ym_year_content_top_small{
    padding-top: 2rem;
}
.ym_year_content_top_large{
    padding-top: 6rem;
}
.ym_year_content_top_none{
    padding-top: 0;
}
.ym_year_content_bottom_small{
    padding-bottom: 2rem;
}
.ym_year_content_bottom_large{
    padding-bottom: 6rem;
}
.ym_year_content_bottom_none{
    padding-bottom: 0;
}
.ym_year_content h3{
    font-size:40px;
    margin:0;
}
.ym_year_message{
    border-radius:15px;
    background:white;
    margin-top:-5rem;
    z-index:100;
    padding:4rem 5rem 0;
    position:relative;
}
.ym_year blockquote{
    color:var(--color-dark);
    font-size:30px;
    text-align:center;
    font-family: var(--font-heading);
    line-height:1.26;
    font-weight:400;
    margin:0 0 2rem;
}
.ym_year_title{
    font-family: var(--font-heading);
    font-size:20px;
    font-weight:600;
    letter-spacing: 4px;
    color:var(--color-darkteal);
    text-transform: uppercase;
    line-height: 24px;
    max-width:300px;
}
.ym_year_title.centered{
    max-width:100%;
}
.ym_year_title::after{
    content:'';
    width:65px;
    height:3px;
    background:var(--color-teal);
    margin:2rem 0;
    display:block;
}
.ym_year_title.centered::after{
    margin:2rem auto;
}
.ym_year_message_content{
    padding: 0 10%;
    column-count: 2;
    column-gap: 10%;
}
.ym_year_message_content p{
    -webkit-column-break-inside: avoid;
    break-inside: avoid;
    font-size:18px;
    font-weight:300;
    line-height: 1.33;
    color:var(--color-dark);
    font-family: var(--font-body);
}
.ym_year_message_content img{
    width:100%;
    margin:1rem 0 0;
    border-radius:15px;
}
.ym_year_content_grey_block::before{
    content:'';
    width:100%;
    height:65%;
    background:var(--color-lightgrey);
    position:absolute;
    bottom:0;
    left:0;
    z-index:0;
}
.ym_year_block_container{
    width:90%;
    margin:0 5%;
    position: relative;
    z-index: 1;
}
.ym_year_block{
    background:var(--color-dark);
    border-radius:15px;
    overflow:hidden;
    width:100%;
}
.ym_year_block .row{
    margin:0;
}
.ym_year_block .ym_col{
    padding:0;
}
.ym_year_block .ym_year_image{
    width:100%;
    padding-bottom:70%;
    min-height:100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 15px;
}
.ym_year_block_content{
    padding:7rem 19% 7rem 15%;
    height:100%;
    display:flex;
    align-items: center;
    position:relative;
}
.ym_year_block_content::before{
    content:'';
    width:160px;
    height:167px;
    background-image:url(public/img/eoy/pattern-top-right-small.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position:absolute;
    top:1.5rem;
    right:1.5rem;
}
.ym_year_block_content h1,
.ym_year_block_content h2,
.ym_year_block_content h3,
.ym_year_block_content h4,
.ym_year_block_content h5,
.ym_year_block_content h6{
    color:var(--color-teal);
    font-size:48px;
    font-family:var(--font-heading);
    line-height:1.125;
    font-weight: 400;
    margin:0 0 1.5rem;
}
.ym_year_block_content p{
    color:white;
    font-size:18px;
    font-weight:300;
    font-family:var(--font-body);
    line-height:1.33;
}
.ym_year_block_content p b,
.ym_year_block_content p strong{
    font-weight:600;
}
.ym_year_text_content img{
    max-width: 100%;
    width:auto;
    border-radius:15px;
    margin:0 0 1.5rem;
}
.ym_year_text_content p{
    color:var(--color-dark);
    font-size:18px;
    font-weight:300;
    font-family:var(--font-body);
    line-height:1.33;
}
.ym_year_text_content hr{
    border-color:var(--color-dark);
}
.ym_year_text_content h1,
.ym_year_text_content h2,
.ym_year_text_content h3,
.ym_year_text_content h4,
.ym_year_text_content h5,
.ym_year_text_content h6{
    color:var(--color-darkteal);
    font-family:var(--font-heading);
    font-weight:400;
    line-height:1;
    margin:0 0 1.5rem;
}
.ym_year_text_content h1,
.ym_year_text_content h2{
    font-size:36px;
}
.ym_year_text_content h3{
    font-size:30px;
}
.ym_year_text_content h4{
    font-size:24px;
    line-height:1.3;
}
.ym_year_text_content h5,
.ym_year_text_content h6{
    font-size:20px;
}
.ym_year_text_content ol{
    color:var(--color-dark);
    font-size:18px;
    font-weight:400;
    font-family:var(--font-body);
    line-height:1.5;
}
.ym_year_icon_blocks .ym_col{
    margin:2rem 0 0;
}
.ym_year_icon_block{
    background:white;
    border-radius: 15px;
    padding:2rem 1rem;
    text-align: center;
    height:100%;
}
.ym_year_icon_block img{
    height:118px;
    width:auto;
    margin:0 auto;
}
.ym_year_icon_block h4{
    font-size:22px;
    margin:1rem 0;
    font-family: var(--font-heading);
}
.ym_year_icon_block p{
    font-size:16px;
    font-weight:300;
    font-family: var(--font-body);
    color:var(--color-dark);
}
.ym_year_icon_block p:last-of-type{
    font-weight:600;
    margin:0;
}
.ym_year_stats{
    margin:0;
}
.ym_year_stats .ym_col{
    margin:2rem 0 0;
}
.ym_year_stat_block{
    text-align:center;
}
.ym_year_stat_blocks .ym_year_stat_block{
    background:white;
    padding:1.5rem 2rem;
    border-radius:15px;
    height:100%;
}
.ym_year_stat_block_small{
    text-align:left;
}
.ym_year_stat_block p{
    font-family: var(--font-heading);
    font-size:22px;
    font-weight:400;
    line-height:1.15;
    margin:0 0 0.5rem;
    color:var(--color-darkteal);
}
.col-md-4 .ym_year_stat_block p{
    padding:0 20%;
}
.ym_year_stat_num{
    font-family: var(--font-heading);
    font-weight:600;
    font-size:48px;
}
.ym_year_stat_num span{
    display:inline;
    vertical-align: top;
    line-height:70px;
}
.ym_year_stat_num .ym_year_num{
    font-size:96px;
    line-height:96px;
    display:inline;
    vertical-align: top;
}
.ym_year_stat_block_wide{
    display:flex;
    text-align:left;
    justify-content: left;
    align-items:flex-end;
}
.ym_year_stat_block_wide .ym_year_stat_num{
    flex:0 0 40%;
}
.ym_state_map{
    position:relative;
    width: 100%;
    margin-left: -85px;
}
.ym_state_map svg {
    width: 100%;
    height: 100%;
    position:relative;
}
.ym_state_map path {
    stroke-width: 0.97063118000000004;
    stroke:white;
    fill: var(--color-darkteal);
}
.ym_state_map path[data-selected="true"] {
    fill:var(--color-teal);
}
.ym_state_map_number{
    position:absolute;
    z-index:100;
}
.ym_state_map_num{
    width:30px;
    height:30px;
    border-radius:50%;
    background:var(--color-dark);
    color:var(--color-teal);
    text-align:center;
    padding:4px;
    font-size:14px;
    display:block;
}
.ym_state_map_num.hidden,
.ym_state_map_num.none{
    display:none;
}

.ym_quarter_slider {
  padding:0;
  position: relative;
  width: 75%;
  margin:0 auto;
  height:45px;
}
.ym_quarter_slider::after{
  content: '';
  width:100%;
  height:4px;
  border-radius:2px;
  background:var(--color-dark);
  display:block;
  position:absolute;
  bottom:0;
  left:0;
  z-index:0;
}
.ym_quarter_slider input[type="radio"] {
  display: none;
}
.ym_quarter_slider label {
  color: var(--color-darkteal);
  float: left;
  width: 20%;
  text-align: center;
  cursor: pointer;
  transition: color .5s;
  cursor: pointer;
}
.ym_quarter_slider input:checked + label {
  color: var(--color-teal);
}
.ym_quarter_slider label:last-of-type::after {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  content: "";
  background:var(--color-teal);
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform:translate(-50%,0);
  transition: left 0.5s;
  z-index:1;
}
.ym_quarter_slider input:checked:nth-of-type(1) ~ label:last-of-type::after {
  left: 10%;
}
.ym_quarter_slider input:checked:nth-of-type(2) ~ label:last-of-type::after {
  left: 30%;
}
.ym_quarter_slider input:checked:nth-of-type(3) ~ label:last-of-type::after {
  left: 50%;
}
.ym_quarter_slider input:checked:nth-of-type(4) ~ label:last-of-type::after {
  left: 70%;
}
.ym_quarter_slider input:checked:nth-of-type(5) ~ label:last-of-type::after {
  left: 90%;
}
.ym_year_tab_block{
    background:white;
    border-radius:15px;
    overflow:hidden;
}
.ym_year_tab_block .ym_year_image{
    width:100%;
    min-height:100%;
    padding-bottom:70%;
    position:relative;
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 15px;
}
.ym_year_tab_block .nav{
    background:var(--color-darkteal);
    padding:1.5rem 1rem;
    border-radius: 15px;
    flex:0 0 22%;
}
.ym_year_tab_block .nav-pills .nav-link{
    border:none;
    color:white;
    background:transparent;
    padding: 0.5rem;
    text-align: left;
    font-size: 16px;
}
.ym_year_tab_block .nav-pills .nav-link:hover{
    color:var(--color-teal);
}
.ym_year_tab_block .nav-pills .nav-link.active{
    background:var(--color-teal);
    color:var(--color-dark);
}
.ym_year_tab_block .row{
    margin:0;
}
.ym_year_tab_block .ym_col{
    padding:0;
}
.ym_year_tab_block_content{
    display:flex;
    height:100%;
    align-items:center;
    padding:5rem 2rem;
}
.ym_year_tab_block_content h2,
.ym_year_tab_block_content h3{
    color:var(--color-darkteal);
    font-family:var(--font-heading);
    font-size:30px;
    font-weight:400;
    margin:0 0 1rem;
}
.ym_year_tab_block_content p{
    font-size:18px;
    font-weight:300;
    color:var(--color-dark);
}
.ym_year_image_slider{
    padding:0 2rem;
}
.ym_year_image_slide .ym_year_image{
    width:100%;
    padding-bottom:55%;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 15px;
}
.ym_year_image_slide .ym_year_image_contain{
    background-size:contain;
}
.ym_year_image_slide .ym_year_image_fill{
    background-size:cover;
}
.ym_year_image_slider .slick-dots{
    position:relative;
    bottom:auto;
    margin:1rem 0 0;
}
.ym_year_image_slider .slick-dots li button::before{
    content:'\f111';
    color:var(--color-darkteal);
}
.ym_year_image_slider .slick-arrow::before{
    color:var(--color-darkteal);
    font-size: 30px;
}
.ym_year_stat_columns .ym_row,
.ym_year_icon_sections .ym_row{
    margin:0 -2rem;
}
.ym_year_stat_columns .ym_col,
.ym_year_icon_sections .ym_col{
    padding:0 2rem;
}
.ym_year_icon_sections .ym_col{
    margin:0 0 2rem;
}
.ym_year_icon_text{
    display:flex;
    align-items:flex-start;
}
.ym_year_icon_text h3{
    font-size:24px;
    font-weight:400;
    font-family:var(--font-heading);
    color:var(--color-dark);
    margin:0 0 1rem;
}
.ym_year_icon_text p{
    font-size:18px;
    font-weight:300;
    font-family: var(--font-body);
}
.ym_year_icon{
    flex:0 0 70px;
    position:relative;
}
.ym_year_icon img{
    position:absolute;
    max-width:100%;
    width:auto;
    height:auto;
}
.ym_year_icon_content{
    padding-left:2rem;
}
.ym_year_quote_content .ym_row{
    margin:0;
}
.ym_year_quote_content .ym_col{
    padding:0;
}
.ym_year_quote{
    position:relative;
    padding-left:60px;
}
.ym_year_quote::before{
    content:'';
    width:50px;
    height:50px;
    background-image:url(public/img/eoy/quote.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    top:0;
    left:0;
}
.ym_year_quote h3{
    font-size:30px;
    color:#137e88;
    font-weight:600;
    font-family:var(--font-heading);
    line-height: 1.26;
}
.ym_year_quote p{
    font-weight:300;
    color:var(--font-body);
    font-size:17px;
    margin:1rem 0 0;
    color:var(--color-dark);
}
.ym_year_content_award_image{
    width:100%;
    padding-bottom:45%;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    margin:0 0 1rem;
}
.ym_year_content p.small{
    font-size:16px;
    font-weight:300;
    color:var(--color-dark);
}
.ym_year_quote_content p.small{
    color:var(--color-darkteal);
}
.ym_year_timeline{
    position:relative;
    padding: 5rem 0 3rem;
}
.ym_year_timeline::before{
    content:'';
    width:4px;
    height:100%;
    position:absolute;
    top:0;
    left:50%;
    -webkit-transform:translate(-50%,0);
    transform:translate(-50%,0);
    background:var(--color-darkteal);
}
.ym_year_timeline .ym_row{
    margin:0 -3rem;
}
.ym_year_timeline .ym_col{
    padding:0 3rem;
}
.ym_year_timeline_image,
.ym_year_timeline_content{
    margin:-3rem 0 0;
}
.ym_year_timeline_image{
    width:60%;
    padding-bottom:35%;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 15px;
}
.ym_year_timeline .right .ym_year_timeline_image,
.ym_year_timeline .right .ym_year_timeline_content{
    float:right;
}
.ym_year_timeline_content{
    width:320px;
    position: relative;
}
.ym_year_timeline_num{
    color:var(--color-teal);
    font-size:96px;
    line-height: 96px;
    font-weight:600;
    font-family: var(--font-heading);
}
.ym_year_timeline_content p{
    font-size:24px;
    color:var(--color-darkteal);
}
.ym_year_timeline .left .ym_year_timeline_image::before{
    content:'';
    width:30px;
    height:4px;
    background:var(--color-darkteal);
    position:absolute;
    left:-48px;
    top:50%;
    -webkit-transform:translate(0,-50%);
    transform:translate(0,-50%);
}
.ym_year_timeline .right .ym_year_timeline_image::before{
    content:'';
    width:30px;
    height:4px;
    background:var(--color-darkteal);
    position:absolute;
    right:-48px;
    top:50%;
    -webkit-transform:translate(0,-50%);
    transform:translate(0,-50%);
}
.ym_year_timeline .left .ym_year_timeline_content::before{
    content:'';
    width:30px;
    height:4px;
    background:var(--color-darkteal);
    position:absolute;
    left:-48px;
    top:48px;
}
.ym_year_timeline .right .ym_year_timeline_content::before{
    content:'';
    width:30px;
    height:4px;
    background:var(--color-darkteal);
    position:absolute;
    right:-48px;
    top:48px;
}
.ym_timeline_year_end{
    display:flex;
    width:85%;
    margin:3rem auto 0;
    align-items: center;
}
.ym_timeline_year_end p{
    margin:0 1rem;
    color:var(--color-darkteal);
    font-size:24px;
}
.ym_year_carousel p{
    font-size:30px;
    font-weight:400;
    font-family: var(--font-heading);
}
.ym_year_content_darkteal .ym_year_carousel p{
    color:white;
}
.ym_year_image_multi_slider{
    padding:0 2rem;
    margin:2rem 0 0;
}
.ym_year_image_multi_slider .ym_year_image_slide{
    margin:0 1rem;
}
.ym_year_image_multi_slider .ym_year_image_slide .ym_year_image{
    padding-bottom:65%;
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
    position:relative;
    border-radius:15px;
}
.ym_year_image_slider .slick-arrow::before{
    color:var(--color-darkteal);
    font-size: 30px;
}
.ym_year_content_darkteal .ym_year_image_multi_slider .slick-arrow::before{
    color:white;
}
.ym_year_testimonial{
    text-align:center;
}
.ym_year_testimonial_image{
    width:125px;
    height:125px;
    border-radius:8px;
    background-size:cover;
    background-position: center center;
    background-repeat: no-repeat;
    position:relative;
    margin:0 auto 1rem;
}
.ym_year_testimonial p{
    font-size:22px;
    font-family: var(--font-body);
    color:var(--color-dark);
    line-height: 1.5;
    font-weight:300;
}
.ym_year_testimonial p:last-of-type{
    font-weight:600;
    font-size:20px;
}
.ym_year_review_block{
    background:var(--color-darkteal);
    border-radius:15px;
    width:100%;
    overflow:hidden;
}
.ym_year_review_block_image{
    width:100%;
    height:100%;
    background-color:var(--color-dark);
    border-radius:15px;
    background-size:70%;
    background-position: center center;
    background-repeat: no-repeat;
}
.ym_year_review_block_stats{
    display:flex;
}
.ym_year_review_block_stat{
    flex:1;
    padding:2rem;
}
.ym_year_review_block_stat .ym_year_stat_num{
    color:var(--color-teal);
}
.ym_year_review_block_stat p{
    color:white;
    margin:0;
}
.ym_year_awards{
    display:flex;
    margin:0 -1.5rem;
    width:calc(100% + 3rem);
}
.ym_year_award{
    flex:1;
    padding:0 1.5rem;
    text-align:center;
}
.ym_year_award_image{
    width:100%;
    padding-bottom:100%;
    background-size:70%;
    background-position: center center;
    background-repeat: no-repeat;
    position:relative;
}
.ym_year_award .ym_year_award_line{
    width:118px;
    height:3px;
    background-color:var(--color-teal);
    margin:1.5rem auto;
    display:block;
}
.ym_year_award p{
    font-size:16px;
    font-weight:300;
    color:var(--color-dark);
}
.ym_year_cta::before{
    content:'';
    width:247px;
    height:254px;
    position:absolute;
    top:2rem;
    right:2rem;
    background-image:url(public/img/eoy/pattern-top-right-med.png);
    background-size:contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.ym_year_cta::after{
    content:'';
    width:247px;
    height:254px;
    position:absolute;
    bottom:2rem;
    left:2rem;
    background-image:url(public/img/eoy/pattern-bottom-left-med.png);
    background-size:contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.ym_year_cta .ym_year_text_content img.aligncenter{
    margin:0 auto 1.5rem;
}
.ym_year_cta .ym_year_text_content h2,
.ym_year_cta .ym_year_text_content h3,
.ym_year_cta .ym_year_text_content h4,
.ym_year_cta .ym_year_text_content h5,
.ym_year_cta .ym_year_text_content h6{
    color:var(--color-teal);
    font-family: var(--font-heading);
}
.ym_year_cta .ym_year_text_content p,
.ym_year_cta .ym_year_text_content ul,
.ym_year_cta .ym_year_text_content li,
.ym_year_cta .ym_year_text_content ol{
    color:white;
    font-size:24px;
    font-weight:300;
}

/*MODAL*/

.ym_modal .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem;
}
.ym_modal .modal-dialog {
    max-width: 1140px;
}
.ym_modal .modal-content {
    padding: 2rem;
    background:white;
}
.ym_modal .ym_general_content{
    padding:4rem;
}


/*CUSTOM STYLES*/

.yellow_text{
    color:var(--color-yellow);
}
.blue_text{
    color:var(--color-blue);
}
.purple_text{
    color:var(--color-purple);
}
.teal_text{
    color:var(--color-teal);
}
.orange_text{
    color:var(--color-orange);
}











