/* 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 {
  margin: 0;
  padding: 0;
  list-style: none; }

/* 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; }

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; }

/* 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: 110%; }
    .customSelect select option {
      color: #000; }
  .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; }

@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; }

.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; }
    .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; }

.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 > 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;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 14px;
      text-transform: uppercase; }
      .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: inline-block;
    max-width: 30%; }
    .logo-container a img {
      width: 100%;
      max-width: 168px;
	padding-bottom:24px; }

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

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Min-width: 480px
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width: 480px) {
  .logo-container {
    top: 7px; } }
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Min-width: 640px
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width: 640px) {
  .logo-container {
    top: 32px; } }
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Min-width: 768px
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width: 768px) {
  .logo-container {
    top: 30px; }
    .logo-container img {
      margin-left: -15px; } }
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Min-width: 1024px
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width: 1024px) {
  .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 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: 45px;
  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;}
  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: 9999; */
}
  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: 9999;
  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; }

section.support-hero .content .text h1{
        position: relative;
        z-index: 99;
}

