/*	--------------------------------------------------
	CSS LESS
	PROJECT : ALUMNI - MASTER
	BY : GAJEN
	DATE : SEPTEMBER 2020
	-------------------------------------------------- */
/*	--------------------------------------------------
	TABLE OF CONTENTS 
	-------------------------------------------------- 

	1.0 RESET
	2.0 VARIABLES - COLOURS
	3.0 LINKS
	4.0 LISTS
	5.0 MISC

	6.0 TYPOGRAPHY
		6.1 FONTFACE
		6.2 TYPOGRAPHY

	7.0 BUTTONS
	8.0 FORM

	9.0 LAYOUT
		9.1 DEVICE WIDTH UPTO 480
		9.2 DEVICE WIDTH FROM 480
		9.3 DEVICE WIDTH FROM 640
		9.4 DEVICE WIDTH FROM 768
		9.5 DEVICE WIDTH FROM 992
		9.6 DEVICE WIDTH FROM 1224
		9.7 DEVICE WIDTH FROM 1400

	10.0 VX STYLES
*/
/*	1.0 ----------------------------------------------
	RESET
	-------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}
select,
input,
textarea,
button {
  outline: none;
}
pre,
code,
kbd,
samp {
  font-family: monospace, sans-serif;
}
html {
  overflow-y: scroll;
}
a:hover,
a:active {
  outline: none;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
nav ul,
nav li {
  margin: 0;
  list-style: none;
  list-style-image: none;
}
small {
  font-size: 85%;
}
strong,
th {
  font-weight: bold;
}
td {
  vertical-align: top;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
  padding: 15px;
}
textarea {
  overflow: auto;
}
.ie6 legend,
.ie7 legend {
  margin-left: -7px;
}
.ie7 input[type="checkbox"] {
  vertical-align: baseline;
}
.ie6 input {
  vertical-align: text-bottom;
}
label,
input[type="button"],
input[type="submit"],
input[type="image"],
button {
  cursor: pointer;
}
input[type="submit"],
button,
input[type="button"] {
 background-color: #13327c;
 color: #fff;
 display: inline-block;
 box-sizing: border-box;
 border-radius: 50px;
 position: relative;
 text-align: center;
 padding: 12px 28px;
 font-family: 'DM Sans';
 font-size: 24px;
 line-height: normal;
 font-weight: 500;
}

button,
input,
select,
textarea {
  margin: 0;
}
input:invalid,
textarea:invalid {
  /*border-radius: 1px; -moz-box-shadow: 0px 0px 5px red; -webkit-box-shadow: 0px 0px 5px red; box-shadow: 0px 0px 5px red;*/
}
.no-boxshadow input:invalid,
.no-boxshadow textarea:invalid {
  background-color: #f0dddd;
}
button {
  width: auto;
  overflow: visible;
}
.ie7 img {
  -ms-interpolation-mode: bicubic;
}
body {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
textarea {
  resize: none;
}
nav ul,
ul.list,
fieldset ul,
.tweets ul,
.slides ul {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: visible;
  height: 100%;
}
.box,
input,
textarea,
select {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
}
i.fa {
  margin-right: 5px;
}
i.fa.after {
  margin-right: 0;
  margin-left: 5px;
}
.overlayicon i.fa {
  margin: 0;
}
.site_search i.fa {
  margin: 0 auto;
}
/*	2.0 ----------------------------------------------
	VARIABLES
	-------------------------------------------------- */
/*	3.0 ----------------------------------------------
	LINKS
	-------------------------------------------------- */
a {
  text-decoration: none;
  line-height: inherit;
  cursor: pointer;
  color: #333333;
}
/*a,
	button,
	button span,	
	input,
	textarea, 
	select,
	.button { 
		-webkit-transition: all 0.25s ease;
		-moz-transition: all 0.25s ease;
		-ms-transition: all 0.25s ease;
		-o-transition: all 0.25s ease;
		transition: all 0.25s ease;
	}*/
a:hover {
  text-decoration: none;
}
p a:hover {
  color: #1C4BB8;
}
a:focus {
  outline: none;
  text-decoration: none;
  color: #333333;
}
a:visited {
  outline: none;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
}
/*	4.0 ----------------------------------------------
	LISTS
	-------------------------------------------------- */
ul,
ol {
  padding: 0;
  margin-bottom: 0;
  overflow: hidden;
}
ul {
  list-style: none;
}
ol {
  padding-left: 40px;
  list-style: decimal;
}
ul ul,
ol ol {
  padding: 0px 0px 0px 15px;
}
ul ul {
  list-style: circle outside;
}
ol ol {
  list-style: lower-roman;
}
ul.square {
  list-style: square outside;
}
ul.circle {
  list-style: circle outside;
}
ul.disc {
  list-style: disc outside;
}

nav ul,
nav li {
  padding: 0;
}
dl dt {
  font-weight: bold;
  padding-bottom: 2px;
}
dl dd {
  padding-bottom: 2px;
}
.content_area .vx_text ul {
  padding-left: 22px;
  margin: 16px 0 16px 16px;
  list-style: disc outside;
}

.content_area .vx_text ul.contact {
  list-style: none;
  margin: 0;
  padding-left: 0;
  line-height: normal;
}

.content_area .vx_text ul.contact > li {
  font-size: 16px;
  padding-left: 0;
  display: inline;
  color: #1c4bb8;
}

.content_area .vx_text ul.contact > li > a {
  color: #1c4bb8;
}

.content_area .vx_text ul > li {
  padding-left: 12px;
}
.content_area .vx_text ul > li::marker {
  color: #1C4BB8;
}

.article_template .page_title h4,
.page_title h4 {
  font-size: 18px;
}

.article_listing--job .article_listing__item {
  background: transparent;
  padding: 28px 0;
  border-bottom: 1px solid #333535;
  height: auto;
}
.article_listing--job .article_listing__item .article_listing__item__info {
  padding: 0;
}

.article_filter--event {
  max-width: 1200px;
  margin: auto;
}

.article_filter--job {
  max-width: 1200px;
  margin: auto;
}
.current_jobs_list .home_dynamic_blocks__info {
  padding: 28px 0;
  border-bottom: 1px solid #333535;
}
/*	5.0 ----------------------------------------------
	MISC
	-------------------------------------------------- */
object,
embed {
  max-width: none;
}
img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}
img.headshot {
  border-radius: 50%;
}

img.background {
  max-height: 350px;
}

img.dynamic-image {
  padding-bottom: 20px;
}

.cta-col {
  padding: 15px 0;
}

.square img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 aspect-ratio: 3 / 2;
 margin: auto;
}

.image-gallery-item {
  padding: 20px 10px;
}

.image-gallery-item:hover {
  padding: 20px 0 0 0;
}

.professional-card {
  background: #E8F1CF;
  padding: 20px 0 20px 10px;
  margin-bottom: 15px;
}

.professional-card.white {
  background: none;
}

.professional-card a.bio-link  {
  font-size: 16px;
  font-weight: bold;
}

.professional-card p {
  line-height: 24px;
  padding: 0;
}

.professional-card h5 {
  margin: 0;
  line-height: normal;
  font-size: 20px;
  font-weight: 600;
}

.professional-card h6 {
  font-size: 18px;
  line-height: normal;
  margin: 0;
  font-weight: normal;
}

.cta {
  margin: auto;
}

.icon-search {
 display:none;
}

@media only screen and (max-width: 1000px) {
.cta p {
  font-size: 16px;
  line-height: 26px;
}
}

@media only screen and (max-width: 479px) {
.reverse {
 display: none;
}
}

#_blocks img {
  width: auto;
}
.video_box {
  position: relative;
  padding-bottom: 52.25%;
  padding-top: 25px;
  height: 0;
  margin-bottom: 30px;
}
.video_box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hide {
  display: none;
}
.clear {
  clear: both;
}
.centered {
  text-align: center;
}
.pull_right {
  float: right;
}
.pull_left {
  float: left;
}
/*	6.0 ----------------------------------------------
	TYPOGRAPHY
	-------------------------------------------------- */
/*	6.1 ----------------------------------------------
		FONTFACE
		-------------------------------------------------- */
