@charset "UTF-8";
/* DevKit styles */
/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * Grid settings.
 * All values are defaults and can therefore be easily overidden.
 */
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Perform a value into a percentage value.
 * @param {number} $value - The value which should be converted.
 * @returns {number} $value - The percentage.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Aliases for j-column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Aliases for j-column-width().
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Alias for j-column-gutter().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Alias for j-span().
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Alias for j-shift().
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * Alias for j-unshift().
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 * Aliases for j-edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Alias for j-center().
 */
/**
 * Uncenter an element.
 */
/**
 * Alias for j-uncenter().
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Alias for j-stack().
 */
/**
 * Unstack an element.
 */
/**
 * Alias for j-unstack().
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Alias for j-align().
 */
/**
 * Apply a clearfix to an element.
 */
/**
 * Alias for j-cf().
 */
* {
  box-sizing: border-box; }

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #333; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/* Veritas Brand */
/* */
/* Font Sizes */
/* Extend-only styles */
.drop-trigger, .site-btn {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px; }

.social-media-links img {
  max-height: 21px;
  max-width: 21px;
  display: inline-block;
  vertical-align: middle; }

.drop-trigger + ul, .supplemental ul,
.additional ul, .training-courses .training-courses-list ul, .menu, .sub-menu ul, .additional-items, .social-media-links ul, .pagination ul, .section-filters ul, .card-group, .display-style-toggle ul, .share-this ul, .training-country .country-data ul {
  margin: 0;
  padding: 0;
  list-style: none; }

body.campaign .content-block ul {
  margin: 0;
  padding: 0;
  list-style: none; }
  body.campaign .content-block ul li {
    position: relative;
    padding-left: 24px; }
    body.campaign .content-block ul li:before {
      color: #548089;
      content: "\f058";
      display: inline-block;
      font: normal normal normal 14px/1 FontAwesome;
      font-size: 18px;
      left: 0;
      margin-right: 8px;
      position: absolute;
      text-rendering: auto;
      top: 2px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      transform: translate(0, 0); }

/* Mixins */
/* Global */
.sr-only {
  display: none; }

.mobile-only {
  display: inline-block !important; }

.desktop-only {
  display: none !important; }

section {
  *zoom: 1; }
  section:before, section:after {
    content: '';
    display: table; }
  section:after {
    clear: both; }

.breadcrumbs,
.content {
  margin: 0 auto;
  padding-left: 1em;
  padding-right: 1em; }
  
/* Commented out for defect of padding for text-image component*/
/*img.img-left, .content-band .content-col img.img-left, .content-band .media-col img.img-left,
img.img-right, .content-band .content-col img.img-right, .content-band .media-col img.img-right {
  display: block;
  margin: 0 auto 15px; }*/

@media screen and (min-width: 1024px) {
  .breadcrumbs,
  .content {
    max-width: 1280px; } }
/* Media Queries */
@media screen and (min-width: 768px) {
  .img-left, .content-band .content-col img.img-left, .content-band .media-col img.img-left {
    float: left;
    margin-right: 20px;
    margin-bottom: 15px; }

  .img-right, .content-band .content-col img.img-right, .content-band .media-col img.img-right {
    float: right;
    margin-left: 20px;
    margin-bottom: 15px; }

  .mobile-only {
    display: none !important; }

  .desktop-only {
    display: inline-block !important; } }
.hasCustomSelect {
  display: block;
  width: 100%; }

.customSelect select {
  width: 100%;
  border: none;
  float: left;
  color: white;
  font-size: 18px;
  background-color: #75b1bd;
  color: #fff;
  display: block;
  font-size: 14px;
  font-weight: bold;
  line-height: 16px;
  height: 40px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 8px; }
  .customSelect select:focus {
    outline: 0; }

