/*   
Theme Name: Van Wagner
Theme URI: https://www.vanwagner.com
Description: Custom WordPress theme for Van Wagner
Author: Yelling Mule
Author URI: https://www.yellingmule.com
Version: 1.0
*/

.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;
	color: black;
	line-height: 17px;
	margin: 0;
	padding: 0.5rem 0;
}

:root {
	/* Define Colors as colors */
	--green: #7dc95e;
	--red: #ca2e55;
	--blue: #1b4388;
	--lightBlue: #84aaeb;
	--black: #000;
	--darkBlue: #08101d;
	--darkBlueAlt: #0e1a2e;
	--grey: #393e46;
	--lightGrey: #eee;
	--white: #fff;
	--blueAlt: #18284d;

	/* Define Color intentions */
	--primary: var(--blue);
	--danger: var(--red);
	--background: var(--darkBlue);
	--backgroundAlt: var(--blue);
	--textColor: var(--white);
	--buttonTextColor: var(--white);
	--lineColor: var(--white);
	--cardBg: var(--white);
	--headerBackground: var(--darkBlue);
	--footerTextColor: var(--white);
	--footerBackground: var(--black);
	--eyebrowColor: var(--lightBlue);
	--mapBlue: var(--blue);

	/* Styles */
	--line: solid 1px var(--lineColor);
	--borderRadius: 10px;

	/* Typeography */
	--headingFont: "Poppins", sans-serif;
	--bodyFont: "Inter", sans-serif;
	--baseFontSize: 100%;
	--h1: 64px;
	--h2: 54px;
	--h3: 2em;
	--h4: 1.3125em;
	--h5: 1.125em;
	--smallText: 0.875em;
	--bodyTextSize: 1.125em;
	--bodyTextSmall: 1em;

	/* Elevation */
	--level-1: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
	--level-2: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	--level-3: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
	--level-4: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
	--level-5: 0 25px 50px -12px rgb(0 0 0 / 0.25);

	/* Layouts */
	--gridGap: 20px;
	--containerPadding: 2.5%;
	--headerHeight: 100px;

	/* Container */
	--container-width: 100%;
	--margin-side: calc(((100vw - var(--container-width)) / 2) + 30px);
}

/* From Typescale */

html {
	font-size: var(--baseFontSize);
	box-sizing: border-box;
	overflow-x: hidden;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--headerHeight) + 15px);
} /*18px*/
*,
*::before,
*::after {
	box-sizing: inherit;
}
body {
	font-family: var(--bodyFont);
	font-weight: 400;
	line-height: 1.75;
	background: var(--background);
	color: var(--textColor);
	overflow-x: hidden;
}
main {
	margin-top: var(--headerHeight);
}
header.ym_header svg {
	fill: var(--white);
	width: 25px;
	height: 25px;
	display: block;
}
header.ym_header {
	position: fixed;
	width: 100%;
	top: 0;
	color: white;
	background-color: var(--headerBackground);
	box-shadow: var(--level-4);
	align-items: center;
	z-index: 100;
}
.logged-in header.ym_header {
	top: 32px;
}
header.ym_header.scrolled {
	box-shadow: 0 5px 5px rgba(255, 255, 255, 0.1);
}
header.ym_header .ym_hamburger {
	display: block;
}
header.ym_header .flex {
	display: flex;
}
header.ym_header nav {
	display: none;
	background-color: var(--background);
	position: absolute;
	top: var(--headerHeight);
	left: 0;
	width: 100vw;
	text-align: center;
}
header.ym_header nav a {
	color: white;
	text-decoration: none;
}
header.ym_header nav ul {
	padding: 0;
	list-style: none;
	margin: 0;
	font-size: 18px;
	font-weight: 600;
}
header.ym_header nav li {
	display: inline-block;
}
header.ym_header nav li a {
	display: block;
	padding: 2.15rem 1.5rem;
}
header.ym_header nav li:hover a {
	font-weight: 700;
}
header.ym_header nav li .sub-menu {
	display: none;
	position: absolute;
	background: var(--blue);
	text-align: left;
	width: 250px;
	border-bottom-right-radius: 20px;
	border-bottom-left-radius: 20px;
	box-shadow: 0 5px 5px rgba(255, 255, 255, 0.1);
}
header.ym_header nav li:hover .sub-menu {
	display: block;
}
header.ym_header nav li .sub-menu li {
	display: block;
}
header.ym_header nav li .sub-menu li a {
	padding: 0.75rem 1.5rem;
	font-weight: 400;
}
header.ym_header nav li .sub-menu li a:hover {
	font-weight: 700;
}
header .ym_header_logo {
	height: var(--headerHeight);
	display: flex;
	align-items: center;
}
header .ym_header_logo a {
	display: block;
}
header .ym_header_logo img {
	max-height: 90%;
	max-width: 185px;
	height: 90px;
}

footer.ym_footer {
	background: var(--footerBackground);
	position: relative;
	z-index: 2;
	color: var(--footerTextColor);
	padding: 5rem 0 0 0;
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content;
	width: 100%;
	overflow: hidden;
}
footer.ym_footer ul,
footer.ym_footer li {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
}
footer.ym_footer .ym_footer_bottom {
	margin-top: 50px;
	margin-bottom: 50px;
	display: block;
	justify-content: space-between;
	align-items: start;
	flex-wrap: wrap;
}
footer.ym_footer .ym_footer_bottom > div {
	display: flex;
	flex-direction: column;
	gap: 15px;
	justify-content: center;
	align-items: center;
	margin-top: 55px;
	width: 100%;
}
footer.ym_footer .ym_footer_bottom > div a {
	font-size: var(--smallText);
	font-family: var(--headingFont);
	font-weight: 300;
	line-height: 34px;
	margin: 15px 0;
	display: inline-block;
}
footer.ym_footer .ym_footer_bottom span a {
	text-decoration: none;
}
footer.ym_footer .ym_footer_bottom .ym_footer_nav {
	-moz-columns: 2;
	columns: 2;
	list-style: none;
	padding: 0;
	margin: 0;
	max-width: 480px;
	gap: 80px;
}

footer.ym_footer .ym_footer_bottom .ym_footer_nav .menu-item-has-children > a {
	font-size: 16px;
	font-family: var(--headingFont);
	font-weight: 700;
	line-height: 46px;
}
footer.ym_footer .ym_footer_bottom .ym_footer_nav .menu-item-has-children > .sub-menu a {
	font-weight: 400;
	font-size: 16px;
	font-family: var(--headingFont);
	line-height: 46px;
}
footer::after {
	content: url(public/img/billboard.svg);
	position: absolute;
	right: 0;
	bottom: -15px;
	z-index: -2;
}
footer::before {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	top: 0;
	left: 0;
	display: block;
	z-index: -3;
	width: 100%;
	background: var(--darkBlue);
	mix-blend-mode: hard-light;
	background-position: top;
}
footer.ym_footer .ym_footer_top {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	align-items: center;
	flex-direction: column;
	gap: var(--gridGap);
}
footer.ym_footer .ym_social {
	display: flex;
	gap: 20px;
	align-items: center;
}
footer.ym_footer a {
	color: var(--footerTextColor);
}
footer.ym_footer a img {
	max-width: 185px;
	height: 90px;
}
footer.ym_footer p {
	max-width: 100%;
	margin-bottom: 0;
}
footer.ym_footer .ym_social a {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: transparent;
	display: inline-block;
	text-align: center;
	padding: 2px;
}
footer.ym_footer .ym_social a:hover {
	background: var(--blue);
}
p {
	margin-bottom: 1rem;
	max-width: 40em;
	line-height: 26px;
	font-weight: 300;
	font-size: 18px;
}
a {
	color: var(--textColor);
	text-decoration: none;
}
a:hover {
	color: var(--white);
}
p a,
blockquote a,
td a {
	color: var(--textColor);
	text-decoration: none;
	border-bottom: solid 2px var(--primary);
}
h1,
h2,
h3,
h4,
h5 {
	font-family: var(--headingFont);
	font-weight: 700;
}

h1 {
	margin-top: 0;
	font-size: var(--h1);
}

h2 {
	font-size: var(--h2);
}

h3 {
	font-size: var(--h3);
	font-weight: 600;
}

h4 {
	font-size: var(--h4);
}

h5 {
	font-size: var(--h5);
}

small,
.text_small {
	font-size: var(--smallText);
}
/* End TypeScale */

img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
/* blockquote {
    border: solid 1px var(--darkBlue); 
    background-color: var(--cardBg);
    margin: 10px;
    padding: 2em;
    box-shadow: var(--level-3);
} */

label {
	display: block;
	font-size: var(--smallText);
}

input,
textarea {
	padding: 4px 5px;
	border: var(--line);
	border-radius: 4px;
}

textarea {
	box-sizing: border-box;
	width: 100%;
	height: 5rem;
}

::-webkit-input-placeholder {
	color: var(--grey);
}

::-moz-placeholder {
	color: var(--grey);
}

:-ms-input-placeholder {
	color: var(--grey);
}

::-ms-input-placeholder {
	color: var(--grey);
}

::placeholder {
	color: var(--grey);
}

select {
	border: var(--line);
}
select option {
	background-color: var(--background);
	color: var(--textColor);
}
hr {
	border-top: var(--line);
}

.ym_button,
a.ym_button {
	--buttonColor: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	color: var(--buttonTextColor);
	background-color: var(--buttonColor);
	border: none;
	border-radius: 100px;
	padding: 16px 51px;
	box-shadow: var(--level-1);
	transition: 0.3s ease-in-out all;
	text-decoration: none;
	border: var(--line);
}
.ym_button:hover {
	box-shadow: var(--level-2);
	--buttonColor: var(--white);
	--buttonTextColor: var(--background);
}
.ym_button:active {
	box-shadow: none;
}
.ym_button.ym_button_blue {
	--buttonColor: var(--blue);
}
.ym_button.ym_button_blue:hover {
	--buttonColor: var(--darkBlue);
	--buttonTextColor: var(--white);
}
button[disabled] {
	opacity: 0.4;
}