@font-face {
  font-family: 'PlayfairDisplay';
  src: url('../_fonts/PlayfairDisplay-Regular.eot?#iefix') format('embedded-opentype'), url('../_fonts/PlayfairDisplay-Regular.woff') format('woff'), url('../_fonts/PlayfairDisplay-Regular.ttf') format('truetype'), url('../_fonts/PlayfairDisplay-Regular.svg#PlayfairDisplay-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'PlayfairDisplay-Italic';
  src: url('../_fonts/PlayfairDisplay-Italic.eot?#iefix') format('embedded-opentype'), url('../_fonts/PlayfairDisplay-Italic.woff') format('woff'), url('../_fonts/PlayfairDisplay-Italic.ttf') format('truetype'), url('../_fonts/PlayfairDisplay-Italic.svg#PlayfairDisplay-Italic') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'PlayfairDisplay-Black';
  src: url('../_fonts/PlayfairDisplay-Black.eot?#iefix') format('embedded-opentype'), url('../_fonts/PlayfairDisplay-Black.woff') format('woff'), url('../_fonts/PlayfairDisplay-Black.ttf') format('truetype'), url('../_fonts/PlayfairDisplay-Black.svg#PlayfairDisplay-Black') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'PublicSans';
  src: url('../_fonts/PublicSans-Regular.eot?#iefix') format('embedded-opentype'), url('../_fonts/PublicSans-Regular.woff') format('woff'), url('../_fonts/PublicSans-Regular.ttf') format('truetype'), url('../_fonts/PublicSans-Regular.svg#PublicSans-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'PublicSans-Thin';
  src: url('../_fonts/PublicSans-Thin.eot?#iefix') format('embedded-opentype'), url('../_fonts/PublicSans-Thin.woff') format('woff'), url('../_fonts/PublicSans-Thin.ttf') format('truetype'), url('../_fonts/PublicSans-Thin.svg#PublicSans-Thin') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'PublicSans-Light';
  src: url('../_fonts/PublicSans-Light.eot?#iefix') format('embedded-opentype'), url('../_fonts/PublicSans-Light.woff') format('woff'), url('../_fonts/PublicSans-Light.ttf') format('truetype'), url('../_fonts/PublicSans-Light.svg#PublicSans-Light') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'PublicSans-Medium';
  src: url('../_fonts/PublicSans-Medium.eot?#iefix') format('embedded-opentype'), url('../_fonts/PublicSans-Medium.woff') format('woff'), url('../_fonts/PublicSans-Medium.ttf') format('truetype'), url('../_fonts/PublicSans-Medium.svg#PublicSans-Medium') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'PublicSans-SemiBold';
  src: url('../_fonts/PublicSans-SemiBold.eot?#iefix') format('embedded-opentype'), url('../_fonts/PublicSans-SemiBold.woff') format('woff'), url('../_fonts/PublicSans-SemiBold.ttf') format('truetype'), url('../_fonts/PublicSans-SemiBold.svg#PublicSans-SemiBold') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'PublicSans-Bold';
  src: url('../_fonts/PublicSans-Bold.eot?#iefix') format('embedded-opentype'), url('../_fonts/PublicSans-Bold.woff') format('woff'), url('../_fonts/PublicSans-Bold.ttf') format('truetype'), url('../_fonts/PublicSans-Bold.svg#PublicSans-Bold') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'PublicSans-ExtraBold';
  src: url('../_fonts/PublicSans-ExtraBold.eot?#iefix') format('embedded-opentype'), url('../_fonts/PublicSans-ExtraBold.woff') format('woff'), url('../_fonts/PublicSans-ExtraBold.ttf') format('truetype'), url('../_fonts/PublicSans-ExtraBold.svg#PublicSans-ExtraBold') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'PublicSans-Black';
  src: url('../_fonts/PublicSans-Black.eot?#iefix') format('embedded-opentype'), url('../_fonts/PublicSans-Black.woff') format('woff'), url('../_fonts/PublicSans-Black.ttf') format('truetype'), url('../_fonts/PublicSans-Black.svg#PublicSans-Black') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../_fonts/DMSans-Medium.woff2') format('woff2'), url('../_fonts/DMSans-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../_fonts/DMSans-SemiBold.woff2') format('woff2'), url('../_fonts/DMSans-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../_fonts/DMSans-Black.woff2') format('woff2'), url('../_fonts/DMSans-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../_fonts/DMSans-Light.woff2') format('woff2'), url('../_fonts/DMSans-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../_fonts/DMSans-Regular.woff2') format('woff2'), url('../_fonts/DMSans-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../_fonts/DMSans-Bold.woff2') format('woff2'), url('../_fonts/DMSans-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../_fonts/DMSans-Thin.woff2') format('woff2'), url('../_fonts/DMSans-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../_fonts/DMSans-ExtraLight.woff2') format('woff2'), url('../_fonts/DMSans-ExtraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../_fonts/DMSans-ExtraBold.woff2') format('woff2'), url('../_fonts/DMSans-ExtraBold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rift';
  src: url('../_fonts/Rift-Medium.woff2') format('woff2'), url('../_fonts/Rift-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rift';
  src: url('../_fonts/Rift-Regular.woff2') format('woff2'), url('../_fonts/Rift-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rift';
  src: url('../_fonts/Rift-Light.woff2') format('woff2'), url('../_fonts/Rift-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rift';
  src: url('../_fonts/Rift-Bold.woff2') format('woff2'), url('../_fonts/Rift-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rift Demi';
  src: url('../_fonts/Rift-Demi.woff2') format('woff2'), url('../_fonts/Rift-Demi.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/*	6.2 ----------------------------------------------
		TYPOGRAPHY
		-------------------------------------------------- */
html {
  background: #FFFFFF;
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: #FFFFFF;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  height: 100%;
}
body {
  width: 100%;
  color: #333333;
  font-family: 'DM Sans', sans-serif;
  font-weight: normal;
  font-size: 22px;
  line-height: 32px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  font-family: 'DM Sans', sans-serif;
  font-weight: bold;
  color: #222222;
  margin-bottom: 20px;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-weight: inherit;
}
h1 {
  font-size: 50px;
  margin-bottom: 15px;
  line-height: 50px;
  font-family: 'rift', sans-serif;
}

h1.event {
  font-size: 45px;
  font-weight: bold;
  font-family: 'DM Sans', sans-serif;
  line-height: normal;
}

h3.rift-header {
  font-family: 'rift', sans-serif;
  color: #13327C;
  font-size: 38px;
}

h2.rift-header {
  font-family: 'rift', sans-serif;
  color: #13327C;
  font-size: 38px;
}

h3.job {
  font-size: 24px;
  color: #fff;
  font-weight: normal;
}
h3.job a {
  color: #fff;
}

h4.company {
  font-family: 'DM sans', sans-serif;
  font-weight: normal;
  color: #fff;
  font-size: 16px;
}

.job-feed {
  background: #1c4bb8;
  padding: 50px 35px;
}
.job-feed_item {
  padding-bottom: 45px;
  margin-bottom: 45px;
border-bottom: 2px solid #fff;
}
.job-feed_item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
border-bottom: none;
}

@media only screen and (min-width: 700px) {
h1.article {
    font-size: 35px;
    font-weight: normal;
    line-height: 38px;
  }
}

h2 {
  font-size: 38px;
  line-height: 42px;
  margin-bottom: 15px;
  color: #13327c;
  font-family: 'rift', sans-serif;
}
h3 {
  font-size: 28px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 18px;
}
p,
div.text {
  padding: 0px 0px 15px 0px;
  /*line-height: 22px;*/
}
p img {
  margin: 0;
}
em,
i {
  font-style: italic;
  line-height: inherit;
}
strong,
b {
  line-height: inherit;
}
small {
  font-size: 80%;
  line-height: inherit;
}
hr {
  border: solid #9A9A9A;
  border-width: 1px 0 0;
  clear: both;
  margin: 45px auto;
  height: 0;
  width: 100%;
}

abbr,
acronym {
  text-transform: uppercase;
  font-size: 90%;
  border-bottom: 1px solid #000;
  cursor: help;
}
abbr {
  text-transform: none;
}
::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #7f7f7f;
}
:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #7f7f7f;
  opacity: 1;
}
::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #7f7f7f;
  opacity: 1;
}
:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #7f7f7f;
}
/*	7.0 ----------------------------------------------
	BUTTONS
	-------------------------------------------------- */
.read_more {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.read_more p {
  padding-bottom: 0;
  margin-bottom: 0;
  color: #222222;
  font-size: 16px;
}
.read_more p a {
  color: #222222;
  display: inline-block;
  position: relative;
  padding-left: 20px;
}
.read_more p a:before {
  content: '\68';
  position: absolute;
  left: -3px;
  top: 0;
  font-family: 'alumni2019';
  color: #d7d7d7;
  font-size: 14px;
}
.read_more p a:hover:before {
  color: #1C4BB8;
}
.button {
  display: inline-block;
}

.button.right {
  display: block;
  text-align: right;
  padding-bottom: 25px;
}

.button p {
  padding: 0;
  margin: 0;
}
.button p a {
  width: 168px;
  background-color: #13327C;
  display: inline-block;
  box-sizing: border-box;
  border-radius: 50px;
  padding: 15px;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 22px;
  position: relative;
  text-align: center;
  font-family: 'DM Sans';
  font-size: 24px;
  line-height: normal;
  width: auto;
  padding: 12px 28px;
  font-weight: 500;
}
.button p a:hover {
  opacity: 0.9;
  color: #222222;
}
.button-secondary p a {
  background-color: #fff;
  display: inline-block;
  box-sizing: border-box;
  border-radius: 50px;
  border: 1px solid #1C4BB8;
  padding: 15px;
  color: #13327C;
  position: relative;
  text-align: center;
  font-family: 'DM Sans';
  font-size: 24px;
  line-height: normal;
  width: auto;
  padding: 12px 28px;
  font-weight: 500;
}
.button-secondary p a:hover {
  opacity: 0.9;
  color: #fff;
  background-color: #13327c;
  text-decoration: none;
}

.button.button--reset {
  padding: 0;
  border: none;
  background: none;
  text-decoration: underline;
}
/*	8.0 ----------------------------------------------
	FORMS
	-------------------------------------------------- */
form {
  width: 100%;
}
input,
select,
textarea {
  border: 1px solid #ACAFAF;
  color: #222222;
  font-size: 18px;
  line-height: normal;
  padding: 8px;
  min-height: 50px;
  text-transform: none;
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-family: 'DM Sans';
  border-radius: 0;
  background: #FFFFFF;
}
label {
  display: block;
  color: #333535;
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 5px;
  font-family: 'DM Sans';
  font-weight: 400;
  text-transform: none;
}
[type=checkbox],
[type=radio] {
  border: none;
}
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #7f7f7f;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #7f7f7f;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: #7f7f7f;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #7f7f7f;
}
input[readonly] {
  border-color: #acacac;
  color: #c1bebe;
}
.form_group {
  margin-bottom: 15px;
  overflow: hidden;
}
.form_group label {
  display: inline-block;
}
.form_group > label {
  display: block;
  margin-bottom: 0;
}
.form_group span {
  font-family: 'DM Sans', sans-serif;
}
.form_group.submit {
  text-align: left;
}
.form_group.select {
  position: relative;
}
.form_group.select label:after {
  width: 36px;
  height: 36px;
  content: '\66';
  position: absolute;
  right: 8px;
  top: 32px;
  pointer-events: none;
  font-family: 'alumni2019';
  color: #333333;
  text-align: center;
  line-height: 36px;
  background: none;
  text-transform: none;
  font-size: 20px;
}
.form_group.select select::-ms-expand {
  display: none;
}
.form_group.select option {
  background-color: #FFFFFF;
  color: #333333;
}
.form_group .radio {
  position: relative;
  margin-bottom: 2px;
  margin-right: 15px;
}
.form_group .radio input[type="checkbox"],
.form_group .radio input[type="radio"] {
  position: absolute;
  top: 5px;
  left: 0;
  visibility: hidden;
}
.form_group .radio .checkbox_label,
.form_group .radio .radio_label {
  padding-left: 24px;
  display: inline-block;
}
.form_group .radio .checkbox_label:before,
.form_group .radio .radio_label:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  font-size: 16px;
  line-height: 16px;
  position: absolute;
  left: 0;
  top: 3px;
  font-family: 'alumni2019';
  text-transform: none;
}
.form_group .radio .checkbox_label:before {
  content: '\75';
}
.form_group .radio .radio_label:before {
  content: '\77';
}
.form_group .radio input[type=checkbox]:checked + label,
.form_group .radio input[type=radio]:checked + label {
  color: #1C4BB8;
}
.form_group .radio input[type=checkbox]:checked + label::before {
  content: '\76';
}
.form_group .radio input[type=radio]:checked + label::before {
  content: '\78';
}
.form_group i {
  font-size: 16px;
  line-height: 16px;
}
.form_group .alert ul {
    list-style: disc outside;
    padding-left: 20px;
    font-size: 16px;
}
/*	VX FORM STYLES */
.vx_form {
  margin-bottom: 20px;
}
.vx_form p {
  margin-bottom: 10px;
  overflow: hidden;
}
.vx_form p label {
  display: inline-block;
}
.vx_form p > label {
  display: block;
  margin-bottom: 5px;
}
span.registration_label {
  display: block;
  color: #000;
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 5px;
  font-family: 'DM Sans';
  font-weight: 400;
  text-transform: none;
}
.interaction_field > span,
.multiple_choice > span,
.checkboxes > span,
.salesforce_rsvp > span {
  display: block;
  color: #000;
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 5px;
  font-family: 'DM Sans';
  font-weight: 400;
  text-transform: none;
}
.interaction_field > label,
.multiple_choice > label,
.checkboxes > label,
.salesforce_rsvp > label {
  position: relative;
  margin-bottom: 2px;
}
.interaction_field > label span,
.multiple_choice > label span,
.checkboxes > label span,
.salesforce_rsvp > label span {
  padding-left: 24px;
  display: inline-block;
}
.interaction_field > label span:before,
.multiple_choice > label span:before,
.checkboxes > label span:before,
.salesforce_rsvp > label span:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  font-size: 16px;
  line-height: 16px;
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'alumni2019';
  text-transform: none;
}
.interaction_field input[type=checkbox]:checked + span,
.multiple_choice input[type=checkbox]:checked + span,
.checkboxes input[type=checkbox]:checked + span,
.salesforce_rsvp input[type=checkbox]:checked + span,
.interaction_field input[type=radio]:checked + span,
.multiple_choice input[type=radio]:checked + span,
.checkboxes input[type=radio]:checked + span,
.salesforce_rsvp input[type=radio]:checked + span {
  color: #1C4BB8;
}
.multiple_choice input[type="radio"] {
  position: absolute;
  top: 5px;
  left: 0;
  visibility: hidden;
}
.multiple_choice > label input[type=radio] + span::before {
  content: '\77';
}
.multiple_choice input[type=radio]:checked + span::before {
  content: '\78';
}
.checkboxes input[type="checkbox"] {
  position: absolute;
  top: 5px;
  left: 0;
  visibility: hidden;
}
.checkboxes > label input[type=checkbox] + span::before {
  content: '\75';
}
.checkboxes input[type=checkbox]:checked + span::before {
  content: '\76';
}
.interaction_field input[type="checkbox"],
.interaction_field input[type="radio"] {
  position: absolute;
  top: 5px;
  left: 0;
  visibility: hidden;
}
.interaction_field > label input[type=checkbox] + span::before {
  content: '\75';
}
.interaction_field > label input[type=radio] + span::before {
  content: '\77';
}
.interaction_field input[type=checkbox]:checked + span::before {
  content: '\76';
}
.interaction_field input[type=radio]:checked + span::before {
  content: '\78';
}
/*	9.0 ----------------------------------------------
	LAYOUT
	-------------------------------------------------- */
/*	9.1 ----------------------------------------------
		DEVICE WIDTH UPTO 480
		-------------------------------------------------- */
.wrapper {
  min-height: 632px;
  padding: 0;
  background: #FFFFFF;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
.row {
  margin: 0 auto 10px;
}
.row.home_blocks_row {
  max-width: 1200px;
}

.content_area.home hr {
  max-width: 1200px;
}

.banner {
  padding: 20px 0;
}

header .container {
  overflow: visible;
  margin: 0 auto;
}
header .nav_logo {
  padding: 10px 0px 10px 0px;
  overflow: visible;
  width: 100%;
  position: relative;
  margin: 0 auto;
}
header .nav_logo .menu {
  position: relative;
}
header .nav_logo .main_nav {
  text-align: right;
  display: none;
}
header .nav_logo .main_nav.open {
  left: 0;
}
header .nav_logo .main_nav ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  overflow: visible;
  display: inline-block;
}
header .nav_logo .main_nav ul > li {
  font-size: 16px;
  line-height: 20px;
  z-index: 5555;
  margin: 0 0 10px;
  padding-bottom: 10px;
}
header .nav_logo .main_nav ul > li > a {
  display: inline-block;
  position: relative;
  color: #000;
  padding: 12px 15px;
}
header .nav_logo .main_nav ul > li > a:visited {
  color: #000;
}
header .nav_logo .main_nav ul > li > a:hover {
  color: #000;
}
header .nav_logo .main_nav ul > li.selected > a {
  color: #1C4BB8;
}
header .nav_logo .main_nav ul > li.services > ul > li {
  width: 22%;
  float: left;
  padding: 0 15px;
}
header .nav_logo .main_nav ul > li.services > ul > li a {
  color: #333333;
  font-size: 14px;
  line-height: 20px;
  display: inline-block;
}
header .nav_logo .main_nav ul > li.services > ul > li > a {
  border-bottom: 2px solid #1C4BB8;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
header .nav_logo .main_nav ul > li.services > ul > li > ul {
  margin-bottom: 0;
}
header .nav_logo .main_nav ul > li.services > ul > li > ul > li {
  margin-bottom: 0;
}
header .nav_logo .main_nav ul > li.services > ul > li > ul > li > a {
  padding: 5px 0;
}
header .nav_logo .main_nav ul > li:first-child {
  display: none;
}
header .nav_logo .main_nav ul > li > ul {
  display: none;
  position: absolute;
  background: #e2e2e2;
  top: 58px;
  text-align: left;
  padding: 35px 50px;
  z-index: 999;
}
header .nav_logo .main_nav ul > li > ul > li {
  margin-bottom: 0;
}
header .nav_logo .main_nav ul > li > ul > li a {
  color: #333333;
  font-size: 14px;
  line-height: 20px;
  display: inline-block;
  padding: 5px 0;
}
header .nav_logo .main_nav ul > li > ul > li > ul {
  margin-bottom: 5px;
}
header .nav_logo .main_nav ul > li > ul > li > ul > li {
  margin-bottom: 0;
}
header .nav_logo .main_nav ul > li > ul > li > ul > li > a {
  padding: 5px 0;
}
header .nav_logo .logo {
  padding: 15px 0 10px 25px
  /*transition: margin-top .2s linear;*/
}
header .nav_logo .logo a {
  display: inline-block;
  background-size: cover;
  max-width: 110px;
  margin: 0;
}
header .nav_logo .logo img {
  margin-bottom: 0;
}
header .nav_logo .search-button {
  position: absolute;
  right: 42px;
  top: 5px;
  cursor: pointer;
  z-index: 999;
  width: 22px;
  height: 32px;
  background: #FFFFFF;
  border-radius: 50%;
  text-align: center;
}
header .nav_logo .search-button .icon {
  color: #222222;
  font-size: 21px;
  line-height: 38px;
}
header .nav_logo .search-button .icon:before {
  line-height: 35px;
}
header .nav_logo .mobile-menu {
  position: absolute;
  top: 15px;
  right: 10px;
  z-index: 999;
  cursor: pointer;
}
header .nav_logo .mobile-menu li {
  height: 3px;
  width: 20px;
  margin-bottom: 4px;
  background: #222222;
}
header .header_icons_set {
  position: absolute;
  right: 15px;
  top: 15px;
}
header .header_icons_set .icon {
  font-size: 24px;
  line-height: 1;
  color: #222222;
  display: inline-block;
}
header .search_button,
header .profile_pic,
header .mobile_nav {
  float: right;
  margin-left: 20px;
  cursor: pointer;
}
header .search_form {
  margin-bottom: 0;
  position: absolute;
  width: 0;
  top: 0;
  left: 0;
  z-index: 998;
  display: none;
  transition: all 0.2s ease-in;
}
header .search_form input[type="text"] {
  width: 100%;
  border: none;
  border-bottom: 1px solid #1C4BB8;
  font-size: 16px;
  border-radius: 0;
  background-color: #FFFFFF;
  height: 40px;
  color: #333333;
  text-transform: none;
  padding-left: 60px;
}
header .search_form button {
  position: absolute;
  right: 29px;
  top: 9px;
  border: none;
  background: none;
}
header .search_form button .icon {
  color: #333333;
  font-size: 25px;
}
header .search_form.open {
  width: 100%;
  display: block;
}

.container {
 max-width: none;
}

footer {
  background-color: #13327C;
  padding: 20px;
}
footer .container .row {
  margin-bottom: 0;
}
footer p,
footer a,
footer li {
  color: #FFFFFF;
  margin-bottom: 0;
  padding-bottom: 0;
}
footer p,
footer li {
  font-size: 16px;
  line-height: 24px;
}
footer h3 {
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
}
footer .footer_logo a {
  width: 140px;
  display: inline-block;
  margin-bottom: 20px;
}
footer .footer_social {
  text-align: left;
margin-bottom: 15px;
}
footer .footer_social .icon {
  font-size: 14px;
  line-height: 14px;
  padding-right: 15px;
  position: relative;
  top: 2px;
}
.footer_top {
  margin-bottom: 30px;
}
.footer_links ul {
  display: inline-block;
}
.footer_links ul li {
  margin: 0 10px 0 0;
}
.footer_social ul {
  margin-bottom: 0;
  display: inline-block;
}
.footer_social ul li {
  float: left;
  margin-left: 10px;
  line-height: 1;
}
.footer_social ul li .icon {
  font-size: 21px;
  line-height: 21px;
  text-align: center;
  display: inline-block;
  color: #FFFFFF;
}
.footer_social ul li:first-child {
  margin-left: 0;
}
footer .button {
  margin-bottom: 10px;
}
footer .button p a {
  background: #fff;
    color: #13327C;
    font-size: 16px;
    padding: 10px 25px;
}

.site_search_form {
  display: none;
  background-color: #1C4BB8;
  padding: 20px 0;
}
.site_search_form input[type=text] {
  border: none;
  padding: 12px 15px;
  background: #FFFFFF;
}
.site_search_form .form_group {
  float: left;
  margin-bottom: 0;
}
.site_search_form .form_group.search_field {
  width: 72%;
  margin-right: 2%;
  float: left;
}
.site_search_form .form_group.search_button {
  width: 20%;
}
.site_search_form .form_group.search_button button {
  margin-bottom: 0;
  width: 100%;
  background: transparent;
  color: #FFFFFF;
  padding: 12px 10px;
  height: 46px;
  background: #13327C;
  border-radius: 0;
}
.site_search_form .row {
  margin-bottom: 0;
  position: relative;
  overflow: visible;
}
.site_search_form .close_button {
  position: absolute;
  right: 4px;
  color: #FFFFFF;
  top: 10px;
  border: 2px solid #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
}
.site_search_form .close_button .icon {
  line-height: 30px;
  font-size: 13px;
}
.site_search_form .container {
  max-width: 970px;
}
#logo_fill {
  width: 150px;
  height: 26px;
}
#logo_fill .st0 {
  fill: #58595B;
}
#logo_fill .st1 {
  fill: #0296A5;
}
.content_area {
  padding: 40px 40px;
  margin-bottom: 20px;
}
.content_area.standard_wide {
  max-width: 940px;
}
.content_area.standard_wide h1 {
  font-size: 48px;
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 2px solid #222222;
}
.content_area.login {
  max-width: 480px;
  padding: 40px 20px;
}
.content_area.login .vx_form {
  padding: 0;
}
.content_area.home {
  padding-top: 10px;
}
.content_area.login_box_container {
  padding: 15px 0;
}
.content_area p,
.content_area ul li {
  color: #333333;
}
.content_area p a,
.content_area ul li a {
  color: #1C4BB8;
}
.content_area p a:hover,
.content_area ul li a:hover {
  text-decoration: underline;
}
.content_area .button p a {
  color: #FFFFFF;
}