.customSelect.changed {
  background-color: #f0dea4; }

.customSelectInner {
  display: inline-block;
  text-transform: uppercase; }
  .customSelectInner:after {
    content: "\f078";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    color: #548089;
    right: 10px;
    float: right; }

.customSelectDisabled {
  background-color: #d1d4d8; }

.drop-trigger {
  padding: 8px 16px 8px 10px;
  position: relative;
  text-align: left; }
  .drop-trigger i {
    margin-left: 8px; }
  .drop-trigger + ul {
    display: none;
    text-align: left; }

a.drop-trigger {
  display: block;
  line-height: 1; }
  a.drop-trigger i {
    float: right; }

.drop-menu.active .drop-trigger {
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0; }
  .drop-menu.active .drop-trigger + ul {
    display: block;
    position: absolute;
    -webkit-border-radius: 0 0 3px 3px;
    -moz-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
    z-index: 99999; }
    .drop-menu.active .drop-trigger + ul li:first-child a {
      border-top: none; }
    .drop-menu.active .drop-trigger + ul li:last-child, .drop-menu.active .drop-trigger + ul li:last-child a {
      -webkit-border-radius: 0 0 3px 3px;
      -moz-border-radius: 0 0 3px 3px;
      border-radius: 0 0 3px 3px; }
    .drop-menu.active .drop-trigger + ul a {
      border-top: 1px solid #333;
      display: block;
      padding: 8px 16px 8px 10px; }

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Max-width: 1023px - styles for the instance of this in the mobile/tablet menu
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width: 1023px) {
  .additional-items a.drop-trigger {
    padding: 8px 16px 8px 10px;
    width: 100%; }
  .additional-items li .drop-trigger + ul li {
    border-bottom: none; } }
/* Lists */
.social-links-list {
  text-align: center; }
  .social-links-list li {
    display: inline-block; }

.training-courses .training-courses-list ul li {
  padding-left: 30px; }
  .training-courses .training-courses-list ul li a {
    color: #838b8f;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    padding: 0 0 10px;
    display: block; }
    .training-courses .training-courses-list ul li a:focus {
      color: black; }

.inline-list {
  margin: 0;
  padding: 0; }
  .inline-list li {
    font-size: 12px;
    line-height: 1em;
    display: inline-block;
    list-style: none; }
    .inline-list li::before {
      margin: 0 !important;
      content: '' !important; }
  .inline-list--pipe li::after {
    margin-left: 5px;
    color: #c1c4c7;
    content: '|';
    position: relative; }
  .inline-list--pipe li:last-of-type::after {
    content: ''; }

/* Forms */
select {
  font-size: 75%;
  color: #333; }

input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="number"],
textarea {
  padding: 3px 8px;
  height: 30px;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0; }

input[placeholder] {
  font-size: 14px; }

::-webkit-input-placeholder {
  color: #c4c4c4; }

:-moz-placeholder {
  color: #c4c4c4; }

::-moz-placeholder {
  color: #c4c4c4; }

:-ms-input-placeholder {
  color: #c4c4c4; }

label {
  font-size: 12px;
  text-transform: uppercase;
  color: #414141; }
  .search-items label {
    line-height: 1; }

.select {
  position: relative;
  display: inline-block;
  width: 100%;
  color: #555;
  border-radius: .25rem;
  background-color: #75b1bd; }
  .select:hover {
    background-color: #61949e; }

.select select {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: .5rem 2.25rem .5rem 1rem;
  line-height: 1.5;
  color: #fff;
  font-size: 18px;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  outline: 0;
  position: relative;
  z-index: 10;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }
  .select select:active, .select select:hover {
    color: #000; }

/* Undo the Firefox inner focus ring */
.select select:focus:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000; }

/* Dropdown arrow */
.select:before {
  content: "\f078";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  right: 17px;
  position: absolute;
  top: 7px;
  color: #fff;
  font-size: 24px;
  width: 25px;
  height: 25px;
  z-index: 9; }

/* Focus */
/* Active/open */
.select select:active {
  color: #fff;
  background-color: #75b1bd; }

/* Hide the arrow in IE10 and up */
.select select::-ms-expand {
  display: none; }

/*Custom Select CSS styling only solution*/
.customSelect {
  height: 44px;
  position: relative;
  background: #75b1bd;
  overflow: hidden;
  border-radius: 4px; }
  .customSelect:before {
    content: '\f078';
    font: normal normal normal 14px/1 FontAwesome;
    color: #548089;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 9; }
  .customSelect select {
    background: none;
    border: none;
    color: #fff;
    height: 44px;
    position: absolute;
    top: 0;
    left: 3px;
    z-index: 10;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding-right: 40px; }
    .customSelect select option {
      color: #000;
      background-color: #fff; }
  .customSelect select::-ms-expand {
    display: none; }

/* Media query to target Firefox only */
@-moz-document url-prefix() {
  /* Firefox hack to hide the arrow */
  .select select {
    text-indent: 0.01px;
    text-overflow: '';
    padding-right: 1rem; }

  /* <option> elements inherit styles from <select>, so reset them. */
  .select option {
    background-color: #fff; } }
label.error {
  text-align: right;
  color: #b0151e !important;
  margin-top: 0;
  padding-top: 0  !important;
  text-transform: none;
  font-size: 12px; }

input.error, .customSelect.error {
  border-color: #b0151e !important; }

.form--generic label {
  display: block;
  position: relative;
  clear: both;
  padding-top: 15px;
  color: #838b8f; }
.form--generic input {
  width: 100%;
  border: 2px solid #c4c4c4;
  padding: 0 10px;
  height: 60px; }
.form--generic input:last-of-type {
  margin-bottom: 15px; }

.form-section.form-lightest-blue {
  background-color: #edf1f4; }
.form-section.form-light-blue {
  background-color: #dfe9ee; }
.form-section.form-blue {
  background-color: #d5e2ea; }

@media screen and (min-width: 768px) {
  label {
    font-size: 14px; } }
/* IE9 hack to hide the arrow */
@media screen and (min-width: 0\0) {
  .select select {
    padding: .5rem 1.5rem .5rem 1rem; }

  .select:after {
    z-index: 5; }

  .select:before {
    position: absolute;
    z-index: 2;
    content: "\f078";
    display: block;
    width: 1.5rem;
    background-color: #75b1bd; }

  .select select:hover,
  .select select:focus,
  .select select:active {
    color: #fff;
    background-color: #75b1bd; } }
/* Buttons */
.site-btn {
  background-color: #75b1bd;
  padding: 8px 12px;
  color: #fff !important;
  border: none;
  margin-top: 5px;
  display: inline-block; }
  .site-btn[disabled] {
    background-color: #c4c4c4; }

.btn-chat-now {
  background: #fff;
  border: 3px solid #c4c4c4;
  color: #838b8f;
  text-align: left;
  font-weight: bold;
  margin-left: 0;
  margin-right: 0;
  min-height: 60px;
  padding: 10px 65px 10px 16px;
  position: relative; }
  .btn-chat-now:after {
    color: #75b1bd;
    content: '\f0e6';
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 40px;
    position: absolute;
    right: 27px;
    text-rendering: auto;
    top: calc(50% - 20px);
    transform: translate(0, 0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.compare-items-group .site-btn:before {
  content: "\f00c";
  color: #fff;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  margin-right: 10px;
  text-rendering: auto;
  transform: translate(0, 0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.btn-back {
  margin: 32px 0 1em 0;
  padding-left: 15px;
  font-weight: bold;
  font-size: 14px;
  color: #333;
  position: relative;
  display: inline-block; }
  .btn-back:hover {
    text-decoration: none; }
  .btn-back:before {
    content: '\f137';
    color: #75b1bd;
    font: normal normal normal 14px/1 FontAwesome;
    position: absolute;
    top: 5px;
    left: 0; }

.breadcrumbs-wrapper {
  display: none; }

@media screen and (min-width: 768px) {
  /* Breadcrumbs */
  .breadcrumbs-wrapper {
    display: block;
    background-color: white;
    padding: 6px 0 7px;
    font-size: 12px;
    line-height: 1.5em;
    color: #c4c4c4;
    clear: both;
    border-bottom: 1px solid #dcdddd;
    position: relative;
    z-index: 1; }
    .breadcrumbs-wrapper a {
      color: #c4c4c4;
      text-decoration: none;
      display: inline-block;
      margin: 0 5px; }
      .breadcrumbs-wrapper a:hover {
        text-decoration: underline; }

  .fa.fa-home {
    font-size: 22px;
    color: #c4c4c4;
    position: relative;
    top: 2px;
    margin-right: 5px; } }
.site-wrapper {
  overflow: hidden;
  /*position: relative;*/
  width: 100%;
  z-index: 1; }

.menu-btn {
  color: #fff;
  cursor: pointer;
  display: inline-block; }
  .menu-btn span {
    display: none;
    font-size: 14px;
    text-transform: uppercase; }

.menu-close {
  background: none;
  border: 0;
  display: inline-block;
  font-size: 14px;
  height: 21px;
  outline: none;
  overflow: hidden;
  padding-right: 24px;
  position: absolute;
  right: -240px;
  text-transform: uppercase;
  top: 2px;
  z-index: 999999; }
  .menu-close:after {
    content: "";
    background-repeat: no-repeat;
    background-position: 0 0;
    position: absolute;
    right: -7px;
    top: 7px;
    width: 20px;
    height: 20px; }

.menu > li {
  position: relative; }
  .menu > li > a {
    color: #fff;
    text-decoration: none; }

.sub-menu {
  display: none; }
  .sub-menu.active {
    *zoom: 1;
    display: block; }
    .sub-menu.active:before, .sub-menu.active:after {
      content: '';
      display: table; }
    .sub-menu.active:after {
      clear: both; }
  .sub-menu a {
    border: none;
    color: #999;
    display: block;
    font-size: 14px;
    font-weight: 100;
    margin: 0;
    position: relative;
    text-decoration: none;
    text-transform: capitalize; }
    .sub-menu a:hover {
      transition: all 0.2s; }
  .sub-menu ul li a.activechild {
    text-decoration: underline;
    color: #fff; }

.more-nav {
  display: none; }

#menu {
  background-color: #333;
  color: #fff;
  position: relative;
  width: 100%;
  z-index: 50; }

.additional-items a.drop-trigger {
  padding: 13px 16px 13px 10px;
  width: 160px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }
  .additional-items a.drop-trigger li {
    color: #c4c4c4; }
    .additional-items a.drop-trigger li:last-child, .additional-items a.drop-trigger li:last-child a {
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      border-radius: 0; }
.additional-items .drop-menu.active .drop-trigger {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }
  .additional-items .drop-menu.active .drop-trigger + ul {
    background-color: rgba(61, 62, 64, 0.85);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0; }
    .additional-items .drop-menu.active .drop-trigger + ul li:last-child, .additional-items .drop-menu.active .drop-trigger + ul li:last-child a {
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      border-radius: 0; }
    .additional-items .drop-menu.active .drop-trigger + ul a {
      border-top-color: #333;
      padding: 5px 16px 5px 10px; }
      .additional-items .drop-menu.active .drop-trigger + ul a:hover {
        background-color: #616a6f; }

.country-identifier {
  display: inline-block; }
  .country-identifier:before {
    content: '';
    background: url(/content/dam/veritas/icon-map.png) no-repeat 0 0;
    width: 40px;
    height: 19px;
    margin-right: 6px;
    display: inline-block;
    position: relative;
    top: 4px; }

.user-identifier a:before {
  color: #ccc;
  content: '\f0a8';
  display: inline-block;
  font: normal normal normal 16px/1 FontAwesome;
  margin-right: 6px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg); }

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Max-width: 1023px - phone/tablet only
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width: 1023px) {
  .js-basic.js-menu .site-slide {
    right: 260px; }

  .js-advanced .site-slide {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 500ms ease;
    -moz-transition: -moz-transform 500ms ease;
    -o-transition: -o-transform 500ms ease;
    transition: transform 500ms ease; }

  .js-advanced .site-slide.has-sticky {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none; }

  .js-advanced.js-menu .site-slide, .js-advanced.js-menu .site-slide.has-sticky {
    webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(-260px, 0, 0);
    -moz-transform: translate3d(-260px, 0, 0);
    -ms-transform: translate3d(-260px, 0, 0);
    -o-transform: translate3d(-260px, 0, 0);
    transform: translate3d(-260px, 0, 0); }

  .site-wrapper.modal-page .site-slide {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }

  #menu {
    height: auto;
    overflow: hidden;
    position: absolute;
    right: -260px;
    top: 0;
    width: 260px;
    padding-bottom: 150px; }

  .js-menu #menu {
    height: 10000px;
    /*-webkit-transform: none;
       -moz-transform: none;
        -ms-transform: none;
         -o-transform: none;
            transform: none;*/ }

  .js-advanced.js-menu #menu {
    right: 0;
    display: block;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(260px, 0, 0);
    -moz-transform: translate3d(260px, 0, 0);
    -ms-transform: translate3d(260px, 0, 0);
    -o-transform: translate3d(260px, 0, 0);
    transform: translate3d(260px, 0, 0); }

  .additional-items li {
    border-bottom: 1px solid #494a49; }
    .additional-items li .country-language-selector,
    .additional-items li .user-identifier {
      padding: 15px; }
  .additional-items a {
    color: #c4c4c4;
    display: block;
    font-size: 18px;
    text-decoration: none; }
  .additional-items a.drop-trigger {
    width: 100%; }
  .additional-items .site-selector {
    margin: 0 15px; }

  .menu-btn {
    position: relative; }
    .menu-btn:after {
      background: url(/content/dam/veritas/icon-menu.png) no-repeat 0 0;
      content: "";
      height: 20px;
      position: absolute;
      right: 0;
      top: -13px;
      width: 20px; }

  .menu-close:after {
    background-image: url(/content/dam/veritas/icon-close-mobile.png);
    height: 20px;
    width: 20px; }

  .menu {
    border-bottom: 3px solid #4a4e51;
    display: block;
    margin-top: 130px;
    text-align: left;
    width: 100%; }
    .menu li > a {
      background-color: #232323;
      border-top: 1px solid #333;
      color: #b8bfc3;
      display: block;
      font-size: 20px;
      padding: 10px 15px;
      position: relative;
      text-decoration: none; }
      .menu li > a.active {
        background-color: #b0151e;
        border-bottom: 3px solid #fff;
        color: #fff; }
        .menu li > a.active:after {
          content: '\f13a';
          display: inline-block;
          font: normal normal normal 16px/1 FontAwesome;
          position: absolute;
          right: 15px;
          text-rendering: auto;
          top: 13px;
          -webkit-font-smoothing: antialiased; }
    .menu li:first-child > a {
      border-top: none; }

  .sub-menu.active {
    max-height: 30em;
    overflow: visible;
    position: relative;
    z-index: 9; }
    .sub-menu.active div {
      font-weight: 300; }
    .sub-menu.active > .activechild {
      color: #fff;
      text-decoration: underline; }
    .sub-menu.active > a {
      border-bottom: 1px solid #515354;
      padding: 10px 15px; }
    .sub-menu.active a {
      background-color: #3c3f40;
      border-top: 1px solid #515354;
      color: #838b8f;
      font-size: 18px; }
      .sub-menu.active a span {
        display: none; }
      .sub-menu.active a:hover {
        background-color: #616a6f;
        color: #fff; }
    .sub-menu.active li:first-child a {
      border-top: none; } }
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Min-width: 640px
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width: 640px) {
  .menu-close {
    top: -2px; } }
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Min-width: 1024px
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width: 1024px) {
  .menu-btn {
    float: right;
    text-align: right; }
    .menu-btn span {
      display: inline-block;
      vertical-align: middle;
      position: relative;
      height: 20px;
      line-height: 20px;
      top: -8px; }
      .menu-btn span:after {
        background: url(/content/dam/veritas/icon-menu.png) no-repeat 0 0;
        content: "";
        display: inline-block;
        height: 20px;
        margin-left: 10px;
        position: relative;
        top: 5px;
        width: 20px; }
    .js-search .menu-btn {
      position: relative;
      z-index: 100000; }

  #menu {
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-background-clip: content;
    -moz-background-clip: content;
    background-clip: content-box;
    display: none;
    height: 200px;
    position: absolute;
    top: 108px;
    z-index: 10000; }

  .menu-close {
    color: #fff;
    display: none;
    height: 25px;
    padding-right: 33px;
    right: 1em;
    top: -4px; }
    .menu-close:after {
      background-image: url(/content/dam/veritas/icon-close-desktop-white.png);
      height: 20px;
      right: 4px;
      top: 3px;
      width: 20px; }
    .js-menu .menu-close {
      display: inline-block; }
    .js-search .menu-close {
      display: inline-block;
      right: 110px; }

  .js-menu #menu {
    border-bottom: 40px solid rgba(0, 0, 0, 0.8);
    display: block; }

  .js-search #menu {
    background-color: rgba(0, 0, 0, 0.8);
    display: block; }
    .js-search #menu .menu {
      display: none; }

  .menu {
    left: 30px;
    margin: -60px auto 0;
    max-width: 640px;
    position: relative;
    text-align: left; }
    .menu > li {
      display: inline-block;
      font-size: 14px;
      font-weight: 700;
      margin-right: 5%;
      position: static;
      text-transform: uppercase; }
      .menu > li > a {
        outline: none;
        padding-bottom: 34px; }
        .menu > li > a.active, .menu > li > a:hover {
          border-bottom: 5px solid #fff; }

  .js-menu .menu-btn,
  .js-search .search-btn {
    visibility: hidden; }

  .sub-menu.active {
    left: 0;
    overflow: hidden;
    position: absolute;
    text-align: left;
    text-transform: none;
    top: 75px;
    width: 640px; }
    .sub-menu.active a {
      display: inline-block;
      outline: none; }
      .sub-menu.active a:hover {
        color: #fff;
        text-decoration: underline; }
    .sub-menu.active > a {
      color: #b0151e !important;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 14px;
      text-transform: uppercase;
      text-decoration: none !important; }
      .sub-menu.active > a:before {
        color: #fff;
        content: '\f138';
        display: inline-block;
        font: normal normal normal 14px/1 FontAwesome;
        font-size: inherit;
        margin-right: 6px;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        transform: translate(0, 0); }
      .sub-menu.active > a:hover {
        color: #b0151e;
        text-decoration: underline; }
  .sub-menu li {
    display: inline;
    float: left;
    margin: 0 0 16px;
    width: 33%; }

  .additional-items {
    height: 40px;
    margin: 195px auto 0;
    max-width: 1280px;
    padding-right: 16px;
    text-align: right;
    width: 100%; }
    .additional-items > li {
      display: inline-block;
      margin-left: 27px;
      position: relative;
      top: 0; }
      .additional-items > li a,
      .additional-items > li i,
      .additional-items > li span {
        color: #ccc;
        font-size: 14px;
        text-decoration: none; }
    .additional-items a.drop-trigger {
      background-color: rgba(0, 0, 0, 0.25); }

  .user-identifier a:hover,
  .country-language-selector:hover span {
    color: #fff;
    text-decoration: underline; }

  .user-identifier a:hover:before {
    color: #fff; }

  .country-identifier:hover:before {
    background-position: 0 -20px; } }
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Min-width: 1280px
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width: 1280px) {
  #menu {
    height: 185px; }

  .menu {
    margin-top: -62px;
    max-width: 870px; }
    .menu > li {
      font-size: 18px;
      margin-right: 6%; }
      .menu > li > a {
        padding-bottom: 35px; }

  .sub-menu.active {
    width: 870px; }
  .sub-menu li {
    width: 25%; }

  .additional-items {
    margin-top: 183px; } }
/* Logo */
.logo-container {
  width: 80%;
  position: relative;
  top: 12px; }
  .logo-container a {
    top: 15px;
    left: 20px;
    z-index: 1000000;
    display: block;
    max-width: 30%; }
    .logo-container a.partner--veritas {
      max-width: 30%;
      padding-right: 5px;
      display: none; }
    .logo-container a.partner--third-party {
      max-width: 100%;
      font-size: 0;
      vertical-align: middle; }
    .logo-container a img {
      width: 100%;
      max-width: 168px; }
  .logo-container a.partner--veritas img {
    width: 100%;
    max-width: 168px;
    vertical-align: middle; }
  .logo-container a.partner--third-party img {
    width: auto;
    vertical-align: top; }

footer .logo img {
  max-width: 135px; }

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Min-width: 480px
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Min-width: 640px
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width: 640px) {
  .logo-container a.partner--veritas {
    border-right: 1px solid #fff;
    display: inline-block; }
  .logo-container a.partner--third-party {
    display: inline-block; } }
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Min-width: 768px
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width: 768px) {
  .logo-container {
    top: 30px; }
    .logo-container a {
      display: inline-block; }
    .logo-container a.partner--veritas img {
      max-width: 118px; }
    .logo-container a.partner--third-party img {
      width: 100%;
      vertical-align: middle;
      display: inline-block; } }
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Min-width: 894px
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width: 894px) {
  .logo-container {
    top: 19px; } }
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Min-width: 1024px
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width: 1024px) {
  .logo-container {
    top: 30px; }
    .logo-container a {
      left: 0;
      top: 22px; }
      .logo-container a img {
        max-width: 200px; }

  footer .logo img {
    max-width: 150px; } }
/* Social Icons */
.social-media-links li {
  display: inline-block; }
.social-media-links a {
  display: inline-block;
  text-align: center; }
  .social-media-links a:hover span {
    background-color: #414141; }
.social-media-links .twitter,
.social-media-links .facebook {
  width: auto;
  height: auto;
  opacity: 1;
  float: none;
  margin-right: 0;
  transition-delay: 0;
  transition-duration: 0;
  transition-property: none;
  background-image: none; }
.social-media-links span {
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: background-color 1s ease;
  -moz-transition: background-color 1s ease;
  -o-transition: background-color 1s ease;
  -ms-transition: background-color 1s ease;
  transition: background-color 1s ease; }
  .social-media-links span i.fa-youtube:before {
    content: '\f16a'; }
  .social-media-links span i {
    -webkit-transition: color .5s ease;
    -moz-transition: color .5s ease;
    -o-transition: color .5s ease;
    -ms-transition: color .5s ease;
    transition: color .5s ease; }

footer .social-media-links {
  text-align: center; }
  footer .social-media-links li {
    margin-bottom: 12px;
    margin-right: 4px; }
  footer .social-media-links span {
    background-color: #838b8f;
    border-radius: 50%; }

@media screen and (min-width: 768px) {
  footer .social-media-links {
    text-align: left; }
    footer .social-media-links li {
      margin-right: 12px; }
    footer .social-media-links img {
      max-height: 18px;
      max-width: 18px; } }
/* Search - in Header */
.show-search {
  display: none; }
  .show-search .fa-circle {
    color: #75b1bd !important; }

.site-search {
  width: calc(100% - 25px);
  position: absolute;
  top: 80px;
  left: 15px; }
  .site-search .content {
    *zoom: 1;
    padding-left: 0;
    padding-right: 0; }
    .site-search .content:before, .site-search .content:after {
      content: '';
      display: table; }
    .site-search .content:after {
      clear: both; }
  .site-search .form-group {
    overflow: hidden; }
  .site-search input[type="search"] {
    background-color: #333;
    border: none;
    border-bottom: 1px solid #c4c4c4;
    color: #f5f5f5;
    display: block;
    height: 25px;
    line-height: 18px;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    font-size: 18px;
    margin: 0; }
  .site-search .btn-search {
    background-color: transparent;
    border: none;
    color: #fff;
    float: right;
    font-size: 20px;
    height: auto;
    margin-left: 5px;
    padding: 0 7px 6px;
    text-align: center; }

section.search-results-top .list-drop-menu li a, section.search-results-top .tabs li a, .search-fliter.side-sub-nav .list-drop-menu li a, .search-fliter.side-sub-nav .tabs li a {
  padding: 10px 20px; }

section.search-results-top .list-drop-menu li.current:after {
  top: 14px; }

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Min-width: 1024px
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width: 1024px) {
  .js-menu #menu .site-search {
    display: none; }

  .js-search .site-search {
    left: calc(50% - 35%);
    width: 70%; }
  .js-search .additional-items {
    display: none; }

  .site-search {
    top: 70px; }
    .site-search input[type="search"] {
      background-color: transparent;
      font-size: 48px;
      height: 55px;
      line-height: 55px;
      padding-bottom: 5px; }
    .site-search .btn-search {
      font-size: 40px;
      padding: 0;
      position: relative;
      top: 3px; } }
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Min-width: 1280px
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width: 1280px) {
  .js-search .site-search {
    max-width: 900px;
    margin: 70px auto 0;
    position: static; } }
/* Autocomplete */
.autocomplete-suggestions {
  background: rgba(0, 0, 0, 0.6);
  color: #f5f5f5;
  overflow: auto; }
  .autocomplete-suggestions strong {
    color: #fff;
    font-weight: normal; }

.autocomplete-suggestion {
  border-top: 1px solid #333;
  padding: 16px;
  overflow: hidden; }
  .autocomplete-suggestion:first-child {
    border-top: none; }

.autocomplete-group {
  padding: 5px 10px; }
  .autocomplete-group strong {
    display: block; }

@media screen and (min-width: 1024px) {
  .autocomplete-suggestions {
    background: rgba(0, 0, 0, 0.6); }

  .autocomplete-suggestion {
    font-size: 24px; } }
/* Alert bar */
.alert-bar {
  background-color: #b0151e;
  max-height: 30em; }
  .alert-bar .content {
    font-size: 18px;
    padding-bottom: 2px;
    padding-top: 12px;
    position: relative; }
  .alert-bar p {
    color: #fff;
    margin: 0;
    max-width: 90%;
    padding: 0 0 10px 40px;
    position: relative; }
    .alert-bar p img {
      position: absolute;
      left: 0;
      top: -2px; }
    .alert-bar p span {
      margin-right: 1em; }
    .alert-bar p a {
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      position: relative;
      text-decoration: none; }
      .alert-bar p a i {
        margin-left: 4px; }
  .alert-bar .dismiss {
    cursor: pointer;
    right: 20px;
    position: absolute;
    top: 14px; }

.csstransitions .alert-bar.alert-dismissed {
  transition: max-height .5s ease;
  max-height: 0; }
  .csstransitions .alert-bar.alert-dismissed p,
  .csstransitions .alert-bar.alert-dismissed .dismiss {
    transition: opacity .5s ease;
    opacity: 0; }

.ie9 .alert-bar.alert-dismissed {
  max-height: 0; }
  .ie9 .alert-bar.alert-dismissed p,
  .ie9 .alert-bar.alert-dismissed .dismiss {
    display: none; }

/* Header */
header {
  *zoom: 1;
  position: relative;
  width: 100%;
  height: 90px;
  background: #b0151e; }
  header:before, header:after {
    content: '';
    display: table; }
  header:after {
    clear: both; }
  header .content {
    height: 100%;
    position: relative; }
  header:after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    height: 20px;
    width: 100%;
    background-color: rgba(176, 21, 30, 0.25); }

.js-menu header:after,
.js-search header:after {
  height: 0; }

.search-and-menu {
  position: absolute;
  top: 5px;
  right: 0;
  text-align: right;
  display: inline-block;
  color: #fff;
  padding-right: 16px; }
  .search-and-menu .fa-bars {
    font-size: 20px; }
  .search-and-menu .fa-search {
    display: none; }

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Min-width: 640px
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width: 640px) {
  header {
    height: 108px;
    border-bottom-width: 20px; }

  .search-and-menu {
    top: 36px; }
    .search-and-menu .fa-bars {
      font-size: 32px; } }
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Min-width: 1024px
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width: 1024px) {
  header {
    overflow: visible !important; }

  .search-and-menu {
    font-size: 20px;
    top: 46px; }
    .search-and-menu .fa-search {
      cursor: pointer;
      display: inline-block;
      line-height: 20px;
      position: relative;
      left: -30px;
      top: -3px;
      z-index: 100000; } }
/* Slider */
div.carousel {
  margin-bottom: 0; }

.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }
  .slick-slider.resources-carousel {
    margin: 0 -2em; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block; }

.slick-track:before,
.slick-track:after {
  display: table;
  content: ''; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  display: none;
  float: left;
  outline: none;
  height: 100%;
  min-height: 1px; }

[dir='rtl'] .slick-slide {
  float: right; }

.slick-slide img {
  display: block;
  outline: none; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
  outline: none; }

.slick-arrow.slick-hidden {
  display: none; }

.slick-prev, .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 38%;
  display: block;
  width: 44px;
  height: 65px;
  margin-top: -10px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: #c4c4c4;
  opacity: 0.45;
  z-index: 10;
  font: normal normal normal 14px/1 FontAwesome;
  opacity: .6; }
  .slick-prev:after, .slick-next:after {
    content: '\f053';
    color: #fff;
    position: absolute;
    top: 40%;
    left: 40%; }

.slick-next {
  right: 0; }
  .slick-next:after {
    content: '\f054'; }

.slick-prev:after {
  left: 30%; }

.slick-prev:hover, .slick-next:hover {
  opacity: 1; }

.slick-dots {
  position: absolute;
  bottom: -30px;
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: center;
  z-index: 10;
  margin: 0; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 0 5px !important;
    padding: 0;
    cursor: pointer;
    border-radius: 18px;
    border: 2px solid #c4c4c4;
    background: #c4c4c4;
    opacity: 0.45;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease; }
    .slick-dots li.slick-active {
      background: none; }
    .slick-dots li button {
      font-size: 0;
      line-height: 0;
      display: block;
      width: 20px;
      height: 20px;
      padding: 5px;
      cursor: pointer;
      color: transparent;
      border: 0;
      outline: none;
      background: transparent; }
    .slick-dots li:hover {
      opacity: .7; }
    .slick-dots li:before {
      display: none; }

.hero-carousel.carousel .slick-dots {
  bottom: 8px;
  /*text-align: right;*/
  /*padding-right:1em;*/
  max-width: 1280px; }
.hero-carousel.carousel .slide {
  position: relative; }
.hero-carousel.carousel .slick-prev, .hero-carousel.carousel .slick-next {
  top: 50%; }

.quote-carousel.carousel {
  border: solid #dcdddd;
  border-width: 1px 0;
  padding: 40px 0 50px; }
  .quote-carousel.carousel .slick-dots {
    bottom: 35px; }
  .quote-carousel.carousel .slide-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 2.5em 30px; }
    .quote-carousel.carousel .slide-content .media, .quote-carousel.carousel .slide-content .media-content {
      display: block;
      margin: 0 auto;
      text-align: center; }
    .quote-carousel.carousel .slide-content .media img {
      margin: 0 auto 34px;
      max-width: 100px;
      max-height: 100px; }
    .quote-carousel.carousel .slide-content p {
      color: #333; }
    .quote-carousel.carousel .slide-content h2,
    .quote-carousel.carousel .slide-content h3 {
      line-height: 1; }
    .quote-carousel.carousel .slide-content h2 {
      color: #333;
      border: none;
      padding-bottom: 0;
      margin: 22px 0 0 0;
      position: relative;
      top: -15px; }
      .quote-carousel.carousel .slide-content h2:after {
        content: none; }
    .quote-carousel.carousel .slide-content h3 {
      margin: 0 auto; }
      .quote-carousel.carousel .slide-content h3:before {
        content: none; }
    .quote-carousel.carousel .slide-content a {
      display: block;
      margin: 0 auto;
      max-width: 140px;
      font-weight: bold; }

.news-carousel.carousel {
  background: #e1ecf7;
  margin-bottom: 40px;
  padding: 20px 0 40px; }
  .news-carousel.carousel .slide-content {
    margin: 0 auto;
    padding: 0 2.5em 30px;
    text-align: center; }
    .news-carousel.carousel .slide-content time {
      background: #0e2d3f;
      color: #e1ecf7;
      padding: 8px 8px 4px;
      margin: 20px auto 20px;
      display: inline-block;
      font-size: 12px; }
    .news-carousel.carousel .slide-content h3 {
      margin: 0 0 10px; }
    .news-carousel.carousel .slide-content p a {
      border: 2px solid #b0151e;
      color: #333;
      text-decoration: none;
      display: inline-block;
      padding: 5px;
      text-transform: uppercase;
      -webkit-transition: border-color 1s ease;
      -moz-transition: border-color 1s ease;
      -o-transition: border-color 1s ease;
      -ms-transition: border-color 1s ease;
      transition: border-color 1s ease; }
      .news-carousel.carousel .slide-content p a:hover {
        border-color: #333; }
  .news-carousel.carousel .slick-dots {
    bottom: 20px; }

.resources-carousel .slick-prev,
.resources-carousel .slick-next, .card-4up-carousel .slick-prev,
.card-4up-carousel .slick-next {
  top: 48%;
  border-radius: 50px;
  height: 50px;
  width: 50px;
  right: 3px; }
.resources-carousel .slick-next:after, .card-4up-carousel .slick-next:after {
  left: 22px;
  opacity: 1; }
.resources-carousel .slick-prev, .card-4up-carousel .slick-prev {
  left: 6px; }
  .resources-carousel .slick-prev:after, .card-4up-carousel .slick-prev:after {
    left: 35%;
    opacity: 1; }

.resources .resources-carousel .slick-prev:after,
.resources .resources-carousel .slick-next:after, .dark-blue .resources-carousel .slick-prev:after,
.dark-blue .resources-carousel .slick-next:after {
  color: #0e2d3f; }

.resources.light-blue .slick-prev:after,
.resources.light-blue .slick-next:after {
  color: #fff; }

.card-4up-carousel {
  margin: 30px 0 40px; }
  .card-4up-carousel .slick-dots {
    bottom: -20px; }
  .card-4up-carousel .slick-prev {
    left: -1.2em; }
  .card-4up-carousel .slick-next {
    right: -1.3em; }

@media screen and (min-width: 768px) {
  .hero-carousel.carousel .slick-dots {
    text-align: right;
    padding-right: 1em;
    bottom: 25px; }
  .hero-carousel.carousel .slide a h4, .hero-carousel.carousel .slide a h3, .hero-carousel.carousel .slide a h5, .hero-carousel.carousel .slide a h2 {
    font-size: 38px; }
  .hero-carousel.carousel .slide a p {
    font-size: 14px; }

  .carousel.quote-carousel {
    border: solid #f5f5f5;
    border-width: 2px 0;
    padding: 50px 0; }
    .carousel.quote-carousel .slide-content {
      margin: 0 auto;
      padding: 0 2em 30px; }
      .carousel.quote-carousel .slide-content .media, .carousel.quote-carousel .slide-content .media-content {
        display: table-cell;
        vertical-align: top;
        text-align: left; }
      .carousel.quote-carousel .slide-content .media {
        padding-right: 70px; }
        .carousel.quote-carousel .slide-content .media img {
          margin-top: 80px; }
      .carousel.quote-carousel .slide-content a {
        margin: 0;
        text-align: center; }
      .carousel.quote-carousel .slide-content h2 {
        font-size: 38px;
        padding-bottom: 10px; }
      .carousel.quote-carousel .slide-content h3 {
        font-size: 28px;
        line-height: 45px;
        margin-bottom: 16px; }
      .carousel.quote-carousel .slide-content p {
        font-size: 12px;
        margin: 3px 0 40px 0; }
      .carousel.quote-carousel .slide-content .slick-dots {
        bottom: 35px; } }
@media screen and (min-width: 1000px) {
  .slick-prev, .slick-next {
    opacity: .5;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease; }
    .slick-prev:hover, .slick-next:hover {
      opacity: 1; }

  .card-4up-carousel {
    margin-bottom: 0; } }
/* Veritas.com non-devkit header */
html.respond header {
  background: none;
  position: absolute;
  z-index: 9999;
  overflow: hidden; }
  html.respond header:after {
    height: 0; }
html.respond .logo-angle {
  /* background: url(/content/dam/veritas/Veritas_RedLeft.svg) no-repeat left top;*/
  /*background-size: cover;*/
  display: inline-block;
  height: auto;
  /*min-height: 156px;*/
  left: 0;
  position: absolute;
  top: 0;
  width: 85%;
  z-index: 1; }
  html.respond .logo-angle svg {
    width: 100%; }
html.respond .right-diagonal {
  background: url(/content/dam/veritas/Veritas_GreyRight_sm.svg) no-repeat right top;
  background-size: cover;
  height: auto;
  /*min-height: 125px; */
  position: absolute;
  right: 0;
  top: 0;
  /*top: -12px;*/
  width: 74%;
  z-index: 1;
  overflow: hidden;
  min-height: 155px; }
  html.respond .right-diagonal svg {
    width: 115%;
    opacity: 0; }

@media screen and (max-width: 340px) {
  html.respond .right-diagonal {
    min-height: 70px; } }
@media screen and (min-width: 768px) {
  html.respond .right-diagonal {
    width: 100%;
    background: none; }
    html.respond .right-diagonal svg {
      opacity: 1; }
  html.respond .logo-angle {
    width: 74%; } }
@media screen and (min-width: 894px) {
  html.respond .logo-angle {
    width: 53%; } }
@media screen and (min-width: 1024px) {
  html.respond .right-diagonal {
    /*background: url(/content/dam/veritas/Veritas_GreyRight.svg) no-repeat right top;*/
    /*background-size: cover;
    width: 90%;
    top: -4px;
    min-height: 102px;*/
    width: 80%; }
  html.respond .logo-angle {
    width: 49%; }
    html.respond .logo-angle svg {
      height: 209px; }
  html.respond.js-menu header, html.respond.js-search header {
    background-color: #b0151e;
    background-color: rgba(176, 21, 30, 0.8); } }
@media screen and (min-width: 1800px) {
  html.respond .logo-angle {
    width: 51%; }
    html.respond .logo-angle svg {
      height: 455px; }
  html.respond .right-diagonal {
    width: 65%; }

  .hero-carousel.carousel .slick-dots {
    left: 17%; } }
@media screen and (min-width: 3300px) {
  html.respond .logo-angle svg {
    height: 545px; }
  html.respond .right-diagonal {
    width: 57%; } }
/* Footer */
a[href^="tel"] {
  color: #000;
  text-decoration: none;
  white-space: nowrap; }
  a[href^="tel"]:hover {
    text-decoration: none; }

footer {
  clear: both; }
  footer .logo,
  footer .link-column,
  footer .norton-seal {
    display: none; }
  footer .content {
    padding-top: 0; }
    footer .content h6 {
      padding-top: 0;
      line-height: 1;
      margin-bottom: 10px;
      margin-top: 0;
      text-transform: uppercase; }
  footer a:hover {
    text-decoration: underline; }

footer.supplemental {
  *zoom: 1;
  padding-top: 20px;
  border-top: 1px solid #dcdddd; }
  footer.supplemental:before, footer.supplemental:after {
    content: '';
    display: table; }
  footer.supplemental:after {
    clear: both; }
  footer.supplemental .content p:first-child {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: left;
    color: #333;
    font-size: 14px; }

.footer-links {
  clear: both; }

footer .social-media-links {
  text-align: left; }

footer.additional {
  background-color: #e1ecf7; }
  footer.additional .content {
    padding-top: .5em; }
  footer.additional p {
    color: #414141;
    font-size: 12px; }
  footer.additional li {
    display: inline-block;
    line-height: 1;
    border-left: 1px solid #75b1bd;
    padding-left: 7px;
    margin-left: 4px; }
    footer.additional li:first-child {
      border-left: none;
      padding-left: 0;
      margin-left: 0; }
  footer.additional a {
    text-decoration: none; }
    footer.additional a:hover {
      text-decoration: underline; }
  footer.additional li,
  footer.additional li a {
    color: #414141;
    font-size: 10px; }
  footer.additional.hasStickyCTA .content {
    padding-bottom: 95px; }

@media screen and (min-width: 768px) {
  footer {
    position: relative; }
    footer .logo {
      display: inline-block; }
    footer .logo {
      max-width: 250px; }
    footer .link-column {
      display: block;
      margin-bottom: 1em;
      float: left;
      clear: none;
      width: 17.6%;
      margin-left: 0;
      margin-right: 3%; }
      footer .link-column:last-child {
        margin-right: 0; }

  footer.supplemental {
    *zoom: 1; }
    footer.supplemental:before, footer.supplemental:after {
      content: '';
      display: table; }
    footer.supplemental:after {
      clear: both; }
    footer.supplemental .content p:first-child {
      margin-bottom: 58px;
      text-align: center; }

  .footer-links {
    *zoom: 1;
    padding-bottom: 1.5em; }
    .footer-links:before, .footer-links:after {
      content: '';
      display: table; }
    .footer-links:after {
      clear: both; }

  .footer-assets {
    *zoom: 1;
    margin-top: 3em; }
    .footer-assets:before, .footer-assets:after {
      content: '';
      display: table; }
    .footer-assets:after {
      clear: both; }
    .footer-assets h6 {
      font-size: 16px;
      line-height: 24px; }
    .footer-assets a {
      font-size: 14px;
      text-decoration: none;
      color: #333;
      line-height: 24px; }

  footer.additional .content {
    padding-bottom: 0;
    padding-top: 0; }
  footer.additional p,
  footer.additional li,
  footer.additional li a {
    font-size: 14px; }
  footer.additional p, footer.additional ul {
    display: inline-block; }
  footer.additional ul {
    margin-left: 10%;
    margin-top: 14px; }

  footer .social-media-links {
    *zoom: 1;
    text-align: center; }
    footer .social-media-links:before, footer .social-media-links:after {
      content: '';
      display: table; }
    footer .social-media-links:after {
      clear: both; }
    footer .social-media-links ul {
      float: right;
      text-align: right; }
    footer .social-media-links li {
      margin-left: -5px;
      position: relative; }

  footer .norton-seal {
    display: inline-block;
    float: right;
    width: 17.6%;
    margin: 0; } }
@media screen and (min-width: 768px) {
  footer .content {
    padding-bottom: 1.5em; }

  footer.supplemental {
    padding-top: 46px; }
    footer.supplemental .content p:first-child {
      width: 75%;
      float: right;
      margin: 0;
      font-size: 16px; } }
@media screen and (min-width: 1024px) {
  a[href^="tel"] {
    color: #333;
    cursor: default; }

  footer .logo {
    float: left;
    clear: none;
    width: 22.75%;
    margin-left: 0;
    margin-right: 3%;
    margin-right: 0; }
    footer .logo:last-child {
      margin-right: 0; }
  footer .content {
    *zoom: 1; }
    footer .content:before, footer .content:after {
      content: '';
      display: table; }
    footer .content:after {
      clear: both; }

  footer.additional p {
    float: left;
    width: 22.75%; }
  footer.additional ul {
    float: right;
    margin-left: 0;
    width: 74.25%; }

  footer.supplemental .content p:first-child {
    width: 100%;
    float: none;
    margin: 0 0 59px 0; }

  .footer-assets {
    float: left;
    clear: none;
    width: 74.25%;
    margin-left: 0;
    margin-right: 3%;
    width: 76%;
    float: right;
    margin-top: 0;
    margin-right: 0; }
    .footer-assets:last-child {
      margin-right: 0; }
    .footer-assets h6 {
      font-size: 16px; }
    .footer-assets a {
      font-size: 14px;
      line-height: 28px; } }
header,
nav,
.alert-bar,
footer {
  font-size: 18px;
  line-height: 24px; }

/* veritas.com site styles */
section.hero-block {
  background-color: #838b8f;
  background-size: cover;
  margin: 0;
  overflow: hidden;
  position: relative; }
  section.hero-block.video-hero {
    padding-top: 50px; }
    section.hero-block.video-hero .fa-stack-1x,
    section.hero-block.video-hero .fa-stack-2x {
      top: 24px; }
  section.hero-block .play {
    cursor: pointer;
    font-size: 10vw;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100; }
    section.hero-block .play i.fa-play-circle-2 {
      color: #b0151e;
      margin: 0; }
      section.hero-block .play i.fa-play-circle-2:before {
        content: "\f144"; }
    section.hero-block .play i.fa-circle {
      color: #fff; }
  section.hero-block > img {
    display: block;
    position: relative;
    width: 125%;
    z-index: 1999; }
  section.hero-block .content {
    *zoom: 1;
    padding-bottom: 20px;
    padding-top: 24vw;
    position: relative;
    z-index: 2; }
    section.hero-block .content:before, section.hero-block .content:after {
      content: '';
      display: table; }
    section.hero-block .content:after {
      clear: both; }
  section.hero-block .social-media-links span {
    background-color: #838b8f;
    border-radius: 50%; }

.hero-video h5,
p.video-link {
  font-size: 18px;
  font-weight: lighter;
  margin: 20px 0; }
  .hero-video h5 a,
  p.video-link a {
    color: #f5f5f5;
    text-decoration: none; }
    .hero-video h5 a:after,
    p.video-link a:after {
      color: #fff;
      content: '\f138';
      display: inline-block;
      font: normal normal normal 14px/1 FontAwesome;
      padding-left: 10px;
      -moz-transition: padding 1s ease;
      -ms-transition: padding 1s ease;
      -o-transition: padding 1s ease;
      -webkit-transition: padding 1s ease;
      transition: padding 1s ease; }
    .hero-video h5 a:hover,
    p.video-link a:hover {
      color: #fff; }
      .hero-video h5 a:hover:after,
      p.video-link a:hover:after {
        padding-left: 13px; }

p.video-link {
  margin-bottom: 0; }

.hero-background {
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover; }

.hero .text,
.hero .promo,
.hero .hero-video {
  clear: both; }
.hero .promo img {
  display: block;
  max-width: 100%; }
.hero .hero-whitepaper {
  background-color: #fff;
  clear: both;
  padding: 20px 20px 20px 90px;
  position: relative; }
  .hero .hero-whitepaper img {
    left: 20px;
    position: absolute;
    top: 20px; }
  .hero .hero-whitepaper p {
    float: none; }
    .hero .hero-whitepaper p a {
      color: #414141;
      -moz-transition: border-color 1s ease;
      -ms-transition: border-color 1s ease;
      -o-transition: border-color 1s ease;
      -webkit-transition: border-color 1s ease;
      transition: border-color 1s ease; }
      .hero .hero-whitepaper p a:hover {
        border-color: #333; }
.hero a.inline-cta {
  color: #fff; }

.hero-link {
  color: #fff;
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  text-decoration: none;
  top: 0;
  width: 100%;
  z-index: 100; }

.hero-carousel.carousel .slick-arrow {
  opacity: 0; }
.hero-carousel.carousel .hero-block {
  min-height: 450px;
  position: relative; }
  .hero-carousel.carousel .hero-block .content {
    min-height: 350px; }
    .hero-carousel.carousel .hero-block .content .fa-stack-1x,
    .hero-carousel.carousel .hero-block .content .fa-stack-2x {
      bottom: 45%;
      top: auto; }
  .hero-carousel.carousel .hero-block .text {
    bottom: 65px;
    left: 1em;
    position: absolute;
    width: 89%; }

@media screen and (min-width: 767px) {
  .hero-carousel.carousel .hero-block {
    min-height: 500px;
    padding-top: 16%; }

  section.hero-block {
    display: block;
    margin: 0;
    width: 100%; }
    section.hero-block .content {
      padding-top: 180px;
      position: relative;
      top: 0; }
    section.hero-block > img {
      display: block; }
    section.hero-block .play {
      font-size: 7vw; }
    section.hero-block.video-hero {
      padding-top: 0; }
      section.hero-block.video-hero .fa-stack-1x,
      section.hero-block.video-hero .fa-stack-2x {
        top: 154px; }
      section.hero-block.video-hero .hero {
        min-height: 150px; }
      section.hero-block.video-hero .text {
        width: 46%; }
    section.hero-block .hero-video h5 {
      margin: 10px 0 0; }
    section.hero-block .text {
      clear: none;
      float: left;
      margin-left: 0;
      width: 59.66667%; }

  .hero .promo h5,
  .hero .text h5,
  .hero .hero-video h5,
  .hero .hero-whitepaper h5 {
    color: #fff;
    margin: 20px 0 0; }
  .hero .promo {
    float: left;
    clear: none;
    width: 31.33333%;
    margin-left: 0;
    margin-right: 3%;
    bottom: 15px;
    display: table-cell;
    position: absolute;
    right: 0;
    vertical-align: middle; }
    .hero .promo:last-child {
      margin-right: 0; }
  .hero .hero-video {
    float: left;
    clear: none;
    width: 31.33333%;
    margin-left: 0;
    margin-right: 3%;
    float: right;
    margin-right: 8%; }
    .hero .hero-video:last-child {
      margin-right: 0; }
  .hero .hero-whitepaper {
    float: left;
    clear: none;
    width: 31.33333%;
    margin-left: 0;
    margin-right: 3%;
    display: table-cell;
    vertical-align: middle; }
    .hero .hero-whitepaper:last-child {
      margin-right: 0; }
    .hero .hero-whitepaper img {
      left: 20px;
      position: absolute;
      top: 20px; } }
@media screen and (min-width: 815px) {
  .hero-carousel.carousel .hero-block {
    min-height: 450px; }
    .hero-carousel.carousel .hero-block.video-hero .content {
      padding-top: 60px; } }
@media screen and (min-width: 1024px) {
  .hero-carousel.carousel .hero-block {
    padding-top: calc(16% - 190px); }
    .hero-carousel.carousel .hero-block .content {
      min-height: 540px; }
      .hero-carousel.carousel .hero-block .content .fa-stack-1x,
      .hero-carousel.carousel .hero-block .content .fa-stack-2x {
        bottom: 30%; }
  .hero-carousel.carousel .slick-arrow {
    opacity: 0;
    -moz-transition: opacity 1s ease;
    -ms-transition: opacity 1s ease;
    -o-transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
    transition: opacity 1s ease; }
  .hero-carousel.carousel:hover .slick-arrow {
    opacity: 0.45; }
    .hero-carousel.carousel:hover .slick-arrow:hover {
      opacity: 1; } }
@media screen and (min-width: 3500px) {
  .hero-carousel.carousel .hero-block {
    padding-top: calc(16% - 450px); }
    .hero-carousel.carousel .hero-block .content {
      min-height: 710px; } }
/* Initial Typography - Non-third-party-devkit - Veritas.com only */
body {
  font-family: arial, sans-serif;
  font-size: 18px;
  line-height: 24px; }

main {
  color: #848a8f; }

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333;
  line-height: 1em; }

h1 {
  font-size: 25px;
  letter-spacing: -2px;
  font-weight: 300; }
  .hero h1 {
    font-weight: bold;
    font-size: 25px;
    color: #fff;
    line-height: 1;
    letter-spacing: 0;
    margin: 0;
    text-transform: uppercase;
    /*width: 150px;*/
    margin-top: 10px; }

h2 {
  font-size: 21px;
  font-weight: 700; }
  section h2 {
    border-bottom: 1px solid #c4c4c4;
    margin-bottom: 7px;
    padding-bottom: 10px;
    position: relative;
    width: 100%;
    font-weight: 100;
    margin-top: 50px; }
    section h2 span {
      color: #838b8f;
      display: inline-block;
      font-size: 16px;
      line-height: 1; }
    section h2:after {
      background-color: #b0151e;
      bottom: -1px;
      content: '';
      height: 2px;
      left: 0;
      position: absolute;
      width: 50px; }
  .hero h2 {
    color: #fff;
    margin: 0;
    border-bottom: none;
    padding-bottom: 0;
    line-height: 1;
    display: block;
    margin-top: 10px; }
    .hero h2:after {
      background-color: transparent;
      height: 0; }
  .content-band-2column h2 {
    font-size: 36px;
    border-bottom: none;
    padding-bottom: 0; }
    .content-band-2column h2:after {
      display: none; }
  .infographic h2, .resources h2 {
    color: #fff; }

h3 {
  font-size: 19px;
  font-weight: 300; }
  section h3 {
    margin-top: calc(1em + 8px);
    position: relative; }
    section h3.above-line-teal:before {
      background-color: #75b1bd; }
  .hero-whitepaper h3 {
    margin: 0; }
  .flex-item h3 {
    font-size: 19px; }
    .flex-item h3 a {
      color: #333;
      text-decoration: none; }
      .flex-item h3 a:hover {
        text-decoration: underline; }
  .content-band-2column h3 {
    margin-top: 10px; }
    .content-band-2column h3:before {
      display: none; }
  .card h3 {
    letter-spacing: -.02em; }
  .country-selector h3 {
    margin-top: 0;
    font-size: 24px;
    line-height: 28px; }
    .country-selector h3:before {
      display: none; }

h4 {
  font-size: 18px;
  font-weight: 300; }
  .sample-courses h4 {
    color: #b0151e;
    border-bottom: 1px solid #c4c4c4;
    padding-bottom: 10px;
    margin-bottom: 0;
    font-size: 18px; }
    .sample-courses h4 span {
      color: #333;
      font-weight: normal; }
  h4.col-header {
    margin-top: 0; }

h5 {
  font-size: 16px; }

h6 {
  font-size: 14px; }

p {
  font-size: 16px;
  font-weight: normal; }
  .card p {
    color: #838b8f;
    font-size: 14px; }
  .card-detail p {
    color: #fff; }
  .hero p {
    color: #fff;
    display: block;
    float: left;
    clear: none;
    width: 100%;
    margin-left: 0;
    margin-right: 3%; }
    .hero p:last-child {
      margin-right: 0; }
    .hero p a {
      position: relative;
      /* IE Fix for box-shadow borders not rendering for breaking lines */
      left: 10px;
      /* IE Fix for box-shadow borders not rendering for breaking lines */
      text-decoration: none;
      color: #fff;
      background: #b0151e;
      padding: 10px 0;
      border: none;
      line-height: 37px;
      -webkit-transition: all 1s ease;
      -moz-transition: all 1s ease;
      -o-transition: all 1s ease;
      -ms-transition: all 1s ease;
      transition: all 1s ease;
      box-shadow: 10px 0 0 #b0151e, -10px 0 0 #b0151e;
      /* second-line indent hack*/
      -webkit-box-decoration-break: clone;
      /*re-render the box shadow on line breaks*/
      -ms-box-decoration-break: clone;
      /*re-render the box shadow on line breaks*/
      -o-box-decoration-break: clone;
      /*re-render the box shadow on line breaks*/
      box-decoration-break: clone;
      /*re-render the box shadow on line breaks*/ }
      .hero p a:hover {
        background: #333;
        border-color: #333;
        box-shadow: 10px 0 0 #333, -10px 0 0 #333;
        /* second-line indent hack*/ }
  .hero-whitepaper p {
    color: #c4c4c4;
    display: block; }
  .flex-item p {
   /* a {
      font-weight: bold;
      text-decoration: none;
      color: $veritas-dark-gray;
      -webkit-transition: color 1s ease;
      -moz-transition: color 1s ease;
      -o-transition: color 1s ease;
      -ms-transition: color 1s ease;
      transition: color 1s ease;
        &:after {
        font: normal normal normal 14px/1 FontAwesome;
        content: '\f138';
        display: inline-block;
        padding-left: 5px;
        color: $veritas-red;
        -webkit-transition: padding 1s ease;
      -moz-transition: padding 1s ease;
      -o-transition: padding 1s ease;
      -ms-transition: padding 1s ease;
      transition: padding 1s ease;
      }
      &:hover {
        color: $veritas-light-gray;
        &:after {
          padding-left: 10px;
        }

      }
    } */ }
  p a.cta {
    text-transform: uppercase; }

@media screen and (min-width: 768px) {
  h1 {
    font-size: 30px; }
    .hero h1 {
      font-size: 30px;
      width: 100%; }

  h2 {
    font-size: 42px; }
    section h2:after {
      height: 4px;
      width: 100px; }
    .hero section h2 {
      margin: 0; }
    .hero h2 {
      color: #fff;
      margin: 10px 0 0 0;
      font-size: 36px;
      border-bottom: none;
      padding-bottom: 0;
      line-height: 1;
      display: block; }
      .hero h2:after {
        background-color: transparent;
        height: 0; }

  section h3:before {
    height: 2px;
    width: 40px; }
  .hero-whitepaper h3 {
    margin: 0; }
  .flex-item h3 {
    font-size: 26px; }

  .videos h4 {
    padding-bottom: 20px;
    margin-bottom: 20px; }

  .hero p {
    color: #fff;
    display: block;
    font-size: 16px;
    line-height: 24px;
    float: left;
    clear: none;
    width: 82.83333%;
    margin-left: 0;
    margin-right: 3%; }
    .hero p:last-child {
      margin-right: 0; }
    .hero p a {
      text-decoration: none;
      color: #fff;
      border: 2px solid #b0151e;
      padding: 8px 0; }
  .hero-whitepaper p {
    color: #c4c4c4;
    display: block; }
  .white-paper p a:after {
    display: none; } }
li {
  font-size: 16px; }

@media screen and (min-width: 1024px) {
  .hero h1 {
    font-size: 50px;
    width: 100%;
    margin-top: 20px; }

  h2 {
    font-weight: normal; }
    section h2 {
      padding-bottom: 24px; } }
@media screen and (min-width: 768px) {
  body {
    font-size: 18px; }

  h1 {
    font-size: 50px; }

  h2 {
    font-size: 42px; }
    section h2 {
      margin-bottom: 15px;
      padding-bottom: 20px; }

  h3 {
    font-size: 30px; }

  h4 {
    font-size: 26px; }

  h5 {
    font-size: 20px; }

  h6 {
    font-size: 18px; }

  p {
    font-size: 16px; }

  li {
    font-size: 16px; } }
a {
  color: #75b1bd;
  text-decoration: none; }
  a:hover {
    text-decoration: underline; }

.hero a.cta {
  color: #fff;
  -webkit-transition: border-color 1s ease;
  -moz-transition: border-color 1s ease;
  -o-transition: border-color 1s ease;
  -ms-transition: border-color 1s ease;
  transition: border-color 1s ease; }
  .hero a.cta:hover {
    border-color: #b0151e; }

a.cta {
  text-decoration: none;
  text-align: center;
  color: #414141;
  border: 2px solid #333;
  padding: 8px;
  display: inline-block;
  -webkit-transition: border-color 1s ease;
  -moz-transition: border-color 1s ease;
  -o-transition: border-color 1s ease;
  -ms-transition: border-color 1s ease;
  transition: border-color 1s ease; }
  a.cta:hover {
    border-color: #b0151e; }

a.inline-cta {
  font-weight: bold;
  text-decoration: none;
  color: #414141;
  position: relative;
  display: inline-block;
  -webkit-transition: color 1s ease;
  -moz-transition: color 1s ease;
  -o-transition: color 1s ease;
  -ms-transition: color 1s ease;
  transition: color 1s ease; }
  a.inline-cta:after {
    font: normal normal normal 14px/1 FontAwesome;
    content: '\f138';
    display: inline;
    padding-left: 5px;
    color: #b0151e;
    position: relative;
    margin-top: 5px;
    -webkit-transition: padding 1s ease;
    -moz-transition: padding 1s ease;
    -o-transition: padding 1s ease;
    -ms-transition: padding 1s ease;
    transition: padding 1s ease; }
  a.inline-cta:hover {
    color: #c4c4c4; }
    a.inline-cta:hover:after {
      padding-left: 10px; }

a.cta-blue-button {
  text-decoration: none;
  color: #fff;
  padding: 10px 12px;
  background-color: #75b1bd;
  text-transform: uppercase;
  display: inline-block;
  -webkit-transition: background-color 1s ease;
  -moz-transition: background-color 1s ease;
  -o-transition: background-color 1s ease;
  -ms-transition: background-color 1s ease;
  transition: background-color 1s ease; }
  a.cta-blue-button:hover {
    background-color: #548089; }

a.cta-red-button {
  text-decoration: none;
  color: #fff;
  padding: 10px 12px;
  background-color: #b0151e;
  text-transform: uppercase;
  display: inline-block;
  -webkit-transition: background-color 1s ease;
  -moz-transition: background-color 1s ease;
  -o-transition: background-color 1s ease;
  -ms-transition: background-color 1s ease;
  transition: background-color 1s ease; }

a.cta-icon {
  font-weight: bold;
  text-decoration: none;
  color: #333;
  text-transform: capitalize; }
  a.cta-icon:after {
    font: normal normal normal 14px/1 FontAwesome;
    content: '\f0a9';
    display: inline-block;
    padding-left: 5px;
    color: #b0151e;
    -webkit-transition: padding 1s ease;
    -moz-transition: padding 1s ease;
    -o-transition: padding 1s ease;
    -ms-transition: padding 1s ease;
    transition: padding 1s ease; }
  a.cta-icon:hover {
    color: #c4c4c4; }
    a.cta-icon:hover:after {
      padding-left: 10px; }

a.cta-red-outline {
  text-decoration: none;
  border: 2px solid #949695;
  padding: 8px;
  color: #414141;
  text-transform: uppercase;
  -webkit-transition: border-color 1s ease;
  -moz-transition: border-color 1s ease;
  -o-transition: border-color 1s ease;
  -ms-transition: border-color 1s ease;
  transition: border-color 1s ease; }
  a.cta-red-outline:hover {
    border-color: #b0151e; }

a.download {
  font-weight: bold;
  color: #838b8f;
  text-decoration: none;
  display: block; }
  a.download:before {
    font: normal normal normal 14px/1 FontAwesome;
    content: '\f0ab';
    color: #75b1bd;
    display: inline-block;
    padding-right: 5px;
    position: relative;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease; }
  a.download:after {
    display: none; }
  a.download:hover {
    color: #333; }
    a.download:hover:before {
      bottom: -2px; }

p a.cta, slide-content p a, a.cta-red-outline {
  font-size: 14px;
  margin-top: 10px; }

.content-band.dark-blue .content .content-col a.cta-red-outline:hover, .content-band.dark-blue .content .content-col a.cta:hover {
  border-color: #f1f5f8;
  text-decoration: none;
  -webkit-transition: border-color 1s ease;
  -moz-transition: border-color 1s ease;
  -o-transition: border-color 1s ease;
  -ms-transition: border-color 1s ease;
  transition: border-color 1s ease; }
.content-band.dark-blue .content .content-col p a:hover {
  text-decoration: none;
  color: #c4c4c4; }

.products-buttons {
  padding: 20px 0;
  text-align: center; }
  .products-buttons:after {
    content: '';
    display: block;
    clear: both; }
  .products-buttons a {
    display: inline-block;
    padding: 10px 40px;
    color: white;
    margin: 0 0 0 2%;
    width: 43%;
    -webkit-transition: background-color 1s ease;
    -moz-transition: background-color 1s ease;
    -o-transition: background-color 1s ease;
    -ms-transition: background-color 1s ease;
    transition: background-color 1s ease; }
    .products-buttons a:nth-child(1) {
      margin-left: 0; }
    .products-buttons a.cta {
      text-transform: uppercase; }
    .products-buttons a.button {
      text-transform: uppercase;
      text-align: center;
      text-decoration: none; }
      .products-buttons a.button.try {
        background-color: #75b1bd; }
        .products-buttons a.button.try:hover {
          background-color: #548089; }
      .products-buttons a.button.buy {
        background-color: #becd2a; }
    .products-buttons a:hover {
      text-decoration: none; }
  .products-buttons.mobile-outline a, .products-buttons.mobile-outline a.button.try {
    background: none;
    border: 2px solid #75b1bd;
    color: #75b1bd;
    margin: 0;
    width: 100%;
    text-decoration: none;
    font-size: 12px; }
    .products-buttons.mobile-outline a:hover, .products-buttons.mobile-outline a.button.try:hover {
      background-color: none; }

.button-drop {
  background: #becd2a;
  display: inline-block;
  position: relative;
  text-align: center;
  width: 43%; }
  .button-drop a {
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #fff;
    white-space: nowrap; }
    .button-drop a:hover {
      background: #a3b11a;
      text-decoration: none; }
    .button-drop a i {
      position: absolute;
      top: 25%;
      right: 15px; }
  .button-drop ul {
    background: #becd2a;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    top: 45px;
    right: 0;
    z-index: 111;
    width: 100%; }
    .button-drop ul li {
      list-style: none; }
  .button-drop.active a i.fa.fa-angle-down:before {
    content: '\f106'; }
  .button-drop.active ul {
    transition: max-height 1s;
    max-height: 900px; }
  .button-drop.try {
    background-color: #75b1bd; }
    .button-drop.try ul {
      background-color: #75b1bd; }

.cta--centered .inline-cta {
  margin-bottom: 20px;
  font-size: 16px;
  display: inline-block; }

@media screen and (min-width: 768px) {
  .products-buttons {
    padding-bottom: 0;
    padding: 20px 1em; }
    .products-buttons a, .products-buttons .button-drop, .products-buttons .button-drop ul {
      width: auto; }
    .products-buttons.mobile-outline a.button.try {
      background: #75b1bd;
      border: none;
      color: #fff;
      width: auto;
      margin: 0 0 0 20px; }
      .products-buttons.mobile-outline a.button.try:hover {
        background-color: #548089; }

  p a.cta, slide-content p a, a.cta-red-outline {
    font-size: 18px; } }
/* Tables */
table {
  width: 100%; }

th {
  text-align: left; }

th,
td {
  padding: 8px 12px; }

td {
  padding-bottom: 16px;
  padding-top: 16px;
  vertical-align: top; }

tr:nth-child(odd) td {
  background-color: rgba(0, 0, 0, 0.15); }

/* Compare Items */
.compare-items-table {
  margin: 0 auto; }
  .compare-items-table .fa-star {
    color: goldenrod; }
  .compare-items-table .fa-check {
    color: green; }
  .compare-items-table thead th,
  .compare-items-table tbody td {
    text-align: center; }
    .compare-items-table thead th:first-child,
    .compare-items-table tbody td:first-child {
      text-align: left;
      width: 50%; }

.compare-items-group {
  text-align: left;
  display: block;
  margin-bottom: 40px; }
  .compare-items-group p {
    float: left;
    margin-right: 10px; }
    .compare-items-group p span {
      font-size: 14px;
      color: #838b8f; }

.hero-video-launcher {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  cursor: pointer;
  color: #ddd; }
  .hero-video-launcher:hover {
    color: #fff; }
    .hero-video-launcher:hover .fa.fa-play-circle {
      opacity: .75; }
  .hero-video-launcher img {
    width: 100%; }
  .hero-video-launcher .fa.fa-play-circle {
    position: absolute;
    margin: 20% 40%;
    font-size: 3rem; }

/* Pagination */
.pagination ul {
  text-align: center;
  padding: 1em 0; }
.pagination li {
  display: inline-block; }
.pagination a,
.pagination span {
  text-decoration: none;
  display: inline-block;
  line-height: 1;
  padding: 5px 8px; }

/* Search Items */
.search-items-block {
  background-color: #e1ecf7;
  padding: 2em 0; }
  .search-items-block span {
    display: inline-block;
    color: #333;
    margin: 20px 0;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 11px; }
  .search-items-block .site-search {
    position: static;
    width: 94%;
    margin: 0 auto;
    display: block; }
    .search-items-block .site-search .btn-search {
      color: #75b1bd;
      font-size: 25px;
      padding-top: 10px; }
    .search-items-block .site-search input[type="search"] {
      color: #333;
      font-size: 44px;
      font-size: 7vw;
      background-color: transparent;
      line-height: 44px;
      height: 44px;
      outline: none; }
  .search-items-block .customSelect {
    width: 100%;
    float: none;
    display: inline-block; }
  .search-items-block label {
    color: #838b8f;
    margin-right: -30px; }

.search-items label {
  display: block;
  margin-bottom: 9px;
  margin-top: -6px;
  font-weight: bold; }
  .search-items label.sr-only {
    display: block;
    visibility: hidden; }
.search-items .form-container {
  display: inline-block;
  margin-bottom: 1em;
  position: relative;
  vertical-align: bottom;
  width: 65%; }
.search-items .form-group {
  overflow: hidden; }
  .search-items .form-group label {
    margin-right: 0; }
.search-items input[type="search"] {
  background-color: #f5f5f5;
  border: 1px solid #75b1bd;
  color: #999;
  display: block;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
  margin: 0;
  height: 40px; }
.search-items .btn-search {
  background-color: #75b1bd;
  border: none;
  border-radius: 100%;
  color: #fff;
  float: right;
  font: normal normal normal 16px/1 FontAwesome;
  height: 40px;
  margin-left: 6px;
  margin-top: 16px;
  padding: 0 12px 3px;
  text-align: center;
  text-transform: lowercase;
  vertical-align: middle; }
.search-items .display-filters {
  clear: both; }
  .search-items .display-filters .custom-select {
    margin-bottom: 1em; }

@media screen and (min-width: 640px) {
  .search-items label {
    font-size: 14px; }
  .search-items .display-filters .custom-select {
    float: left;
    clear: none;
    width: 48.5%;
    margin-left: 0;
    margin-right: 3%;
    margin-bottom: 0; }
    .search-items .display-filters .custom-select:last-child {
      margin-right: 0; } }
@media screen and (min-width: 768px) {
  .search-items .form-container {
    float: left;
    clear: none;
    width: 31.33333%;
    margin-left: 0;
    margin-right: 3%;
    margin-bottom: 0;
    margin-right: 5%; }
    .search-items .form-container:last-child {
      margin-right: 0; }
    .search-items .form-container:after {
      content: "OR";
      font-size: 14px;
      position: absolute;
      right: -12%;
      bottom: 10px; }
  .search-items .display-filters {
    vertical-align: top;
    float: left;
    clear: none;
    width: 39.91667%;
    margin-left: 0;
    margin-right: 3%;
    margin-right: 0.5%; }
    .search-items .display-filters:last-child {
      margin-right: 0; }
    .search-items .display-filters .custom-select {
      float: left;
      clear: none;
      width: 48.5%;
      margin-left: 0;
      margin-right: 3%; }
      .search-items .display-filters .custom-select:last-child {
        margin-right: 0; }
  .search-items .display-style-toggle {
    float: left;
    clear: none;
    width: 14.16667%;
    margin-left: 0;
    margin-right: 3%;
    margin-right: 0;
    margin-top: 8px;
    vertical-align: top; }
    .search-items .display-style-toggle:last-child {
      margin-right: 0; }

  .search-items-block span {
    float: left;
    margin: 27px 20px 10px 20px; }
  .search-items-block .fliters-float {
    width: 48%;
    display: inline-block; }
    .search-items-block .fliters-float:nth-child(1) {
      margin-right: 2%; }
  .search-items-block .site-search {
    position: initial;
    float: left;
    clear: none;
    width: 31.33333%;
    margin-left: 0;
    margin-right: 3%;
    margin: initial;
    margin-top: 25px; }
    .search-items-block .site-search:last-child {
      margin-right: 0; }
    .search-items-block .site-search .btn-search {
      color: #75b1bd;
      font-size: 30px;
      margin-top: 0;
      margin-bottom: 0;
      padding-top: 0; }
    .search-items-block .site-search input[type="search"] {
      color: #333;
      font-size: 30px;
      line-height: 30px;
      height: 35px; } }
@media screen and (min-width: 1280px) {
  .search-items-block .content:after {
    content: '';
    display: block;
    clear: both; }

  .search-items .form-container:after {
    right: -10%; } }
/* Section Filters */
.section-filters ul {
  text-align: center;
  width: 100%;
  margin-bottom: 2em;
  margin-top: 2em; }
  .section-filters ul li {
    display: inline-block; }
    .section-filters ul li a {
      color: #414141;
      display: inline-block;
      font-size: 14px;
      font-weight: bold;
      padding: 8px 12px;
      -webkit-border-radius: 3px;
      -moz-border-radius: 3px;
      border-radius: 3px;
      text-decoration: none;
      text-transform: uppercase; }
      .section-filters ul li a.active {
        background-color: #b0151e;
        color: #fff; }

/*
Item Groups consist of:
  Cards:
    A heading
    Short descriptive text
    Expanding preview box:
      Small image
      Heading
      Short descriptive text
      List of links
*/
.item-groups {
  padding-top: 2em; }
  .item-groups .content > a {
    font-size: 12px;
    text-decoration: none; }

.item-group:nth-child(odd) {
  background: #f5f5f5; }
.item-group .content {
  *zoom: 1; }
  .item-group .content:before, .item-group .content:after {
    content: '';
    display: table; }
  .item-group .content:after {
    clear: both; }
.item-group--no-indicator {
  padding: 20px 0; }
  .item-group--no-indicator .datestamp {
    margin-bottom: 20px;
    display: block; }
  .item-group--no-indicator .card h3 {
    display: inline; }
  .item-group--no-indicator .card .fa-lock {
    margin-left: 5px;
    vertical-align: top; }
  .item-group--no-indicator .card-list-display .card {
    float: none;
    width: 100%; }

section.item-groups .gridder .details h2 {
  margin-top: 0; }

@media screen and (min-width: 768px) {
  .item-groups .content > a {
    float: right;
    font-size: 16px; } }
/* Cards */
.card {
  position: relative; }

section .card h3:after {
  color: #fff;
  height: 0; }
section .card h3 a {
  color: #414141;
  text-decoration: none; }
  section .card h3 a:hover {
    text-decoration: underline; }

.card-group > li {
  display: inline-block;
  vertical-align: top;
  position: relative; }
  .card-group > li .form-group {
    z-index: 9999; }
  .card-group > li input[type=checkbox] {
    display: none; }
  .card-group > li label:before {
    color: #c4c4c4;
    content: '\f096';
    font: normal normal normal 18px/1 FontAwesome;
    font-style: normal;
    height: 1em;
    margin-right: .3em;
    width: 1em; }
  .card-group > li input[type="checkbox"]:checked ~ label:before {
    color: #75b1bd;
    content: '\f14a'; }

.card-grid-display > li {
  margin-bottom: 2em;
  /*@include col(1/1, $cycle: 1);*/
  width: 100%;
  box-shadow: 1px 2px 5px 0 rgba(8, 8, 8, 0.2);
  -webkit-box-shadow: 1px 2px 5px 0 rgba(8, 8, 8, 0.2);
  border-radius: 10px;
  background-color: #fff; }
.card-grid-display .card {
  padding: 20px 18px 40px;
  position: relative;
  text-align: left; }
  .card-grid-display .card h3:before {
    content: none; }
  .card-grid-display .card .icon {
    background: url(/content/dam/veritas/icon-product.png) no-repeat 0 0;
    background-size: 58px 58px;
    content: "";
    display: block;
    height: 58px;
    width: 58px; }
.card-grid-display .form-group {
  position: absolute;
  top: 10px;
  right: 10px; }

.card-list-display .card-group > li {
  *zoom: 1;
  margin-bottom: 50px !important;
  width: 100%; }
  .card-list-display .card-group > li:before, .card-list-display .card-group > li:after {
    content: '';
    display: table; }
  .card-list-display .card-group > li:after {
    clear: both; }
.card-list-display .form-group {
  float: left;
  position: relative;
  top: 4px;
  width: 34px; }
.card-list-display .card {
  float: left;
  padding-right: 40px;
  width: calc(100% - 34px); }
  .card-list-display .card h3 {
    margin-bottom: 0;
    margin-top: 0; }
    .card-list-display .card h3:before {
      content: none; }

@media screen and (min-width: 769px) {
  .card-grid-display {
    display: flex;
    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
    align-content: flex-start; }
    .card-grid-display > li {
      margin-right: 3%;
      width: 48.5%; }
      .card-grid-display > li:nth-child(2n-2) {
        margin-right: 0; }

  .row-1 .card-grid-display li {
    width: 66%;
    margin-right: 0; }

  .card-grid-display > li {
    width: 22.75%;
    margin-right: 3%;
    float: left; }
    .card-grid-display > li:nth-child(2n-2) {
      margin-right: 3%; }
    .card-grid-display > li:nth-child(4n-4) {
      margin-right: 0; }

  .row-4 .card-grid-display li {
    width: 22.75%;
    float: left; }
    .row-4 .card-grid-display li:nth-child(2n-2) {
      margin-right: 3%; }
    .row-4 .card-grid-display li:nth-child(4n-4) {
      margin-right: 0; }

  .row-3 .card-grid-display li {
    width: 31.33%;
    float: left; }
    .row-3 .card-grid-display li:nth-child(2n-2) {
      margin-right: 3%; }
    .row-3 .card-grid-display li:nth-child(3n-3) {
      margin-right: 0; }

  .row-2 .card-grid-display li {
    width: 48.5%;
    float: left; }
    .row-2 .card-grid-display li:nth-child(2n-2) {
      margin-right: 0; } }
/* Display style toggle */
.display-style-toggle ul li {
  display: inline-block; }
.display-style-toggle input[type="radio"] {
  display: none; }
.display-style-toggle label {
  cursor: pointer;
  padding: 11px;
  border: 1px solid #75b1bd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-left: 5px;
  color: #75b1bd;
  font-size: 20px; }
.display-style-toggle input[type=radio].checked + label,
.display-style-toggle input[type=radio]:checked + label {
  background-color: #75b1bd;
  color: #548089; }

.search-items-block .display-style-toggle {
  display: none;
  vertical-align: bottom;
  margin-right: 0;
  margin-bottom: 1em; }
  .search-items-block .display-style-toggle label {
    margin-top: 8px; }

@media screen and (min-width: 768px) {
  .search-items-block .display-style-toggle {
    margin-bottom: 0;
    display: inline-block; } }
/* Share This */
.share-this {
  *zoom: 1;
  padding-bottom: 14px;
  padding-top: 14px;
  clear: both;
  background-color: #f5f5f5; }
  .share-this:before, .share-this:after {
    content: '';
    display: table; }
  .share-this:after {
    clear: both; }
  .share-this .content > span {
    color: #838b8f;
    display: inline-block;
    text-align: left;
    font-size: 10px;
    margin-right: 6px;
    max-width: 50px;
    position: relative;
    text-transform: uppercase;
    top: 9px;
    float: right; }
  .share-this ul {
    display: inline-block;
    float: right;
    text-align: right;
    vertical-align: middle; }
  .share-this .social-media-links {
    *zoom: 1;
    float: right; }
    .share-this .social-media-links:before, .share-this .social-media-links:after {
      content: '';
      display: table; }
    .share-this .social-media-links:after {
      clear: both; }
    .share-this .social-media-links li {
      display: inline-block;
      position: relative;
      margin: 0 1px; }
    .share-this .social-media-links a {
      border: 1px solid #dcdddd; }
      .share-this .social-media-links a:hover span {
        background-color: #c4c4c4; }
      .share-this .social-media-links a:hover i {
        color: #fff; }
    .share-this .social-media-links .twitter,
    .share-this .social-media-links .facebook {
      width: auto;
      height: auto;
      opacity: inherit;
      float: none;
      margin-right: 0;
      transition-delay: 0;
      transition-duration: 0;
      background-image: none; }
    .share-this .social-media-links i {
      color: #838b8f; }

@media screen and (min-width: 640px) {
  .share-this li {
    margin-left: 6px;
    margin-right: 6px; } }
@media screen and (min-width: 768px) {
  .share-this .social-media-links li {
    margin-left: 20px;
    margin-right: 0; } }
/* Text with image block */
.content-block-with-image {
  margin-bottom: 20px;
  *zoom: 1; }
  .content-block-with-image:before, .content-block-with-image:after {
    content: '';
    display: table; }
  .content-block-with-image:after {
    clear: both; }
  .content-block-with-image img {
    width: calc(158px / 2);
    float: left; }
  .content-block-with-image p {
    margin-top: 0;
    padding-left: calc((158px / 2) + 10px); }

@media screen and (min-width: 768px) {
  .content-block-with-image img {
    width: calc(175px / 2); }
  .content-block-with-image p {
    padding-left: calc((175px / 2) + 10px); } }
/* PRODUCTS-related styles that don't fit elsewhere */
h3.alpha-indicator {
  background-color: #75b1bd;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 50px;
  padding: 0 20px;
  text-align: center;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px; }
  h3.alpha-indicator:before {
    content: none; }

/* PRODUCTS-landing */
.our-products {
  background-color: #e1ecf7;
  padding: 10px 0 20px 0; }
  .our-products .flex-container .flex-item {
    float: left;
    clear: none;
    width: 100%;
    margin-left: 0;
    margin-right: 3%; }
    .our-products .flex-container .flex-item:last-child {
      margin-right: 0; }

@media screen and (min-width: 768px) {
  .our-products {
    background-color: #e1ecf7;
    padding: 10px 0 20px 0; }
    .our-products .flex-container .flex-item {
      float: left;
      clear: none;
      width: 22.75%;
      margin-left: 0;
      margin-right: 3%; }
      .our-products .flex-container .flex-item:nth-of-type(4n) {
        margin-right: 0;
        float: right; }
      .our-products .flex-container .flex-item:nth-of-type(4n + 1) {
        clear: both; }

  .products-buttons {
    text-align: right;
    padding-bottom: 0; } }
.details-cta-band {
  padding: 30px 15px;
  background-position: center center; }
  .details-cta-band .content {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    width: 100%; }
    .details-cta-band .content p {
      display: block; }
      .details-cta-band .content p b {
        display: block;
        color: #0e2d3f;
        text-transform: uppercase;
        font-size: 14px; }
      .details-cta-band .content p a {
        text-decoration: none;
        display: block;
        font-size: 12px;
        font-style: normal;
        text-transform: none;
        background: #0e2d3f;
        border-radius: 4px;
        text-align: center;
        color: #fff;
        padding: 20px 20px;
        margin-bottom: 30px;
        font-weight: lighter;
        max-height: 79px;
        -webkit-transition: background 1s ease;
        -moz-transition: background 1s ease;
        -o-transition: background 1s ease;
        -ms-transition: background 1s ease;
        transition: background 1s ease; }
        .details-cta-band .content p a i {
          display: block;
          font-size: 18px;
          font-style: normal;
          text-transform: uppercase;
          position: relative;
          background: none !important; }
          .details-cta-band .content p a i:after {
            content: '\f138';
            font: normal normal normal 14px/1 FontAwesome;
            padding: 0 0 0 8px;
            color: #75b1bd;
            font-size: 18px;
            text-decoration: none !important; }
        .details-cta-band .content p a:hover {
          text-decoration: none;
          background: #333; }
        .details-cta-band .content p a.try-button, .details-cta-band .content p a.try {
          background: #75b1bd; }
          .details-cta-band .content p a.try-button i:after, .details-cta-band .content p a.try i:after {
            color: #548089; }
          .details-cta-band .content p a.try-button:hover, .details-cta-band .content p a.try:hover {
            background: #61949e; }
            .details-cta-band .content p a.try-button:hover:after, .details-cta-band .content p a.try:hover:after {
              color: #fff; }
        .details-cta-band .content p a.buy-button, .details-cta-band .content p a.buy {
          background: #becd2a;
          color: #548089;
          color: #548089; }
          .details-cta-band .content p a.buy-button i, .details-cta-band .content p a.buy i {
            color: #fff; }
            .details-cta-band .content p a.buy-button i:after, .details-cta-band .content p a.buy i:after {
              color: #548089; }
          .details-cta-band .content p a.buy-button:hover, .details-cta-band .content p a.buy:hover {
            background: #a3b11a; }

a.try-button {
  background: #548089; }

@media screen and (min-width: 768px) {
  .details-cta-band .content {
    display: table;
    border-spacing: 15px 0;
    max-width: 1230px;
    padding: 20px 0 0; }
    .details-cta-band .content p {
      display: table-cell;
      width: 50%; }
      .details-cta-band .content p a {
        padding-top: 17px;
        height: 79px; } }
@media screen and (min-width: 1024px) {
  .details-cta-band .content {
    padding: 20px 0; }
    .details-cta-band .content p b {
      padding-left: 15px; }
    .details-cta-band .content p a {
      display: table-cell;
      width: 25%;
      padding: 0 20px;
      vertical-align: middle; } }
/* Product category */
.our-products.common {
  background-color: #fff; }

/* Licensing-landing */
.content-band {
  position: relative;
  padding: 10px 0;
  clear: both; }
  .content-band .optional-header, .content-band .content {
    padding: 0 1em; }
  .content-band h2, .content-band h3, .content-band h4, .content-band h5, .content-band h6 {
    margin-top: 0;
    margin-bottom: 10px; }
  .content-band h3, .content-band h4 {
    font-size: 18px; }
  .content-band h3:before {
    display: none; }
  .content-band .flex-item h3:before {
    display: block; }
  .content-band.basic-cta-band {
    text-align: center; }
    .content-band.basic-cta-band h2 {
      border: none; }
      .content-band.basic-cta-band h2:after {
        display: none; }
    .content-band.basic-cta-band p:last-child {
      text-align: center;
      font-size: 11px; }
  .content-band.category .optional-header {
    display: inline-block;
    width: 100%; }
  .content-band.rule-devider .content {
    border-bottom: 1px solid #c4c4c4;
    max-width: calc(1280px - 2em);
    padding: 0 1em;
    margin: 0 1em; }
  .content-band.no-heading {
    padding-top: 30px; }
  .content-band.bleed-img .media-col {
    margin: 0 -1em;
    width: calc(100% + 2em); }
  .content-band.float-list .content ul {
    padding: 0 0 20px 0; }
    .content-band.float-list .content ul:after {
      content: '';
      display: table;
      clear: both; }
    .content-band.float-list .content ul li {
      float: none; }
  .content-band .content ul {
    padding: 0 0 20px 0;
    margin-bottom: 0; }
    .content-band .content ul li {
      list-style: none;
      margin: 0;
      padding: 0 10px 10px 0; }
      .content-band .content ul li:before {
        margin: 4px 20px 0 0;
        content: '\2022';
        color: #75b1bd;
        font-size: 20px;
        vertical-align: bottom; }
    .content-band .content ul .country:before,
    .content-band .content ul .divider:before {
      margin: 0;
      content: ''; }
  .content-band.check-list .content ul li {
    padding-left: 30px;
    position: relative; }
    .content-band.check-list .content ul li:before {
      font: normal normal normal 14px/1 FontAwesome;
      content: "\f058 ";
      color: #75b1bd;
      margin: 4px 20px 0 0;
      /*font-size: 14px;*/
      position: absolute;
      top: 0;
      left: 0; }
  .content-band .optional-header {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1em; }
  .content-band .content {
    padding: 0 1em; }
    .content-band .content .optional-header {
      padding: 0; }
    .content-band .content:after {
      content: '';
      display: block;
      clear: both; }
  .content-band .optional-header-inset {
    display: none; }
  .content-band .content-col, .content-band .media-col {
    /*padding-top: 40px;*/ }
    .content-band .content-col img, .content-band .media-col img {
      margin: 0 auto 0;
      max-width: 100%;
      display: block; }
  .content-band .media-col {
    text-align: center; }
    .content-band .media-col p, .content-band .media-col h2, .content-band .media-col h3, .content-band .media-col h4, .content-band .media-col h5, .content-band .media-col li {
      text-align: left; }
  .content-band.light-grey {
    background-color: #f5f5f5; }
  .content-band p.left-cta, .content-band p.left-cta:last-child {
    text-align: left; }
  .content-band.check-list p.center-cta {
    text-align: center; }
    .content-band p.center-cta {
    text-align: center; }
  .content-band.light-blue {
    background: #e1ecf7;
    padding: 40px 0 30px; }
    .content-band.light-blue .flex-item {
      background: transparent; }
      .content-band.light-blue .flex-item.blue-line-header {
        background-color: #fff;
        padding: 20px; }
    .content-band.light-blue.hero-block--carousel .flex-item p {
      color: #333333; }
  .content-band p.center-cta {
    text-align: center; }
  .content-band .flex-item p:last-child, .content-band .media-col p:last-child {
    text-align: left; }
  .content-band.hero-block--carousel {
    padding-top: 100px; }
  .content-band.cta--centered {
    text-align: center; }
  .content-band .media-col .cta,
  .content-band .content-col .cta {
    text-align: center; }
  .content-band .media-col .input-wrap label,
  .content-band .content-col .input-wrap label {
    text-align: left; }
  .content-band .media-col .form-overlay > h3,
  .content-band .media-col .form-overlay p,
  .content-band .content-col .form-overlay > h3,
  .content-band .content-col .form-overlay p {
    text-align: center; }
  .content-band .cta {
    text-align: center; }
  .content-band .alert-panel > h3 {
    margin-bottom: 0; }
  .content-band .content .country-list.dropup {
    z-index: 10; }
  .content-band .content .module-entry .inline-list--pipe {
    padding-bottom: 0; }

@media screen and (min-width: 768px) {
  .content-band.check-list p.center-cta {
    text-align: left; }

  .content-band p.center-cta {
    text-align: left; }

  .content-band .media-col .required-annotation,
  .content-band .content-col .required-annotation {
    text-align: right; } }
section.content-band.no-media .flex-item {
  background: #fff;
  padding: 40px 20px 25px;
  border: 1px solid #c4c4c4; }
  section.content-band.no-media .flex-item h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    padding: 0; }
    section.content-band.no-media .flex-item h3:before {
      top: -15px;
      width: 25px; }
section.content-band.dark-blue.no-media .flex-item, section.content-band.light-blue.no-media .flex-item, section.content-band.light-grey.no-media .flex-item {
  border: none; }
section.content-band .tabbed .flex-item h3, section.content-band .card-4up-carousel .flex-item h3 {
  padding-top: 10px;
  margin-top: 20px;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 19px;
  line-height: 24px; }
  section.content-band .tabbed .flex-item h3:before, section.content-band .card-4up-carousel .flex-item h3:before {
    content: none; }
  section.content-band .tabbed .flex-item h3 a, section.content-band .card-4up-carousel .flex-item h3 a {
    color: #75b1bd;
    position: relative; }
section.content-band .tabbed .flex-item .media img, section.content-band .card-4up-carousel .flex-item .media img {
  max-width: 100%;
  display: block;
  margin: 0 auto; }
section.content-band .tabbed .flex-item .media a, section.content-band .card-4up-carousel .flex-item .media a {
  display: block;
  background: black;
  position: relative;
  display: inline-block;
  margin: 0 auto;
  height: auto; }
  section.content-band .tabbed .flex-item .media a:after, section.content-band .card-4up-carousel .flex-item .media a:after {
    content: 'view details';
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    border: 2px solid #b0151e;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    width: 50%;
    top: calc(50% - 22px);
    left: calc(50% - 32%);
    opacity: 0;
    text-decoration: none; }
  section.content-band .tabbed .flex-item .media a:hover img, section.content-band .card-4up-carousel .flex-item .media a:hover img {
    opacity: 0.30;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -ms-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
    top: 0;
    left: 0; }
  section.content-band .tabbed .flex-item .media a:hover:after, section.content-band .card-4up-carousel .flex-item .media a:hover:after {
    opacity: 1;
    -webkit-transition: opacity 0.4s ease-out;
    -moz-transition: opacity 0.4s ease-out;
    -ms-transition: opacity 0.4s ease-out;
    -o-transition: opacity 0.4s ease-out;
    transition: opacity 0.4s ease-out; }

@media screen and (min-width: 768px) {
  section.content-band {
    padding: 40px 0; }
    section.content-band h3, section.content-band h4, section.content-band h5, section.content-band h6 {
      margin-top: 0;
      margin-bottom: 15px; }
    section.content-band h2 {
      margin-bottom: 20px; }
    section.content-band h4, section.content-band h3 {
      font-size: 26px; }
    section.content-band.category .optional-header.left {
      float: left; }
    section.content-band.category .optional-header.right {
      float: right; }
    section.content-band.bleed-img .media-col {
      margin: 0;
      width: 100%; }
    section.content-band.float-list .content ul {
      width: 80%; }
      section.content-band.float-list .content ul li {
        float: left;
        width: 50%; }
    section.content-band.basic-cta-band {
      text-align: center; }
      section.content-band.basic-cta-band p:last-child {
        font-size: 14px; }
    section.content-band.rule-devider .content {
      margin: 0 auto; }
    section.content-band .content-col, section.content-band .media-col {
      padding-top: 0;
      text-align: left;
      float: left;
      clear: none;
      width: 48.5%;
      margin-left: 0;
      margin-right: 3%; }
      section.content-band .content-col:last-child, section.content-band .media-col:last-child {
        margin-right: 0; }
      section.content-band .content-col .inner-col, section.content-band .media-col .inner-col {
        display: table-cell;
        vertical-align: middle;
        width: 50%; }
        section.content-band .content-col .inner-col img, section.content-band .media-col .inner-col img {
          padding: 0 20px;
          max-width: 100%; }
      section.content-band .content-col h2, section.content-band .media-col h2 {
        margin-top: 0; }
    section.content-band.media-right .content-col, section.content-band.media-right .media-col {
      float: right; }
    section.content-band.media-right .content-col {
      margin: 0 0 0 3%; }
    section.content-band.bleed-img .media-col {
      margin: 0;
      width: 48%; }
    section.content-band.ebook .content-col {
      margin-left: 3%;
      margin-right: 0; }
    section.content-band.ebook .media-col {
      margin-left: 0;
      margin-right: 0; }
    section.content-band .flex-item.media-left h3 {
      margin-top: 0;
      padding-top: 0;
      margin-bottom: 0;
      padding-bottom: 15px; }
      section.content-band .flex-item.media-left h3:before {
        content: none; }
    section.content-band .tabbed .flex-item h3, section.content-band .card-4up-carousel .flex-item h3 {
      font-size: 22px; }
    section.content-band.hero-block--carousel {
      padding-top: 180px; } }
/* Infographic */
.infographic {
  background-color: #0e2d3f;
  padding-bottom: 20px; }
  .infographic img {
    display: none;
    width: 80%;
    height: auto;
    margin: 40px auto; }
  .infographic p {
    color: #fff;
    font-weight: 300; }
  .infographic a.cta {
    display: block;
    margin: 0 auto;
    width: 170px;
    color: #fff;
    text-align: center;
    border-color: #b0151e; }
    .infographic a.cta:hover {
      border-color: #fff; }

@media screen and (min-width: 768px) {
  .infographic img {
    display: block; }
  .infographic a.cta {
    display: none; } }
/* Resources */
.resources {
  background-color: #0e2d3f;
  padding-bottom: 50px; }
  .resources p {
    font-weight: 300; }
  .resources .resources-carousel {
    background-color: #0e2d3f; }
  .resources.light-blue {
    background-color: #e1ecf7; }
    .resources.light-blue .resources-carousel {
      background-color: #e1ecf7; }
    .resources.light-blue h2 {
      color: #333; }

@media screen and (min-width: 768px) {
  .resources img {
    display: block; }
  .resources a.cta {
    display: none; } }
/* Category News and Events */
.category-news-events {
  padding-bottom: 20px;
  width: 100%;
  text-align: center; }
  .category-news-events .slick-dots {
    bottom: -30px; }
  .category-news-events .side-by-side-carousels {
    margin-top: 40px;
    margin-bottom: 40px;
    border: 1px solid #c4c4c4; }
  .category-news-events .carousel-container {
    padding: 10px; }
    .category-news-events .carousel-container h2 {
      text-align: left;
      padding: 20px 10px 0 30px;
      margin-bottom: -1px;
      background-color: #fff;
      margin-top: 0; }
      .category-news-events .carousel-container h2:after {
        content: none; }
    .category-news-events .carousel-container p,
    .category-news-events .carousel-container time {
      color: #838b8f;
      font-size: 12px;
      margin: 0; }
    .category-news-events .carousel-container p {
      display: none; }
  .category-news-events .mini-news-carousel,
  .category-news-events .mini-blogs-carousel,
  .category-news-events .collateral-list-carousel,
  .category-news-events .mini-events-carousel {
    background-color: #fff;
    width: 100%;
    text-align: left;
    padding-bottom: 20px; }
  .category-news-events .mini-events-carousel p {
    margin-left: 70px; }
  .category-news-events .slide-content {
    padding: 0 10%; }
  .category-news-events a {
    color: #75b1bd;
    text-decoration: none; }
    .category-news-events a:hover {
      text-decoration: underline; }
  .category-news-events h5 {
    font-size: 15px;
    font-weight: 300;
    margin: 20px 0 0 0; }
  .category-news-events.dark {
    background-color: #0e2d3f; }
  .category-news-events.light-blue .side-by-side-carousels, .category-news-events.dark .side-by-side-carousels {
    border: none; }

.timestamp {
  float: left;
  width: 52px;
  height: 59px;
  text-align: center;
  margin-right: 20px; }
  .timestamp span:first-of-type {
    display: block;
    background-color: #9e2f1c;
    border-radius: 3px 3px 0 0;
    color: #fff;
    font-size: 10px;
    line-height: 20px;
    margin-bottom: 2px; }
  .timestamp span:last-of-type {
    display: block;
    background-color: #e0e2de;
    border-radius: 0 0 3px 3px;
    color: #333;
    font-size: 34px;
    padding: 8px 0; }

@media screen and (min-width: 768px) {
  .category-news-events {
    padding-bottom: 0; }

  .carousel-container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row; }

  .category-news-events .carousel-container p, .category-news-events .carousel-container time {
    font-size: 14px;
    display: block; }

  .category-news-events h5 {
    font-size: 22px; }
  .category-news-events .side-by-side-carousels {
    float: left;
    width: calc(50% - 1em);
    background: #fff;
    position: relative;
    /*align-items: stretch;
    justify-content: space-around;*/ }
    .category-news-events .side-by-side-carousels:nth-child(1) {
      margin-right: 2em; }
    .category-news-events .side-by-side-carousels .carousel {
      display: block;
      position: static; }
    .category-news-events .side-by-side-carousels h2 {
      width: auto;
      border: none;
      padding: 10px 0 10px 45px;
      display: block;
      margin: 0; }
    .category-news-events .side-by-side-carousels .slick-prev,
    .category-news-events .side-by-side-carousels .slick-next {
      top: 50%;
      border-radius: 65px 0px 0px 65px;
      width: 33px;
      top: 45%; }
      .category-news-events .side-by-side-carousels .slick-prev:after,
      .category-news-events .side-by-side-carousels .slick-next:after {
        top: 43%;
        left: 50%; }
    .category-news-events .side-by-side-carousels .slick-prev {
      border-radius: 0 65px 65px 0; }
      .category-news-events .side-by-side-carousels .slick-prev:after {
        left: 24%; }
  .category-news-events .mini-news-carousel,
  .category-news-events .mini-blogs-carousel,
  .category-news-events .collateral-list-carousel,
  .category-news-events .mini-events-carousel {
    display: inline-block;
    margin-bottom: 0;
    width: 100%; }
  .category-news-events .mini-events-carousel h5 {
    font-size: 20px; }
  .category-news-events .mini-events-carousel p {
    margin-bottom: 5px; } }
/* Flex Box */
.flex-container,
.content-band.four-up .content,
.content-band.three-up .content,
.content-band.four-up-media .content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-direction: row; }
  .flex-container.two-up .flex-item, .flex-container.three-up .flex-item, .flex-container.four-up .flex-item,
  .content-band.four-up .content.two-up .flex-item,
  .content-band.four-up .content.three-up .flex-item,
  .content-band.four-up .content.four-up .flex-item,
  .content-band.three-up .content.two-up .flex-item,
  .content-band.three-up .content.three-up .flex-item,
  .content-band.three-up .content.four-up .flex-item,
  .content-band.four-up-media .content.two-up .flex-item,
  .content-band.four-up-media .content.three-up .flex-item,
  .content-band.four-up-media .content.four-up .flex-item {
    position: relative;
    width: 100%;
    margin-bottom: 20px; }

.content-band.whitepapers.two-up .flex-item, .content-band.whitepapers.three-up .flex-item, .content-band.whitepapers.four-up .flex-item {
  margin-top: 20px;
  margin-bottom: 20px; }

.content-band.two-up .flex-item, .content-band.three-up .flex-item, .content-band.four-up .flex-item {
  margin: 10px 0 0 0;
  position: relative;
  width: 100%; }

.flex-item {
  margin: 20px 0;
  position: relative;
  width: 100%; }
  .flex-item img {
    max-width: 100%;
    width: 100%;
    display: block;
    margin: 0 auto; }
  .flex-item h3:before {
    background-color: #75b1bd; }
  .flex-item .media {
    overflow: hidden;
    text-align: center; }
    .flex-item .media a {
      width: 100%;
      height: auto;
      position: relative;
      overflow: hidden;
      background: none;
      display: block;
      text-decoration: none; }
      .flex-item .media a img {
        position: relative;
        top: 0;
        left: 0;
        -webkit-transition: all 1s ease;
        -moz-transition: all 1s ease;
        -o-transition: all 1s ease;
        -ms-transition: all 1s ease;
        transition: all 1s ease; }
  .flex-item p.left-cta {
    padding-right: 20px; }

.card-4up-carousel .slide .flex-item {
  width: 95%;
  margin: 0 auto 20px; }

.flex-item h3 {
  font-weight: lighter;
  padding: 38px 0 11px 0;
  margin: 0; }
  .flex-item h3:before {
    background-color: #75b1bd;
    content: '';
    height: 2px;
    left: 0;
    position: absolute;
    width: 40px;
    top: 25px; }
.flex-item p {
  margin-top: 0; }

.content-band .flex-item h3 {
  font-size: 20px; }

.flex-container.two-up .flex-item, .content-band.two-up .flex-item {
  margin-bottom: 20px; }

@media screen and (min-width: 768px) {
  .content-band .flex-item h3 {
    font-size: 26px; }

  .flex-item {
    margin: 20px 0; }

  .flex-container.two-up .flex-item, .content-band.two-up .flex-item {
    float: left;
    clear: none;
    width: 49%;
    margin-left: 0;
    margin-right: 2%; }
    .flex-container.two-up .flex-item:nth-child(2n + 1), .content-band.two-up .flex-item:nth-child(2n + 1) {
      clear: both; }
    .flex-container.two-up .flex-item:nth-of-type(2), .flex-container.two-up .flex-item:nth-of-type(4), .flex-container.two-up .flex-item:nth-of-type(6), .flex-container.two-up .flex-item:nth-of-type(8), .flex-container.two-up .flex-item:nth-of-type(10), .content-band.two-up .flex-item:nth-of-type(2), .content-band.two-up .flex-item:nth-of-type(4), .content-band.two-up .flex-item:nth-of-type(6), .content-band.two-up .flex-item:nth-of-type(8), .content-band.two-up .flex-item:nth-of-type(10) {
      margin-right: 0; }
  .flex-container.three-up .flex-item, .content-band.three-up .flex-item {
    float: left;
    clear: none;
    width: 32%;
    margin-left: 0;
    margin-right: 2%; }
    .flex-container.three-up .flex-item:nth-of-type(3n + 1), .content-band.three-up .flex-item:nth-of-type(3n + 1) {
      clear: both; }
    .flex-container.three-up .flex-item:nth-of-type(3), .flex-container.three-up .flex-item:nth-of-type(6), .flex-container.three-up .flex-item:nth-of-type(9), .content-band.three-up .flex-item:nth-of-type(3), .content-band.three-up .flex-item:nth-of-type(6), .content-band.three-up .flex-item:nth-of-type(9) {
      margin-right: 0; }
  .flex-container.four-up .flex-item, .flex-container.four-up-media .flex-item, .content-band.four-up .flex-item, .content-band.four-up-media .flex-item {
    float: left;
    clear: none;
    width: 23%;
    margin-left: 0;
    margin-right: 2%; }
    .flex-container.four-up .flex-item:nth-of-type(4n + 1), .flex-container.four-up-media .flex-item:nth-of-type(4n + 1), .content-band.four-up .flex-item:nth-of-type(4n + 1), .content-band.four-up-media .flex-item:nth-of-type(4n + 1) {
      clear: both; }
  .flex-container.two-up .flex-item.media-left .media, .flex-container.three-up .flex-item.media-left .media, .flex-container.four-up .flex-item.media-left .media, .content-band.two-up .flex-item.media-left .media, .content-band.three-up .flex-item.media-left .media, .content-band.four-up .flex-item.media-left .media {
    float: left;
    width: 45%;
    margin-right: 2%; }
  .flex-container.two-up .flex-item.media-left div, .flex-container.three-up .flex-item.media-left div, .flex-container.four-up .flex-item.media-left div, .content-band.two-up .flex-item.media-left div, .content-band.three-up .flex-item.media-left div, .content-band.four-up .flex-item.media-left div {
    float: left;
    width: 52%; } }
@media screen and (min-width: 1024px) {
  .flex-item .media a {
    height: 150px; }
    .flex-item .media a:hover img {
      max-width: 110%;
      width: 110%;
      height: auto;
      opacity: 1;
      /*top: -7%;*/
      left: -7%; }

  .three-up .flex-item .media a {
    height: 205px; } }
/*----- Accordion -----*/
.accordion {
  overflow: hidden;
  width: 100%;
  margin: 0 auto; }

.accordion-section {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 3px;
  border: 1px solid #f5f5f5; }

/*----- Section Titles -----*/
.accordion-section-title {
  display: block;
  padding: 20px 30px 20px 10px;
  margin: 0 10px;
  display: block;
  font-weight: lighter;
  /*transition:all linear 0.15s;*/
  font-size: 18px;
  color: #75b1bd !important;
  text-decoration: none;
  position: relative; }
  .accordion-section-title .fa {
    position: absolute;
    top: calc(50% - 8px);
    right: 10px; }
  .accordion-section-title .fa:after {
    content: '\f067';
    color: #c4c4c4; }
  .accordion-section-title.active {
    border-bottom: 1px solid #c4c4c4;
    /* Type */
    text-decoration: none; }
    .accordion-section-title.active .fa:after {
      content: '\f068';
      color: #c4c4c4; }
  .accordion-section-title:hover {
    text-decoration: underline; }

/*----- Section Content -----*/
.accordion-section-content {
  padding: 20px;
  display: none;
  background: #fff;
  color: #414141 !important;
  border-radius: 3px; }

/* Country Selector */
.country-selector {
  clear: both; }
  .country-selector .country {
    margin-top: 30px;
    float: left;
    clear: none;
    width: 48.5%;
    margin-left: 0;
    margin-right: 3%;
    text-align: center;
    margin-bottom: 30px;
    min-height: 156px; }
    .country-selector .country:nth-of-type(2n) {
      margin-right: 0;
      float: right; }
    .country-selector .country:nth-of-type(2n + 1) {
      clear: both; }
    .country-selector .country h3:hover {
      text-decoration: underline; }
    .country-selector .country a {
      text-decoration: none;
      display: inline-block; }
      .country-selector .country a img {
        border-radius: 50%;
        border: 6px solid #e3e3e3; }
  .country-selector:nth-child(even) {
    background-color: #f5f5f5; }

@media screen and (min-width: 768px) {
  .country-selector .country {
    float: left;
    clear: none;
    width: 22.75%;
    margin-left: 0;
    margin-right: 3%; }
    .country-selector .country:nth-of-type(2n) {
      margin-right: 3%;
      float: left; }
    .country-selector .country:nth-of-type(2n + 1) {
      clear: none; }
    .country-selector .country:nth-of-type(4n) {
      margin-right: 0;
      float: right; }
    .country-selector .country:nth-of-type(4n + 1) {
      clear: both; } }
.content-band.dark-blue {
  background-color: #0e2d3f;
  padding: 20px 0; }
  .content-band.dark-blue .optional-header h2 {
    color: white;
    /* margin-top: 0;
     margin-bottom: 30px;*/ }
  .content-band.dark-blue.sample-courses {
    background-color: #0e2d3f;
    padding-bottom: 40px; }
    .content-band.dark-blue.sample-courses .flex-item {
      background-color: #fff;
      padding: 15px;
      margin-bottom: 24px;
      min-height: 410px; }
      .content-band.dark-blue.sample-courses .flex-item h4 {
        color: #b0151e;
        margin-top: 0; }
      .content-band.dark-blue.sample-courses .flex-item p {
        color: #414141; }
    .content-band.dark-blue.sample-courses .slide-content {
      padding: 0 8.4%; }
  .content-band.dark-blue.white-cols .content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row; }
    .content-band.dark-blue.white-cols .content .flex-item {
      background-color: #fff;
      padding: 20px;
      margin-bottom: 1em; }
      .content-band.dark-blue.white-cols .content .flex-item h3 a {
        font-weight: lighter; }
      .content-band.dark-blue.white-cols .content .flex-item h3, .content-band.dark-blue.white-cols .content .flex-item h3 a, .content-band.dark-blue.white-cols .content .flex-item p {
        color: #333; }
      .content-band.dark-blue.white-cols .content .flex-item a {
        color: #75b1bd;
        font-weight: normal; }
        .content-band.dark-blue.white-cols .content .flex-item a.inline-cta {
          color: #333;
          font-weight: bold; }
          .content-band.dark-blue.white-cols .content .flex-item a.inline-cta:hover {
            color: #c4c4c4; }
  .content-band.dark-blue .content ul {
    color: #fff; }
  .content-band.dark-blue .content a, .content-band.dark-blue .content a.cta, .content-band.dark-blue .content p, .content-band.dark-blue .content h1, .content-band.dark-blue .content h2, .content-band.dark-blue .content h3, .content-band.dark-blue .content h4, .content-band.dark-blue .content h5 {
    color: #fff; }
  .content-band.dark-blue .content a.cta {
    border-color: #b0151e; }
  .content-band.dark-blue .content p {
    font-weight: 300; }
  .content-band.dark-blue .content a {
    font-weight: bold;
    text-decoration: none; }
    .content-band.dark-blue .content a:hover {
      text-decoration: underline; }
  .content-band.dark-blue .content h5 {
    border-bottom: 1px solid #414141;
    color: #b0151e;
    margin-top: 0;
    padding-bottom: 20px; }
    .content-band.dark-blue .content h5 span {
      font-size: 18px;
      color: #fff;
      clear: both;
      font-weight: normal; }
  .content-band.dark-blue .content .videos .video-container {
    /* @include col (1);
     margin-bottom: 20px;*/ }
  .content-band.dark-blue .content .content-col, .content-band.dark-blue .content .media-col {
    background-color: transparent;
    padding: 20px 0 0 0; }
    .content-band.dark-blue .content .content-col a, .content-band.dark-blue .content .media-col a {
      font-weight: bold;
      text-decoration: none;
      color: #fff; }
      .content-band.dark-blue .content .content-col a:hover, .content-band.dark-blue .content .media-col a:hover {
        text-decoration: underline; }
    .content-band.dark-blue .content .content-col h3, .content-band.dark-blue .content .media-col h3 {
      font-size: 22px;
      color: #414141; }
      .content-band.dark-blue .content .content-col h3:before, .content-band.dark-blue .content .media-col h3:before {
        display: none; }
    .content-band.dark-blue .content .content-col h4, .content-band.dark-blue .content .media-col h4 {
      color: #fff; }
  .content-band.dark-blue .content .white-paper a.cta-icon {
    color: #838b8f;
    margin-top: 40px; }
    .content-band.dark-blue .content .white-paper a.cta-icon h1, .content-band.dark-blue .content .white-paper a.cta-icon h2, .content-band.dark-blue .content .white-paper a.cta-icon h3, .content-band.dark-blue .content .white-paper a.cta-icon h4, .content-band.dark-blue .content .white-paper a.cta-icon h5, .content-band.dark-blue .content .white-paper a.cta-icon h6 {
      color: #333; }
  .content-band.dark-blue.white-cols .content-col {
    margin-bottom: 20px; }
  .content-band.dark-blue .white-paper h4, .content-band.dark-blue .media-col .white-paper h4 {
    color: #333; }
  .content-band.dark-blue .white-paper a, .content-band.dark-blue .media-col .white-paper a {
    color: #75b1bd; }
.content-band.video-left .media-col h3 {
  display: none; }
.content-band.video-left .media-col .inner-col h3 {
  display: block; }

.content-band.dark-blue.white-cols .content-col, .content-band.dark-blue.white-cols .media-col {
  padding: 30px;
  background-color: #fff; }
  .content-band.dark-blue.white-cols .content-col h2, .content-band.dark-blue.white-cols .content-col h4, .content-band.dark-blue.white-cols .content-col p, .content-band.dark-blue.white-cols .content-col a, .content-band.dark-blue.white-cols .content-col span, .content-band.dark-blue.white-cols .media-col h2, .content-band.dark-blue.white-cols .media-col h4, .content-band.dark-blue.white-cols .media-col p, .content-band.dark-blue.white-cols .media-col a, .content-band.dark-blue.white-cols .media-col span {
    color: #414141; }
  .content-band.dark-blue.white-cols .content-col .video-container, .content-band.dark-blue.white-cols .media-col .video-container {
    margin-bottom: 20px; }

@media screen and (min-width: 768px) {
  .content-band.dark-blue {
    padding: 40px 0; }
    .content-band.dark-blue.white-cols .content-col {
      margin-bottom: 0; }
    .content-band.dark-blue.white-cols .content-col h3, .content-band.dark-blue.white-cols .media-col h3 {
      font-size: 36px; }
    .content-band.dark-blue.white-cols .content .flex-item {
      padding: 20px 20px 0; }
    .content-band.dark-blue.white-cols.three-up .flex-item .media a {
      height: auto; }
  .content-band.category .optional-header.left {
    float: left; }
  .content-band.category .optional-header.right {
    float: right; }
  .content-band .content-col, .content-band .media-col {
    text-align: left;
    float: left;
    clear: none;
    width: 48.5%;
    margin-left: 0;
    margin-right: 3%; }
    .content-band .content-col:last-child, .content-band .media-col:last-child {
      margin-right: 0; }
    .content-band .content-col .inner-col, .content-band .media-col .inner-col {
      display: table-cell;
      vertical-align: middle;
      width: 50%; }
      .content-band .content-col .inner-col img, .content-band .media-col .inner-col img {
        padding: 0 20px;
        max-width: 100%; }
  .content-band.media-right .content-col, .content-band.media-right .media-col {
    float: right; }
  .content-band .media-col .video-container {
    /*@include col (1); */ }
  .content-band.video-left .media-col p {
    margin-top: 0; }
  .content-band.video-left .media-col h3 {
    display: block; }
  .content-band.video-left .media-col .inner-col h3 {
    display: none; }
  .content-band.video-left .media-col .video-container {
    float: left;
    clear: none;
    width: 57.08333%;
    margin-left: 0;
    margin-right: 3%;
    padding-bottom: 28%; }
    .content-band.video-left .media-col .video-container:last-child {
      margin-right: 0; } }
@media screen and (min-width: 1240px) {
  .content-band.dark-blue.white-cols .content .flex-item {
    padding: 30px 30px 10px; }
  .content-band.dark-blue.white-cols.three-up .flex-item .media a {
    height: 250px; } }
@media screen and (min-width: 1024px) {
  .content-band.dark-blue.white-cols.three-up .flex-item .media a {
    height: 200px; } }
/* Product category */
.content-band.dark-blue .white-paper, .content-band.light-blue .white-paper, .resources .white-paper {
  background-color: #fff;
  position: relative;
  padding: 20px;
  margin-top: 60px; }
  .content-band.dark-blue .white-paper i, .content-band.light-blue .white-paper i, .resources .white-paper i {
    background: url(/content/dam/veritas/icon-white-paper.png) 0 0 no-repeat;
    width: 78px;
    height: 78px;
    position: absolute;
    top: -30px;
    left: calc(50% - 39px); }
  .content-band.dark-blue .white-paper.icon-data-sheet i, .content-band.light-blue .white-paper.icon-data-sheet i, .resources .white-paper.icon-data-sheet i {
    background: url(/content/dam/veritas/icon-data-sheet.png) 0 0 no-repeat; }
  .content-band.dark-blue .white-paper.icon-reports i, .content-band.light-blue .white-paper.icon-reports i, .resources .white-paper.icon-reports i {
    background: url(/content/dam/veritas/icon-reports.png) 0 0 no-repeat; }
  .content-band.dark-blue .white-paper.icon-person i, .content-band.light-blue .white-paper.icon-person i, .resources .white-paper.icon-person i {
    background: url(/content/dam/veritas/icon-person.png) 0 0 no-repeat; }
  .content-band.dark-blue .white-paper.icon-product i, .content-band.light-blue .white-paper.icon-product i, .resources .white-paper.icon-product i {
    background: url(/content/dam/veritas/icon-product.png) 0 0 no-repeat; }
  .content-band.dark-blue .white-paper p, .content-band.light-blue .white-paper p, .resources .white-paper p {
    font-weight: 100;
    color: #838b8f; }
  .content-band.dark-blue .white-paper h4, .content-band.light-blue .white-paper h4, .resources .white-paper h4 {
    color: #333;
    padding-bottom: 20px;
    border-bottom: 1px solid #c4c4c4;
    margin: 0px auto 20px;
    text-align: center;
    font-size: 24px; }
  .content-band.dark-blue .white-paper h5, .content-band.light-blue .white-paper h5, .resources .white-paper h5 {
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 10px;
    border: none;
    padding: 0; }
    .content-band.dark-blue .white-paper h5 a, .content-band.light-blue .white-paper h5 a, .resources .white-paper h5 a {
      color: #75b1bd;
      text-decoration: none; }
      .content-band.dark-blue .white-paper h5 a:hover, .content-band.light-blue .white-paper h5 a:hover, .resources .white-paper h5 a:hover {
        text-decoration: underline; }
  .content-band.dark-blue .white-paper a, .content-band.light-blue .white-paper a, .resources .white-paper a {
    color: #75b1bd;
    font-weight: normal; }
    .content-band.dark-blue .white-paper a.download, .content-band.light-blue .white-paper a.download, .resources .white-paper a.download {
      font-weight: bold;
      color: #838b8f; }
    .content-band.dark-blue .white-paper a:hover, .content-band.light-blue .white-paper a:hover, .resources .white-paper a:hover {
      text-decoration: underline; }
    .content-band.dark-blue .white-paper a.inline-cta, .content-band.light-blue .white-paper a.inline-cta, .resources .white-paper a.inline-cta {
      font-weight: bold;
      text-decoration: none;
      color: #838b8f;
      display: block;
      text-align: center;
      margin-top: 40px; }
      .content-band.dark-blue .white-paper a.inline-cta:after, .content-band.light-blue .white-paper a.inline-cta:after, .resources .white-paper a.inline-cta:after {
        font: normal normal normal 14px/1 FontAwesome;
        content: '\f138';
        display: inline-block;
        padding-left: 5px;
        color: #75b1bd;
        -webkit-transition: padding 1s ease;
        -moz-transition: padding 1s ease;
        -o-transition: padding 1s ease;
        -ms-transition: padding 1s ease;
        transition: padding 1s ease; }
      .content-band.dark-blue .white-paper a.inline-cta:hover, .content-band.light-blue .white-paper a.inline-cta:hover, .resources .white-paper a.inline-cta:hover {
        color: #333; }
        .content-band.dark-blue .white-paper a.inline-cta:hover:after, .content-band.light-blue .white-paper a.inline-cta:hover:after, .resources .white-paper a.inline-cta:hover:after {
          padding-left: 8px; }
.content-band.dark-blue .slide-content .white-paper h4, .content-band.dark-blue .media-col .white-paper h4, .content-band.dark-blue .content-col .white-paper h4, .content-band.light-blue .slide-content .white-paper h4, .content-band.light-blue .media-col .white-paper h4, .content-band.light-blue .content-col .white-paper h4, .resources .slide-content .white-paper h4, .resources .media-col .white-paper h4, .resources .content-col .white-paper h4 {
  margin-top: 50px; }
.content-band.dark-blue.three-up .white-paper, .content-band.dark-blue.two-up .white-paper, .content-band.light-blue.three-up .white-paper, .content-band.light-blue.two-up .white-paper, .resources.three-up .white-paper, .resources.two-up .white-paper {
  padding-bottom: 75px; }

.content-band.light-blue .white-paper {
  background-color: #fff; }

.content-band.whitepapers .flex-item {
  background-color: #fff;
  position: relative; }
  .content-band.whitepapers .flex-item p a:after {
    display: none; }
  .content-band.whitepapers .flex-item p a.inline-cta:after {
    display: inline-block; }
.content-band.whitepapers .white-paper {
  padding: 0 7% 20px;
  background-color: #fff;
  position: static;
  padding-bottom: 115px; }
  .content-band.whitepapers .white-paper a.inline-cta {
    position: absolute;
    bottom: 40px;
    display: block;
    text-align: center;
    width: 86%; }

.slide-content .white-paper {
  margin: 30px;
  padding: 20px; }

@media screen and (min-width: 768px) {
  .content-band.dark-blue .media-col .white-paper, .content-band.dark-blue .content-col .white-paper, .content-band.light-blue .media-col .white-paper, .content-band.light-blue .content-col .white-paper, .resources .media-col .white-paper, .resources .content-col .white-paper {
    margin-top: 0; }
  .content-band.dark-blue .white-paper, .content-band.light-blue .white-paper, .resources .white-paper {
    padding: 20px 18%; }
    .content-band.dark-blue .white-paper a.inline-cta, .content-band.light-blue .white-paper a.inline-cta, .resources .white-paper a.inline-cta {
      width: 60%; }
  .content-band.dark-blue .slide-content .white-paper, .content-band.light-blue .slide-content .white-paper, .resources .slide-content .white-paper {
    min-height: 510px; }
    .content-band.dark-blue .slide-content .white-paper a.download, .content-band.light-blue .slide-content .white-paper a.download, .resources .slide-content .white-paper a.download {
      position: absolute;
      bottom: 30px;
      left: 18%; } }
@media screen and (min-width: 1000px) {
  .resources .slide-content .white-paper {
    min-height: 601px; } }
@media screen and (min-width: 1100px) {
  .resources .slide-content .white-paper {
    min-height: 510px; } }
/* Campaigns CSS */
body.campaign b {
  font-weight: normal;
  color: #333; }
body.campaign .customer-service-phone {
  float: right;
  position: relative;
  top: -16px;
  font-size: 21px; }
  body.campaign .customer-service-phone a {
    background: url(/content/dam/veritas/icon-call.png) no-repeat center center;
    background-size: 18px 22px;
    display: inline-block;
    height: 42px;
    width: 48px;
    padding: 10px 15px; }
  body.campaign .customer-service-phone span {
    display: none; }
body.campaign .hero-block {
  clear: both; }
body.campaign .main-content {
  padding-bottom: 0;
  padding-top: 0; }
body.campaign .share-this {
  margin-bottom: 2em; }
body.campaign .site-btn {
  border-radius: 20px;
  font-size: 14px;
  padding: 10px 15px;
  text-transform: uppercase; }
  body.campaign .site-btn:before {
    color: #548089;
    content: "\f138";
    display: inline-block;
    vertical-align: middle;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 18px;
    margin-right: 8px; }
body.campaign .content-block p {
  color: #999; }
body.campaign .content-block ul {
  margin-bottom: 2em; }
body.campaign .interact-buttons {
  margin-bottom: 40px;
  text-align: center; }
body.campaign .btn-chat-now {
  /* display: none;
  margin: 30px 0 0 0; */
  display: inline-block;
  text-transform: uppercase;
  width: 60%;
  font-size: 16px; }
body.campaign .awards-block {
  background-color: #f5f5f5;
  padding: 20px 2em;
  margin: 0 -2em; }
  body.campaign .awards-block h5 {
    margin: 0 0 20px 0; }
  body.campaign .awards-block .content-block-with-image {
    float: none;
    width: 100%; }
  body.campaign .awards-block:after {
    content: '';
    display: table;
    clear: both; }
body.campaign .messaging-block {
  background-color: #0e2d3f;
  color: #fff;
  text-align: center; }
  body.campaign .messaging-block h2 {
    color: #fff;
    font-weight: 300;
    font-size: 22px;
    margin: 20px 0; }
  body.campaign .messaging-block img {
    display: none;
    max-width: 100%;
    margin: 16px auto; }
body.campaign blockquote {
  display: none;
  margin: 0;
  text-align: center; }
  body.campaign blockquote p {
    color: #fff; }
    body.campaign blockquote p.cite {
      text-align: right; }
      body.campaign blockquote p.cite b {
        display: block;
        color: #fff;
        font-weight: bold;
        margin-left: 13px; }
body.campaign .additional ul {
  display: none; }

@media screen and (max-width: 1023px) {
  .messaging-block h2 {
    border-bottom: none;
    padding-bottom: 0; }
    .messaging-block h2:after {
      background-color: transparent;
      height: 0; } }
@media screen and (min-width: 480px) {
  body.campaign .customer-service-phone {
    top: -28px; } }
@media screen and (min-width: 640px) {
  body.campaign .customer-service-phone {
    top: -10px; }
    body.campaign .customer-service-phone a {
      background-size: 32px 36px;
      height: 46px;
      width: 42px;
      padding: 5px; } }
@media screen and (min-width: 768px) {
  body.campaign .customer-service-phone a {
    background: none;
    height: auto;
    width: auto; }
  body.campaign .customer-service-phone span {
    display: inline-block; }
  body.campaign .customer-service-phone span,
  body.campaign .customer-service-phone a {
    color: #fff;
    font-size: 22px;
    text-decoration: none; }
  body.campaign .interact-buttons {
    text-align: left; }
  body.campaign .additional ul {
    display: block; }

  body.campaign .site-btn {
    width: 100%; }
  body.campaign .awards-block,
  body.campaign .interact-buttons {
    float: right;
    text-align: left;
    width: 25%; }
  body.campaign .awards-block {
    margin: 0 0 2em 0;
    padding: 40px 15px; }
  body.campaign .campaign-block {
    float: left;
    width: 70%; }
    body.campaign .campaign-block h2:first-child {
      margin-top: 0; }
    body.campaign .campaign-block p,
    body.campaign .campaign-block ul {
      max-width: 700px; }
    body.campaign .campaign-block .content-block-with-image img {
      width: 175px;
      margin-right: 20px; }
    body.campaign .campaign-block .content-block-with-image b {
      color: #666; }
  body.campaign .messaging-block {
    padding: 50px 0 34px; }
    body.campaign .messaging-block h2 {
      border-bottom-color: #414141;
      font-size: 42px;
      text-align: left;
      margin-top: 0;
      font-weight: lighter; }
    body.campaign .messaging-block img {
      display: block; }
  body.campaign blockquote {
    display: block;
    text-align: left; }
    body.campaign blockquote p {
      font-size: 20px;
      margin-top: 40px; }
      body.campaign blockquote p.cite {
        font-size: 16px;
        font-weight: 700;
        text-align: left;
        margin-top: 20px; }
  body.campaign .btn-chat-now {
    display: inline-block;
    margin-left: 0;
    text-transform: uppercase;
    width: 100%;
    font-size: 16px; }

  body.campaign .awards-block .content-block-with-image img {
    float: none;
    width: auto; }
  body.campaign .awards-block .content-block-with-image p {
    padding-left: 0; } }
@media screen and (min-width: 940px) {
  body.campaign .awards-block .content-block-with-image img {
    float: left;
    width: calc(175px / 2); }
  body.campaign .awards-block .content-block-with-image p {
    padding-left: calc((175px / 2) + 10px); } }
.center {
  text-align: center; }

.campaign-form {
  background: #fafafa;
  padding: 30px 40px 50px;
  margin-top: -2em; }
  .campaign-form h4 {
    margin: 0;
    padding: 0;
    font-size: 21px;
    line-height: 1.3; }
    .campaign-form h4 b {
      color: #fff;
      background: #b0151e;
      padding: 4px 4px 3px;
      display: inline-block; }
  .campaign-form p {
    margin-bottom: 0; }
  .campaign-form input {
    width: 100%;
    border: 2px solid #c4c4c4;
    padding: 0 10px;
    height: 60px; }
  .campaign-form .site-btn {
    margin: 0 auto; }
  .campaign-form .customSelect {
    border: 2px solid #c4c4c4;
    height: 60px;
    position: relative;
    background: #fff;
    overflow: hidden; }
    .campaign-form .customSelect:after {
      content: '';
      display: block;
      height: 56px;
      width: 65px;
      position: absolute;
      top: 0;
      right: -1px;
      z-index: 8;
      background: #75b1bd;
      border-left: 2px solid #c4c4c4; }
    .campaign-form .customSelect:before {
      content: '\f078';
      font: normal normal normal 14px/1 FontAwesome;
      color: #fff;
      position: absolute;
      top: 20px;
      right: 20px;
      z-index: 9; }
    .campaign-form .customSelect select {
      background: none;
      border: none;
      color: #838b8f;
      height: 57px;
      position: absolute;
      top: 0;
      left: 3px;
      width: 97%;
      z-index: 10;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      width: 110%; }
    .campaign-form .customSelect select::-ms-expand {
      display: none; }
  .campaign-form label {
    display: block;
    position: relative;
    clear: both;
    padding-top: 15px;
    color: #838b8f; }
    .campaign-form label b {
      color: #b0151e; }
    .campaign-form label.check {
      padding: 30px 0 30px 25px;
      text-transform: none; }
      .campaign-form label.check input {
        opacity: 0;
        position: absolute;
        top: 30px;
        left: 0;
        width: auto; }
      .campaign-form label.check span {
        border: 2px solid #c4c4c4;
        border-radius: 4px;
        height: 15px;
        width: 15px;
        margin: 4px 10px 0 0;
        display: inline-block;
        float: left;
        background: #fff;
        position: absolute;
        top: 30px;
        left: 0; }
       .campaign-form label.check a.lb-inline em {
        color:red; }
       .campaign-form label.check a.lb-inline em {
        color:red; }
      .campaign-form label.check input[type=checkbox]:checked + span {
        background: #75b1bd;
        border-color: #75b1bd; }
        .campaign-form label.check input[type=checkbox]:checked + span:after {
          content: '\f00c';
          font: normal normal normal 12px/1 FontAwesome;
          position: absolute;
          top: 0;
          left: 0;
          color: #fff; }
  .campaign-form .thank-you-screen {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 40% 45px 0;
    background: rgba(255, 255, 255, 0.95);
    text-align: center;
    display: none; }
    .campaign-form .thank-you-screen i {
      font-size: 80px;
      color: #75b1bd; }
    .campaign-form .thank-you-screen.active {
      display: block; }

/*.campaign .hero-block {
    .hero-video { 
        h5, p { display: none;}
    }
}*/
.campaign-video {
  clear: both;
  background: #e1e1e1;
  padding-top: 20px; }

.content-band.campaign-video h2 {
  border: none;
  padding: 10px 0 0 0; }
  .content-band.campaign-video h2:after {
    display: none; }
.content-band.campaign-video p {
  color: #333; }
.content-band.campaign-video p:last-child {
  text-align: left; }

.full-form .header {
  display: block;
  border-bottom: 1px solid #c4c4c4;
  position: static;
  height: auto;
  padding: 20px 0; }
  .full-form .header img {
    height: 30px; }
.full-form .form-wrapper {
  background: #fafafa;
  position: static;
  width: 100%; }
  .full-form .form-wrapper .campaign-form {
    position: static;
    width: 100%;
    margin: 0;
    padding: 0 0 50px 0; }

@media screen and (min-width: 768px) {
  .full-form .header {
    padding: 35px 0; }
    .full-form .header img {
      height: 40px; }
  .full-form .form-wrapper .campaign-form form {
    width: 75%; }
  .full-form .form-wrapper .campaign-form .center {
    text-align: left; }

  .campaign-video {
    min-height: 650px; }
    .campaign-video .video-wrapper {
      width: 58%; }

  .form-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; }
    .form-wrapper .content {
      position: relative; }

  .campaign-form {
    position: absolute;
    top: 110px;
    right: 1em;
    width: 38%;
    z-index: 9999; }

  /*    .campaign .hero-block {
        min-height: 428px;
        .hero-video {
            top: 109.5%;
            top: 469px;
            width: 55%;
        }
        .text {
            width: 66%;
        }
    }*/
  /*    .campaign-form {
        width: 38%;
        max-width: 412px;
        right: 10px;
    }*/ }
@media screen and (min-width: 1024px) {
  .campaign-video {
    min-height: 550px; } }
/* Homepage styles */
.home-grid {
  border-bottom: 10px solid #fff; }
  .home-grid .row {
    border: solid #fff;
    border-width: 0 5px;
    display: block;
    width: 100%; }
    .home-grid .row .col {
      border: solid #fff;
      border-width: 10px 5px 0;
      display: block;
      overflow: hidden;
      position: relative;
      width: 100%; }
      .home-grid .row .col a {
        box-sizing: border-box;
        color: #fff;
        display: table;
        height: 100%;
        position: relative;
        text-decoration: none;
        transition: all 1s ease;
        width: 100%; }
        .home-grid .row .col a.full-block-img {
          padding-top: 25%; }
        .home-grid .row .col a img {
          height: auto;
          position: absolute;
          right: 0;
          top: 0;
          width: 185%;
          z-index: 1; }
        .home-grid .row .col a .inner-content {
          display: table-cell;
          height: 100%;
          min-height: 160px;
          padding: 12% 4% 40px;
          position: relative;
          vertical-align: bottom;
          width: 100%;
          z-index: 2; }
          .home-grid .row .col a .inner-content p:nth-last-child(1) {
            transition: color 1s ease;
            padding-right: 5px; }
            .home-grid .row .col a .inner-content p:nth-last-child(1):after {
              content: '\f138';
              display: inline-block;
              font: normal normal normal 14px/1 FontAwesome;
              margin-top: 6px;
              padding-left: 5px;
              padding-right: 5px;
              position: absolute;
              transition: padding 1s ease; }
          .home-grid .row .col a .inner-content i {
            display: block;
            height: 64px;
            margin: 20px auto;
            width: 64px; }
            .home-grid .row .col a .inner-content i img {
              height: auto;
              position: static;
              width: 100%; }
        .home-grid .row .col a.news-event {
          background: #becd2a; }
          .home-grid .row .col a.news-event time {
            color: #becd2a; }
          .home-grid .row .col a.news-event .inner-content {
            padding: 8% 4% 40px; }
          .home-grid .row .col a.news-event.orange-block {
            background: #ec5333; }
            .home-grid .row .col a.news-event.orange-block time {
              color: #ec5333; }
          .home-grid .row .col a.news-event.red-block {
            background: #c73448; }
            .home-grid .row .col a.news-event.red-block time {
              color: #b0151e; }
          .home-grid .row .col a.news-event.blue-block {
            background: #79b5bc; }
            .home-grid .row .col a.news-event.blue-block time {
              color: #79b5bc; }
          .home-grid .row .col a.news-event.gray-block {
            background: #7f878c; }
            .home-grid .row .col a.news-event.gray-block time {
              color: #7f878c; }
          .home-grid .row .col a.news-event.light-blue-block {
            background: #bbd4e0; }
            .home-grid .row .col a.news-event.light-blue-block time {
              color: #bbd4e0; }
            .home-grid .row .col a.news-event.light-blue-block p {
              color: #333; }
          .home-grid .row .col a.news-event.big-text {
            padding-top: 0; }
        .home-grid .row .col a:hover.news-event {
          background: #a3b11a; }
          .home-grid .row .col a:hover.news-event.orange-block {
            background: #f9ad28; }
          .home-grid .row .col a:hover.news-event.red-block {
            background: #b0151e; }
          .home-grid .row .col a:hover.news-event.blue-block {
            background: #57a2ab; }
          .home-grid .row .col a:hover.news-event.gray-block {
            background: #3a3a3c; }
          .home-grid .row .col a:hover.news-event.light-blue-block {
            background: #cce2e6; }
        .home-grid .row .col a:hover .inner-content p:nth-last-child(1):after {
          padding-left: 8px; }
        .home-grid .row .col a h3,
        .home-grid .row .col a h4,
        .home-grid .row .col a h5 {
          color: #fff;
          font-size: 24px;
          line-height: 1.1;
          margin: 0;
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); }
        .home-grid .row .col a h5 {
          font-weight: normal;
          margin-bottom: 10px; }
        .home-grid .row .col a h3 {
          border: 0;
          font-size: 29px;
          font-weight: bold; }
          .home-grid .row .col a h3:after, .home-grid .row .col a h3:before {
            display: none; }
        .home-grid .row .col a.big-text h3 {
          font-size: 32px; }
        .home-grid .row .col a p {
          color: #fff;
          font-size: 18px;
          font-weight: lighter;
          margin: 0;
          text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); }
          .home-grid .row .col a p b {
            font-weight: normal; }
        .home-grid .row .col a.center-block {
          text-align: center; }
        .home-grid .row .col a.right-block {
          text-align: right; }
        .home-grid .row .col a.top .inner-content {
          vertical-align: top; }
      .home-grid .row .col .news-event .inner-content p,
      .home-grid .row .col .news-event .inner-content h5,
      .home-grid .row .col .news-event .inner-content h4,
      .home-grid .row .col .news-event .inner-content h3,
      .home-grid .row .col .row-item.news-event .inner-content p,
      .home-grid .row .col .row-item.news-event .inner-content h5,
      .home-grid .row .col .row-item.news-event .inner-content h4,
      .home-grid .row .col .row-item.news-event .inner-content h3 {
        text-shadow: 0 0 0 transparent; }
      .home-grid .row .col .grid-content,
      .home-grid .row .col .row-item {
        overflow: hidden; }
      .home-grid .row .col .row-item {
        display: block;
        overflow: hidden; }
      .home-grid .row .col .quiltitem:nth-child(2) {
        border-top: 10px solid #fff; }
  .home-grid time {
    background: #fff;
    display: inline-block;
    font-size: 11px;
    line-height: 1;
    margin: 0 0 10px;
    padding: 9px; }

.lower-carousel {
  border: solid #f5f5f5;
  border-width: 2px 0;
  padding: 60px 0;
  text-align: center; }
  .lower-carousel img {
    height: auto;
    width: 100%; }

@media screen and (min-width: 768px) {
  .home-grid .row .col a {
    vertical-align: bottom; }
    .home-grid .row .col a img {
      height: auto;
      transition: width 1s ease;
      width: 185%; }
    .home-grid .row .col a:hover img {
      width: 200%; }

  .home-grid .row .col a.big-text h3 {
    font-size: 31px; }

  .home-grid .row {
    display: table;
    height: 100%;
    width: 100%; }
    .home-grid .row .col {
      display: table-cell;
      vertical-align: top; }
      .home-grid .row .col > div,
      .home-grid .row .col .quiltitem {
        display: table;
        height: 100%;
        width: 100%; }
        .home-grid .row .col > div:nth-last-child(n+2), .home-grid .row .col > div:nth-last-child(n+2) ~ *,
        .home-grid .row .col .quiltitem:nth-last-child(n+2),
        .home-grid .row .col .quiltitem:nth-last-child(n+2) ~ * {
          height: 50%; }
      .home-grid .row .col .row-item {
        height: 100%;
        display: table-cell; }
      .home-grid .row .col.span-1 {
        width: 25%; }
      .home-grid .row .col.span-2 {
        width: 50%; }
      .home-grid .row .col.span-3 {
        width: 75%; }
      .home-grid .row .col.span-2-3 {
        width: 66.66%; }
      .home-grid .row .col.span-1-3 {
        width: 33.33%; }
      .home-grid .row .col.span-full {
        width: 100%; }
      .home-grid .row .col .grid-item {
        display: table-row;
        vertical-align: middle; }

  .lower-carousel img {
    width: auto; } }
@media screen and (min-width: 800px) {
  .home-grid .row .col h3 {
    font-size: 34px; }
  .home-grid .row .col h4,
  .home-grid .row .col h5 {
    font-size: 30px; } }
@media screen and (min-width: 1070px) {
  .home-grid .row .col a img {
    right: -10%;
    top: -10%;
    width: 135%; }
  .home-grid .row .col a:hover img {
    width: 145%; } }
@media screen and (min-width: 1070px) {
  .home-grid .row .col a .inner-content {
    min-height: 200px; } }
/* Training */
.training-country {
  background-color: #f1f5f8;
  padding-bottom: 30px; }
  .training-country .select-country {
    margin-top: 30px; }
  .training-country .country-data {
    float: none;
    margin-top: 30px; }
    .training-country .country-data:after {
      content: '';
      display: block;
      clear: both; }
    .training-country .country-data ul {
      float: none; }
      .training-country .country-data ul li {
        margin-bottom: 0; }
        .training-country .country-data ul li p {
          margin: 0;
          color: #323232; }

.training-courses-list {
  float: left;
  clear: none;
  width: 100%;
  margin-left: 0;
  margin-right: 3%; }
  .training-courses-list:last-child {
    margin-right: 0; }

@media screen and (min-width: 768px) {
  .training-country .select-country .country-data {
    margin: 0 0 30px;
    margin-left: 330px; }
  .training-country .select-country .dropdown-container {
    width: 300px;
    position: absolute; }

  .training-courses-list {
    float: left;
    clear: none;
    width: 48.5%;
    margin-left: 0;
    margin-right: 3%; }
    .training-courses-list:last-child {
      margin-right: 0; } }
.sticky-wrapper {
  min-height: 60px; }

.sticky-sub-nav, .side-sub-nav {
  height: 60px;
  position: relative;
  clear: both; }
  .sticky-sub-nav.fixed, .side-sub-nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; }
  .sticky-sub-nav p a, .side-sub-nav p a {
    display: none; }

.sticky-sub-nav {
  background: #fff;
  z-index: 1000; }

#fixed-nav-padding {
  height: 80px; }

.side-sub-nav.fixed {
  background: #fff;
  left: 0;
  z-index: 1000; }
  .side-sub-nav.fixed ul.list-drop-menu {
    margin-left: 18px;
    width: calc(100% - 36px); }

.list-drop-menu, .tabs {
  margin: 0;
  padding: 0;
  background: #75b1bd;
  border-radius: 3px;
  position: absolute;
  top: 20px;
  left: 1em;
  z-index: 100;
  width: calc(100% - 2em); }
  .list-drop-menu li, .tabs li {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    text-transform: uppercase; }
    .list-drop-menu li.mobile-only, .tabs li.mobile-only {
      display: block !important; }
    .list-drop-menu li a, .tabs li a {
      text-decoration: none;
      font-size: 14px;
      color: #fff;
      display: block;
      font-weight: bold;
      padding: 6px 20px;
      border-radius: 3px; }
      .list-drop-menu li a:hover, .tabs li a:hover {
        background: #548089; }
    .list-drop-menu li.current, .tabs li.current {
      display: block; }
      .list-drop-menu li.current a:after, .tabs li.current a:after {
        font: normal normal normal 14px/1 FontAwesome;
        content: '\f078';
        position: absolute;
        top: 11px;
        right: 20px;
        color: inherit; }
    .list-drop-menu li.sub-items > a, .list-drop-menu li.sub-items.current > a, .tabs li.sub-items > a, .tabs li.sub-items.current > a {
      position: relative; }
      .list-drop-menu li.sub-items > a:after, .list-drop-menu li.sub-items.current > a:after, .tabs li.sub-items > a:after, .tabs li.sub-items.current > a:after {
        font: normal normal normal 14px/1 FontAwesome;
        content: '\f054';
        position: absolute;
        top: 11px;
        right: 20px; }
    .list-drop-menu li.sub-items ul, .list-drop-menu li.sub-items.current ul, .tabs li.sub-items ul, .tabs li.sub-items.current ul {
      display: none;
      margin: 0;
      padding: 0; }
      .list-drop-menu li.sub-items ul li a, .list-drop-menu li.sub-items.current ul li a, .tabs li.sub-items ul li a, .tabs li.sub-items.current ul li a {
        padding-left: 44px;
        border-radius: 0;
        display: block; }
      .list-drop-menu li.sub-items ul li.current-page a, .list-drop-menu li.sub-items.current ul li.current-page a, .tabs li.sub-items ul li.current-page a, .tabs li.sub-items.current ul li.current-page a {
        color: #363b3e;
        font-weight: bold; }
    .list-drop-menu li.sub-items.active ul, .list-drop-menu li.sub-items.current.active ul, .tabs li.sub-items.active ul, .tabs li.sub-items.current.active ul {
      display: block; }
    .list-drop-menu li.sub-items.active > a:after, .tabs li.sub-items.active > a:after {
      content: '\f078'; }
  .list-drop-menu.active li, .tabs.active li {
    display: block; }
    .list-drop-menu.active li.current a, .tabs.active li.current a {
      background: #548089; }

.side-sub-nav .list-drop-menu {
  left: 0;
  width: 100%; }

@media screen and (max-width: 999px) {
  .sticky-wrapper.sticky-wrapper--non-stcky .sticky-sub-nav {
    height: auto;
    padding: 25px 0;
    background-color: #5bb2b9; }
    .sticky-wrapper.sticky-wrapper--non-stcky .sticky-sub-nav.fixed {
      position: relative; }
    .sticky-wrapper.sticky-wrapper--non-stcky .sticky-sub-nav .list-drop-menu {
      width: 100%;
      margin-top: 20px;
      border-radius: 0;
      background-color: #deecf3;
      position: static; }
      .sticky-wrapper.sticky-wrapper--non-stcky .sticky-sub-nav .list-drop-menu li {
        border-radius: 0; }
        .sticky-wrapper.sticky-wrapper--non-stcky .sticky-sub-nav .list-drop-menu li a {
          border-radius: 0;
          color: #333;
          position: relative; }
          .sticky-wrapper.sticky-wrapper--non-stcky .sticky-sub-nav .list-drop-menu li a:hover {
            color: #deecf3;
            background-color: #548089; }
          .sticky-wrapper.sticky-wrapper--non-stcky .sticky-sub-nav .list-drop-menu li a .fa {
            color: #333; } }
@media screen and (min-width: 768px) {
  .list-drop-menu li.sub-items ul li a,
  .list-drop-menu li.sub-items.current ul li a {
    background: none; }

  .list-drop-menu li.current:after,
  .tabs li.current:after {
    display: none; }

  .list-drop-menu li.sub-items > a:after, .list-drop-menu li.sub-items.current > a:after, .tabs li.sub-items > a:after, .tabs li.sub-items.current > a:after {
    top: 33%; }

  .side-sub-nav {
    height: auto;
    padding-bottom: 40px;
    padding-top: 18px;
    float: left;
    clear: none;
    width: 31.33333%;
    margin-left: 0;
    margin-right: 3%; }
    .side-sub-nav p a {
      display: block;
      color: #333;
      font-weight: bold;
      position: relative;
      padding-left: 15px;
      font-size: 14px;
      text-decoration: none; }
      .side-sub-nav p a:before {
        content: '\f137';
        color: #75b1bd;
        font: normal normal normal 14px/1 FontAwesome;
        position: absolute;
        top: 5px;
        left: 0; }
      .side-sub-nav p a:hover {
        color: #414141; }
    .side-sub-nav:last-child {
      margin-right: 0; }
    .side-sub-nav .list-drop-menu {
      position: relative;
      background: #fff;
      left: 0; }
      .side-sub-nav .list-drop-menu li {
        display: block; }
        .side-sub-nav .list-drop-menu li.mobile-only {
          display: none !important; }
        .side-sub-nav .list-drop-menu li a {
          color: #838b8f;
          font-weight: normal;
          padding-left: 0;
          padding-right: 38px; }
          .side-sub-nav .list-drop-menu li a:hover {
            background: none; }
        .side-sub-nav .list-drop-menu li.current a {
          background: none;
          font-weight: bold;
          color: #333; }
        .side-sub-nav .list-drop-menu li.sub-items.current a {
          font-weight: normal;
          color: #838b8f; }
        .side-sub-nav .list-drop-menu li.sub-items ul li a, .side-sub-nav .list-drop-menu li.sub-items.current ul li a {
          padding-left: 22px; } }
@media screen and (min-width: 1000px) {
  .list-drop-menu li.current:after, .tabs li.current:after {
    display: none; }

  .sticky-sub-nav {
    padding: 0;
    height: auto;
    background: #75b1bd;
    z-index: 100000; }
    .sticky-sub-nav.fixed {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%; }
    .sticky-sub-nav:after {
      content: '';
      display: block;
      clear: both; }
    .sticky-sub-nav ul {
      padding: 0;
      margin: 0;
      background: none;
      position: static;
      border-left: 2px solid #61949e; }
      .sticky-sub-nav ul:after {
        content: '';
        display: block;
        clear: both; }
      .sticky-sub-nav ul li {
        padding: 0;
        border-right: 2px solid #61949e;
        margin: 0;
        float: left;
        height: 80px;
        display: inline-block;
        max-width: 190px; }
        .sticky-sub-nav ul li a {
          font-weight: normal;
          color: #fff;
          text-transform: none;
          padding: 0 40px;
          border-radius: 0;
          margin: 0 1px;
          height: 79px;
          display: table-cell;
          text-align: center;
          vertical-align: middle;
          border-right: 1px solid #75b1bd;
          border-left: 1px solid #75b1bd;
          line-height: 1.3;
          -webkit-transition: background-color 1s ease;
          -moz-transition: background-color 1s ease;
          -o-transition: background-color 1s ease;
          -ms-transition: background-color 1s ease;
          transition: background-color 1s ease; }
          .sticky-sub-nav ul li a:hover {
            background: #61949e; }
        .sticky-sub-nav ul li.current {
          display: inline-block; }
          .sticky-sub-nav ul li.current:after {
            display: none; }
          .sticky-sub-nav ul li.current a {
            border-bottom: 4px solid #548089;
            background: #61949e;
            position: relative; }
            .sticky-sub-nav ul li.current a:after {
              content: '';
              width: 0;
              height: 0;
              border-left: 10px solid transparent;
              border-right: 10px solid transparent;
              border-top: 10px solid #548089;
              position: absolute;
              top: 78px;
              left: 45%; }
      .sticky-sub-nav ul.active li {
        display: inline-block; }
        .sticky-sub-nav ul.active li.current a {
          background: #61949e; }
        .sticky-sub-nav ul.active li a {
          background: none; }

  .sticky-wrapper.sticky-wrapper--non-stcky .sticky-sub-nav .content {
    position: relative; }
  .sticky-wrapper.sticky-wrapper--non-stcky .sticky-sub-nav ul li.current a {
    border-bottom: 0; }
  .sticky-wrapper.sticky-wrapper--non-stcky .sticky-sub-nav ul li.current a:after {
    border-right: 0;
    border-top: 0;
    border-left: 0; }
  .sticky-wrapper.sticky-wrapper--non-stcky .sticky-sub-nav ul li a .fa {
    display: none; }
  .sticky-wrapper.sticky-wrapper--non-stcky .sticky-sub-nav.fixed {
    position: relative !important; } }
.tabs-wrapper {
  position: relative;
  min-height: 70px; }

.tabs {
  width: 100%;
  left: 0;
  background: #fff;
  border: 2px solid #75b1bd; }
  .tabs li {
    text-decoration: none;
    font-size: 14px;
    color: #75b1bd;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 3px;
    display: none;
    cursor: pointer;
    text-align: left; }
    .tabs li.current {
      display: block; }
    .tabs li.current:after {
      color: #75b1bd; }
    .tabs li:hover {
      background: none; }
  .tabs.active li {
    display: block; }

.tabbed .tab-section {
  display: block;
  max-height: 0px;
  overflow: hidden; }
  .tabbed .tab-section.current {
    max-height: 400px;
    overflow: visible; }

.content-band .content .tabs-wrapper ul.tabs, .content-band .content .card-4up-carousel .slick-dots {
  padding: 0; }
  .content-band .content .tabs-wrapper ul.tabs li, .content-band .content .card-4up-carousel .slick-dots li {
    padding: 10px 20px; }
    .content-band .content .tabs-wrapper ul.tabs li:before, .content-band .content .card-4up-carousel .slick-dots li:before {
      display: none; }

.content-band .content .card-4up-carousel .slick-dots li {
  padding: 0;
  margin: 0 5px; }

.hidden-tab {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

@media screen and (min-width: 768px) {
  .tabs-wrapper {
    min-height: 1px;
    width: 100%;
    text-align: center; }
    .tabs-wrapper:after {
      content: '';
      display: block;
      clear: both; }

  .tabs {
    position: relative;
    background: none;
    left: auto;
    margin: 0 auto;
    width: auto;
    display: inline-block;
    border: none; }
    .tabs li {
      display: block;
      float: left;
      width: auto;
      background: none;
      color: #414141;
      border-radius: 15px;
      margin: 0 8px 0 0;
      padding: 4px 12px;
      -webkit-transition: all 1s ease;
      -moz-transition: all 1s ease;
      -o-transition: all 1s ease;
      -ms-transition: all 1s ease;
      transition: all 1s ease; }
      .tabs li.current, .tabs li:hover {
        background: #b0151e;
        color: #fff; }

  .content-band .content .tabs-wrapper ul.tabs li {
    margin: 0 8px 12px 0;
    padding: 4px 12px; } }
section.right-col {
  padding: 20px 0 10px; }
  section.right-col.courses {
    padding-top: 9px; }
  section.right-col h2 {
    margin-top: 0; }
  section.right-col h3, section.right-col h4, section.right-col h5 {
    margin-bottom: 0; }
  section.right-col ul {
    padding-left: 0; }
    section.right-col ul li {
      padding-left: 30px;
      position: relative;
      list-style: none; }
      section.right-col ul li:before {
        font: normal normal normal 14px/1 FontAwesome;
        content: "\f058 ";
        color: #75b1bd;
        margin: 4px 20px 0 0;
        /*font-size: 14px;*/
        position: absolute;
        top: 0;
        left: 0; }

aside:after {
  content: '';
  display: inline-block;
  clear: both; }

@media screen and (min-width: 768px) {
  section.right-col {
    float: left;
    clear: none;
    width: 65.66667%;
    margin-left: 0;
    margin-right: 3%;
    margin-right: 0;
    padding: 20px 0 10px; }
    section.right-col:last-child {
      margin-right: 0; }
    section.right-col .flex-item {
      float: left;
      clear: none;
      width: 48.5%;
      margin-left: 0;
      margin-right: 3%; }
      section.right-col .flex-item:nth-of-type(2n) {
        margin-right: 0;
        float: right; }
      section.right-col .flex-item:nth-of-type(2n + 1) {
        clear: both; }

  .full-col .flex-item {
    float: left;
    clear: none;
    width: 31.33333%;
    margin-left: 0;
    margin-right: 3%; }
    .full-col .flex-item:nth-of-type(3n) {
      margin-right: 0;
      float: right; }
    .full-col .flex-item:nth-of-type(3n + 1) {
      clear: both; }

  section.right-col h2 {
    margin-top: 50px; } }
/* footer cta */
.footer-cta {
  position: fixed;
  bottom: 0;
  min-height: 0px;
  max-height: 0px;
  z-index: 2000;
  padding: 0;
  text-align: center;
  color: #fff;
  right: 0;
  left: 0;
  -webkit-transition: max-height 1s ease;
  -moz-transition: max-height 1s ease;
  -o-transition: max-height 1s ease;
  -ms-transition: max-height 1s ease;
  transition: max-height 1s ease;
  transition-delay: 0s; }
  .footer-cta.open {
    bottom: 0;
    max-height: 500px; }
    .footer-cta.open .footer-cta-contactus a:after {
      content: "\f078"; }
  .footer-cta .footer-cta-block {
    display: inline-block;
    background-color: #494d51;
    border-radius: 5px;
    padding: 13px;
    position: relative; }
  .footer-cta .footer-cta-content {
    border: 2px solid #66696c;
    border-radius: 4px;
    clear: both;
    margin-bottom: 10px;
    vertical-align: middle;
    padding: 5px 10px;
    text-align: left;
    position: relative; }
    .footer-cta .footer-cta-content a {
      color: #fff;
      text-decoration: none;
      display: table-cell;
      white-space: nowrap;
      vertical-align: middle;
      height: 41px; }
      .footer-cta .footer-cta-content a p {
        margin: 0;
        font-size: 14px;
        color: #fff;
        text-decoration: none;
        text-align: left;
        font-weight: bold;
        line-height: 1;
        padding-left: 24px; }
      .footer-cta .footer-cta-content a span {
        font-size: 17px;
        font-weight: bold;
        color: #74b0bc; }
        .footer-cta .footer-cta-content a span:before {
          content: "\f138";
          margin-right: 9px;
          font-size: 17px;
          color: #74b0bc; }
    .footer-cta .footer-cta-content:last-of-type {
      margin-bottom: initial; }
    .footer-cta .footer-cta-content.number {
      border: none;
      padding: 0;
      color: #75b1bd; }
      .footer-cta .footer-cta-content.number span {
        border: 2px solid #66696c;
        border-radius: 4px;
        display: block;
        padding: 11px 10px;
        margin-bottom: 10px;
        font-weight: bold; }
        .footer-cta .footer-cta-content.number span:before {
          content: '\f098';
          padding-right: 9px; }
      .footer-cta .footer-cta-content.number p {
        padding-left: 37px;
        font-weight: bold; }
      .footer-cta .footer-cta-content.number a {
        color: #75b1bd;
        white-space: nowrap;
        height: auto;
        display: inline-block; }
      .footer-cta .footer-cta-content.number div {
        display: inline-block; }
        .footer-cta .footer-cta-content.number div span a {
          color: #fff;
          font-weight: bold;
          font-size: 17px;
          margin-top: 1px; }
          .footer-cta .footer-cta-content.number div span a:before {
            content: "\f098";
            margin-right: 9px;
            color: #74b0bc;
            font-size: 17px; }
        .footer-cta .footer-cta-content.number div p a {
          color: #74b0bc;
          margin: 0;
          font-size: 14px;
          text-decoration: none; }
  .footer-cta p {
    margin: 0; }
  .footer-cta .footer-cta-contactus {
    display: inline-block;
    padding: 0;
    font-size: 20px;
    position: absolute;
    top: -35px;
    left: 0;
    width: 100%; }
    .footer-cta .footer-cta-contactus a {
      position: relative;
      border-radius: 2px 2px 0 0;
      padding: 12px 45px 12px 20px;
      color: #fff;
      background-color: #494d51;
      white-space: nowrap; }
      .footer-cta .footer-cta-contactus a:after {
        content: "\f077";
        margin-left: 10px;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 14px;
        right: 18px; }
      .footer-cta .footer-cta-contactus a:hover {
        text-decoration: none; }
  .footer-cta :before, .footer-cta :after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0); }

@media screen and (min-width: 768px) {
  .footer-cta {
    left: 0;
    width: 100%;
    margin-left: 0;
    display: inline-block; }
    .footer-cta.open {
      width: 100%;
      max-height: 90px; }
    .footer-cta .footer-cta-block {
      padding: 10px 10px 8px; }
    .footer-cta .footer-cta-contactus {
      font-size: 16px;
      top: -32px; }
      .footer-cta .footer-cta-contactus a:after {
        top: 10px; }
    .footer-cta .footer-cta-content {
      display: inline-block;
      margin: 0 3px;
      padding: 0px 10px 5px;
      min-height: 50px; }
      .footer-cta .footer-cta-content span {
        font-size: 1.4vw; }
        .footer-cta .footer-cta-content span:before {
          font-size: 1.4vw; }
      .footer-cta .footer-cta-content p {
        font-size: 1.2vw;
        line-height: 1;
        padding-left: 2.3vw; }
      .footer-cta .footer-cta-content.number {
        border: none;
        margin: 0 8px; }
        .footer-cta .footer-cta-content.number:before {
          margin: 0;
          font-size: 1.4vw; }
        .footer-cta .footer-cta-content.number span {
          border: none;
          margin-bottom: 0;
          padding-bottom: 0;
          padding: 4px 0 0 0; }
          .footer-cta .footer-cta-content.number span a {
            color: #fff; }
        .footer-cta .footer-cta-content.number p {
          text-align: left;
          padding-left: 25px; }
        .footer-cta .footer-cta-content.number div span a {
          font-size: 1.4vw; }
        .footer-cta .footer-cta-content.number div p a {
          font-size: 1.2vw;
          margin-top: 1px;
          line-height: 1; } }
@media screen and (min-width: 1024px) {
  .footer-cta .footer-cta-content {
    padding: 5px 10px;
    min-height: 56px; }
    .footer-cta .footer-cta-content span {
      font-size: 17px; }
      .footer-cta .footer-cta-content span a {
        font-size: 17px; }
      .footer-cta .footer-cta-content span:before {
        font-size: 17px; }
    .footer-cta .footer-cta-content p {
      font-size: 13px;
      padding-left: 26px; }
    .footer-cta .footer-cta-content.number span {
      padding: 8px 0 0 0; }
      .footer-cta .footer-cta-content.number span a {
        font-size: 17px; }
    .footer-cta .footer-cta-content.number p a {
      font-size: 13px; } }
.video-container {
  position: relative;
  padding-bottom: 49%;
  padding-top: 7%;
  height: 0;
  z-index: 10; }
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; }

.modal-body .video-container iframe {
  width: 98%;
  height: 98%; }

.video-modal .modal-body {
  background: #000; }

@media screen and (min-width: 1460px) {
  .modal-body .video-container {
    padding-bottom: 44%; } }
.fa-play-circle:before {
  content: '\f111' !important;
  color: #fff; }
.fa-play-circle:after {
  content: '\f144';
  position: absolute;
  left: 0;
  color: #b0151e; }

/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*!
 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=c4433cde302db095a58a)
 * Config saved to config.json and https://gist.github.com/c4433cde302db095a58a
 */
/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
.modal-open {
  overflow: hidden; }

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0; }

.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out; }

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0); }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000; }

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0); }

.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50); }

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857143px; }

.modal-header .close {
  margin-top: -2px; }

.modal-title {
  margin: 0;
  line-height: 1.42857143; }

.modal-body {
  position: relative;
  padding: 15px; }

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5; }

.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0; }

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px; }

.modal-footer .btn-block + .btn-block {
  margin-left: 0; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto; }

  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }

  .modal-sm {
    width: 300px; } }
@media (min-width: 992px) {
  .modal-lg {
    width: 900px; } }
.hide {
  display: none !important; }

.show {
  display: block !important; }

.invisible {
  visibility: hidden; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.hidden {
  display: none !important; }

.affix {
  position: fixed; }

/* Modals */
.modal {
  z-index: 9999; }
  .modal .modal-dialog {
    margin: 100px auto; }
    .modal .modal-dialog .modal-content {
      padding: 25px 40px 30px;
      border-radius: 0;
      -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); }
      .modal .modal-dialog .modal-content .modal-header, .modal .modal-dialog .modal-content .modal-body, .modal .modal-dialog .modal-content .modal-footer {
        padding: 0;
        border: 0; }
      .modal .modal-dialog .modal-content .modal-header .close-wrapper {
        text-align: right;
        vertical-align: middle;
        color: #888; }
        .modal .modal-dialog .modal-content .modal-header .close-wrapper .close {
          margin: -20px -30px 20px 0;
          background: none;
          border: none;
          text-transform: uppercase;
          font-size: .6rem;
          cursor: pointer; }
          .modal .modal-dialog .modal-content .modal-header .close-wrapper .close span.close-icon {
            margin-left: 5px;
            font-size: 1.2rem;
            top: 0.2rem;
            position: relative; }
      .modal .modal-dialog .modal-content .modal-header .modal-title {
        font-size: 1.5rem;
        margin: 0 0 1rem; }
      .modal .modal-dialog .modal-content .modal-body p {
        color: #333;
        font-size: 0.8rem; }
      .modal .modal-dialog .modal-content .modal-footer {
        text-align: right; }
        .modal .modal-dialog .modal-content .modal-footer .modal-actions .modal-btn {
          font-size: .8rem;
          display: inline-block;
          margin-left: 10px;
          padding: 5px 30px;
          color: white;
          text-transform: uppercase;
          text-decoration: none; }
          .modal .modal-dialog .modal-content .modal-footer .modal-actions .modal-btn.yes {
            background: #becb3c; }
            .modal .modal-dialog .modal-content .modal-footer .modal-actions .modal-btn.yes:hover {
              background: #9ca72d; }
          .modal .modal-dialog .modal-content .modal-footer .modal-actions .modal-btn.no {
            background: #77b1bc; }
            .modal .modal-dialog .modal-content .modal-footer .modal-actions .modal-btn.no:hover {
              background: #559dab; }
      .modal .modal-dialog .modal-content .modal-divider {
        background: #ddd;
        display: block; }
        .modal .modal-dialog .modal-content .modal-divider .red {
          display: block;
          border: 1px solid #ac2c2d;
          width: 20%; }
  .modal.video-modal {
    background: #000; }
    .modal.video-modal .modal-dialog {
      width: 100%;
      margin: 0;
      position: absolute;
      top: 50%;
      left: 50%; }
      .modal.video-modal .modal-dialog .modal-content {
        padding: 0; }
        .modal.video-modal .modal-dialog .modal-content .modal-header {
          position: relative;
          z-index: 9999;
          padding: 0;
          min-height: 0; }
          .modal.video-modal .modal-dialog .modal-content .modal-header .close-wrapper .close {
            margin: 0;
            position: absolute;
            top: 3rem;
            right: 3rem; }
            .modal.video-modal .modal-dialog .modal-content .modal-header .close-wrapper .close span.close-icon {
              font-size: 2rem;
              color: #ccc; }
        .modal.video-modal .modal-dialog .modal-content .modal-body#modal-video-slot {
          position: relative;
          padding-bottom: 56.25%;
          /* 16:9 */
          height: 0;
          width: 100%; }
          .modal.video-modal .modal-dialog .modal-content .modal-body#modal-video-slot iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%; }
  .modal a.modal-link {
    margin-bottom: 15px;
    display: block; }

/*MODAL FEEDBACK MESSAGE*/
.modal__feedback-msg .fa {
  color: #b0151e; }

/*.modal-backdrop.video-backdrop{
  opacity: 1 !important;
}*/
.js-advanced .modal-open .site-slide {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none; }

@media (min-width: 768px) {
  .modal .modal-dialog {
    width: 400px; } }
@media (min-width: 768px) {
    .modal .modal-dialog.vox {
        width: 295px; } }
@media screen and (max-width: 767px) {
  .modal .modal-dialog {
    margin: 0; }
    .modal .modal-dialog .modal-content {
      padding: 25px 35px 30px; }
      .modal .modal-dialog .modal-content .modal-header .close-wrapper .close {
        margin: -10px -20px 20px 0;
        font-size: 1rem; }
        .modal .modal-dialog .modal-content .modal-header .close-wrapper .close span.close-icon {
          font-size: 1.5rem; }
      .modal .modal-dialog .modal-content .modal-header .modal-title {
        margin: 0 0 0.8rem; }
      .modal .modal-dialog .modal-content .modal-body p {
        font-size: 1rem; }
      .modal .modal-dialog .modal-content .modal-footer .modal-actions .modal-btn {
        margin-left: 7px;
        padding: 10px 45px; }
  .modal.video-modal .modal-dialog .modal-content .modal-header .close-wrapper .close {
    top: 1rem;
    right: 1rem; } }
.hero-block.search-s-r {
  overflow: visible; }
  .hero-block.search-s-r h1 {
    color: #fff;
    padding-bottom: 20px; }

.s-r {
  clear: both; }
  .s-r:after {
    content: '';
    display: block;
    clear: both; }

.search-results-top {
  padding: 0;
  position: relative; }
  .search-results-top .list-drop-menu {
    top: 0px;
    z-index: 900;
    left: 0;
    width: 90%; }
  .search-results-top .fa-times {
    position: absolute;
    top: 75px;
    right: 12%;
    cursor: pointer;
    font-size: 14px; }
  .search-results-top input.q {
    width: 90%;
    border: none;
    border: 2px solid #548089;
    border-radius: 4px;
    color: #548089;
    display: block;
    line-height: 18px;
    padding: 5px;
    box-sizing: border-box;
    font-size: 18px;
    margin: 0;
    outline: none;
    height: 45px;
    margin-top: 60px; }
    .search-results-top input.q::-ms-clear {
      display: none; }
  .search-results-top .btn-search {
    position: absolute;
    border: none;
    background: none;
    position: absolute;
    top: 70px;
    right: 2%;
    color: #548089; }

.search-fliter .list-drop-menu.active li.current a {
  background: none; }
.search-fliter .list-drop-menu li.current:after {
  color: #75b1bd;
  top: 16px; }
.search-fliter.side-sub-nav {
  /*.list-drop-menu li a:hover, .tabs li a:hover, .list-drop-menu.active li.current a {
    background: $veritas-dark-gray;
  }*/ }
  .search-fliter.side-sub-nav h5 {
    margin: 30px 0 0 0;
    font-weight: lighter; }
  .search-fliter.side-sub-nav a.s-r-clear {
    text-transform: uppercase;
    color: #b0151e;
    padding-left: 25px; }
    .search-fliter.side-sub-nav a.s-r-clear:before {
      content: '\f00d';
      color: #838b8f;
      margin-right: 5px;
      background: #f5f5f5;
      float: left;
      padding: 5px;
      margin-top: -6px; }
  .search-fliter.side-sub-nav .list-drop-menu {
    width: 100%;
    left: 0;
    background-color: #fff;
    border: 2px solid #75b1bd; }
  .search-fliter.side-sub-nav ul li {
    text-transform: none; }
    .search-fliter.side-sub-nav ul li a {
      position: relative;
      color: #75b1bd; }
      .search-fliter.side-sub-nav ul li a:hover {
        background: none; }
    .search-fliter.side-sub-nav ul li ul li label {
      display: block;
      margin: 0 0 5px;
      position: relative;
      cursor: pointer;
      text-transform: none;
      padding-left: 30px; }
      .search-fliter.side-sub-nav ul li ul li label input {
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0; }
      .search-fliter.side-sub-nav ul li ul li label span {
        border: 2px solid #c4c4c4;
        border-radius: 4px;
        height: 15px;
        width: 15px;
        margin: 4px 10px 0 0;
        display: inline-block;
        float: left;
        background: #fff;
        position: relative; }
      .search-fliter.side-sub-nav ul li ul li label input[type=checkbox]:checked + span {
        background: #75b1bd;
        border-color: #75b1bd; }
        .search-fliter.side-sub-nav ul li ul li label input[type=checkbox]:checked + span:after {
          content: '\f00c';
          font: normal normal normal 12px/1 FontAwesome;
          position: absolute;
          top: 0;
          left: 0;
          color: #fff; }
  .search-fliter.side-sub-nav .list-drop-menu li.sub-items.current.active ul, .search-fliter.side-sub-nav .list-drop-menu li.sub-items ul {
    padding-top: 25px; }
  .search-fliter.side-sub-nav .list-drop-menu li.sub-items > a:after, .search-fliter.side-sub-nav .list-drop-menu li.sub-items.current > a:after, .search-fliter.side-sub-nav .tabs li.sub-items > a:after, .search-fliter.side-sub-nav .tabs li.sub-items.current > a:after {
    content: '\f067';
    background: none;
    padding: 10px 20px;
    font-size: 10px;
    right: 0;
    top: 8px;
    color: #548089; }
  .search-fliter.side-sub-nav .list-drop-menu li.sub-items.active > a:after, .search-fliter.side-sub-nav .tabs li.sub-items.active > a:after {
    content: '\f068'; }

.search-results {
  padding-bottom: 30px; }
  .search-results .s-r-sort {
    display: block;
    width: 100%;
    padding: 30px 0 0 0;
    text-transform: uppercase;
    color: #838b8f;
    font-size: 14px; }
    .search-results .s-r-sort div {
      display: block;
      padding-bottom: 30px; }
    .search-results .s-r-sort .s-r-how-many {
      text-transform: none; }
      .search-results .s-r-sort .s-r-how-many span {
        color: #333; }
    .search-results .s-r-sort a {
      margin: 0 0 0 3%;
      color: #333;
      font-weight: bold;
      text-decoration: none; }
      .search-results .s-r-sort a.current {
        color: #333;
        border-bottom: 4px solid #b0151e;
        padding-bottom: 6px; }
  .search-results .hero-video-launcher, .search-results .search-media {
    width: 50%;
    max-width: 200px;
    float: right;
    margin-left: 20px;
    position: relative;
    padding-top: 15px; }
    .search-results .hero-video-launcher .fa.fa-play-circle, .search-results .search-media .fa.fa-play-circle {
      margin: 10% 40%; }
    .search-results .hero-video-launcher img, .search-results .search-media img {
      width: 100%;
      height: auto; }
  .search-results .s-r-result:nth-child(even) {
    background: #fafafa; }
  .search-results .s-r-result {
    clear: both;
    padding: 40px 30px 15px; }
    .search-results .s-r-result:after {
      content: '';
      display: block;
      clear: both; }
    .search-results .s-r-result .s-r-content h5 {
      margin: 0;
      padding: 0;
      font-weight: normal; }
      .search-results .s-r-result .s-r-content h5 a {
        color: #333;
        text-decoration: none; }
        .search-results .s-r-result .s-r-content h5 a:hover {
          text-decoration: underline; }
    .search-results .s-r-result p.s-r-url {
      color: #75b1bd;
      padding-bottom: 30px;
      border-bottom: 1px solid #c4c4c4;
      margin: 8px 0 15px;
      text-transform: uppercase;
      font-weight: bold;
      font-size: 14px;
      word-wrap: break-word; }

.s-r-pagination {
  clear: both;
  text-align: left;
  padding: 20px 0 0 0;
  color: #b0151e; }
  .s-r-pagination span {
    display: inline-block;
    padding: 0 10px; }
  .s-r-pagination a {
    color: #b0151e;
    text-decoration: none; }
    .s-r-pagination a:hover {
      text-decoration: underline; }
    .s-r-pagination a.next-prev {
      border: 1px solid #c4c4c4;
      border-radius: 2px;
      height: 26px;
      width: 26px;
      position: relative;
      display: inline-block;
      margin-bottom: -7px; }
      .s-r-pagination a.next-prev i {
        color: #75b1bd;
        position: absolute;
        top: 6px;
        left: 50%;
        font-size: 12px; }
      .s-r-pagination a.next-prev:hover i {
        color: #b0151e; }
  .s-r-pagination .s-r-count-lower {
    color: #414141;
    font-size: 12px;
    padding: 10px 0 10px 10px; }

.s-r-pagination.blog__pagination {
  text-align: center; }
  .s-r-pagination.blog__pagination a.next-prev:hover i {
    color: #75b1bd; }
  .s-r-pagination.blog__pagination span {
    padding: 0 6px; }
    .s-r-pagination.blog__pagination span.active {
      color: #999; }

.search-ad {
  background: #e1ecf7;
  padding: 40px 30px 15px;
  clear: both; }
  .search-ad h4 {
    margin: 0 0 20px 0;
    padding: 0 0 15px 0;
    border-bottom: 1px solid #c4c4c4;
    font-size: 18px; }
  .search-ad:after {
    content: '';
    display: block;
    clear: both; }

.search-results.courses .s-r-result .s-r-content h5 {
  padding-bottom: 30px;
  border-bottom: 1px solid #c4c4c4; }
  .search-results.courses .s-r-result .s-r-content h5 a {
    color: #75b1bd; }

@media screen and (min-width: 768px) {
  .hero-block.search-s-r h1 {
    padding-bottom: 0; }

  .search-results-top {
    padding: 25px 0 25px 26%;
    position: relative; }
    .search-results-top .list-drop-menu {
      left: 0;
      top: 25px;
      width: 25%;
      z-index: 900; }
    .search-results-top input.q {
      width: 100%;
      margin-top: 0; }
    .search-results-top .btn-search {
      top: 35%;
      right: 7px; }
    .search-results-top .fa-times {
      top: 42%;
      right: 5%; }
    .search-results-top .list-drop-menu li.current:after {
      display: block; }

  .search-results.hero-video-launcher, .search-media {
    width: 33%; }
    .search-results.hero-video-launcher .fa.fa-play-circle, .search-media .fa.fa-play-circle {
      margin: 15% 40%; }

  .search-ad h4 {
    font-size: 26px; }
  .search-ad .search-media {
    margin-top: -7%;
    border-left: 30px solid #e1ecf7;
    padding-top: 0; }

  .search-fliter.side-sub-nav .list-drop-menu {
    border: none; }
  .search-fliter.side-sub-nav ul {
    background: #fff; }
    .search-fliter.side-sub-nav ul li a {
      color: #414141;
      border-bottom: 1px solid #c4c4c4;
      border-radius: 0;
      position: relative;
      font-weight: bold; }
      .search-fliter.side-sub-nav ul li a:before {
        content: '';
        display: block;
        height: 4px;
        width: 40px;
        background: #b0151e;
        position: absolute;
        bottom: -1px;
        left: 0; }
    .search-fliter.side-sub-nav ul li ul li label {
      padding-left: 0; }
  .search-fliter.side-sub-nav .list-drop-menu li a:hover, .search-fliter.side-sub-nav .tabs li a:hover, .search-fliter.side-sub-nav .list-drop-menu.active li.current a {
    background: none; }
  .search-fliter.side-sub-nav .list-drop-menu li.sub-items.current.active ul {
    padding-top: 25px; }
  .search-fliter.side-sub-nav .list-drop-menu li.sub-items > a:after, .search-fliter.side-sub-nav .list-drop-menu li.sub-items.current > a:after, .search-fliter.side-sub-nav .tabs li.sub-items > a:after, .search-fliter.side-sub-nav .tabs li.sub-items.current > a:after {
    content: '\f067';
    background: #f5f5f5;
    padding: 10px 20px;
    font-size: 10px;
    right: 0;
    top: 12px;
    color: #838b8f; }
  .search-fliter.side-sub-nav .list-drop-menu li.sub-items.active > a:after, .search-fliter.side-sub-nav .tabs li.sub-items.active > a:after {
    content: '\f068'; }
  .search-fliter.side-sub-nav .desktop-only {
    display: inline-block !important; }

  .s-r-pagination {
    width: 65.66667%;
    float: right; }

  .search-results .s-r-sort a {
    margin-left: 20px; }

  .search-fliter.side-sub-nav .list-drop-menu li a, .search-fliter.side-sub-nav .list-drop-menu li.sub-items.current a {
    font-weight: bold;
    padding-left: 0;
    color: #333; }

  .s-r-pagination.blog__pagination a.next-prev:hover i {
    color: #b0151e; } }
@media screen and (min-width: 1240px) {
  .s-r-sort .s-r-how-many {
    float: right; }
  .s-r-sort .s-r-sort-actions {
    float: left; } }
section.hero-block .promo .social-media-links li {
  margin-right: .5%; }
section.hero-block .promo .social-media-links a span {
  background-color: transparent;
  border: 2px solid #fff; }
  section.hero-block .promo .social-media-links a span i.fa-inverse {
    color: #fff; }
section.hero-block .promo .social-media-links a:hover span {
  background-color: #fff; }
  section.hero-block .promo .social-media-links a:hover span i.fa-inverse {
    color: #838b8f; }

.contact-region {
  clear: both;
  background: #f3f4f4;
  min-height: 180px; }
  .contact-region .content {
    position: relative;
    padding-top: 15px; }
  .contact-region .list-drop-menu {
    top: 40px;
    z-index: 999; }
    .contact-region .list-drop-menu li.current:after {
      display: block; }
    .contact-region .list-drop-menu:nth-child(4) {
      top: 115px;
      z-index: 998;
      background: #fff;
      border: 2px solid #75b1bd; }
      .contact-region .list-drop-menu:nth-child(4) a {
        color: #75b1bd; }
        .contact-region .list-drop-menu:nth-child(4) a:hover {
          background: #f5f5f5; }
      .contact-region .list-drop-menu:nth-child(4) li.current a {
        background: none;
        padding: 5px 20px; }
      .contact-region .list-drop-menu:nth-child(4) li.current:hover {
        background: #f5f5f5; }
      .contact-region .list-drop-menu:nth-child(4) li.current:after {
        color: #75b1bd; }
  .contact-region label {
    display: block;
    color: #838b8f; }
    .contact-region label:nth-child(3) {
      margin-top: 50px; }

.content-band.three-up.contact-us {
  padding-top: 20px;
  padding-bottom: 0; }
  .content-band.three-up.contact-us .flex-item {
    width: calc(100% + 2em);
    margin: 10px -1em 0;
    padding: 0 1em; }
    .content-band.three-up.contact-us .flex-item:nth-child(even) {
      background: #f3f4f4; }
    .content-band.three-up.contact-us .flex-item h3 {
      padding-top: 20px; }
      .content-band.three-up.contact-us .flex-item h3:before {
        display: none; }
    .content-band.three-up.contact-us .flex-item li span {
      display: block; }

@media screen and (min-width: 768px) {
  .contact-region {
    min-height: 120px;
    padding-top: 20px; }
    .contact-region .list-drop-menu {
      width: 260px; }
      .contact-region .list-drop-menu:nth-child(4) {
        top: 40px;
        left: 300px; }
    .contact-region label {
      float: left;
      width: 285px; }
      .contact-region label:nth-child(3) {
        margin-top: 0; }

  .content-band.three-up.contact-us .flex-item {
    float: left;
    clear: none;
    width: 32%;
    margin-left: 0;
    margin-right: 2%; }
    .content-band.three-up.contact-us .flex-item:nth-child(3), .content-band.three-up.contact-us .flex-item:nth-child(6), .content-band.three-up.contact-us .flex-item:nth-child(9) {
      margin-right: 0; }
    .content-band.three-up.contact-us .flex-item:nth-child(even) {
      background: none; } }
/* SOCIAL GRID SETUP */
.column {
  background-color: #fff; }
  .column > .social-box:last-child {
    border-bottom: 0; }

@media screen and (max-width: 480px) {
  .social-grid[data-columns]::before {
    content: '1 .column.size-1of1'; } }
/* TABLET */
@media screen and (min-width: 481px) {
  .collapse__content {
    display: block; } }
@media screen and (min-width: 481px) and (max-width: 1023px) {
  .social-grid[data-columns]::before {
    content: '2 .column.size-1of2'; }

  .column.size-1of2 {
    float: left;
    clear: none;
    width: 49%;
    margin-left: 0;
    margin-right: 2%; }
    .column.size-1of2:last-child {
      margin-right: 0; } }
@media screen and (min-width: 1024px) {
  .social-grid[data-columns]::before {
    content: '4.column.size-1of4'; }

  .column.size-1of4 {
    float: left;
    clear: none;
    width: 23.5%;
    margin-left: 0;
    margin-right: 2%; }
    .column.size-1of4:last-child {
      margin-right: 0; } }
.content-band-social {
  padding: 25px 0;
  background-color: #f5f5f5; }

.social-box img {
  width: 100%; }

/* ***** COLORS ***** */
.social-color--fb {
  background-color: #38599c; }

.social-color--tw {
  background-color: #5ca7dc; }

.social-color--yt {
  background-color: #df1e33; }

.social-color--instagram {
  background-color: #5180a7; }

.social-color--linkedin {
  background-color: #0579bd; }

.social-color--slideshare {
  background-color: #00a7aa; }

.social-color--blog {
  background-color: #b0151e; }

/* PRELOADER ANIMATION */
.preloader {
  width: 100%;
  height: 100%;
  min-height: 150px;
  padding-top: 50px;
  text-align: center;
  background-color: #ffffff; }
  .preloader .sk-fading-circle {
    margin: 0 auto;
    width: 40px;
    height: 40px;
    position: relative; }
  .preloader .sk-fading-circle .sk-circle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0; }
  .preloader .sk-fading-circle .sk-circle:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #0e2d3f;
    border-radius: 100%;
    -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
    animation: sk-circleFadeDelay 1.2s infinite ease-in-out both; }
  .preloader .sk-fading-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg); }
  .preloader .sk-fading-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg); }
  .preloader .sk-fading-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg); }
  .preloader .sk-fading-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg); }
  .preloader .sk-fading-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg); }
  .preloader .sk-fading-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg); }
  .preloader .sk-fading-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg); }
  .preloader .sk-fading-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg); }
  .preloader .sk-fading-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg); }
  .preloader .sk-fading-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg); }
  .preloader .sk-fading-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg); }
  .preloader .sk-fading-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s; }
  .preloader .sk-fading-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
    animation-delay: -1s; }
  .preloader .sk-fading-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s; }
  .preloader .sk-fading-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s; }
  .preloader .sk-fading-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s; }
  .preloader .sk-fading-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s; }
  .preloader .sk-fading-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s; }
  .preloader .sk-fading-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s; }
  .preloader .sk-fading-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s; }
  .preloader .sk-fading-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s; }
  .preloader .sk-fading-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s; }
@-webkit-keyframes sk-circleFadeDelay {
  0%, 39%, 100% {
    opacity: 0; }
  40% {
    opacity: 1; } }
@keyframes sk-circleFadeDelay {
  0%, 39%, 100% {
    opacity: 0; }
  40% {
    opacity: 1; } }
/* ***** SOCIAL BOXES ***** */
.social-box {
  border-bottom: 20px solid #f5f5f5;
  position: relative; }
  .social-box .social-box__head {
    background-color: #0e2d3f; }
    .social-box .social-box__head .social-box__head__inner {
      width: 100%;
      padding: 10px;
      display: table; }
    .social-box .social-box__head .social-box__icon-container-inner {
      width: 25px;
      height: 25px;
      text-align: center;
      color: #fff;
      /* ***** ICONS ***** */ }
      .social-box .social-box__head .social-box__icon-container-inner .fa-youtube-play {
        font-size: 16px; }
      .social-box .social-box__head .social-box__icon-container-inner .feed-icon {
        display: none; }
      .social-box .social-box__head .social-box__icon-container-inner.social-color--fb .feed-icon {
        padding-top: 3px; }
      .social-box .social-box__head .social-box__icon-container-inner.social-color--tw .feed-icon, .social-box .social-box__head .social-box__icon-container-inner.social-color--instagram .feed-icon {
        padding-top: 2px; }
    .social-box .social-box__head h2 {
      width: auto;
      display: table-cell;
      margin-top: 0;
      margin-bottom: 0;
      border-bottom: 0;
      padding-bottom: 0;
      font-size: 18px;
      color: #fff;
      line-height: normal;
      vertical-align: middle; }
      .social-box .social-box__head h2:after {
        background-color: transparent;
        height: 0;
        width: 0; }
    .social-box .social-box__head .social-box__panel-cta {
      width: 33%;
      padding-right: 0px;
      display: table-cell;
      font-size: 11px;
      line-height: normal;
      color: #fff;
      vertical-align: middle;
      text-align: right;
      position: relative; }
      .social-box .social-box__head .social-box__panel-cta .panel-link {
        width: 100%;
        color: #fff;
        display: table; }
        .social-box .social-box__head .social-box__panel-cta .panel-link:hover, .social-box .social-box__head .social-box__panel-cta .panel-link.active {
          color: #c4c4c4;
          text-decoration: none;
          cursor: pointer; }
        .social-box .social-box__head .social-box__panel-cta .panel-link .panel-link__text,
        .social-box .social-box__head .social-box__panel-cta .panel-link .fa {
          display: table-cell; }
        .social-box .social-box__head .social-box__panel-cta .panel-link .panel-link__text {
          padding-right: 5px;
          font-size: 12px; }
        .social-box .social-box__head .social-box__panel-cta .panel-link .fa {
          width: 15px;
          height: 15px;
          font-size: 15px;
          display: table-cell;
          vertical-align: middle; }
      .social-box .social-box__head .social-box__panel-cta .fa {
        margin-left: 4px;
        font-size: 11px; }
      .social-box .social-box__head .social-box__panel-cta .social-box__panel-text {
        display: inline-block; }

.collapse-btn {
  width: 25px;
  height: 25px;
  display: block;
  position: relative;
  background-color: #b0151e; }
  .collapse-btn::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    margin-top: -8px;
    width: 2px;
    height: 16px;
    background-color: #FFFFFF;
    -webkit-transition: 0.2s ease-out;
    -moz-transition: 0.2s ease-out;
    -o-transition: 0.2s ease-out;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg); }
  .collapse-btn::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 5px;
    margin-top: -1px;
    width: 16px;
    height: 2px;
    background-color: #FFFFFF; }
  .collapse-btn.collapsed::before {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%; }

.social-box__icon-container {
  width: 25px;
  padding: 2px 8px 2px 0;
  display: table-cell;
  vertical-align: middle; }
  .social-box__icon-container > .fa, .social-box__icon-container b {
    color: #fff; }

.panel-dropdown {
  width: 100%;
  margin-top: 1px;
  padding: 15px;
  background-color: #0e2d3f;
  position: absolute;
  z-index: 9;
  display: none; }
  .panel-dropdown.open {
    margin-top: 1px;
    margin-bottom: 0;
    display: block; }
  .panel-dropdown > h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #fff;
    background-color: #0e2d3f; }

.dropdown-menu {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
  background-color: #0e2d3f; }
  .dropdown-menu:last-of-type {
    margin-bottom: 0; }
  .dropdown-menu li {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.5em;
    color: #76b0bd; }
    .dropdown-menu li > a {
      line-height: 1.2em;
      display: inline-block; }

.collapse {
  display: none; }
  .collapse.in {
    display: block; }

.collapse__content {
  width: 100%;
  background-color: #fff;
  overflow: auto;
  position: relative; }
  .collapse__content.collapse--padded {
    padding: 10px; }
    .collapse__content.collapse--padded .social-post {
      padding-bottom: 15px; }
  .collapse__content .social-post {
    margin-bottom: 15px;
    border-bottom: 1px solid #e3e9ed; }
    .collapse__content .social-post:last-of-type {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: 0; }
    .collapse__content .social-post h3 {
      margin-top: 18px;
      margin-bottom: 10px;
      font-size: 18px;
      line-height: 24px; }
    .collapse__content .social-post p {
      margin-bottom: 0;
      font-size: 12px;
      line-height: 18px; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  -o-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease; }

.social-post .linkedin h4 {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 12px; }
.social-post .linkedin-post {
  width: 100%;
  display: table; }
  .social-post .linkedin-post .linkedin-post__profile-pic,
  .social-post .linkedin-post .linkedin-post__content {
    display: table-cell;
    vertical-align: top; }
  .social-post .linkedin-post .linkedin-post__profile-pic img {
    max-width: 52px;
    min-width: 32px; }
  .social-post .linkedin-post .linkedin-post__content {
    padding-left: 8px; }
  .social-post .linkedin-post .linkedin-post__content p {
    margin-top: 0; }
.social-post .linkedin-post__cta {
  margin-top: 10px;
  margin-bottom: 0;
  padding-left: 0; }
  .social-post .linkedin-post__cta li {
    padding-right: 10px;
    font-size: 12px;
    color: #c1c5c9;
    display: inline-block; }
    .social-post .linkedin-post__cta li a,
    .social-post .linkedin-post__cta li > span {
      color: #c1c5c9; }
    .social-post .linkedin-post__cta li:after {
      font-family: FontAwesome;
      font-size: 3px;
      content: '\f111';
      color: #c1c5c9;
      display: inline-block;
      vertical-align: top;
      position: relative;
      left: 6px; }
    .social-post .linkedin-post__cta li:last-of-type:after {
      content: ''; }

.social-post__cite-date {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  line-height: normal; }
  .social-post__cite-date li {
    font-size: 11px;
    line-height: normal;
    display: inline-block; }
  .social-post__cite-date .social-post__cite-date__month::after {
    margin-left: 5px;
    content: '|';
    position: relative; }

/* YOUTUBE WIDGET SPECIFIC*/
.ytce-li {
  width: 100% !important;
  height: auto !important;
  font-size: inherit; }
  .ytce-li a.image {
    position: relative; }
    .ytce-li a.image:hover {
      text-decoration: none; }
      .ytce-li a.image:hover::after {
        color: #df1e33; }
    .ytce-li a.image:before {
      font: normal normal normal 14px/1 FontAwesome;
      font-size: 36px;
      color: #fff;
      position: absolute;
      top: 38%;
      left: 44%;
      content: '\f111'; }
    .ytce-li a.image:after {
      font: normal normal normal 14px/1 FontAwesome;
      font-size: 50px;
      color: #888;
      position: absolute;
      top: 35%;
      left: 40%;
      content: '\f16a'; }
  .ytce-li .image {
    width: auto !important;
    height: auto !important; }
  .ytce-li img {
    width: 100% !important;
    height: auto !important; }
  .ytce-li .title {
    font-size: 18px;
    font-family: arial, sans-serif !important;
    font-weight: normal;
    line-height: 24px;
    color: #75b1bd !important; }

/* INSTAGRAM WIDGET SPECIFIC */
.profile-pic {
  width: 40px !important; }

.instae {
  padding: 10px; }

.div-img {
  width: 100% !important;
  height: 100% !important;
  padding-top: 100% !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  position: relative; }
  .div-img > .div-img {
    background-image: url(/apps/veritas/components/content/socialdashboard/instagramFeed/ico-play.png) !important;
    padding-top: 0 !important;
    position: absolute;
    top: 0;
    left: 0;
    background-size: 50% !important;
    background-position: 50% !important; }

.div-div-img {
  width: 100% !important;
  height: auto !important;
  padding: 4px;
  border: 1px solid #ccc;
  margin-bottom: 10px !important;
  float: none !important; }
  .div-div-img .div-icons {
    color: #848a8f;
    font-weight: normal; }
    .div-div-img .div-icons img {
      width: auto; }

.div-img-wrap {
  width: 100% !important;
  height: auto !important; }

.social-disclaimer {
  font-size: 11px; }

.modal-zindex {
  z-index: 100001; }

/* SOCIAL STUDIO */
.aggregate-entry .aggregate-entry__user a {
  padding-left: 32px;
  font-size: 12px;
  display: block;
  position: relative; }
  .aggregate-entry .aggregate-entry__user a:hover {
    text-decoration: none; }
  .aggregate-entry .aggregate-entry__user a .aggregate-entry__username {
    padding-top: 3px;
    display: block; }
.aggregate-entry .aggregate-entry__text-content {
  margin-bottom: 12px !important; }
.aggregate-entry img {
  margin-top: 15px; }
.aggregate-entry .fa {
  font-size: 32px;
  position: absolute;
  top: 0;
  left: 0; }
  .aggregate-entry .fa.fa-facebook-square {
    color: #38599c; }
  .aggregate-entry .fa.fa-twitter-square {
    color: #5ca7dc; }
  .aggregate-entry .fa.fa-instagram {
    color: #5180a7; }
  .aggregate-entry .fa.fa-pinterest-square {
    color: #bd081c; }
  .aggregate-entry .fa.fa-linkedin-square {
    color: #0579bd; }

@media screen and (max-width: 480px) {
  /* FACEBOOK widget inside accordion fix to get the widget to fill the width*/
  .fb-page {
    display: block !important; } }
@media screen and (min-width: 481px) {
  .social-box {
    border-bottom-width: 40px; }
    .social-box .social-box__head .social-box__icon-container-inner .feed-icon {
      display: block; }

  .collapse-btn {
    display: none; }

  .collapse__content,
  .collapse__content.collapse {
    /*this specific more specific selector overrides ytchannelembed collpase style*/
    display: block; } }
@media screen and (min-width: 768px) {
  .collapse__content .social-post h3 {
    font-size: 16px;
    line-height: 22px; }

  div.ytce-gallery .title {
    font-size: 16px;
    line-height: 22px; }

  .panel-dropdown {
    position: absolute;
    z-index: 9992; } }
.clearfix {
  *zoom: 1; }
  .clearfix:before, .clearfix:after {
    content: '';
    display: table; }
  .clearfix:after {
    clear: both; }

/****** BLOG ******/
.blog-header__profile-pic {
  width: auto;
  border-radius: 100%;
  object-fit: cover; }

.feature {
  background-color: #0e2d3f; }
  .feature .flex-item.blog-entry h3 a {
    color: #fff; }
  .feature .flex-item.blog-entry a.inline-cta {
    color: #fff; }
  .feature .flex-item.blog-entry p,
  .feature .flex-item.blog-entry .blog-reference {
    color: #e2edf7; }

.blog-reference {
  margin-top: 0;
  padding-left: 0; }
  .blog-reference li {
    display: inline-block; }
    .blog-reference li:first-child:after {
      margin-right: 5px;
      margin-left: 10px;
      content: '|'; }

.feature__main .blog-entry a {
  height: auto; }
.feature__main .blog-entry a > img,
.feature__main .blog-entry a > img:hover {
  max-width: 100%;
  width: 100%;
  top: auto;
  left: auto; }

.flex-item.blog-entry {
  margin-bottom: 35px; }
  .flex-item.blog-entry h3 {
    font-size: 22px; }
    .flex-item.blog-entry h3 a {
      color: #76b0bd; }
  .flex-item.blog-entry h3:before {
    background-color: #b1181e; }
  .flex-item.blog-entry p {
    color: #333; }

.recent-entry {
  margin-bottom: 40px; }
  .recent-entry .social-post__cite-date {
    margin-top: 10px; }
    .recent-entry .social-post__cite-date > li {
      color: #777; }

/* BLOG ARTICLE */
.blog-article .sidebar {
  display: none; }
.blog-article .blog-article__header {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #c4c4c4;
  position: relative;
  display: table; }
  .blog-article .blog-article__header:before {
    height: 4px;
    width: 50px;
    background-color: #b0151e;
    bottom: -1px;
    content: '';
    left: 0;
    position: absolute; }
  .blog-article .blog-article__header h2,
  .blog-article .blog-article__header img {
    display: table-cell; }
    .blog-article .blog-article__header h2 a,
    .blog-article .blog-article__header img a {
      padding-top: 10px;
      display: inline-block; }
  .blog-article .blog-article__header h2 {
    padding-left: 20px;
    border-bottom: 0;
    vertical-align: middle; }
  .blog-article .blog-article__header h2:after {
    height: 0;
    background-color: transparent;
    bottom: 0;
    left: auto;
    position: relative;
    width: 0; }
  .blog-article .blog-article__header img {
    width: 100px;
    height: 100px; }
.blog-article .optional-header__name,
.blog-article .optional-header__title {
  margin-bottom: 8px;
  font-size: 20px;
  display: block; }
.blog-article .blog-article__content h4 {
  margin-top: 20px;
  margin-bottom: 25px;
  font-size: 30px; }
.blog-article .blog-article__content .blog-entry-timestamp {
  margin-top: 0;
  line-height: 1em;
  font-size: 12px; }
.blog-article .blog-article__content p {
  text-align: left; }
.blog-article .blog-article__content img {
  max-width: 100%; }
.blog-article .blog-utilities {
  margin-top: 40px;
  margin-bottom: 40px;
  display: table;
  width: 100%; }
  .blog-article .blog-utilities #blogShare .modal-title {
    text-align: left; }
  .blog-article .blog-utilities .blog-utilities__like,
  .blog-article .blog-utilities .blog-utilities__actions {
    display: table-cell;
    vertical-align: middle; }
  .blog-article .blog-utilities .blog-utilities__like span {
    font-size: 12px; }
  .blog-article .blog-utilities .blog-utilities__like a {
    height: 30px;
    width: 30px;
    padding-top: 2px;
    text-align: center;
    background-color: #76b0bd;
    display: inline-block; }
  .blog-article .blog-utilities .blog-utilities__like .fa {
    font-size: 14px;
    color: #fff; }
  .blog-article .blog-utilities .blog-utilities__actions {
    text-align: right; }
    .blog-article .blog-utilities .blog-utilities__actions a {
      font-size: 12px;
      text-align: center; }
    .blog-article .blog-utilities .blog-utilities__actions .cta.blog-share {
      margin-right: 3px;
      padding: 1px 10px;
      border-color: #b0151e; }
    .blog-article .blog-utilities .blog-utilities__actions .cta-blue-button.blog-comment {
      padding: 3px 15px; }
    .blog-article .blog-utilities .blog-utilities__actions .blog-share-links li > a {
      font-size: 16px; }
.blog-article .social-post__cite-date li:before {
  content: '' !important; }
.blog-article .tags .tag {
  margin-right: 10px;
  margin-bottom: 15px;
  padding: 5px 10%;
  border: none;
  border-radius: 15px;
  font-size: 16px;
  background-color: #bdcc2a;
  color: #fff;
  display: inline-block; }
  .blog-article .tags .tag:hover {
    text-decoration: none; }

/* COMMENTS SECTION*/
.blog-comments {
  padding-left: 30px;
  border-top: 1px solid #ccc; }

.blog-comments p,
.blog-comments p:last-child {
  text-align: left; }

.comment-entry {
  margin-right: -1em;
  margin-left: -1em;
  padding: 1em;
  border-bottom: 1px solid #c4c4c4; }
  .comment-entry:last-child {
    border-bottom: none; }
  .comment-entry:last-of-type {
    margin-bottom: 0; }
  .comment-entry .comment-entry__header {
    position: relative; }
    .comment-entry .comment-entry__header .comment-user-actions {
      position: absolute;
      top: 8px;
      right: 0;
      z-index: 995; }
      .comment-entry .comment-entry__header .comment-user-actions:hover {
        text-decoration: none;
        cursor: pointer; }
    .comment-entry .comment-entry__header .dropdown-menu {
      min-width: 200px;
      margin-bottom: 0;
      border: 1px solid #ccc;
      box-shadow: 3px 4px 16px #999;
      background-color: #fff;
      position: absolute;
      top: 45px;
      right: 0;
      z-index: 996;
      display: none; }
      .comment-entry .comment-entry__header .dropdown-menu.active {
        display: block; }
      .comment-entry .comment-entry__header .dropdown-menu li {
        margin: 0;
        padding: 10px 15px; }
    .comment-entry .comment-entry__header .open > .dropdown-menu {
      display: block; }
    .comment-entry .comment-entry__header .comment-user {
      padding-right: 50px; }
    .comment-entry .comment-entry__header .comment-timestamp p {
      margin-bottom: 0;
      font-size: 12px; }
  .comment-entry .blog-article__header {
    padding: 0;
    border-bottom-width: 0; }
    .comment-entry .blog-article__header:before {
      background: none;
      position: relative;
      height: 0; }
    .comment-entry .blog-article__header .blog-header__profile-pic {
      width: 70px;
      height: 70px; }
    .comment-entry .blog-article__header h2 {
      padding-top: 5px;
      padding-left: 10px;
      font-size: 16px; }
      .comment-entry .blog-article__header h2 .optional-header__name,
      .comment-entry .blog-article__header h2 .optional-header__title {
        font-size: 16px;
        line-height: 22px; }

.comment-user-actions .fa-circle {
  font-size: 8px;
  color: #b7cfdc; }

.comment-utilities {
  width: 100%;
  display: table; }
  .comment-utilities .comment-kudos,
  .comment-utilities .comment-actions {
    display: table-cell; }

.comment-kudos span {
  font-size: 12px; }

.comment-actions {
  text-align: right; }
  .comment-actions ul {
    margin: 0;
    padding: 0; }
    .comment-actions ul li {
      display: inline-block; }
  .comment-actions .inline-cta {
    font-size: 12px; }
  .comment-actions .comment-share,
  .comment-actions .comment-reply {
    margin-right: 20px;
    font-weight: normal;
    color: #838b8f; }
    .comment-actions .comment-share:after,
    .comment-actions .comment-reply:after {
      color: #838b8f; }

.comment-like-btn {
  height: 30px;
  width: 30px;
  padding-top: 2px;
  background-color: #75b1bd;
  color: #fff;
  display: inline-block;
  text-align: center; }
  .comment-like-btn .fa {
    font-size: 14px; }

/* BLOG LIST */
.blog-list-entry {
  padding-bottom: 20px;
  padding-left: 60px;
  position: relative; }
  .blog-list-entry h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px; }
  .blog-list-entry .blog-header__profile-pic {
    width: 45px;
    height: 45px;
    position: absolute;
    top: 0;
    left: 0; }
  .blog-list-entry .view-count {
    margin: 0;
    font-size: 14px;
    display: inline-block;
    text-align: center; }
  .blog-list-entry .citation-inline {
    margin-bottom: .25em; }

.citation-inline {
  margin: 0 0 1em 0;
  padding: 0;
  line-height: 1em; }
  .citation-inline li {
    font-size: 14px;
    line-height: 1.25em;
    list-style-type: none; }

.blog-about > h4 {
  margin-top: 2em; }
.blog-about .inline-cta {
  color: #838b8f; }

.blog-share-links {
  padding-top: 15px; }
  .blog-share-links ul {
    width: 100%;
    display: table; }
    .blog-share-links ul > li {
      text-align: center;
      display: table-cell !important; }
      .blog-share-links ul > li span[data-pin-log="button_pinit"],
      .blog-share-links ul > li span[data-pin-href="https://www.pinterest.com/pin/create/button/"] {
        padding: 12px 15px;
        font: normal normal normal 14px/1 FontAwesome;
        width: auto;
        height: auto;
        box-shadow: none;
        border-radius: 0;
        background: none;
        font-size: 18px;
        text-rendering: auto;
        transform: translate(0, 0);
        transition: color .5s ease, background-color .5s ease; }
        .blog-share-links ul > li span[data-pin-log="button_pinit"]:hover,
        .blog-share-links ul > li span[data-pin-href="https://www.pinterest.com/pin/create/button/"]:hover {
          background-color: #c4c4c4;
          color: #fff;
          cursor: pointer;
          outline: none;
          transition: color .5s ease, background-color .5s ease; }
        .blog-share-links ul > li span[data-pin-log="button_pinit"]::before,
        .blog-share-links ul > li span[data-pin-href="https://www.pinterest.com/pin/create/button/"]::before {
          content: '\f231'; }
  .blog-share-links a:hover .fa {
    color: #fff; }
  .blog-share-links a:hover span {
    background-color: #c4c4c4; }
  .blog-share-links .fa {
    color: #838b8f; }

.comment-entry--blank {
  margin-top: -1px;
  margin-bottom: 1em; }
  .comment-entry--blank > .comment-entry {
    background-color: #f5f5f5;
    position: relative; }
  .comment-entry--blank textarea {
    width: 100%;
    margin-top: 20px;
    padding: 15px 10px;
    border: 2px solid #c4c4c4;
    height: 60px;
    resize: none; }
  .comment-entry--blank form {
    text-align: right; }
  .comment-entry--blank .preloader {
    padding-top: 70px;
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 0;
    left: 0; }
    .comment-entry--blank .preloader .sk-fading-circle {
      height: 100px;
      width: 100px; }

.modal-preloaded .modal-content > .preloader {
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 0;
  left: 0; }
  .modal-preloaded .modal-content > .preloader > .sk-fading-circle {
    height: 70px;
    width: 70px;
    top: 40%; }

@media screen and (max-width: 767px) {
  .blog-comments {
    margin-right: -1em;
    margin-left: -1em;
    padding-right: 1em;
    padding-left: 1em; } }
@media screen and (min-width: 768px) {
  .feature__main {
    float: left;
    clear: none;
    width: 65.66667%;
    margin-left: 0;
    margin-right: 3%; }
    .feature__main:last-child {
      margin-right: 0; }

  .feature__sub {
    float: left;
    clear: none;
    width: 31.33333%;
    margin-left: 0;
    margin-right: 3%; }
    .feature__sub:last-child {
      margin-right: 0; }

  .blog-article__body {
    float: left;
    clear: none;
    width: 65.66667%;
    margin-left: 0;
    margin-right: 5%; }
    .blog-article__body h3 {
      margin: 1em 0 1.4em 0; }

  .blog-article .sidebar {
    display: block;
    float: left;
    clear: none;
    width: 29.33333%;
    margin-left: 0;
    margin-right: 3%; }
    .blog-article .sidebar:last-child {
      margin-right: 0; }
    .blog-article .sidebar > .recent-articles {
      padding-top: 120px; }
    .blog-article .sidebar > div {
      margin-bottom: 100px; }
  .blog-article .blog-article__header:before {
    width: 80px;
    height: 4px; }
  .blog-article .blog-article__header img {
    max-width: 120px; }
  .blog-article .blog-utilities .blog-utilities__actions .cta.blog-share,
  .blog-article .blog-utilities .blog-utilities__actions .cta-blue-button.blog-comment {
    min-width: 157px;
    font-size: 18px; }
  .blog-article .blog-utilities .blog-utilities__actions .cta.blog-share {
    margin-right: 15px; }
  .blog-article .blog-utilities .blog-utilities__like a {
    height: auto;
    width: auto;
    padding: 10px 13px; }
    .blog-article .blog-utilities .blog-utilities__like a .fa {
      font-size: 20px; }
  .blog-article .blog-utilities .blog-utilities__actions .cta.blog-share {
    padding-top: 8px;
    padding-bottom: 8px; }
  .blog-article .blog-utilities .blog-utilities__actions .cta-blue-button.blog-comment {
    padding-top: 10px;
    padding-bottom: 10px; }

  /* COMMENTS SECTION*/
  .comment-entry {
    margin-right: 0;
    margin-left: 0;
    padding-bottom: 40px; }
    .comment-entry .comment-entry__header {
      padding-right: 0; }

  /* BLOG LIST */
  .blog-list-entry {
    margin-bottom: 15px;
    padding-bottom: 40px;
    padding-left: 120px; }
    .blog-list-entry .blog-header__profile-pic {
      width: 100px;
      height: 100px; }
    .blog-list-entry h4 {
      margin-top: 14px;
      font-size: 24px; }
    .blog-list-entry .entry-left {
      float: left;
      clear: none;
      width: 75%;
      margin-left: 0;
      margin-right: 0; }
      .blog-list-entry .entry-left:last-child {
        margin-right: 0; }
    .blog-list-entry .entry-right {
      float: left;
      clear: none;
      width: 25%;
      margin-left: 0;
      margin-right: 0;
      text-align: right; }
      .blog-list-entry .entry-right:last-child {
        margin-right: 0; }
    .blog-list-entry .view-count {
      margin: 1em 0; }
      .blog-list-entry .view-count span {
        display: block; }

  .citation-inline li {
    display: inline-block; }
    .citation-inline li:after {
      margin-right: 5px;
      margin-left: 10px;
      content: '|'; }
    .citation-inline li:last-child:after {
      content: ''; }

  .author-entry {
    margin-bottom: 2em;
    padding-left: 60px;
    position: relative; }
    .author-entry .blog-header__profile-pic {
      max-width: 45px;
      height: 45px;
      position: absolute;
      top: 0;
      left: 0; }
    .author-entry h5 {
      margin: 0;
      font-size: 16px;
      font-weight: normal;
      color: #848a8f; }
    .author-entry p {
      margin: 0; } }
@media screen and (min-width: 996px) {
  .comment-entry .comment-user,
  .comment-entry .comment-timestamp {
    float: left;
    clear: none;
    width: 50%;
    margin-left: 0;
    margin-right: 0; }
    .comment-entry .comment-user:last-child,
    .comment-entry .comment-timestamp:last-child {
      margin-right: 0; }
  .comment-entry .comment-timestamp p {
    text-align: right; } }
.js-menu .logo-container .partner--veritas {
  border-right: 0; }
.js-menu .logo-container .partner--third-party {
  visibility: hidden; }

.partner-item:nth-child(even) {
  background-color: #ccc; }

.partner-item__details {
  *zoom: 1; }
  .partner-item__details:before, .partner-item__details:after {
    content: '';
    display: table; }
  .partner-item__details:after {
    clear: both; }
  .partner-item__details h2 {
    border-bottom: 0; }
    .partner-item__details h2::after {
      height: 0; }
  .partner-item__details img {
    float: left; }

.login > .partner-profile {
  color: #fff; }
.login .btn-wrap {
  margin: 0;
  padding: 0;
  border-left: 0;
  list-style-type: none; }
  .login .btn-wrap li {
    margin-bottom: 20px; }
    .login .btn-wrap li a {
      height: 35px;
      text-align: center;
      display: block; }
      .login .btn-wrap li a:hover {
        text-decoration: none; }
    .login .btn-wrap li .subnav-btn.settings {
      background-color: #b0151e; }
      .login .btn-wrap li .subnav-btn.settings > img {
        width: 13px;
        margin-top: 5px;
        margin-left: 3px;
        vertical-align: top; }
    .login .btn-wrap li .subnav-btn.logout {
      background-color: #b0151e; }
.login .subnav-btn {
  width: 100%;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: bold;
  border: none;
  color: #fff; }
  .login .subnav-btn > .button-text {
    margin-right: 5px; }

.lnk-download--file .fa {
  margin-right: 6px;
  font-size: 32px;
  color: #363b3e;
  vertical-align: middle; }
.lnk-download--file .lnk-download__size {
  margin-left: 6px;
  display: inline-block; }

@media screen and (max-width: 767px) {
  .login {
    margin-right: -1em;
    margin-left: -1em;
    padding: 0 1em; } }
@media screen and (min-width: 1000px) {
  .login {
    position: absolute;
    right: 1em;
    /* reset */ }
    .login .btn-wrap li {
      max-width: none;
      margin-right: 10px;
      margin-bottom: 0;
      padding: 26px 0px;
      border-right: 0; }
      .login .btn-wrap li:last-of-type {
        margin-right: 0; }
      .login .btn-wrap li a {
        width: auto;
        height: auto; }
      .login .btn-wrap li .subnav-btn.settings > img {
        margin-top: 3px; }
    .login .subnav-btn.logout {
      background-color: #b0151e; }
    .login .subnav-btn {
      font-weight: normal; } }
.generic-carousel .slide-content,
.generic-carousel--two-slides .slide-content {
  /* if flex items exist in carousel */ }
  .generic-carousel .slide-content .flex-item,
  .generic-carousel--two-slides .slide-content .flex-item {
    margin-bottom: 50px;
    padding: 0; }
.generic-carousel .flex-item .media a,
.generic-carousel--two-slides .flex-item .media a {
  height: auto; }
  .generic-carousel .flex-item .media a:hover img,
  .generic-carousel--two-slides .flex-item .media a:hover img {
    width: 100%;
    max-width: 100%;
    left: 0; }

@media screen and (min-width: 700px) {
  .generic-carousel .slide-content .flex-item,
  .generic-carousel--two-slides .slide-content .flex-item {
    padding-right: 3%;
    padding-left: 3%; } }
.collapse-btn.accordion-entry {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  padding: 10px 10px 10px 45px;
  background-color: #f5f5f5;
  display: inline-block; }
  .collapse-btn.accordion-entry::before, .collapse-btn.accordion-entry::after {
    background-color: #333;
    top: 22px; }
  .collapse-btn.accordion-entry::before {
    left: 20px; }
  .collapse-btn.accordion-entry::after {
    left: 13px; }
  .collapse-btn.accordion-entry.collapsed::before {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); }
  .collapse-btn.accordion-entry h4 {
    margin: 0;
    font-size: 16px;
    display: inline-block; }

.module-entry {
  padding: 30px 20px 10px 20px; }
  .module-entry:first-of-type {
    padding-top: 0; }
  .module-entry:nth-child(even) {
    background-color: #f5f5f5; }
  .module-entry h4 {
    display: inline; }
    .module-entry h4 .fa {
      margin-right: 5px; }
  .module-entry .fa-lock {
    margin-left: 5px;
    font-size: 12px;
    vertical-align: top; }
  .module-entry p {
    text-align: left !important; }

@media screen and (min-width: 1000px) {
  .module-entry {
    padding-left: 45px; } }
/* PARTNERS LOGIN */
.login-register-wrap {
  *zoom: 1; }
  .login-register-wrap:before, .login-register-wrap:after {
    content: '';
    display: table; }
  .login-register-wrap:after {
    clear: both; }

.campaign-form.partners-login-main,
.campaign-form.partners-login-reset {
  margin-top: 50px;
  padding-right: 1em;
  padding-left: 1em;
  position: relative;
  top: auto;
  right: auto;
  width: auto;
  z-index: auto; }
  .campaign-form.partners-login-main table tr:last-of-type td,
  .campaign-form.partners-login-reset table tr:last-of-type td {
    text-align: right; }
  .campaign-form.partners-login-main table tr:nth-child(odd) td,
  .campaign-form.partners-login-reset table tr:nth-child(odd) td {
    background-color: transparent; }
  .campaign-form.partners-login-main table td,
  .campaign-form.partners-login-reset table td {
    padding: 0;
    display: block; }
  .campaign-form.partners-login-main .form_button_submit,
  .campaign-form.partners-login-reset .form_button_submit {
    width: auto;
    min-width: 25%;
    height: auto;
    margin-top: 50px;
    border: none;
    font-size: 14px;
    padding: 10px 15px;
    text-transform: uppercase;
    background-color: #75b1bd;
    color: #fff;
    float: right; }
    .campaign-form.partners-login-main .form_button_submit:hover,
    .campaign-form.partners-login-reset .form_button_submit:hover {
      background-color: #559dab; }

.campaign-form.partners-login-reset .section .form_rightcol input[type=submit] {
  width: auto;
  min-width: 25%;
  height: auto;
  margin-top: 50px;
  font-size: 14px;
  border: none;
  padding: 10px 15px;
  text-transform: uppercase;
  background-color: #75b1bd;
  color: #fff; }

/*hidden to make label closer to input*/
.form_leftcolmark {
  display: none; }

.input__error-msg {
  padding: 5px 10px;
  display: block; }
  .input__error-msg .fa {
    font-size: 12px; }
  .input__error-msg .fa,
  .input__error-msg label {
    color: #c73448; }
  .input__error-msg label {
    padding: 0;
    text-transform: none;
    font-weight: normal;
    display: inline-block; }

.preloaded {
  position: relative; }
  .preloaded .preloader {
    position: absolute;
    top: 0;
    left: 0;
    opacity: .8; }

.partners-login-main .preloader .sk-fading-circle {
  width: 5em;
  height: 5em;
  top: 20%; }

@media screen and (min-width: 768px) {
  .login-left,
  .login-right {
    float: left;
    clear: none;
    width: 48.5%;
    margin-left: 0;
    margin-right: 3%; }
    .login-left:last-child,
    .login-right:last-child {
      margin-right: 0; }

  .campaign-form.partners-login-main {
    padding: 30px 40px 50px; }

  .campaign-form.partners-login-reset form > h3 {
    width: 50%;
    margin: 1em auto; }
  .campaign-form.partners-login-reset .section {
    width: 50%;
    margin: 1em auto; }
  .campaign-form.partners-login-reset .form_rightcol {
    text-align: right; } }
.alert-panel {
  margin-bottom: -50px;
  padding: 1.5em;
  background-color: #75b1bd;
  display: none; }
  .alert-panel.open {
    display: block;
    transition: all 1s ease; }
  .alert-panel > h3 {
    margin-bottom: 0; }
  .alert-panel > h3, .alert-panel p, .alert-panel p > a {
    color: #fff;
    text-align: center; }
  .alert-panel > p > a {
    text-decoration: underline; }

/* BEGIN CAMPAIGN AND PREFERENCE CENTER */
.header--plain {
  height: auto !important;
  border-bottom: 2px solid #dcdedb;
  padding: 10px 0;
  position: relative !important; }

.required-annotation > b {
  color: #b0151e; }

.required-annotation,
.campaign-center > .required-annotation {
  margin-top: 16px;
    color: #8f9499;
   }

.preferences-wrap {
  background-color: #fafafa; }
  .preferences-wrap .form-section {
    margin-right: -1em;
    margin-left: -1em; }
  .preferences-wrap .form-submit-section {
    background-color: transparent; }
    .preferences-wrap .form-submit-section .legal-text {
      color: #848a8f !important; }
    .preferences-wrap .form-submit-section p {
      color: #000; }
    .preferences-wrap .form-submit-section label.check > strong {
      font-size: 16px;
      font-weight: normal; }

.campaign-center {
  position: relative; }
  .campaign-center > h2 {
    margin-bottom: 20px; }
  .campaign-center > p {
    margin: 0; }
  .campaign-center .form-heading {
    padding: 20px 1em 0 1em;
    background-color: #fafafa; }
    .campaign-center .form-heading h3 {
      margin: 0; }
    .campaign-center .form-heading p {
      margin-bottom: 0; }
    .campaign-center .form-heading p:empty {
      margin: 0 !important; }
  .campaign-center > .campaign-form {
    margin-top: 0;
    padding: 0;
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    z-index: auto; }
    .campaign-center > .campaign-form > .input-wrap {
      padding: 15px 1em 15px; }
    .campaign-center > .campaign-form input {
      height: 50px; }
    .campaign-center > .campaign-form .customSelect,
    .campaign-center > .campaign-form .customSelect > select {
      height: 50px;
      width: 100%;
      top: -2px;
      left: 0; }
    .campaign-center > .campaign-form .customSelect::before {
      top: 15px; }
    .campaign-center > .campaign-form .customSelect::after {
      height: 50px;
      width: 56px; }
    .campaign-center > .campaign-form label.check {
      padding: 35px 0 0 45px; }
      .campaign-center > .campaign-form label.check span {
        width: 30px;
        height: 30px;
        background-color: #d6dadd;
        border: 2px solid #d6dadd; }
      .campaign-center > .campaign-form label.check input[type=checkbox]:checked + span {
        background-color: #d6dadd;
        border-color: #d6dadd; }
      .campaign-center > .campaign-form label.check input[type=checkbox]:checked + span:after {
        font-size: 26px;
        color: #75b1bd; }
  .campaign-center .submit-wrap {
    background-color: #fff;
    text-align: center; }
    .campaign-center .submit-wrap p {
      text-align: left; }
    .campaign-center .submit-wrap label.check {
      padding: 35px 0 0 45px;
      text-align: left; }

.col-33 .campaign-center .form-heading {
  padding-right: 1em;
  padding-left: 1em; }
.col-33 .campaign-center .campaign-form .input-wrap {
  padding-right: 1em;
  padding-left: 1em; }

/*THANK YOU MODAL*/
.form-overlay {
  width: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  padding: 10% 45px 0;
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
  display: none; }
  .form-overlay .fa.fa-check-circle {
    font-size: 80px;
    color: #75b1bd; }
  .form-overlay.active {
    display: block; }
  .form-overlay h3 {
    margin-top: calc(1em + 8px) !important;
    margin-bottom: 15px !important; }
  .form-overlay h3, .form-overlay p {
    text-align: center; }
  .form-overlay ul, .form-overlay ol {
    list-style-position: inside; }
  .form-overlay > a {
    font-size: 16px; }

.site-btn.round {
  min-width: 25%;
  margin: 15px 0 0;
  padding: 10px 30px;
  border-radius: 20px;
  font-size: 14px;
  text-transform: uppercase; }

.checkbox-group h3 {
  margin-bottom: 0;
  padding-top: 20px;
  padding-right: 20px;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.5em;
  background-color: #ebf1f3; }
.checkbox-group .checkbox-entry {
  padding: 20px;
  border-bottom: 2px solid #d1d4d8;
  background-color: #ebf1f3; }
  .checkbox-group .checkbox-entry label strong {
    font-size: 24px;
    text-transform: capitalize;
    color: #000; }
  .checkbox-group .checkbox-entry p {
    padding-left: 45px;
    color: #000000; }
.checkbox-group div:last-of-type.checkbox-entry {
  border-bottom: 0; }

.form-submit-section {
  margin-bottom: 50px;
  padding: 15px 1em;
  background: transparent;
  text-align: left; }
  .form-submit-section p {
    color: #000; }
  .form-submit-section .legal-text {
    color: #848a8f !important; }

.legal-text > p {
  color: #848a8f !important; }

.phone-option {
  margin-top: 40px;
  color: #000; }
  .phone-option .fa-stack {
    margin-right: 10px; }
    .phone-option .fa-stack .fa-square {
      color: #000; }

.form-input-group {
  padding: 30px 1em 50px; }

.campaign-center .preloader,
.campaign-form .preloader {
  position: absolute;
  top: 0;
  z-index: 100; }
  .campaign-center .preloader .sk-fading-circle,
  .campaign-form .preloader .sk-fading-circle {
    width: 100px;
    height: 100px; }

@media screen and (min-width: 768px) {
  .page-content,
  .form-content {
    float: left;
    clear: none;
    width: 48.5%;
    margin-left: 0;
    margin-right: 3%; }
    .page-content:last-child,
    .form-content:last-child {
      margin-right: 0; }

  .page-content .video-wrapper {
    padding-top: 55px; }

  .form-top-row {
    display: table-cell !important; }

  .required-annotation.form-top-row {
    float: right; }

  .required-annotation {
    text-align: right; }

  .region-wrap,
  .salutation-wrap {
    width: 75%; }

  .campaign-center .form-heading {
    padding: 30px 40px 0; }
  .campaign-center .submit-wrap {
    margin-bottom: 50px;
    text-align: left; }
  .campaign-center > .campaign-form > .input-wrap {
    padding: 15px 40px 0; }

  .form-input-group {
    width: 50%;
    padding: 30px 40px 50px; }

  .header--plain {
    padding: 35px 0; }

  .preferences-wrap .form-section {
    margin-right: 0;
    margin-left: 0; }

  .form-submit-section {
    padding: 0 20px 20px 20px; } }
@media screen and (min-width: 1024px) {
  .campaign-center.campaign-center--full-page .input-wrap {
    width: 50%; }

  .thirds-layout .region-wrap,
  .thirds-layout .salutation-wrap {
    width: 100%; } }
/* END CAMPAIGN AND PREFERENCE CENTER */
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 9999990; }

/* Optional Grid */
@media screen and (max-width: 767px) {
  .thirds-layout .col-33 .content,
  .thirds-layout .col-66 .content {
    padding-right: 0;
    padding-left: 0; } }
@media screen and (min-width: 1000px) {
  .thirds-layout .col-33 {
    float: left;
    clear: none;
    width: 31.33333%;
    margin-left: 0;
    margin-right: 3%; }
    .thirds-layout .col-33:last-child {
      margin-right: 0; }
  .thirds-layout .col-66 {
    float: left;
    clear: none;
    width: 65.66667%;
    margin-left: 0;
    margin-right: 3%; }
    .thirds-layout .col-66:last-child {
      margin-right: 0; } }

/*# sourceMappingURL=veritas-main.css.map */