button.cancel {
	--buttonColor: var(--danger);
	--textColor: white;
}

button.small {
	font-size: var(--smallText);
	/* padding: ; */
}

.ym_text_content ul,
.ym_text_content p {
	font-size: 18px;
}

/* Layouts */

.layout {
	padding: calc(3rem + var(--headerHeight)) var(--containerPadding);
}

.grid {
	--gridCols: 2;
	display: block;
	grid-template-columns: repeat(var(--gridCols), 1fr);
	grid-gap: var(--gridGap);
}
.cols-3 {
	--gridCols: 3;
}
.cols-4 {
	--gridCols: 4;
}
.cols-12 {
	--gridCols: 12;
}

.flex {
	--justifyContent: space-between;
	display: block;
	justify-content: var(--justifyContent);
	height: 100%;
	align-items: center;
}

.flex-around {
	--justifyContent: space-around;
}

.ym_container {
	display: block;
	max-width: var(--container-width);
	margin: 0 auto;
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
}
.card {
	background-color: var(--cardBg);
	margin: 0;
	padding: 2em;
	box-shadow: var(--level-3);
	border-radius: var(--borderRadius);
}

.card > *:first-child {
	margin-top: 0;
}
.card > *:last-child {
	margin-bottom: 0;
}

.split {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: var(--gridGap);
}

.oled {
	--black: #000;
	--darkGrey: #222;
	--cardBg: var(--darkGrey);
	--background: var(--black);
	--textColor: var(--lightGrey);
	--headerBackground: var(--darkGrey);
	--footerBackground: var(--darkGrey);
}

.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_darkblue {
	background: var(--darkBlueAlt);
}
.ym_content_blue {
	background: var(--blue);
}
.ym_content_bottom_overlap::before {
	content: "";
	width: 100%;
	height: 260px;
	background-color: var(--darkBlueAlt);
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	z-index: -2;
}
/* hero slider */

.ym_hero_slider .ym_slide {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto auto;
	width: 100%;
	height: 400px;
	position: relative;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
	overflow: hidden;
	box-shadow: var(--level-3);
	margin-bottom: 20px;
}
.ym_hero_slider {
	position: relative;
	z-index: 2;
}
.ym_hero_slider .slider {
	margin: 0;
}
.ym_hero_slider .ym_slide::before {
	content: "";
	background: #08101db5;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	left: 0;
	z-index: -1;
}
.ym_hero_slider .ym_slide > * {
	grid-column: 1/-1;
}
.ym_hero_slider .ym_slide > img {
	grid-row: 1/-1;
	height: 100%;
	width: 100%;
	max-height: 650px;
	-o-object-fit: cover;
	object-fit: cover;
	position: relative;
	z-index: -2;
}
.ym_hero_slider .ym_slide > h1 {
	grid-row: 1;
	place-self: center;
	justify-self: center;
	align-self: end;
	max-width: var(--container-width);
	text-align: center;
	padding: 0 2.5%;
	font-family: "Poppins", sans-serif;
	text-shadow: 0 0 10px black;
}
.ym_hero_slider .ym_slide > p {
	grid-row: 2;
	justify-self: center;
	align-self: start;
	text-align: center;
	padding: 15px 10%;
	margin-bottom: 30px;
	font-size: 24px;
	line-height: 1.5;
}
.ym_hero_slider .ym_button {
	display: block;
	margin: 25px auto;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
}
.ym_logo_slider_thin {
	height: 295px;
	display: block;
	margin-top: -120px;
}
.ym_logo_slider_thin.ym_logo_slider_blue {
	background-color: var(--primary);
}
.ym_logo_slider_thin.ym_logo_slider_darkblue {
	background-color: var(--darkBlueAlt);
}

.ym_logo_slider_thin picture {
	display: block;
	height: 90px;
	width: 90px;
	margin: 0 50px;
}
.ym_logo_slider_thin picture img {
	display: block;
	-o-object-fit: contain;
	object-fit: contain;
	width: 100%;
	height: 100%;
}
.ym_logo_slider_thin .slider {
	padding-top: 160px;
}
.ym_logo_slider_thin.ym_logo_slider_contained {
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content;
	padding: 3rem 0;
	height: auto;
	margin: 0;
}
.ym_logo_slider_thin.ym_logo_slider_contained .slider {
	padding-top: 0;
}
.ym_logo_slider_thin.ym_logo_slider_contained .slider .slick-slide {
	margin: 0 1rem;
}