.content_area p a.button {
  background-color: #13327c;
  color: #fff;
  display: inline-block;
  box-sizing: border-box;
  border-radius: 50px;
  position: relative;
  text-align: center;
  width: auto;
  padding: 12px 28px;
}

.content_area p a.button:hover {
  background-color: #fff;
  color: #13327c;
  border: 1px solid #13327c;
  text-decoration: none;
}

.button-secondary p a {
  background-color: #fff;
  display: inline-block;
  box-sizing: border-box;
  border-radius: 50px;
  border: 1px solid #1C4BB8;
  padding: 15px;
  color: #13327C;
  position: relative;
  text-align: center;
  font-family: 'DM Sans';
  font-size: 24px;
  line-height: normal;
  width: auto;
  padding: 12px 28px;
  font-weight: 500;
}
.button-secondary p a:hover {
  opacity: 0.9;
  color: #fff;
  background-color: #13327c;
  text-decoration: none;
}

p.fullwidth-button {
  padding: 15px 0;
}

p.fullwidth-button a {
  display: flex;
  justify-content: center;
  background: #13327C;
  border: 1px solid #13327C;
  color: #fff;
  font-weight: 500;
  padding: 20px;
  font-size: 24px;
}

p.fullwidth-button a:hover {
  color: #13327C;
  background: #fff;
  text-decoration: none;
}

.job-feed p {
  font-size: 14px;
  line-height: normal;
  color: #fff;
}

.job-feed hr {
  border: 1px solid #fff;
}

.centered_column {
  margin: 0 auto;
}
.login_form {
  overflow: hidden;
}
.login_form input[type=submit],
.login_form button {
  margin-bottom: 0;
}
.login_form p.form-group {
  padding-bottom: 0;
  margin-bottom: 25px;
  overflow: hidden;
}
.login_form p.form-group:last-child {
  text-align: center;
  margin-top: 30px;
}
.login_form p.form-group input[type="submit"] {
  float: left;
}
.login_box {
  background: #FFFFFF;
  padding: 35px 15px;
}
.login_box h2 {
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 20px;
}
.login_box .button {
  margin-bottom: 10px;
}
.login_box p {
  padding-bottom: 0;
}
.login_box .info {
  margin-bottom: 20px;
}
.login_box .forgot_password p {
  margin-bottom: 10px;
font-size: 16px;
}
.linkedin_login {
  clear: both;
  text-align: left;
  padding-top: 20px;
  font-size: 14px;
}
.linkedin_login span {
  font-size: 14px;
  line-height: 42px;
  display: inline-block;
  vertical-align: bottom;
}
.linkedin_login a {
  display: inline-block;
}
.linkedin_login img {
  width: 105px;
  display: inline-block;
}
.login-content {
  padding-bottom: 20px;
}
.login-content .register {
  float: right;
}
.login-content .register p {
  font-size: 18px;
}
.login-content .register p a:hover {
  text-decoration: underline;
}
.total_results {
  display: none;
}
.page_title h1,
.page_title h2,
.page_title h3,
.page_title h4 {
  color: #333333;
}
.hero > .row {
  margin-bottom: 0;
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
}
.hero.container {
  max-width: none;
  position: relative;
}
.hero .hero__wrapper {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  height: 340px;
  background-position: 50% 50%;
}
/*.hero .hero__wrapper:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}*/
.hero .hero__wrapper .vx_image {
  display: none;
}

.hero .hero__wrapper .page_title {
  position: absolute;
  width: auto;
  max-width: 1100px;
  top: 50%;
  left: 50%;
  margin: 0 auto;
  display: inline-block;
  padding: 32px;
  transform: translateX(-50%) translateY(-50%);
  z-index: 999;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.93);
}

.hero .hero__wrapper .page_title .snip {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
}

 h1.article {
    font-family: 'DM Sans', san-serif;
    font-size: 24px;
    font-weight: normal;
    line-height: normal;
  }

@media only screen and (max-width: 575px) {
 .icon-search {
   display: inline-block;
}

 .search-text {
   display: none;
}
}