.ym_eyebrow {
	color: var(--eyebrowColor);
	font-family: var(--bodyFont);
	text-transform: uppercase;
	position: relative;
	padding-left: 25px;
}
.ym_eyebrow::before {
	content: "";
	background-color: var(--eyebrowColor);
	height: 2px;
	width: 18px;
	margin-right: 5px;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.ym_service_top {
	display: flex;
	flex-direction: column;
	margin-bottom: 125px;
	padding: 0 100px;
}
.ym_service_top .ym_eyebrow {
	order: 1;
}
.ym_service_top h2 {
	order: 2;
	margin-bottom: 0.5em;
}
.ym_service_top div {
	order: 3;
	flex-wrap: wrap;
	gap: 20px;
}
.ym_content_button {
	display: flex;
	flex-direction: column;
	margin-bottom: 125px;
}
.ym_content_button h2 {
	margin-bottom: 0.5em;
}
.ym_content_button div {
	flex-wrap: wrap;
	gap: 20px;
}
.ym_service_slider .ym_drop_down_container {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-template-rows: repeat(4, auto);
	width: 100%;
	gap: var(--gridGap);
	place-items: center;
	margin-bottom: 20px;
}

.ym_service_slider .ym_drop_down {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	background-color: var(--background);
	padding: var(--padding);
	border: var(--border);
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content;
	width: 100%;
}
.ym_service_slider .ym_drop_down > h3 {
	margin-bottom: 0;
}
.ym_service_slider .ym_drop_down[data-active="true"] {
	--background: var(--primary);
	--padding: 70px 40px 35px;
	position: relative;
	z-index: 2;
}
.ym_service_slider .ym_drop_down[data-active="false"] {
	--background: transparent;
	--padding: 28px 21px;
	--lineColor: var(--primary);
	--border: 1px solid var(--lineColor);
	cursor: pointer;
}
.ym_service_slider .ym_drop_down[data-active="false"] > * {
	display: none;
}
.ym_service_slider .ym_drop_down[data-active="false"] > h3 {
	display: block;
	font-size: var(--bodyTextSize);
}

.ym_service_slider .ym_picture_container {
	margin-top: 0;
	height: 217px;
}
.ym_service_slider .ym_picture_container > .flex {
	justify-content: flex-start;
	align-items: start;
	display: block;
}
.ym_service_slider .ym_picture_container img {
	display: block;
	height: 100%;
	width: 100%;
	/* margin-right: calc((100vw - var(--container-width)) / 2); */
	-o-object-fit: cover;
	object-fit: cover;
}

.sideways {
	margin-left: calc(((100vw - var(--container-width)) / 2) + 15px);
	margin-top: 17px;
	text-transform: uppercase;
	font-size: var(--bodyTextSmall);
}
.ym_service_slider .ym_picture_container div[data-active="false"] {
	display: none;
}

.ym_our_work_default {
	background: var(--backgroundAlt);
	border-top-left-radius: 200px;
}
.ym_our_work_c {
	background: var(--background);
	border-top-left-radius: 200px;
}
.ym_our_work_b {
	background: transparent;
}
.ym_our_work .ym_top_content {
	display: block;
	grid-template-columns: 7fr 1fr 4fr;
	grid-template-rows: auto auto;
	gap: var(--gridGap);
}
.ym_our_work .ym_top_content .ym_eyebrow {
	grid-column: 1;
	grid-row: 1;
	align-self: center;
}

.ym_our_work .ym_top_content h2 {
	grid-column: 1;
	grid-row: 2;
}
.ym_our_work .ym_top_content p {
	grid-column: 2/4;
	grid-row: 1/-1;
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content;
	align-self: end;
}
.ym_our_work .ym_top_content > * {
	margin: 0;
}
.ym_our_work .ym_slider_container .ym_slider,
.ym_our_work .ym_work_slider_alt_container .ym_work_slider_alt {
	margin: 100px 0 50px;
}
.ym_our_work .ym_slider_container .ym_slider .slide {
	display: grid;

	-moz-column-gap: var(--gridGap);

	column-gap: var(--gridGap);
	background-color: var(--white);
	border-radius: 25px;
	grid-template-rows: 250px auto;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
	margin: 0 20px;
	box-sizing: content-box;
	align-items: center;

	transform: translateY(35px);
}
.ym_our_work .ym_slider_container .ym_slider .slide.slick-active {
	max-width: calc(100vw - 50px);
	width: 100%;
	grid-template-rows: 300px auto auto;
	margin-left: 30px;
	transform: translateY(0);
}
.ym_our_work .ym_slider_container .ym_slider .slide > img {
	grid-column: 1 / -1;
	grid-row: 1;
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.ym_our_work .ym_slider_container .ym_slider .slide > h3 {
	grid-column: 1;
	grid-row: 2;
	color: var(--darkBlueAlt);
	font-size: var(--smallText);
	font-family: var(--bodyFont);
	margin-left: 2rem;
	margin-bottom: 30px;
	margin-top: 30px;
}
.ym_our_work .ym_slider_container .ym_slider .slide > h4 {
	grid-column: 2;
	grid-row: 2;
	color: var(--blue);
	font-size: 10px;
	font-weight: 300;
	margin-right: 2rem;
	margin-bottom: 30px;
	margin-top: 30px;
	justify-self: end;
}
.ym_our_work .ym_slider_container .ym_slider .slide > .ym_arrow_link {
	display: none;
}
.ym_our_work .ym_slider_container .ym_slider .slide.slick-active > h3 {
	font-size: var(--h4);
	grid-row: 3;
	margin: 0 0 1rem 1rem;
}
.ym_our_work .ym_slider_container .ym_slider .slide.slick-active > h4 {
	grid-column: 1;
	grid-row: 2;
	font-size: var(--smallText);
	margin: 1rem 0 0.5rem 2rem;
	justify-self: start;
}
.ym_our_work .ym_slider_container .ym_slider .slide.slick-active > .ym_arrow_link {
	grid-column: 2;
	grid-row: 3;
	color: var(--blue);
	display: block;
	margin: 0 2rem 1rem 0;
	justify-self: end;
}
.ym_our_work .ym_slider_bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.ym_left_arrow,
.ym_right_arrow {
	background-color: transparent;
	border: 1px solid var(--white);
	border-radius: 50px;
	display: block;
	height: 30px;
	width: 65px;
}
.ym_left_arrow img,
.ym_right_arrow img {
	margin-top: -2px;
	width: 60%;
}
.ym_left_arrow img {
	transform: rotateZ(180deg);
}

.ym_recent_news .ym_top {
	display: flex;
	flex-direction: column-reverse;
	text-align: center;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
	margin-bottom: 75px;
}
.ym_recent_news .ym_top h2 {
	padding: 0 20%;
}
.ym_recent_news .ym_news_center {
	display: flex;
	gap: var(--gridGap);
	flex-wrap: wrap;
	justify-content: left;
	align-items: flex-start;
}
.ym_recent_news .ym_news_center img {
	width: 100%;
	height: 235px;
	display: block;
	-o-object-fit: cover;
	object-fit: cover;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	background-color: lightgrey;
}
.ym_recent_news .ym_news_center .ym_card {
	max-width: 370px;
	width: 100%;
	background-color: var(--darkBlueAlt);
	--textColor: var(--white);
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	color: var(--textColor);
	transition: all 0.3s;
	display: flex;
	align-self: stretch;
	flex-wrap: wrap;
	flex-direction: row;
	align-content: flex-start;
	justify-content: flex-start;
	padding-bottom: 91px;
}
.ym_recent_news .ym_news_center .ym_card:hover {
	text-decoration: none;
	background-color: var(--blue);
}
.ym_recent_news .ym_news_center .ym_card .ym_long_arrow {
	transition: all 0.3s;
	position: absolute;
	left: 0;
	bottom: 0;
	margin: 0;
	padding: 2rem;
	width: 100%;
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	display: flex;
	justify-content: space-between;
}
.ym_recent_news .ym_news_center .ym_card .ym_long_arrow::after {
	content: url(public/img/arrow-long.svg);
	transition: all 0.3s;
}
.ym_recent_news .ym_news_center .ym_card:hover .ym_long_arrow {
	font-weight: 700;
}
.ym_recent_news .ym_news_center .ym_card:hover .ym_long_arrow::after {
	transform: scaleX(150%);
}
.ym_recent_news .ym_news_center .ym_card .ym_text_content {
	padding: 2rem;
}
.ym_recent_news .ym_news_center .ym_card .ym_text_content .ym_date {
	color: var(--lightBlue);
	font-family: var(--headingFont);
	font-weight: 300;
	font-size: var(--smallText);
}
.ym_recent_news .ym_news_center .ym_card .ym_text_content h3 {
	font-size: 18px;
	margin-bottom: 1em;
}
.ym_recent_news .ym_news_center .ym_card .ym_tag {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--lightBlue);
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	padding: 15px 40px;
	border-bottom-right-radius: 10px;
	margin: 0;
	font-size: 14px;
	font-weight: 400;
}
.ym_recent_news .ym_news_center .ym_card .ym_text_content *:last-child {
	margin-bottom: 0;
}
.ym_recent_news .ym_news_bottom .ym_button {
	margin: 100px auto 0;
	display: block;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
}

.ym_recent_news {
	position: relative;
}
.ym_recent_news::after {
	content: "";
	position: absolute;
	width: 100vw;
	height: 620px;
	display: block;
	border: 4px solid rgba(255, 255, 255, 0.2);
	border-radius: 400px;
	top: 65px;
	left: 0;
	transform: translateX(-20%);
	z-index: -1;
}

.ym_title_bar {
	width: 100%;
	height: 425px;
	box-shadow: 0px 4px 22px 0px rgba(6, 14, 26, 0.17);
	border-radius: 0px 0px 100px 100px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.ym_title_bar_small {
	height: 300px;
}
.ym_title_bar_overlay {
	width: 100%;
	height: 100%;
	background: rgba(8, 24, 51, 0.59);
	display: flex;
	align-items: center;
	justify-content: center;
}
.ym_title_bar h1 {
	position: relative;
	z-index: 2;
	margin: 0;
	text-shadow: 0 0 10px black;
}

.ym_title_bar_alt {
	padding: 3rem var(--margin-side);
	background-color: var(--headerBackground);
}
.ym_title_bar_alt h1 {
	margin-bottom: 0;
	text-shadow: 0 0 10px black;
}
.ym_title_bar_alt span {
	font-size: var(--h1);
	color: white;
	font-family: var(--headingFont);
	margin: 0;
	font-weight: 700;
}
.ym_header_content h2 {
	margin: 0;
}

.ym_image_text_overlap {
	grid-template-columns: 1fr;
	grid-template-rows: -webkit-min-content;
	grid-template-rows: min-content;
	margin-right: 0;
	border-radius: 0 20px 20px 0;
	overflow: hidden;
}
.ym_image_text_overlap > img {
	grid-column: 1 / -1;
	grid-row: 1;
	-o-object-fit: cover;
	object-fit: cover;
	position: relative;
	height: 0;
	min-height: 100%;
	z-index: -1;
}
.ym_image_text_overlap > .ym_text_container {
	display: block;
	width: 385px;
	padding: 70px;
	grid-column: 1 / -1;
	grid-row: 1;
	background-color: white;
	color: var(--darkBlue);
	border-radius: 10px;
	margin: 100px auto;
	align-self: center;
	justify-self: center;
}
.ym_image_text_overlap::after {
	content: "";
	background: var(--blue);
	width: 345px;
	height: 100%;
	display: block;
	grid-column: 1;
	grid-row: 1;
	justify-self: end;
	position: relative;
	z-index: -1;
}
.ym_image_text_overlap > .ym_text_container h3 {
	font-size: 18px;
}
.ym_image_text_overlap > .ym_text_container p {
	margin: 0;
}
.ym_background_overlap_top {
	margin-top: -260px;
	position: relative;
	padding-top: 260px;
}
.ym_background_overlap_top::before {
	background-color: var(--darkBlueAlt);
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	display: block;
	z-index: -2;
}

.ym_numbered_columns {
	list-style: none;
	padding: 0;
	margin: 0 -2rem;
	width:calc(100% + 4rem);
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: center;
}

.ym_vertical_line {
	/* background: rgba(255, 255, 255, 0.15); */
	height: 100%;
	min-height: 250px;
	width: 1px;
	display: block;
	border-left: 1px solid rgba(255, 255, 255, 0.15);
	margin: 0 0 1rem;
}
.ym_vertical_line:last-of-type {
	display: none;
}
.ym_numbered_columns .ym_vertical_line:nth-child(3n) {
	display: none;
}
.ym_numbered_columns h2 {
	font-weight: 600;
	color: var(--eyebrowColor);
	font-size: 50px;
	font-family: var(--bodyFont);
	flex: 0 0 100%;
}
.ym_numbered_columns h3 {
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 30px;
}
.ym_numbered_columns li {
	width: auto;
	max-width:33%;
	padding:2rem;
	display: block;
	height: 100%;
	position: relative;
}
.ym_numbered_columns_2 {
	justify-content: center;
}
.ym_numbered_columns_2 li {
	flex: 1;
	padding: 0 5rem;
}
.ym_numbered_columns p {
	margin-bottom: 2rem;
	font-weight: 300;
}
.ym_numbered_columns a::after {
	content: "";
	width: 55px;
	height: 8px;
	display: block;
	background: url(./public/img/arrow.svg);
}
.ym_numbered_columns a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding:0 2rem;
}

.ym_images {
	--gridCols: 12;
}

.ym_images > img {
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 20px;
}
.ym_images > img:first-child {
	grid-column: 1 / 9;
}
.ym_images.ym_image_single > img:first-child {
	grid-column: 1 / 13;
	max-height: 515px;
}
.ym_images > img:last-child {
	grid-column: 9 / 13;
}
.ym_columns {
	flex-wrap: wrap;
}
.ym_columns.flex {
	align-items: flex-start;
}
.ym_columns.flex.ym_row {
	flex-direction: column;
	gap: 20px;
}
.ym_columns > div {
	width: calc(33% - 20px);
}
.ym_columns > div h3 {
	font-size: 18px;
	margin-bottom: 30px;
}
.ym_columns > div h3:not(+ p) {
	margin-bottom: 0px;
}
.ym_columns > div h3:last-child {
	margin-bottom: 0px;
}
.ym_columns > div a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 55px 0 0;
}
.ym_columns > div a::after {
	content: "";
	width: 55px;
	height: 8px;
	display: block;
	background: url(./public/img/arrow.svg);
}
.ym_column_title {
	color: var(--lightBlue);
	font-weight: 600;
	font-size: 32px;
	margin: 0 0 2rem;
}