@media only screen and (max-width: 649px) {
.hero .hero__wrapper .page_title {
  width: 300px;
}
.job-feed {
  margin-top: 20px;
}

}

.hero .hero__wrapper .homepage_title {
  position: absolute;
  width: max-content;
  max-width: 900px;
  top: 50%;
  left: 50%;
  margin: 0 auto;
  display: inline-block;
  padding: 32px;
  transform: translateX(-50%) translateY(-50%);
  z-index: 999;
  box-sizing: border-box;
}

.hero .hero__wrapper .homepage_title .col {
  margin: auto;
  padding: 0;
}

.hero .hero__wrapper .homepage_title h1 {
  color:#fff;
  font-size: 47px;
  line-height: 52px;
  margin: auto;
}

.hero .hero__wrapper .homepage_title img.logo {
  max-width: 300px;
  float: right;
}

@media only screen and (max-width: 760px) {
.hero .hero__wrapper .homepage_title h1 {
  font-size: 42px;
  line-height: normal;
}
.hero .hero__wrapper .homepage_title .dot {
  display: none;
}
}

@media only screen and (max-width: 650px) {

.hero .hero__wrapper .homepage_title .tagline {
  display: none;
}
.hero .hero__wrapper .homepage_title .dot {
  display: none;
}
}

.hero .hero__wrapper .homepage_title em {
  font-weight: normal;
}

.hero .hero__wrapper .homepage_title .line {
  margin: auto;
}

.hero .hero__wrapper .page_title h1 a,
.hero .hero__wrapper .page_title h2 a,
.hero .hero__wrapper .page_title h3 a,
.hero .hero__wrapper .page_title p a {
  color: #1C4BB8;
}

.hero__wrapper .page_title p a.button{
  color: #fff;
}

.hero .hero__wrapper .page_title p {
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 10px;
  padding-bottom: 0;
}

.hero .hero__wrapper .page_title p.job-location {
  padding-top: 20px;
}

.hero .hero__wrapper .page_title h1 {
  margin-bottom: 10px;
}
.hero .hero__wrapper .page_title h2 {
  font-size: 18px;
  color: #1C4BB8;
}

.hero .hero__wrapper .page_title h3 {
  font-size: 18px;
}
.hero .hero__wrapper.video {
  position: relative;
  background-color: black;
  width: 100%;
  overflow: hidden;
}
.hero .hero__wrapper.video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.hero .hero__wrapper.video .page_title {
  height: 100%;
}
.hero .hero__wrapper.video .page_title h2 {
  font-size: 18px;
  position: absolute;
  bottom: 0;
}
.hero .bx-wrapper {
  margin-bottom: 60px;
}
.hero .bxslider .hero__wrapper {
  position: relative;
}
.hero .bxslider .hero__wrapper .page_title {
  position: relative;
  width: 100%;
  padding: 15px 0;
  padding-bottom: 50px;
}
.hero .bxslider .hero__wrapper .page_title p {
  font-size: 14px;
  padding-bottom: 5px;
  margin-bottom: 0;
}
.hero .bxslider .hero__wrapper .page_title h2 {
  margin-bottom: 0;
  font-size: 22px;
}
.home_search_box {
  width: 100%;
  bottom: 0;
  background: #1C4BB8;
}
.home_search_box .row {
  max-width: 940px;
  margin: 0 auto !important;
  padding-top: 10px;
  padding-bottom: 10px;
}
.home_search_box label {
  display: none;
}
.home_search_box .form-group {
  margin: 0;
  padding: 0;
  float: left;
  width: 38%;
  margin-right: 1%;
  border-radius: 0;
}
.home_search_box .form-group.button {
  width: 22%;
  margin-right: 0;
}
.home_search_box .form-group button,
.home_search_box .form-group input {
  margin: 0;
}
.home_search_box .form-group button {
  width: 100%;
}
.home_search_box .form-group input {
  border: none;
}
.home_search_box p {
  color: #FFFFFF;
  padding-bottom: 5px;
}
.column_left__item {
  margin-bottom: 50px;
}
.column_right__item {
  margin-bottom: 50px;
}
.column_right__item h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
}
.column_right__item h4 {
  color: #1C4BB8;
  font-family: 'Karla';
  font-weight: 700;
  font-size: 24px;
  line-height: 33px;
  margin-bottom: 0;
  padding-bottom: 0;
}
.column_right__item h4 a {
  color: #1C4BB8;
}
.column_right__item p {
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 0;
}
.column_right__item .related_links ul {
  list-style: disc outside;
  padding-left: 20px;
}
.column_right__item .related_links ul li {
  font-size: 16px;
  margin-bottom: 13px;
}
.column_right__item .related_links ul li a {
  color: #1f92cf;
}
.people_news__item {
  border-bottom: 1px solid #D8D8D8;
  padding: 15px 0;
  overflow: hidden;
}
.people_news__item .image {
  width: 33px;
  margin-right: 12px;
  float: left;
}
.people_news__item .info {
  float: left;
}
.ve_contact__item {
  border-bottom: 1px solid #D8D8D8;
  padding-bottom: 30px;
}
.ve_contact__item .thumbnail {
  position: relative;
}
.ve_contact__item .thumbnail .image {
  margin-bottom: 10px;
}
.ve_contact__item .contact_info h4 {
  margin-bottom: 15px;
}
.ve_contact__item .contact_info h5 {
  color: #13327C;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0;
  font-weight: 700;
}
.ve_contact__item .contact_info p {
  font-size: 14px;
  font-weight: 700;
  color: #222222;
}
.ve_contact__item .contact_info p a {
  color: #1C4BB8;
  text-decoration: underline;
}
.ve_contact__item .contact_info .phone,
.ve_contact__item .contact_info .mail {
  padding-left: 40px;
  margin-bottom: 8px;
  position: relative;
}
.ve_contact__item .contact_info .phone:before,
.ve_contact__item .contact_info .mail:before {
  content: '';
  font-family: 'alumni2019';
  position: absolute;
  left: 0;
  font-size: 14px;
  color: #1C4BB8;
  background: #D5EAEE;
  width: 26px;
  height: 26px;
  line-height: 26px;
  border-radius: 50%;
  text-align: center;
}
.ve_contact__item .contact_info .phone:before {
  content: '\7a';
}
.ve_contact__item .contact_info .mail:before {
  content: '\41';
}
.alphabet_filter {
  text-align: center;
}
.alphabet_filter ul {
  display: inline-block;
}
.alphabet_filter ul li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 26px;
  float: left;
  font-family: 'PublicSans-SemiBold';
}
.alphabet_filter ul li a {
  color: #1C4BB8;
}
.alphabet_filter,
.directory_search {
  margin-bottom: 35px;
  padding-bottom: 20px;
}
.alphabet_filter p,
.directory_search p {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #222222;
  padding-bottom: 0;
}
.directory_search {
  border-bottom: #222222 solid 7px;
  padding-bottom: 30px;
}
.directory_search form {
  display: flex;
  flex-wrap: wrap;
}
.directory_search .form-group {
  overflow: hidden;
  width: 100%;
}
.directory_search .form-group label {
  display: block;
}
.directory_search .form-group.select select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.directory_search .form-group.select select::-ms-expand {
  display: none;
}
.directory_search .form-group.select label:before {
  top: 7px;
}
.directory_search .form-group.radio_button {
  width: 100%;
}
.directory_search .form-group.radio_button label {
  display: inline-block;
  font-weight: bold;
}
.directory_search .form-group.submit {
  width: 100%;
}
.search_box {
  background-color: #13327C;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 20px;
}
.search_box .row {
  margin-bottom: 0;
}
.search_box form {
  position: relative;
}
.search_box p {
  color: #fff;
  padding-bottom: 5px;
}
.search_box .form_group {
  margin-bottom: 0;
  float: left;
}
.search_box .form_group label {
  margin: 0;
}
.search_box .form_group label:after {
  top: 9px;
}
.search_box .form_group.search_box__home {
  margin: 0;
  padding: 0;
  float: left;
  width: 38%;
  margin-right: 1%;
  border-radius: 0;
}
.search_box .form_group.search_box__home.button {
  width: 22%;
  margin-right: 0;
}
.search_box .form_group.search_box__home button,
.search_box .form_group.search_box__home input {
  margin: 0;
}
.search_box .form_group.search_box__home button {
  width: 100%;
  background-color: #F0F2F5;
  color: #000;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  padding: 10px 28px;
  font-weight: 400;
}

.search_box .form_group.search_box__home input {
  border: none;
}
.search_box .select {
  width: 40%;
  background: #e6e6e6;
}
.search_box .select select {
  background: #e6e6e6;
  padding: 0 10px;
  height: 50px;
  font-size: 18px;
  border: none;
}
.search_box .search_field {
  width: 60%;
}
.search_box .search_field input {
  padding: 0 10px;
  height: 50px;
  border: none;
}
.search_box .search_button {
  position: absolute;
  right: 0;
}
.search_box .search_button button.icon-search {
  padding: 0;
  margin: 0;
  background: none;
  color: #1C4BB8;
  font-size: 16px;
  line-height: 54px;
  width: 50px;
}
.quick_search .search_bar {
  position: relative;
}
.quick_search .search_bar button {
  position: absolute;
  top: 0px;
  right: 1px;
  margin: 0;
  font-size: 20px;
  line-height: 25px;
  width: 60px;
  border-radius: 0;
}
.profile_list .profile_list__item .row {
  margin-bottom: 40px;
}
.profile_list .profile_list__item .profile_list__item__info h4 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 15px;
}
.profile_list .profile_list__item .profile_list__item__info h4 a {
  color: #1C4BB8;
}
.profile_list .profile_info_list li {
  color: #13327C;
  font-size: 14px;
  line-height: 20px;
}
.article_listing {
  margin-bottom: 60px;
}
.article_listing__item {
  margin-bottom: 30px;
  background: #E8F1CF;
  height: calc(100% - 30px);
}