.ym_margin_left {
	margin-left: var(--margin-side);
}
.ym_image_content {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: -webkit-min-content;
	grid-template-rows: min-content;
	gap: 120px;
	position: relative;
}

.ym_image_content .ym_text_content {
	display: block;
	width: 380px;
	box-sizing: content-box;
	padding: 110px 0;
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content;
	grid-column: 1 / -1;
	grid-row: 2;
	justify-self: center;
	max-width: 380px;
	width: 100%;
}
.ym_image_content .ym_text_content h2 {
	margin-bottom: 50px;
}
.ym_image_content img {
	-o-object-fit: cover;
	object-fit: cover;
	height: auto;
	transform: translateY(110px);
	border-radius: 20px;
	overflow: hidden;
	display: block;

	min-height: 100%;
	grid-column: 1 / -1;
	grid-row: 1;
}

.ym_background_blue_alt {
	position: relative;
	padding: 0;
	margin: 5rem 0;
	padding-left: var(--margin-side);
	padding-right: var(--margin-side);
}

.ym_background_blue_alt.ym_background_shape_1::before {
	content: "";
	background-color: var(--darkBlueAlt);
	position: absolute;
	display: block;
	left: 0;
	width: calc(100vw - var(--margin-side));
	height: 100%;
	z-index: -1;
	border-top-right-radius: 20px;
}
.ym_background_blue_alt.ym_image_content_l {
	flex-direction: row-reverse;
	padding-right: var(--margin-side);
	padding-left: var(--margin-side);
}
.ym_background_blue_alt.ym_image_content_l.ym_background_shape_1::before {
	content: "";
	background-color: var(--darkBlueAlt);
	position: absolute;
	display: block;
	right: 0;
	left: auto;
	width: calc(100vw - var(--margin-side));
	height: 100%;
	z-index: -1;
	border-radius: 20px 0 0 0;
}

.ym_sub_service {
	margin-top: 215px;
}

.ym_image_text_centered .ym_logo_slider_thin {
	background-color: transparent;
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content;
	margin-top: 0;
}
.ym_image_text_centered .ym_logo_slider_thin .slider {
	padding-top: 0;
}
.ym_image_text_centered h2 {
	text-align: center;
	margin-bottom: 50px;
}
.ym_image_text_centered p {
	text-align: center;
	margin: 0 auto;
	margin-bottom: 55px;
}

.ym_image_text_centered img {
	border-radius: 20px;
	overflow: hidden;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	max-height: 570px;
}
.ym_image_text_centered .ym_sub_service p {
	text-align: left;
}
.ym_image_text_centered .ym_sub_service {
	margin-top: 85px;
}
.ym_image_text_centered .ym_logo_slider_thin {
	margin-top: 85px;
}
.ym_image_text_centered .ym_background_blue {
	position: relative;
	background-color: transparent;
}
.ym_image_text_centered .ym_background_blue.ym_background_blue_shape_1::before {
	content: "";
	background-color: var(--darkBlueAlt);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 200px);
	display: block;
	border-top-right-radius: 20px;
	z-index: -1;
}
.ym_work_slider_alt_container {
	margin: 2rem 0 0;
}
.ym_work_slider_alt a {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
	grid-template-areas: "main";
	height: 350px;
	max-height: 350px;
	max-width: 600px;
	margin: 0 20px;
	border-radius: 20px;
	overflow: hidden;
}
.ym_work_slider_alt a > * {
	grid-area: main;
}
.ym_work_slider_alt a .ym_text_content {
	width: 375px;
	display: flex;
	flex-direction: column;
	height: 135px;
	place-self: end;
	background-color: var(--backgroundAlt);
	justify-content: center;
	border-radius: 20px 0;
	max-width: 375px;
	width: 100%;
}

.ym_work_slider_alt a img {
	-o-object-fit: cover;
	object-fit: cover;
	max-height: 350px;
}
.ym_work_slider_alt a:hover {
	text-decoration: none;
}
.ym_work_slider_alt a .ym_text_content > * {
	margin: 0;
	padding: 0;
}
.ym_work_slider_alt a .ym_text_content hr {
	width: 100%;
	height: 1px;
	display: block;
	opacity: 0.15;
	margin: 18px 0;
}
.ym_work_slider_alt a .ym_text_content h3 {
	font-size: 18px;
	padding-top: 28px;
	padding-left: 44px;
}

.ym_work_slider_alt a .ym_text_content span {
	font-size: 14px;
	padding-bottom: 28px;
	padding-left: 44px;
	padding-right: 44px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.ym_work_slider_alt a .ym_text_content span::after {
	content: "";
	width: 55px;
	height: 8px;
	display: block;
	background: url("./public/img/arrow.svg");
}

/*TEAM*/

.ym_team_grid {
	background-color: transparent;
	border-top-right-radius: 20px;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	grid-template-rows: auto;
	-moz-column-gap: 30px;
	column-gap: 15px;
	row-gap: 0;
	padding: 10px;
}
.ym_team_grid_darkblue {
	background-color: var(--darkBlueAlt);
}
.ym_team_grid_blue {
	background-color: var(--blue);
}
.ym_team_grid h2,
.ym_team_grid p {
	grid-column: 1 / -1;
}
.ym_team_card {
	display: flex;
	flex-direction: column;
	width: 100%;
	position: relative;
	margin: 2rem 0 1rem;
}
.ym_team_card_image {
	width: 100%;
	padding-bottom: 120%;
	overflow: hidden;
	position: relative;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 5px;
}
.ym_team_card_image a {
	display: flex;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
	align-items: flex-end;
	justify-content: center;
	text-align: center;
}
.ym_team_card_image a p {
	display: none;
	color: white;
	font-family: var(--headingFont);
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 1px;
}
.ym_team_card_image a p img {
	width: 29px;
	display: block;
	margin: 0.5rem auto 1rem;
}
.ym_team_card_image a p i {
	display: block;
	margin: 0.5rem auto 1rem;
}
.ym_team_card_image a:hover {
	background: rgba(8, 16, 29, 0.7);
	text-decoration: none;
}
.ym_team_card_image a:hover p {
	display: block;
	text-decoration: none;
}
.ym_team_card h3 {
	font-size: 18px;
	margin: 1rem 0 0.5rem;
}
.ym_team_card img {
	-o-object-fit: cover;
	object-fit: cover;
}
.ym_team_card p {
	font-weight: 300;
	font-size: 14px;
	margin: 0;
	font-family: var(--headingFont);
}
.ym_team_modal .close {
	position: absolute;
	top: 0;
	right: 0;
	margin: -2rem 0 0;
	color: white;
	font-size: 14px;
	text-shadow: none;
	opacity: 1;
}
.ym_team_modal .close i {
	margin-left: 0.5rem;
}
.ym_team_modal .modal-dialog {
	max-width: 1200px;
}
.ym_team_modal h2,
.ym_team_modal h3,
.ym_team_modal h4,
.ym_team_modal h5,
.ym_team_modal h6,
.ym_team_modal ul,
.ym_team_modal li,
.ym_team_modal p,
.ym_team_modal a {
	color: var(--darkBlue);
}
.ym_team_modal a:hover {
	text-decoration: none;
	color: var(--blue);
}
.ym_team_modal a.ym_linkedin {
	color: var(--blue);
	font-family: var(--headingFont);
	margin: 1rem 0;
	display: block;
	font-weight: 700;
}
.ym_team_modal a.ym_linkedin:hover {
	color: var(--darkBlue);
}
.ym_team_modal .row {
	margin: 0;
}
.ym_team_modal .colm {
	padding: 0;
}
.ym_team_modal .ym_general_content {
	padding: 4rem;
}
.ym_team_modal_image {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.ym_team_modal_category {
	width: 100%;
	height: 100%;
	position: relative;
}
.ym_team_modal .sideways {
	text-transform: none;
	margin: 0;
	position: absolute;
	width: 100%;
	bottom: 2rem;
	left: -2.25rem;
	font-size: 18px;
	font-family: var(--headingFont);
	font-weight: 300;
}
.ym_team_modal .ym_team_bio {
	max-height: 400px;
	overflow-y: auto;
	overflow-x: hidden;
	margin: 1rem 0 0;
}

.ym_two_images_text {
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: auto;
	width: 100%;
	gap: 15px;
	row-gap: 50px;
}

.ym_two_images_text .ym_text_content {
	grid-column: 6 / 12;
	grid-row: 1;
}
.ym_two_images_text .ym_text_content h2 {
	margin-bottom: 45px;
}
.ym_two_images_text > img:nth-of-type(1) {
	grid-column: 1 / 5;
	grid-row: 1 / 3;
}
.ym_two_images_text > img:nth-of-type(2) {
	grid-column: 6 / 10;
	grid-row: 2 / 3;
	height: 282px;
}
.ym_two_images_text > .ym_button {
	grid-column: 11 / 13;
	grid-row: 2 / 3;
	place-self: end;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content;
	display: block;
}
.ym_two_images_text > img {
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 10px;
	overflow: hidden;
}

.ym_recent_news_alt h2 {
	margin-bottom: 75px;
}
.ym_recent_news_alt .grid {
	--gridCols: 1;
}
.ym_recent_news_alt .ym_news_card {
	background-color: var(--darkBlueAlt);
	border-top-right-radius: 20px;
	padding: 2rem 2rem 88.5px;
	position: relative;
}
.ym_recent_news_alt .ym_news_card:hover {
	text-decoration: none;
}
.ym_recent_news_alt .ym_news_card h3 {
	font-size: 18px;
	margin-bottom: 15px;
}

.ym_recent_news_alt .ym_news_card p {
	font-weight: 300;
	font-size: 16px;
	margin-bottom: 0;
}

.ym_recent_news_alt .ym_news_card span {
	font-size: 14px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 2rem;
}
.ym_recent_news_alt .ym_news_card span::after {
	content: url(public/img/arrow-long.svg);
	transition: all 0.3s;
}
.ym_recent_news_alt .ym_news_card:hover span::after {
	transform: scaleX(150%);
}

.ym_button_cta {
	text-align: center;
}
.ym_button_cta h2 {
	margin-bottom: 30px;
}
.ym_button_cta p {
	display: block;
	margin: 0 auto;
	margin-bottom: 55px;
	max-width: 520px;
}
.ym_button_cta.ym_button_cta_wide p {
	max-width: 850px;
}
.ym_button_cta .ym_button {
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	margin: 0 auto;
}
.ym_featured a:hover {
	text-decoration: none;
}
.ym_featured h2 {
	margin: 0 0 3rem;
}
.ym_featured a img {
	height: 540px;
	-o-object-fit: cover;
	object-fit: cover;
	margin-bottom: 20px;
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.3s;
}
.ym_featured a:hover img {
	opacity: 0.5;
}
.ym_featured a:hover::after {
	content: "";
	position: absolute;
	top: 52%;
	left: 50%;
	transform: translate(-50%, -52%);
	z-index: 100;
	display: block;
	width: 80px;
	height: 20px;
	background: url(public/img/arrow-white.svg);
	background-size: contain;
	background-position: center center;
	transition: all 0.3s;
}

.ym_featured h3 {
	font-size: 18px;
	margin-bottom: 10px;
}
.ym_featured h4 {
	font-size: 18px;
	font-style: italic;
	margin-bottom: 0;
	font-weight: 300;
}
.ym_featured span {
	font-size: 14px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 0 0.75rem;
}
.ym_featured span::after {
	content: url(public/img/arrow.svg);
	transition: all 0.3s;
}
.ym_featured a:hover span::after {
	transform: scaleX(150%);
}
.ym_featured .flex {
	align-items: flex-start;
}

.ym_filters {
	gap: 10px;
	position: relative;
	--contentWidth: 19px;
	--offsetLeft: 0;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.ym_filters label {
	margin: 0;
}
.ym_filters input[type="radio"] {
	display: none;
}
.ym_filters input[type="radio"]:checked + span {
	font-weight: 700;
	color: #84aaeb;
}
.ym_filters span {
	cursor: pointer;
	font-weight: 400;
	font-size: 14px;
	font-family: var(--headingFont);
	white-space: nowrap;
	margin: 0;
	position: relative;
}

.ym_main_our_work {
	padding-top: 100px;
	padding-bottom: 115px;
	margin-top: 65px;
	background-color: var(--darkBlueAlt);
}
.ym_main_our_work h2 {
	text-align: center;
}
.ym_work_container {
	gap: 40px;
	flex-wrap: wrap;
	margin-top: 65px;
	justify-content: left;
}
.ym_work_container a {
	max-width: calc((100% - 40px) / 2);
	min-width: 300px;
	width: 100%;
	display: block;
	margin-bottom: 40px;
	position: relative;
}
.ym_work_container a:hover {
	text-decoration: none;
}
.ym_work_container a img {
	height: 215px;
	-o-object-fit: cover;
	object-fit: cover;
	margin-bottom: 20px;
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.3s;
	position: relative;
}
.ym_work_container a:hover img {
	opacity: 0.5;
}
.ym_work_container a:hover::after {
	content: "";
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -40%);
	z-index: 100;
	display: block;
	width: 80px;
	height: 20px;
	background: url(public/img/arrow-white.svg);
	background-size: contain;
	background-position: center center;
}
.ym_work_container h3 {
	font-size: 18px;
	margin-bottom: 10px;
}
.ym_work_container h4 {
	font-size: 18px;
	font-style: italic;
	margin-bottom: 0;
	font-weight: 300;
}
.ym_work_container span {
	font-size: 14px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 0 0.75rem;
}
.ym_work_container span::after {
	content: url(public/img/arrow.svg);
	transition: all 0.3s;
}
.ym_work_container a:hover span::after {
	transform: scaleX(150%);
}
.ym_work_container .flex {
	align-items: flex-start;
}
.ym_work_container a.ym_show,
.ym_show {
	display: block;
}
.ym_work_container a.ym_hide,
.ym_hide {
	display: none;
}

.ym_main_our_work > .container > .flex {
	flex-wrap: wrap;
}

.ym_testimonial_slider_small .ym_testimonial::after {
	content: "";
	background-image: url(public/img/quote.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	display: block;
	width: 55px;
	height: 32px;
	position: absolute;
	top: 0;
	left: 40px;
	z-index: 2;
	margin-top: -20px;
}
.ym_testimonials h2 {
	text-align: center;
	margin-bottom: 115px;
}
.ym_testimonial_slider_small .slick-list {
	padding: 0 25%;
}
.ym_testimonial_slider .ym_testimonial,
.ym_testimonial_slider_small .ym_testimonial {
	position: relative;
	display: grid;
	grid-template-columns: auto auto;
	grid-template-rows: auto;
	width: 330px;
	background-color: var(--primary);
	padding: 50px;
	border-radius: 10px;
	align-items: center;
	row-gap: 40px;
	margin: 25px 10px;
}
.ym_testimonial_slider_small .ym_testimonial {
	width: 420px;
}

.ym_testimonial_slider .ym_testimonial .ym_text_content,
.ym_testimonial_slider_small .ym_testimonial .ym_text_content {
	grid-column: 1;
	grid-row: 1;
}
.ym_testimonial_slider .ym_testimonial img,
.ym_testimonial_slider_small .ym_testimonial img {
	grid-column: 2;
	grid-row: 1;
	justify-self: end;
}
.ym_testimonial_slider .ym_testimonial blockquote,
.ym_testimonial_slider_small .ym_testimonial blockquote {
	grid-column: 1/-1;
	grid-row: 2;
}

.ym_testimonial_slider .ym_testimonial h3,
.ym_testimonial_slider_small .ym_testimonial h3 {
	font-size: 16px;
	font-family: var(--bodyFont);
	margin-bottom: 5px;
	white-space: nowrap;
}
.ym_testimonial_slider .ym_testimonial h4,
.ym_testimonial_slider_small .ym_testimonial h4 {
	font-size: 14px;
	font-family: var(--bodyFont);
	font-weight: 200;
	white-space: nowrap;
}
.ym_testimonial_slider .ym_testimonial img,
.ym_testimonial_slider_small .ym_testimonial img {
	width: 37px;
	height: 37px;
}
.ym_testimonial_slider .slick-dots {
	position: relative;
	bottom: auto;
	margin: 3rem 0 0;
}
.ym_testimonial_slider .slick-dots li {
	margin: 0 0.5rem;
}
.ym_testimonial_slider .slick-dots li button::before {
	content: none;
}
.ym_testimonial_slider .slick-dots li.slick-active button {
	background: white;
}

.ym_image_container {
	position: relative;
}
.ym_image_container img {
	height: 515px;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 10px;
}
.ym_image_container::before {
	content: "";
	position: absolute;
	width: 100vw;
	height: 100%;
	display: block;
	border: 4px solid #0b3f9c;
	border-radius: 400px;
	top: 80px;
	right: var(--margin-side);
	z-index: -1;
}
.ym_image_container.ym_image_container_r::before {
	left: var(--margin-side);
	right: auto;
}

.ym_background_blue {
	background: var(--backgroundAlt);
	--textColor: var(--white);
}
.ym_content_image_column h2 {
	text-align: center;
	margin-bottom: 45px;
}
.ym_content_image_column p {
	text-align: center;
	margin: 0 auto;
	margin-bottom: 60px;
	font-weight: 300;
	font-size: 18px;
	line-height: 26px;
}
.ym_content_image_column .ym_button {
	margin: 0 auto;
	margin-bottom: 60px;
	display: block;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
}

.ym_content_image_column img {
	height: 515px;
	width: 100%;
	border-radius: 10px;
	box-shadow: var(--level-2);
	margin-bottom: 75px;
	-o-object-fit: cover;
	object-fit: cover;
	margin-left: auto;
	margin-right: auto;
	display: block;
}
.ym_content_image_column h3 {
	font-size: 18px;
	margin-bottom: 30px;
}
.ym_content_image_column .ym_text_container p {
	text-align: left;
}
.ym_text_columns {
	gap: 85px;
}

.ym_timeline {
	position: relative;
}
.ym_timeline::before {
	content: "";
	height: 100%;
	width: 5px;
	background: var(--blue);
	display: block;
	position: absolute;
	left: 100%;
	top: 0;
	transform: translateX(-50%);
	z-index: -1;
}
.ym_timeline img,
.ym_timeline_empty_image {
	width: 100%;
	height: 150px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 10px;
	overflow: hidden;
	margin-right: 10px;
}
.ym_timeline .ym_timeline_item {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
}

.ym_timeline .ym_timeline_item .ym_timeline_line {
	display: flex;
	position: relative;
	background-color: var(--white);
	height: 1px;
	width: 100%;
}
.ym_timeline .ym_timeline_item .ym_timeline_line::before {
	content: "";
	height: 17px;
	width: 17px;
	display: block;
	position: absolute;
	background-color: var(--blue);
	top: 50%;
	right: 0;
	border-radius: 17px;
	transform: translate(50%, -50%);
}
.ym_timeline .ym_timeline_item .ym_timeline_line::after {
	content: "";
	height: 17px;
	width: 17px;
	display: block;
	position: absolute;
	background-color: var(--blue);
	top: 50%;
	left: 0;
	border-radius: 17px;
	transform: translate(-50%, -50%);
}
.ym_timeline .ym_timeline_item:nth-child(odd):first-of-type {
	margin-top: 0;
}

.ym_timeline .ym_timeline_item .ym_text_content {
	padding: 2rem 2rem 0 0;
}

.ym_timeline .ym_timeline_item h3 {
	font-size: 18px;
	line-height: 24px;
}
.ym_timeline .ym_timeline_item p {
	font-family: var(--headingFont);
	font-weight: 300;
	font-size: 16px;
	line-height: 30px;
	max-width: 100%;
	width: 100%;
}
.ym_timeline .ym_timeline_item:nth-child(odd) p {
	padding-right: 1.5rem;
}

.ym_image_text_repeater .ym_image_text_item {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 75px;
}
.ym_image_text_repeater .ym_image_text_item img {
	max-width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 10px;
	overflow: hidden;
}
.ym_image_text_repeater .ym_image_text_item .ym_text_content {
	flex-shrink: 2;
	height: 100%;
	align-items: center;
	display: flex;
}
.ym_image_text_repeater h3 {
	margin-bottom: 70px;
}

.ym_two_images {
	margin-right: var(--margin-side);
	margin-left: var(--margin-side);
	display: flex;
	flex-direction: column;
	height: 400px;
	gap: 20px;
}

.ym_two_images img {
	-o-object-fit: cover;
	object-fit: cover;
	overflow: hidden;
}
.ym_two_images img:nth-child(1) {
	border-radius: 0 10px 10px 0;
}
.ym_two_images img:nth-child(2) {
	width: 100%;
	border-radius: 10px;
}

.ym_text_grid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-template-rows: auto;
	gap: 70px;
}

.ym_text_grid h2 {
	color: var(--lightBlue);
	font-weight: 600;
	font-size: 32px;
	grid-column: 1 / -1;
}
.ym_text_grid h3 {
	font-size: 18px;
}
.ym_text_grid p {
	font-weight: 300;
	font-size: 18px;
	line-height: 26px;
	font-family: var(--headingFont);
}

.ym_open_positions {
	text-align: center;
}
.ym_open_positions .ym_filters {
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	margin: 10px auto;
}

.ym_filtering_container {
	margin-top: 45px;
}

.ym_open_positions_container .ym_filters {
	margin-top: 80px;
}
.ym_open_positions_container .ym_filtering_container {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.ym_open_positions_container .ym_filtering_container details {
	width: 100%;
	background-color: var(--white);
	border-radius: 12px;
}

.ym_open_positions_container .ym_filtering_container details summary {
	background-color: var(--primary);
	padding: 20px 35px;
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	font-family: var(--headingFont);
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 10px;
	transition: all 0.3s;
}
.ym_open_positions_container .ym_filtering_container details[open] summary {
	border-radius: 10px 10px 0 0;
}
.ym_open_positions_container .ym_filtering_container details summary::marker {
	display: none;
}
.ym_open_positions_container .ym_filtering_container details summary::-webkit-details-marker {
	display: none;
}
.ym_open_positions_container .ym_filtering_container details summary::after {
	content: "";
	background: url("public/img/plus-arrow.svg");
	height: 22px;
	width: 22px;
	display: block;
}
.ym_open_positions_container .ym_filtering_container details[open] summary::after {
	content: "";
	background: url("public/img/minus-button.svg");
	height: 22px;
	width: 22px;
	display: block;
}
.ym_open_positions_container .ym_filtering_container details .ym_general_content {
	color: var(--darkBlue);
	--buttonTextColor: var(--primary);
	padding: 40px 45px;
	font-weight: 300;
	font-size: 18px;
	line-height: 26px;
	font-family: var(--headingFont);
}
.ym_open_positions_container .ym_filtering_container details a.ym_button {
	border: 1px solid var(--primary);
	padding: 12px 50px;
}
.ym_testimonial_slider_container h2 {
	text-align: center;
	display: block;
	margin: 0 auto 3rem auto;
}
.ym_testimonial_slider_container .ym_testimonial_slide_card {
	--backgroundColor: var(--darkBlueAlt);
	background-color: var(--backgroundColor);
	max-width: 600px;
	border-radius: 20px;
	padding: 30px 20px;
	position: relative;
	margin: 0 10px;
	text-align: center;
	transition: all 0.3s;
	min-height: 435px;
}
.ym_testimonial_slider_container .ym_testimonial_slide_card img {
	width: 200px;
	height: 115px;
	-o-object-fit: contain;
	object-fit: contain;
	display: block;
	margin: 0 auto;
	/*    border-radius: 115px;*/
	/*    box-shadow: var(--level-2);*/
}
.ym_testimonial_slider_container .ym_testimonial_slide_card::before {
	content: "";
	background: url("public/img/quote-light.svg");
	position: absolute;
	/* top: 110px; */
	left: 25px;
	display: block;
	width: 39px;
	height: 23px;
}
.ym_testimonial_slider_container .ym_testimonial_slide_card::after {
	content: "";
	position: absolute;
	background: url("public/img/quote-light.svg");
	bottom: 110px;
	right: 25px;
	display: block;
	width: 39px;
	height: 23px;
}

.ym_testimonial_slider_container .ym_testimonial_slide_card.slick-center {
	--backgroundColor: var(--blue);
}

.ym_testimonial_slider_container .ym_testimonial_slide_card.slick-center::before,
.ym_testimonial_slider_container .ym_testimonial_slide_card.slick-center::after {
	background: url("public/img/quote-dark.svg");
}

.ym_testimonial_slider_container .ym_testimonial_slide_card > p {
	margin-top: 1rem;
	margin-bottom: 1.5rem;
	text-align: center;
}
.ym_testimonial_slider_container .ym_testimonial_slide_card h3 {
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	text-align: center;
	margin: 0;
}

.ym_testimonial_slider_container::after {
	position: absolute;
	width: 100vw;
	height: 50%;
	display: block;
	border: 4px solid var(--blue);
	border-radius: 400px;
	bottom: 3rem;
	left: 0;
	transform: translateX(-20%);
	z-index: -1;
}
.ym_testimonial_slider_container.small::after {
	content: none;
}

.ym_back_arrow_link {
	font-weight: 700;
	font-size: 14px;
	line-height: 21px;
	font-family: var(--headingFont);
	display: flex;
	gap: 15px;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
}
.ym_back_arrow_link::before {
	content: "";
	background: url("public/img/arrow-white.svg");
	width: 25px;
	height: auto;
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transform: rotateZ(180deg);
}

.ym_img_video_grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 3fr 1fr;
	gap: 20px;
	overflow-x: hidden;
}

.ym_img_video_grid > *:nth-child(1) {
	grid-column: 1 / -1;
	grid-row: 1;
	height: 100%;
	max-height: 600px;
}
.ym_img_video_grid > * {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	display: none;
}
.ym_img_video_grid > *:nth-child(1),
.ym_img_video_grid > *:nth-child(2),
.ym_img_video_grid > *:nth-child(3),
.ym_img_video_grid > *:nth-child(4) {
	display: block;
}
.ym_img_video_grid > *:nth-child(1).move-left {
	-webkit-animation-name: translate-left-opacity;
	animation-name: translate-left-opacity;
}
.ym_img_video_grid > *.move-left {
	-webkit-animation-name: translate-left-no-opacity;
	animation-name: translate-left-no-opacity;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-duration: 0.3s;
	animation-duration: 0.3s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
}
.ym_img_video_grid > *:nth-child(1).move-right {
	-webkit-animation-name: translate-right-opacity;
	animation-name: translate-right-opacity;
}
.ym_img_video_grid > *.move-right {
	-webkit-animation-name: translate-right-no-opacity;
	animation-name: translate-right-no-opacity;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-duration: 0.3s;
	animation-duration: 0.3s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
}
.ym_img_video_grid > *:nth-child(1).fade-in-left,
.ym_img_video_grid > *:last-child.fade-in-left {
	-webkit-animation-name: fade-in;
	animation-name: fade-in;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-duration: 0.3s;
	animation-duration: 0.3s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
}
.ym_img_video_grid > *:nth-child(1).fade-in-right,
.ym_img_video_grid > *:nth-child(2).fade-in-right {
	-webkit-animation-name: fade-in;
	animation-name: fade-in;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-duration: 0.3s;
	animation-duration: 0.3s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
}

@-webkit-keyframes translate-left-no-opacity {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}

@keyframes translate-left-no-opacity {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}
@-webkit-keyframes translate-left-opacity {
	from {
		opacity: 1;
		transform: translateX(0);
	}
	to {
		opacity: 0;
		transform: translateX(-100%);
	}
}
@keyframes translate-left-opacity {
	from {
		opacity: 1;
		transform: translateX(0);
	}
	to {
		opacity: 0;
		transform: translateX(-100%);
	}
}
@-webkit-keyframes translate-right-no-opacity {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(100%);
	}
}
@keyframes translate-right-no-opacity {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(100%);
	}
}
@-webkit-keyframes translate-right-opacity {
	from {
		opacity: 1;
		transform: translateX(0);
	}
	to {
		opacity: 0;
		transform: translateX(100%);
	}
}
@keyframes translate-right-opacity {
	from {
		opacity: 1;
		transform: translateX(0);
	}
	to {
		opacity: 0;
		transform: translateX(100%);
	}
}
@-webkit-keyframes fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.ym_img_video_grid + .ym_button_container {
	margin-top: 25px;
	display: flex;
}
.ym_img_video_grid + .ym_button_container img {
	width: 23px;
	height: 23px;
	cursor: pointer;
}
.ym_testimonial_slider_container_alt {
	margin-bottom: 0;
}
.ym_testimonial_slider_container_alt::after {
	display: none;
}
.ym_testimonial_slider_container_alt .ym_testimonial_slide_card::before,
.ym_testimonial_slider_container_alt .ym_testimonial_slide_card::after {
	display: none !important;
}
.ym_testimonial_slider_container_alt .ym_testimonial_slide_card {
	border-radius: 0;
	--backgroundColor: var(--blue);
}
.blog .ym_recent_news::after {
	display: none;
}