.insight-card {
  margin-bottom: 40px;
}

.row.article_listing {
  max-width: 1200px;
}

.row.top_section {
  max-width: 1200px;
  margin: 0 auto 30px;
}

.row.buttons {
  max-width: 1200px;
  display: flex;
  justify-content: right;
  padding: 0 15px;
}

.article_listing__item.simple {
  border: 3px solid #d6dbe5;
  padding: 15px;
  background: #fff;
  margin-bottom: 0;
  position: relative;
}

.article_listing__item.simple:hover {
  border: 3px solid #d6dbe5;
  padding: 15px;
  background: #d6dbe5;
  margin-bottom: 0;
  position: relative;
}

.article_listing__item.event {
  border: 3px solid #d6dbe5;
  background: #fff;
  margin-bottom: 0;
  position: relative;
}

.article_listing__item.event:hover {
  border: 3px solid #d6dbe5;
  background: #d6dbe5;
  margin-bottom: 0;
  position: relative;
}

.article_listing__item.spotlight {
  border: 2px solid #d6dbe5;
  background: #fff;
  margin-bottom: 5px;
}

.article_listing__item.spotlight:hover {
  border: 3px solid #d6dbe5;
  background: #d6dbe5;
  margin-bottom: 5px;
}

.article_listing__item__info.simple {
  padding: 0 15px;
}

.article_listing__item__info.simple h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 30px;
  font-weight: 600;
}

.article_listing__item__info.simple p {
  font-size: 16px;
  margin-bottom: 5px;
}

.article_listing__item__info.simple p.hidden {
  display: none;
}

.space {
  margin-bottom: 30px;
}

.article_listing__item__info.simple .category {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.article_listing__item__info.simple .category_date {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
}

.article_listing__item__info.simple .category_date li {
  display: inline-block;
  font-size: 12px;
  color: #999;
}

.article_listing__item__info.simple .category_date li.date {
  display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #999;
}

.article_listing__item.simple .type-box {
    background-color: #13327C;
    padding: 5px 20px;
    display: inline-block;
    position: absolute;
    top: -20px;
    left: 20px;
    z-index: 1;
    
}

.article_listing__item.simple .type-box p {
    font-size: 14px;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}

.article_listing__item h3,
.article_listing__item h4 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #333535;
  font-family: 'DM Sans';
}
.article_listing__item h3 a,
.article_listing__item h4 a {
  color: #333535;
}
.article_listing__item p {
  margin-bottom: 20px;
  padding-bottom: 0;
  font-size: 18px;
  line-height: 27px;
    max-height: 140px;
    overflow: hidden;
}
.article_listing__item .thumbnail {
  margin-bottom: 0;
}
.article_listing__item .article_listing__item__info {
  padding: 16px;
}
.article_listing__item .category_date {
  margin-bottom: 5px;
}
.article_listing__item .category_date p,
.article_listing__item .category_date li {
  line-height: normal;
  margin-bottom: 5px;
  color: #333535;
  font-family: 'DM Sans';
  font-size: 16px;
  font-weight: 500;
}
.article_listing__item .category_date li {
  float: left;
}
.article_listing__item .category_date li:last-child {
  float: right;
}
.job_board .article_listing__item .category_date {
  float: left;
}
.job_board .article_listing__item .date {
  float: right;
    font-family: 'DM Sans';
    font-size: 16px;
    font-weight: 500;
}
.job_board .article_listing__item h3 {
  clear: both;
}
.job_board .article_listing__item .category_date li {
  float: left;
padding: 0 5px;
position: relative;
}
.job_board .article_listing__item .category_date li:after {
  content: ', ';
position: absolute;
right: 0;
}
.job_board .article_listing__item .category_date li:last-child:after {
  display: none;
}
.job_board .article_listing__item .category_date li:last-child {
  float: right;
}

.article_listing__item .location {
  padding-left: 30px;
  color: #222222;
}
.article_listing__item .news_image {
  padding-right: 0;
}
.article_listing__item.job p {
  padding-bottom: 3px;
}
.article_listing__item.past_event img {
  filter: grayscale(100%);
}
.perks_listing {
  margin-bottom: 60px;
}
.perks_listing .vx_block.col-sm-6.col-md-4 {
  margin-bottom: 30px;
}
.perks_listing__item {
  padding: 15px;
  border: 1px solid #1C4BB8;
  height: calc(100% - 30px);
}
.blockquote {
  padding: 15px 25px;
  position: relative;
}
.blockquote:before,
.blockquote:after {
  font-family: 'alumni2019';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  color: #13327C;
  content: '\44';
}
.blockquote:after {
  left: auto;
  right: 0;
  content: '\45';
}
.blockquote .quote p {
  font-family: 'PublicSans-Light';
  font-size: 18px;
  line-height: 26px;
}
.blockquote .cite p {
  font-size: 14px;
  font-style: italic;
}
.job_listing__title {
  font-family: 'Karla';
  font-weight: 700;
  color: #1C4BB8;
  margin-bottom: 15px;
  display: none;
}
.job_listing__item {
  padding: 10px 0;
  margin-bottom: 0;
  border-bottom: 1px solid #ccc;
  font-family: 'Karla';
  font-weight: 300;
}
.job_listing__item .role {
  font-weight: 700;
  color: #1C4BB8;
  text-transform: capitalize;
}
.job_listing__item .role a {
  color: #1C4BB8;
}

.article_template h2 {
  font-size: 38px;
  line-height: 42px;
  margin-bottom: 15px;
  color: #13327c;
}