.ym_news_filter form {
	display: flex;
	gap: 20px;
	align-items: center;
	flex-wrap: wrap;
	justify-content: right;
}
.ym_news_filter form > label:first-child {
	/* margin-right: auto; */
}
.ym_news_filter form input,
.ym_news_filter form select {
	background-color: white;
	padding: 12px 20px;
	border-radius: 5px;
	margin-left: 20px;
}
.ym_news_filter form button {
	background-color: var(--blue);
	padding: 12px 33px;
	border-radius: 5px;
	color: white;
	text-transform: uppercase;
	border: none;
	font-family: var(--headingFont);
	font-weight: 700;
}
.ym_news_filter form input {
	width: 435px;
	flex-shrink: 0;
}
.ym_news_filter form select {
	width: 320px;
	flex-shrink: 0;
}
.ym_news_filter .ym_select {
	position: relative;
}
.ym_news_filter .ym_select select {
	-webkit-appearance: none;
}
.ym_news_filter .ym_select::after {
	content: "\f0d7";
	font: var(--fa-font-solid);
	color: #84aaeb;
	position: absolute;
	right: 20px;
	top: 14px;
	pointer-events: none;
}
.ym_news_filter form > label {
	display: flex;
	align-items: center;
	margin-bottom: 0;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
}
.ym_news_filter {
	margin-bottom: 65px;
}
.ym_news_filter form > label p {
	margin-bottom: 0;
	flex-shrink: 0;
	text-transform: uppercase;
	font-family: var(--headingFont);
	font-weight: 300;
}

.ym_text_image_overlap {
	margin-left: var(--margin-side);
	margin-right: var(--margin-side);
	grid-template-columns: 192px 192px auto;
	gap: 20px;
}
.ym_text_image_overlap_small.ym_text_image_overlap_l {
	grid-template-columns: 192px 192px auto;
}
.ym_text_image_overlap_large.ym_text_image_overlap_l {
	grid-template-columns: 200px 480px auto;
}
.ym_text_image_overlap_small.ym_text_image_overlap_r {
	grid-template-columns: auto 192px 192px;
}
.ym_text_image_overlap_large.ym_text_image_overlap_r {
	grid-template-columns: auto 480px 200px;
}

.ym_text_image_overlap .ym_text_content {
	grid-column: 1 / 3;
	grid-row: 1;
	background-color: white;
	color: var(--darkBlueAlt);
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content;
	align-self: center;
	padding: 85px 65px;
	border-radius: 10px;
}
.ym_text_image_overlap_r .ym_text_content {
	grid-column: 2 / -1;
}

.ym_text_image_overlap img {
	grid-column: 2 / -1;
	grid-row: 1;
	position: relative;
	z-index: -1;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 20px 0 0 20px;
	overflow: hidden;
	max-height: 600px;
}
.ym_text_image_overlap_r img {
	grid-column: 1 / 3;
	border-radius: 0 20px 20px 0;
}
.ym_text_image_overlap h2 {
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 40px;
}

.ym_text_image_overlap p {
	font-weight: 300;
	font-size: 18px;
	line-height: 26px;
	font-family: var(--headingFont);
}