.article_template h3 {
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 400;
}
.article_template h4 {
  color: #333535;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}
.article_template img {
  margin-bottom: 20px;
}
.article_template .intro {
  margin-bottom: 40px;
}
.article_template .intro p {
  font-size: 20px;
  line-height: 28px;
}
.article_template .job_desc {
  margin-bottom: 40px;
}
.article_template .job_desc p {
  font-family: 'Karla';
  font-size: 18px;
  line-height: 24px;
}
.article_template .job_desc h2 {
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 20px;
  color: #34657F;
}
.article_template .job_desc h4 {
  font-size: 16px;
  line-height: 24px;
  color: #414042;
}
.article_template .hero {
  margin-bottom: 30px;
}
.article_template .content_area {
  padding: 10px 0 40px 0;
}
.article_template .content_area ul {
  list-style: disc outside;
}
.go_back {
  margin-bottom: 20px;
  display: block;
  font-size: 20px;
  line-height: 33px;
  padding-left: 30px;
  position: relative;
  font-weight: normal;
  color: #000;
}
.go_back:before {
  font-family: 'alumni2019';
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 20px;
  color: #1C4BB8;
  content: '\67';
}

.go_back:hover:before {
  left: -20px;
  color: #95C53D;
}

.profile_search_results {
  padding-left: 40px;
}
.profile_search_results .bar .count {
  color: #222222;
  font-size: 20px;
  margin-bottom: 20px;
  font-family: 'Karla';
  font-weight: 700;
}
.profile_search_results .people_listing_item {
  padding: 20px 0;
  margin-bottom: 0;
  border-bottom: 1px solid #D8D8D8;
}
.profile_search_results .people_listing_item .profile_image {
  max-width: 120px;
  padding: 0 15px;
}
.profile_search_results .people_listing_item .profile_info {
  padding: 0 15px;
}
.profile_search_results .people_listing_item .profile_info h3 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  margin-bottom: 5px;
  color: #1C4BB8;
}
.profile_search_results .people_listing_item .profile_info h3 a {
  color: #1C4BB8;
}
.profile_search_results .people_listing_item .profile_info h5 {
  color: #F46462;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0;
  font-weight: 700;
}
.profile_search_results .people_listing_item .profile_info p {
  margin-top: 5px;
  font-size: 16px;
  line-height: 20px;
}
.profile_search_results .people_listing_item .profile_info p a {
  color: #1f92cf;
  text-decoration: underline;
}
.profile_search_results .people_listing_item.site_search p {
  padding-bottom: 5px;
}
.profile_search_results .people_listing_item .date {
  font-size: 14px;
  color: #7b7b7e;
  line-height: 1;
  padding-bottom: 0;
  padding-top: 2px;
}
.aside {
  margin-top: 50px;
}
.aside.search .form-group > label {
  display: block;
}
.aside.search .form-group > label:before {
  top: 7px;
}
.aside .title h5 {
  color: #1C4BB8;
}
.aside .contact_item .image {
  padding-right: 0;
}
.aside .contact_item .info {
  padding-top: 15px;
}
.aside .contact_item h5 {
  margin-bottom: 0;
  color: #222222;
}
.aside .contact_item h5 a {
  color: #222222;
}
.aside .contact_item h6 {
  font-size: 16px;
  margin-bottom: 2px;
}
.aside .contact_item p {
  font-size: 14px;
}
.description_text p {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
  padding-bottom: 0;
}
.snippet_placeholder {
  display: none;
}
.profile_template .profile_top {
  margin-bottom: 40px;
}
.profile_template .profile_top h1 {
  font-size: 30px;
  line-height: 34px;
  color: #1C4BB8;
  margin-bottom: 10px;
}
.profile_template .profile_top h2 {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 28px;
  color: #13327C;
  margin-bottom: 5px;
}
.profile_template .profile_top h3 {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  color: #1C4BB8;
  margin-bottom: 5px;
}
.profile_template .profile_top p a {
  text-decoration: underline;
  color: #333333;
}
.profile_template .profile_top p span {
  font-family: 'PublicSans-SemiBold';
}
.profile_template .contact p {
  overflow: hidden;
  text-overflow: ellipsis;
  padding-bottom: 5px;
  font-size: 14px;
}
.profile_template .contact p a {
  display: inline-block;
}
.profile_template .contact p a img {
  width: 30px;
  position: relative;
  top: 3px;
}
.profile_template .well h5 {
  margin-bottom: 20px;
}
.profile_template .name_title {
  margin-bottom: 10px;
}
.profile_template .name_title p {
  padding-bottom: 0;
}
.profile_template .social_network {
  margin-bottom: 10px;
}
.profile_template .social_network h4 {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 10px;
}
.profile_template .social_network li {
  font-size: 16px;
  line-height: 33px;
  display: inline-block;
  margin-right: 5px;
}
.profile_template .social_network li a {
  background-color: #1C4BB8;
  height: 30px;
  width: 30px;
  border-radius: 4px;
  color: #FFFFFF;
  display: inline-block;
  box-sizing: border-box;
  padding: 0 7px;
}
.profile_template .bio {
  margin-bottom: 20px;
}
.profile_template .bio p {
  padding-bottom: 0;
}
.profile_template .profile_picture {
  margin-bottom: 30px;
  max-width: 160px;
}
.profile_template .manage_profile {
  text-align: right;
}
.profile_template .manage_profile h2 {
  margin-bottom: 20px;
}
.profile_template .manage_profile ul {
  padding-left: 20px;
  list-style: none;
}
.profile_template .manage_profile ul li {
  margin-bottom: 5px;
  font-size: 16px;
}
.profile_template .manage_profile ul li a {
  color: #1C4BB8;
}
.profile_template .profile_content h3 {
  font-size: 20px;
  line-height: 24px;
  color: #1C4BB8;
  margin-bottom: 10px;
}
.profile_template .profile_content__section {
  margin-bottom: 30px;
}
.profile_template .profile_content__section p {
  font-size: 14px;
  padding-bottom: 5px;
}
.profile_template .profile_content__section p span {
  font-family: 'PublicSans-SemiBold';
  display: block;
  font-size: 16px;
}
.secured .main_nav,
.secured .header_icons_set,
.secured .footer_social,
.secured .footer_links {
  display: none !important;
}
.secured.login h1 {
  color: #1C4BB8;
}
.pagination {
  margin-top: 20px;
  font-size: 18px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
.pagination span,
.pagination a {
  padding: 6px 12px;
  font-family: 'PublicSans-Medium';
  font-size: 16px;
  color: #1C4BB8;
  text-decoration: none;
}
.pagination span.active,
.pagination a.active {
  color: #D5EAEE;
  text-decoration: none;
}
.pagination span.pages {
  margin-right: 50px;
  color: #1C4BB8;
  font-size: 14px;
  display: none;
}
.tab_content {
  display: none;
}
.tabs ul {
  border-bottom: 1px solid #6d6d6d;
  overflow: visible;
  display: flex;
}
.tabs ul li {
  float: left;
  padding: 5px 15px 10px 0;
  position: relative;
  margin-right: 20px;
  font-size: 16px;
}
.tabs ul li a {
  color: #1C4BB8;
}
.tabs ul li.active a {
  color: #1C4BB8;
  font-weight: 700;
}
.tabs ul li.active:after {
  content: '';
  height: 4px;
  width: 100%;
  background: #13327C;
  bottom: -2px;
  left: 0;
  position: absolute;
}
.tab_content {
  padding: 30px 0;
}
.cta_box {
  background: #d5eaee;
  padding: 30px;
}
.cta_box h3 {
  font-weight: 700;
  font-family: Karla, sans-serif;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 15px;
}
.cta_box .read_more {
  margin: 0;
}
.cta_box .read_more p a {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  color: #1f92cf;
  padding-left: 0;
  padding-right: 34px;
}
.cta_box .read_more p a:before,
.cta_box .read_more p a:after {
  text-transform: none;
}
.cta_box .read_more p a:before {
  left: auto;
  right: 0;
  color: #f46462;
  content: '\2192';
  font-size: 24px;
  line-height: 12px;
}
.page_title_overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, #000000 0%, rgba(39, 39, 39, 0.5) 35%, rgba(255, 255, 255, 0) 100%);
}
.image-gallery {
  padding-top: 15px;
}

.home_dynamic_blocks .home_dynamic_blocks__item--job {
  margin-bottom: 16px;
}
.home_dynamic_blocks__info .date {
  color: #333535;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 5px;
}
.home_dynamic_blocks__info .date p {
  padding-bottom: 0;
  color: #333535;
}
.home_dynamic_blocks__info .category {
  padding-bottom: 5px;
  color: #333535;
  font-size: 24px;
  font-weight: 400;
}
.home_dynamic_blocks__info .category a {
  color: #13327C;
}
.home_dynamic_blocks__info .category p {
  padding-bottom: 0;
  color: #333535;
}
.home_dynamic_blocks__info .label {
  overflow: hidden;
}
.home_dynamic_blocks__info .label li {
  float: left;
  font-size: 16px;
}
.home_dynamic_blocks__info .label li:last-child {
  float: right;
}
.home_dynamic_blocks__info h4 {
  margin-bottom: 15px;
  font-size: 22px;
  line-height: 32px;
}
.home_dynamic_blocks__info h4 a {
  color: #333535;
}
.rss_feed {
  margin-bottom: 25px;
}
.rss_feed h4 {
  margin-bottom: 5px;
}
.rss_feed p.date {
  padding-bottom: 5px;
  color: #333535;
  font-size: 16px;
  font-weight: 500;
}
.snippet-placeholder {
  display: none;
}
p.read_more_toggle {
  cursor: pointer;
  color: #333535;
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
}
.event_snippet_item__collapse {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #ccc;
  display: none;
}
.caption {
  font-size: 12px;
}
h5.eh_section_title {
  padding: 10px;
  margin-bottom: 15px;
  position: relative;
  background: #dbe5f3;
  cursor: pointer;
}
h5.eh_section_title:after {
  position: absolute;
  content: '+';
  right: 20px;
  font-size: 26px;
  line-height: 26px;
  top: 7px;
}
h5.eh_section_title.open:after {
  content: '-';
  top: 4px;
  right: 23px;
}
.eh_section {
  display: none;
}
.read_more_toggle_holder > .row {
  background: #E8F1CF;
  margin-right: 15px;
  padding: 15px 0;
}
.read_more_toggle_holder > .row h5 {
  color: #333535;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 10px;
  font-weight: 500;
}

.stay_connected_home span.icon {
color: #fff;
background: #13327C;
padding: 7px;
margin-right: 7px;
    font-size: 20px;
    line-height: 20px;
    width: 20px;
    height: 20px;
    display: inline-block;
}
/*	9.2 ----------------------------------------------
		DEVICE WIDTH FROM 480
		-------------------------------------------------- */
@media only screen and (min-width: 480px) {
  .job_listing__title {
    display: flex;
  }
}
/*	9.3 ----------------------------------------------
		DEVICE WIDTH FROM 640
		-------------------------------------------------- */
/*	9.4 ----------------------------------------------
		DEVICE WIDTH FROM 760
		-------------------------------------------------- */
/*	9.5 ----------------------------------------------
		DEVICE WIDTH FROM 768
		-------------------------------------------------- */

@media only screen and (min-width: 768px) {
  header .nav_logo .main-nav {
    margin-bottom: 0;
  }
  footer .social {
    text-align: right;
  }
  footer .footer_menu_column {
    width: 15%;
    max-width: none;
    flex-basis: auto;
  }

 .content_area .vx_text ul {
   padding-left: 22px;
   margin: 16px 0 16px 40px;
   list-style: disc outside;
 }

 .profile_template .manage_profile ul {
   list-style: none;
 }
  .hero .hero__wrapper {
    height: 435px;
  }
  .hero .hero__wrapper .page_title h3 {
    font-size: 24px;
  }
  .hero .hero__wrapper .page_title p {
    font-size: 18px;
    line-height: 26px;
  }
  /*.hero .hero__wrapper .page_title h1 {
    margin-bottom: 20px;
  }*/
  .login_box_container .centered_column {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
  .search_box .dropdown_select {
    width: 24%;
  }
  .search_box .search_field {
    width: 76%;
  }
  .quick_search .search_bar button {
    width: 120px;
  }
  .article_template h1 {
    font-size: 36px;
    line-height: 48px;
    font-weight: 400;
    color: #333535;
  }
  footer {
    padding: 20px 30px;
  }
}
/*	9.6 ----------------------------------------------
		DEVICE WIDTH FROM 992
		-------------------------------------------------- */
@media only screen and (min-width: 992px) {
  h1 {
    font-size: 64px;
    line-height: 68px;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 50px;
    line-height: normal;
  }
  h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333535;
  }
  h5 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  header .nav_logo .main_nav {
    position: static;
    display: block;
  }
  header .nav_logo .main_nav ul {
    margin-right: 90px;
    padding-top: 14px;
    padding-bottom: 0px;
  }
  header .nav_logo .main_nav ul > li {
    float: left;
    margin-bottom: 0;
  }
  header .nav_logo .main_nav ul > li > a {
    color: #333333;
    padding-top: 0;
    padding-bottom: 0;
  }
  header .nav_logo .main_nav ul > li:hover > ul {
    display: block;
  }
  header .nav_logo .main_nav ul > li:last-child {
    margin-right: 0;
  }
  header .nav_logo .main_nav ul > li:last-child a {
    padding-right: 0;
  }
  header .nav_logo .logo a {
    max-width: 180px;
    display: block;
  }
  header .nav_logo .search-button {
    right: 0;
    top: 10px;
    width: 32px;
    height: 32px;
    background: #222222;
    border-radius: 50%;
  }
  header .nav_logo .search-button .icon {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 32px;
  }
  header .nav_logo .search-button .icon:before {
    line-height: 32px;
  }
  header .nav_logo .mobile-menu {
    display: none;
  }
  header .header_icons_set {
    top: 20px;
  }
  header .search_form {
    top: 0;
    left: auto;
  }
  header .search_form input[type="text"] {
    padding-left: 20px;
  }
  header .profile-pic {
    top: 18px;
    right: 0;
  }
  header .mobile_nav {
    display: none;
  }
  footer .footer_top {
    text-align: inherit;
  }
  footer .footer_top .footer_links ul li {
    margin: 0 38px 0 0;
  }
  footer .footer_top .footer_right {
    text-align: right;
  }
  footer .footer_top .footer_right ul li {
    margin: 0 15px 0 0;
  }
  footer .footer_top .footer_right ul li:last-child {
    margin-right: 0;
  }
  footer .footer_top .footer_right p {
    text-align: right;
  }
  footer .footer_bottom {
    text-align: inherit;
  }
  .hero .hero__wrapper .page_title {
    padding: 25px;
  }
  .hero .hero__wrapper .page_title h1 {
    line-height: 70px;
  }

  .hero .hero__wrapper .page_title h1.article {
    font-family: 'DM Sans', san-serif;
    font-size: 35px;
    font-weight: normal;
    line-height: normal;
  }

  .hero .hero__wrapper .page_title h3 {
    font-size: 28px;
  }
  .hero .hero__wrapper.video .page_title h2 {
    font-size: 36px;
    bottom: 70px;
  }
  .hero .hero__wrapper.standard {
    height: 460px;
  }
  #logo_fill {
    width: 206px;
    height: 35px;
  }
  .home_search_box {
    position: absolute;
  }
  .home_search_box label {
    display: none;
  }
  .home_search_box .form-group {
    width: 41%;
  }
  .home_search_box .form-group.button {
    width: 16%;
  }
  .content_area {
    padding: 40px 25px;
    margin-bottom: 20px;
  }
  .content_area.content_area--floating {
    padding: 55px 80px 0;
    top: -280px;
    margin-bottom: -280px;
    min-height: 280px;
  }
  .content_area.content_area--floating.high {
    top: -425px;
    margin-bottom: -425px;
  }
  .content_area.content_area--floating.article {
    top: -256px;
    margin-bottom: -256px;
  }
  .login_box_container {
    position: relative;
    top: -90px;
  }
  .login_box_container .centered_column {
    width: 100%;
    max-width: 66.66666667%;
    flex-basis: 66.66666667%;
  }
  .teaser_card {
    margin-bottom: 0;
  }
  .teaser_card .read_more {
    position: absolute;
  }
  .aside {
    margin-top: 0;
  }
  .site_search_form input[type=text] {
    padding: 15px;
  }
  .site_search_form .form_group.search_field {
    width: 84%;
    margin-right: 2%;
  }
  .site_search_form .form_group.search_button {
    width: 14%;
  }
  .site_search_form .form_group.search_button button {
    padding: 12px 38px;
    height: 52px;
  }
  .site_search_form .close_button {
    right: -25px;
  }
  .profile h1 {
    font-size: 48px;
  }
  .profile h2 {
    font-size: 36px;
  }
  .profile .col-md-6 {
    flex-basis: 54%;
    max-width: 54%;
  }
  .profile .col-md-3:first-child {
    max-width: 190px;
  }
  .hero .hero__wrapper.home {
    height: 400px;
  }
  footer {
    padding: 40px 60px;
  }
}
/*	9.7 ----------------------------------------------
		DEVICE WIDTH FROM 1224
		-------------------------------------------------- */
@media only screen and (min-width: 1224px) {
  .hero .hero__wrapper.home {
    height: 620;
  }
}
/*	9.8 ----------------------------------------------
		DEVICE WIDTH FROM 1400
		-------------------------------------------------- */
/*	10.0 ----------------------------------------------
	VX STYLES
	-------------------------------------------------- */
.x-border-box .x-body {
  min-width: 1600px;
}
.x-border-box .x-body .rss_hide,
.x-border-box .snippet-placeholder {
  display: block;
}
.x-border-box img {
  width: auto;
}
.x-border-box .video_box .video img {
  width: auto;
}
.x-border-box #col_01 {
  position: static !important;
  min-height: auto !important;
}
.x-border-box .hero .hero__wrapper .vx_image,
.x-border-box .event_snippet_item__collapse {
  display: block;
}
.x-border-box .featured-item-text {
  background: transparent;
}
.x-border-box .about-banner h3 {
  position: inherit !important;
  color: #222222;
}
.x-border-box .about-banner .slider-item .slider-item-text {
  position: inherit;
}
.x-border-box .about-banner .slider-item .slider-item-text p a {
  color: #222222;
}
.x-border-box .vx_page_tag {
  display: block;
}
.x-border-box .placeholder,
.x-border-box .snippet_placeholder {
  display: block;
}
.x-border-box .slider .slider-item .slider-item-text-container {
  height: 70%;
}
.x-border-box .accordion-content .accordion-item .info {
  display: block;
}
.x-border-box .career .career-promo-box {
  display: block;
}
.x-border-box .cookie-warning {
  display: block;
  position: relative;
}
.x-border-box .hero .hero__wrapper {
  background: none !important;
}
.x-border-box .hero img {
  width: 100%;
}
.x-border-box .hero .hero__wrapper::before {
  display: none;
}

/* Saul Changes: 17th Jan 24 */
header .nav_logo .main_nav ul > li{margin: 0 15px}
header .nav_logo .main_nav ul > li.last{margin-right: 0}

header .nav_logo .main_nav ul > li > a, header .nav_logo .main_nav ul > li > a:visited{padding: 0 0 2px 0; border-bottom: 3px solid transparent;}
header .nav_logo .main_nav ul > li > a:hover{border-bottom: 3px solid #13327C;}
.hero-logo {display:block; width: 200px}
button, input[type="submit"], input[type="button"], .search_box .form_group.search_box__home button, .button p a{border:1px solid #1C4BB8;}
button:hover, input[type="submit"]:hover, input[type="button"]:hover, .search_box .form_group.search_box__home button:hover, .button p a:hover {
  background-color: #fff;
  color: #13327c;
  border: 1px solid #13327c;
  text-decoration: none;
}

.quick_search .search_bar button{background: none; border: none; width: auto; padding-right: 20px;}
.icon-search {color:#1c4bb8;}
.block-article .article_listing__item__info{padding: 30px;}
.block-article .category_date li{float:none;}
.block-article .category_date li:last-child {float:none;}
.block-article .btn-wrapper {margin-top: 20px}

.article-page .event_snippet_item--profile img {border-radius: 50px}
.article-page .event_snippet_item--profile .job-title h6{margin:0}
.article-page .event_snippet_item--profile .company-name {font-size: 16px;line-height: normal;}
.article-page .event_snippet_item--profile .contact-info {list-style: none; padding:0;margin: 0;}
.article-page .event_snippet_item--profile .contact-info li {display: inline-block; border-right: 1px solid #000; padding:0 10px 0 5px; font-size: 12px; line-height: normal;vertical-align: middle;}
.article-page .event_snippet_item--profile .contact-info li:first-child{padding-left:0;}
.article-page .event_snippet_item--profile .contact-info li:last-child{padding-right:0; border:none;}
.article-page .event_snippet_item--profile p.read_more_toggle {font-size:12px;line-height: normal;}
.article-page .article_template h3{margin-top:0;}
@media only screen and (min-width: 992px){
  header .nav_logo .main_nav ul {padding-bottom: 0px;}
  header .nav_logo .main_nav ul > li > a {
    color: #000;
  }
}

@media only screen and (min-width: 1224px) {
  .hero .hero__wrapper.home {
    height: 400;
    background-position: 0 35%;
  }


}