.ym_content_and_list {
	padding: 0 calc(var(--margin-side) + 100px);
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.ym_content_and_list .ym_text_content {
	max-width: 300px;
	width: 100%;
	margin-bottom: 25px;
}
.ym_content_and_list h2 {
	font-weight: 700;
	/* font-size: 18px;
    line-height: 24px; */
	margin-bottom: 30px;
}
.ym_content_and_list p {
	font-weight: 300;
	font-size: 18px;
	line-height: 26px;
	font-family: var(--headingFont);
}

.ym_content_and_list li {
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	font-family: var(--headingFont);
	width: 100%;
	max-width: 215px;
	display: block;
	position: relative;
	margin-bottom: 30px;
}
.ym_content_and_list li::before {
	content: "•";
	color: var(--blue);
	position: absolute;
	left: -15px;
}
.ym_content_and_list ul {
	display: flex;
	width: 100%;
	max-width: 480px;
	flex-wrap: wrap;
	margin-top: 3.5rem;
}

.ym_small_heading_text {
	padding: 0 85px;
	grid-template-columns: auto 780px;
	grid-template-rows: auto;
	gap: 20px;
}
.ym_small_heading_text .ym_paragraphs {
	width: 100%;
	max-width: 780px;
	display: block;
}
.ym_small_heading_text h2 {
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	max-width: 120px;
}
.ym_small_heading_text p {
	font-weight: 300;
	font-size: 18px;
	line-height: 30px;
	font-family: var(--headingFont);
	max-width: 100%;
}

.ym_map .map path {
	stroke-width: 0.97063118000000004;
	fill: rgba(27, 67, 136, 0.1);
	stroke: #84aaeb;
}
.ym_map .map path[data-selected="true"] {
	--mapBlue: #84aaeb;
	fill: var(--blue);
	stroke: var(--mapBlue);
}

.ym_map {
	padding: 0 var(--margin-side);
	width: 100%;
}
.ym_map h2 {
	text-align: center;
	margin-bottom: 50px;
}
.ym_map > p {
	text-align: center;
	margin-bottom: 50px;
	font-weight: 300;
	font-size: 16px;
	line-height: 30px;
	font-family: var(--headingFont);
	width: 100%;
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}
.ym_map .map {
	margin-bottom: 0;
}
.ym_map svg {
	width: 100%;
	margin-left: -30px;
	height: 100%;
}

.ym_map_filters {
	display: flex;
	gap: 20px;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}
.ym_map_filters input,
.ym_map_filters select {
	background: #16243d;
	border: 1px solid #1b4388;
	padding: 12px 20px;
	border-radius: 5px;
	margin-left: 20px;
	color: #84aaeb;
}
.ym_map_filters .ym_select {
	position: relative;
}
.ym_map_filters .ym_select select {
	-webkit-appearance: none;
}
.ym_map_filters .ym_select::after {
	content: "\f0d7";
	font: var(--fa-font-solid);
	color: #84aaeb;
	position: absolute;
	right: 20px;
	top: 14px;
	pointer-events: none;
}
.ym_map_filters input::-webkit-input-placeholder {
	color: #84aaeb;
}
.ym_map_filters input::-moz-placeholder {
	color: #84aaeb;
}
.ym_map_filters input:-ms-input-placeholder {
	color: #84aaeb;
}
.ym_map_filters input::-ms-input-placeholder {
	color: #84aaeb;
}
.ym_map_filters input::placeholder {
	color: #84aaeb;
}
.ym_map_filters input {
	width: auto;
	flex-shrink: 0;
}
.ym_map_filters select {
	width: 280px;
	flex-shrink: 0;
}
.ym_map_filters label {
	display: flex;
	align-items: center;
	margin-bottom: 0;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
}
.ym_map_filters label p {
	margin-bottom: 0;
	font-family: var(--headingFont);
	font-weight: 300;
}

.ym_map_cards {
	display: grid;
	gap: 15px;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 30px;
}
.ym_map_cards a {
	width: 100%;
	display: grid;
	grid-template-columns: 120px auto;
	padding: 15px 20px;
	gap: 30px;
	background-color: var(--blue);
	border-radius: 5px;
	transition: all 0.3s;
}
.ym_map_cards a:hover {
	text-decoration: none;
	background-color: #18284d;
}
.ym_map_cards a img {
	border-radius: 5px;
	-o-object-fit: contain;
	object-fit: contain;
	padding: 0.6rem;
	background: white;
}
.ym_map_cards a h4 {
	font-weight: 300;
	font-size: 16px;
	text-transform: uppercase;
}
.ym_map_cards a h3 {
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
}
.ym_map_cards a span {
	font-size: 14px;
	display: block;
	font-family: var(--headingFont);
	font-weight: 500;
	letter-spacing: 1px;
}
.ym_map_cards a span::after {
	content: "";
	width: 30px;
	height: 14px;
	margin-left: 1rem;
	display: inline-block;
	background: url("public/img/arrow.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.ym_map_cards a .ym_text_content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.ym_contact_info h2 {
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	color: #84aaeb;
}
.ym_contact_info h3 {
	font-weight: 700;
	font-size: 18px;
	line-height: 30px;
	margin-bottom: 0;
}
.ym_contact_info p {
	font-weight: 300;
	font-size: 18px;
	line-height: 30px;
	font-family: var(--headingFont);
	margin-bottom: 0;
}
.ym_college_contact {
	display: flex;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: 250px auto;
	gap: 15px;
	flex-direction: column;
	align-items: center;
}
.ym_college_contact > img {
	grid-column: 1 / 4;
	grid-row: 1;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	padding: 1.5rem;
	max-width: 250px;
	background: white;
}
.ym_college_contact .ym_contact_info {
	grid-column: 5 / 13;
	grid-row: 1 / 3;
	width: 100%;
}

.ym_college_contact .ym_links {
	grid-column: 1 / 4;
	grid-row: 2 / 3;
	margin-top: 50px;
}
.ym_college_contact .ym_links .ym_button {
	display: block;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content;
	margin-bottom: 50px;
}
.ym_college_contact .ym_links .ym_social_links {
	display: flex;
	gap: 40px;
	align-items: center;
	justify-content: center;
}

.ym_college_contact .ym_contact_info {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto;
	gap: 25px;
}
.ym_college_contact .ym_contact_info h2 {
	grid-column: 1 / -1;
	margin-bottom: 30px;
}
.ym_college_contact .ym_contact_info .ym_school,
.ym_college_contact .ym_contact_info .ym_contact div > div > * {
	padding-left: 40px;
	position: relative;
}
.ym_college_contact .ym_contact_info .ym_school::before,
.ym_college_contact .ym_contact_info .ym_contact div > div > *::before {
	position: absolute;
	left: 0;
	top: 5px;
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background-repeat: no-repeat;
	background-size: contain;
}
.ym_college_contact .ym_contact_info .ym_school::before {
	background-image: url("./public/img/Screen-Shot-2022-09-13-at-11.23-1-Traced.svg");
}
.ym_college_contact .ym_contact_info .ym_contact div > p:nth-child(1)::before {
	background-image: url("./public/img/Screen-Shot-2022-10-04-at-3.30-1-Traced.svg");
}
.ym_college_contact .ym_contact_info .ym_contact div > p:nth-child(2)::before {
	background-image: url("./public/img/Screen-Shot-2022-10-04-at-3.31-1-Traced.svg");
}
.ym_college_contact .ym_contact_info .ym_contact div > p:nth-child(3) {
	position: relative;
}
.ym_college_contact .ym_contact_info .ym_contact div > p:nth-child(3)::before {
	background-image: url("./public/img/Screen-Shot-2022-10-04-at-3.32-1-Traced.svg");
}
.ym_college_contact .ym_contact_info hr {
	grid-column: 1 / -1;
	height: 1px;
	width: 100%;
	margin: 60px 0;
}
.ym_college_contact .ym_contact_info .ym_contact {
}

.ym_college_contact .ym_contact_info .ym_contact > div {
	display: flex;
	gap: 30px;
	margin-bottom: 2rem;
}
.ym_college_contact .ym_contact_info .ym_contact > div:last-child {
	margin-bottom: 0;
}
.ym_college_contact .ym_contact_info .ym_contact > div img {
	height: 55px;
	width: 55px;
	border-radius: 100px;
	overflow: hidden;
	-o-object-fit: cover;
	object-fit: cover;
}
.ym_college_contact .ym_contact_info .ym_contact > div p {
	font-weight: 300;
	font-size: 18px;
	line-height: 30px;
	font-family: var(--headingFont);
	margin-bottom: 5px;
	display: block;
}
.ym_college_contact .ym_contact_info .ym_contact > div p:first-of-type {
	font-weight: 700;
	font-size: 18px;
	font-family: var(--headingFont);
}
.ym_college_contact .ym_contact_info .ym_contact > div p a:hover {
	text-decoration: none;
	opacity: 0.8;
}
.ym_college_contact .ym_contact_info .ym_other_details {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto;
	width: 100%;
	-moz-column-gap: 220px;
	column-gap: 220px;
	row-gap: 0;
	grid-column: 1 / -1;
}
.ym_college_contact .ym_contact_info .ym_other_details > div {
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	display: block;
}

.ym_college_contact .ym_contact_info .ym_other_details h3 {
	font-weight: 300;
	font-size: 16px;
	line-height: 30px;
	margin-bottom: 0;
}
.ym_college_contact .ym_contact_info .ym_other_details h4 {
	font-weight: 700;
	font-size: 18px;
	line-height: 30px;
	margin-bottom: 30px;
}
.ym_general_content h1 {
	font-size: var(--h3);
}
.ym_general_content h2 {
	margin: 0 0 1.5rem;
}
.ym_general_content p {
	max-width: 100%;
}
.ym_general_content p:last-of-type {
	margin-bottom: 0;
}
.ym_general_content p b {
	font-weight: 700;
}
.ym_general_content img {
	max-width: 100%;
	width: auto;
	height: auto;
}
.ym_flex_button {
	display: flex;
	align-items: flex-end;
	justify-content: right;
	height: 100%;
	padding: 0 0 0.25rem;
}
.ym_back_link {
	padding: 3rem 0;
}
.ym_back_link a {
	font-family: var(--headingFont);
	color: white;
	font-size: 14px;
	font-weight: 700;
}
.ym_back_link a::before {
	content: url(public/img/arrow-white.svg);
	display: inline-block;
	margin-right: 1rem;
	transform: rotate(180deg);
	transition: all 0.3s;
}
.ym_back_link a:hover::before {
	transform: rotate(180deg) scaleX(150%);
}
.ym_video {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}
.ym_video iframe,
.ym_video video {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
}
.ym_video_image {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 1;
}
.ym_video_image img {
	width: 88px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.3s;
}
.ym_video_image:hover img {
	width: 120px;
}
.ym_video_slider_thumbnails {
	width: calc(100% + 1rem);
	margin: 1rem -0.5rem 0;
}
.ym_video_slider_thumbnails .slick-list {
	padding: 0 !important;
}
.ym_video_slider_thumbnails .ym_video_slide {
	margin: 0 0.5rem;
}
.ym_video_slider_thumbnails .ym_video_image img,
.ym_video_slider_thumbnails .ym_video_image:hover img {
	width: 50px;
}
.ym_video_slider_thumbnails_arrows {
	position: relative;
	margin: 1rem 0 0;
	height: 20px;
}
.ym_video_slider_thumbnails_arrows .slick-arrow {
	border: 1px solid white;
	border-radius: 50%;
}
.ym_video_slider_thumbnails_arrows .slick-arrow::before {
	font-size: 10px;
	color: white;
}
.ym_split_content .ym_text_content {
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0 2rem;
}
.ym_split_image img {
	border-radius: 10px;
}

/*GRAVITY FORMS*/

.gform_wrapper .gfield_required {
	color: var(--lightBlue) !important;
}
.gform_wrapper.gravity-theme input[type="color"],
.gform_wrapper.gravity-theme input[type="date"],
.gform_wrapper.gravity-theme input[type="datetime-local"],
.gform_wrapper.gravity-theme input[type="datetime"],
.gform_wrapper.gravity-theme input[type="email"],
.gform_wrapper.gravity-theme input[type="month"],
.gform_wrapper.gravity-theme input[type="number"],
.gform_wrapper.gravity-theme input[type="password"],
.gform_wrapper.gravity-theme input[type="search"],
.gform_wrapper.gravity-theme input[type="tel"],
.gform_wrapper.gravity-theme input[type="text"],
.gform_wrapper.gravity-theme input[type="time"],
.gform_wrapper.gravity-theme input[type="url"],
.gform_wrapper.gravity-theme input[type="week"],
.gform_wrapper.gravity-theme select,
.gform_wrapper.gravity-theme textarea {
	border: 1px solid rgba(255, 255, 255, 0.5);
	padding: 0.75rem !important;
	color: white;
	background: transparent;
}
.gform_wrapper.gravity-theme input[type="submit"] {
	--buttonColor: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	color: var(--buttonTextColor);
	background-color: var(--buttonColor);
	border: none;
	border-radius: 100px;
	padding: 16px 51px;
	box-shadow: var(--level-1);
	transition: 0.3s ease-in-out all;
	text-decoration: none;
	border: var(--line);
}
.gform_wrapper.gravity-theme input[type="submit"]:hover {
	box-shadow: var(--level-2);
	--buttonColor: var(--white);
	--buttonTextColor: var(--background);
}
.ginput_container_fileupload input {
	border: none;
	padding: 0.75rem !important;
}
.gform_required_legend {
	display: none;
}
.ym_footer .gform_wrapper.gravity-theme input[type="submit"] {
	padding: 12px 20px;
}
.ym_footer .gform_wrapper.gravity-theme .gform_fields {
	align-items: end;
	justify-content: end;
}
.ym_footer .gform_wrapper.gravity-theme .gfield.gfield--width-half {
	grid-column: span 9;
}
.ym_footer .gform_wrapper.gravity-theme .gfield.gfield--width-half#field_submit {
	justify-content: right;
	grid-column: span 3;
}
.ym_footer .gform_wrapper.gravity-theme .gfield input.large {
	border: none;
	border-bottom: 1px solid white;
}
.ym_footer .gform_wrapper.gravity-theme .gfield input.large::-webkit-input-placeholder {
	color: lightgrey;
}
.ym_footer .gform_wrapper.gravity-theme .gfield input.large::-moz-placeholder {
	color: lightgrey;
}
.ym_footer .gform_wrapper.gravity-theme .gfield input.large:-ms-input-placeholder {
	color: lightgrey;
}
.ym_footer .gform_wrapper.gravity-theme .gfield input.large::-ms-input-placeholder {
	color: lightgrey;
}
.ym_footer .gform_wrapper.gravity-theme .gfield input.large::placeholder {
	color: lightgrey;
}

/*PAGINATION*/

.ym_pagination {
	display: block;
	margin: 2rem 0 0;
	text-align: center;
	font-family: var(--headingFont);
	font-weight: 300;
	font-size: 14px;
}
.ym_pagination a.next {
	margin-left: 3rem;
}
.ym_pagination a.next::before {
	content: "\f0da";
	font: var(--fa-font-solid);
	color: white;
	width: 23px;
	height: 23px;
	border: 1px solid white;
	border-radius: 50%;
	display: inline-block;
	font-size: 10px;
	text-align: center;
	vertical-align: middle;
	padding: 5px;
	margin-right: 1rem;
}
.ym_pagination a.prev {
	margin-right: 3rem;
}
.ym_pagination a.prev::after {
	content: "\f0d9";
	font: var(--fa-font-solid);
	color: white;
	width: 23px;
	height: 23px;
	border: 1px solid white;
	border-radius: 50%;
	display: inline-block;
	font-size: 10px;
	text-align: center;
	vertical-align: middle;
	padding: 5px;
	margin-left: 1rem;
}
.ym_pagination .page-numbers:not(.prev):not(.next) {
	margin: 0 0.5rem;
}
.ym_pagination .page-numbers.current {
	color: var(--lightBlue);
	font-weight: 700;
}
.ym_logo_slider_thin .flex {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 15px;
}
