/* 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: #000; }

/**
 * 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; }

/* Symantec Brand Colors */
/* Font Stuff */
/* Mixins */
/* Extend-only styles */
button {
  -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; }

.supplemental ul,
.additional ul, .main-nav, .main-nav .sub-section ul, .main-nav .sub-section li, .site-selector .drop-trigger + ul {
  margin: 0;
  padding: 0;
  list-style: none; }

.unstyled-list {
  margin: 0;
  padding: 0;
  list-style: none; }

/*@include bg-grad(#FFC107, #E91E63);*/
/* Mixins */
/* Global */
html, body {
  overflow-x: hidden; }

a {
  text-decoration: none; }

.sr-only {
  display: none; }

section {
  *zoom: 1; }
  section:before, section:after {
    content: '';
    display: table; }
  section:after {
    clear: both; }

.breadcrumbs,
.content,
.site-selector {
  margin: 0 auto;
  padding-left: 1em;
  padding-right: 1em; }

@media screen and (min-width: 1024px) {
  .breadcrumbs,
  .content,
  .site-selector {
    max-width: 1280px; } }
/* Media Queries */
@media screen and (min-width: 768px) {
  .mobile-only {
    display: none !important; }

  .desktop-only {
    display: inline-block !important; } }
button {
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px; }

.social-media-links img {
  max-height: 21px;
  max-width: 21px;
  display: inline-block;
  vertical-align: middle; }

.supplemental ul,
.additional ul, .main-nav, .main-nav .sub-section ul, .main-nav .sub-section li, .site-selector .drop-trigger + ul {
  margin: 0;
  padding: 0;
  list-style: none; }

/* Lists */
.social-links-list {
  text-align: center; }
  .social-links-list li {
    display: inline-block; }

.additional ul li {
  display: inline-block;
  line-height: 1;
  border-left: 1px solid black;
  padding-left: 1em;
  margin-left: 1em; }
  .additional ul li:first-child {
    border-left: none;
    padding-left: 0;
    margin-left: 0; }
.additional ul a {
  text-decoration: none; }

/* Buttons */
button {
  background-color: #fdbb30;
  padding: 8px 12px;
  color: #000;
  font-weight: bold;
  border: none;
  margin-top: 10px;
  display: inline-block; }
  button[disabled] {
    background-color: #E7E7E7; }
  button.btn-chat-now {
    background: #fff;
    border: 3px solid #E7E7E7;
    border-radius: 0px !important;
    color: #B2B2B2 !important;
    text-align: left;
    font-weight: bold;
    line-height: 20px; }
    button.btn-chat-now i {
      color: #0084AD;
      font-size: 40px;
      float: right;
      margin: 0 10px 0 20px; }
    button.btn-chat-now:before {
      display: none !important; }

.compare-items-group button:before {
  content: "\f00c";
  color: #fff;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  margin-right: 10px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0); }

.breadcrumbs-wrapper {
  display: none; }

@media screen and (min-width: 768px) {
  /* Breadcrumbs */
  .breadcrumbs-wrapper {
    background-color: white;
    padding: 3px 0;
    border-bottom: 1px solid #E7E7E7;
    display: block; }
    .breadcrumbs-wrapper span {
      font-size: 14px;
      line-height: 1.5em; }

  .fa.fa-home {
    font-size: 22px;
    color: #E7E7E7;
    position: relative;
    top: 2px;
    margin-right: 5px; } }
.menu-link {
  position: absolute;
  top: 13px;
  right: 10px;
  display: inline-block;
  text-align: right;
  width: auto;
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  color: #000; }
  .menu-link:hover {
    text-decoration: none; }
  .menu-link .menu-icon {
    height: 20px;
    width: 25px;
    position: relative;
    margin: 0 auto 3px 8px;
    float: right; }
    .menu-link .menu-icon .center-bar, .menu-link .menu-icon:before, .menu-link .menu-icon:after {
      content: '';
      display: block;
      height: 4px;
      width: 25px;
      background-color: #fdbb30;
      position: absolute; }
    .menu-link .menu-icon .center-bar {
      top: 8px;
      transition: all 0.3s; }
    .menu-link .menu-icon:before {
      top: 0;
      transition: all 0.3s; }
    .menu-link .menu-icon:after {
      bottom: 0;
      transition: all 0.3s; }

.main-navigation {
  width: 0;
  position: absolute;
  right: 0;
  top: 48px;
  min-height: 1100px;
  transition: .3s linear;
  z-index: 9000;
  background: #fff; }

.active .menu-icon .center-bar {
  height: 0;
  top: 10px;
  transition: all 0.3s; }
.active .menu-icon:before {
  transform: rotate(45deg);
  top: 8px;
  /*background-color: #fff;*/
  transition: all 0.3s; }
.active .menu-icon:after {
  transform: rotate(-45deg);
  bottom: 8px;
  /*background-color: #fff;*/
  transition: all 0.3s; }
.active .main-navigation {
  width: 300px; }

.main-nav {
  width: 300px;
  border-bottom: 1px solid #E7E7E7;
  margin-top: 60px; }
  .main-nav li {
    padding: 0; }
    .main-nav li a {
      display: block;
      padding: 14px 15px;
      color: #000;
      position: relative;
      border-top: 1px solid #E7E7E7;
      font-size: 16px; }
      .main-nav li a.active {
        background: #fdbb30;
        border-bottom: 1px solid #E7E7E7; }
      .main-nav li a:hover {
        text-decoration: none; }
    .main-nav li .menu {
      max-height: 0px;
      overflow: hidden;
      transition: .3s linear; }
      .main-nav li .menu.active {
        max-height: 3000px;
        background: #e0e0e0; }
      .main-nav li .menu h2 {
        font-size: 12px;
        margin: 0; }
        .main-nav li .menu h2 a {
          font-size: 12px;
          padding: 14px 15px 0; }
      .main-nav li .menu a {
        border: none;
        line-height: 1.5; }
        .main-nav li .menu a:hover {
          text-decoration: none; }
    .main-nav li.nav-item > a {
      font-weight: bold; }
      .main-nav li.nav-item > a:after {
        content: "\f105";
        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);
        position: absolute;
        top: 16px;
        right: 20px; }
      .main-nav li.nav-item > a.active:after {
        content: "\f107"; }
    .main-nav li.nav-item.active > a {
      background: #fdbb30; }
    .main-nav li.nav-item.site-selector {
      background: #fdbb30;
      border-top: 1px solid #E7E7E7; }
      .main-nav li.nav-item.site-selector a {
        padding: 10px 15px 8px;
        border-top: 2px solid #717070; }
      .main-nav li.nav-item.site-selector .menu ul {
        list-style: none;
        padding: 0; }
        .main-nav li.nav-item.site-selector .menu ul li a {
          border-top: 1px solid #E7E7E7;
          padding-left: 20px; }
  .main-nav .sub-section li.group {
    font-size: 13px;
    padding: 15px 20px 0;
    margin: 0;
    font-weight: bold; }
    .main-nav .sub-section li.group a {
      padding: 0;
      font-size: inherit;
      color: inherit;
      font-weight: bold; }
  .main-nav .sub-section ul a, .main-nav .sub-section li a {
    padding: 10px 10px 10px 35px;
    font-size: 12px; }
  .main-nav .sub-section ul.bold, .main-nav .sub-section li.bold {
    padding: 14px 20px;
    font-weight: bold;
    font-size: 13px; }
    .main-nav .sub-section ul.bold a, .main-nav .sub-section li.bold a {
      margin: -14px -20px;
      border: none;
      font-weight: bold; }
  .main-nav .sub-section.hide-m, .main-nav .sub-section.hide-all {
    display: none; }

@media screen and (min-width: 1024px) {
  .menu-link {
    display: none; }

  .main-navigation {
    position: static;
    width: auto;
    min-height: 0; }

  .active .main-navigation {
    width: auto; }

  .main-nav {
    width: auto;
    max-width: auto;
    clear: both;
    border: none;
    position: static;
    margin: 15px 25px 10px 0;
    float: right; }
    .main-nav > li.nav-item {
      display: inline-block;
      float: left;
      position: relative;
      width: auto;
      padding: 0 20px;
      margin-right: 2px;
      border-bottom: 6px solid #fff; }
      .main-nav > li.nav-item > a {
        text-transform: uppercase;
        font-size: 14px;
        color: #000;
        font-weight: bold;
        padding: 14px 0px 16px;
        margin-bottom: -6px; }
        .main-nav > li.nav-item > a:hover {
          text-decoration: none; }
      .main-nav > li.nav-item .menu {
        position: absolute;
        top: 54px;
        right: -20px;
        max-width: 850px;
        min-width: 150px;
        background: #fff;
        z-index: 9999;
        padding: 0 15px;
        -webkit-box-shadow: 0px 0px 3px 0px #333303;
        -moz-box-shadow: 0px 0px 3px 0px #333303;
        box-shadow: 0px 0px 3px 0px #333303; }
        .main-nav > li.nav-item .menu h2 {
          display: none;
          font-size: 18px;
          margin: 0; }
          .main-nav > li.nav-item .menu h2 span {
            font-size: 10px;
            display: inline;
            padding: 0; }
        .main-nav > li.nav-item .menu.active {
          max-height: 0px; }
        .main-nav > li.nav-item .menu:hover, .main-nav > li.nav-item .menu:hover.active {
          max-height: 1000px; }
      .main-nav > li.nav-item.mega-4-col, .main-nav > li.nav-item.mega-3-col, .main-nav > li.nav-item.mega-2-col {
        position: static; }
        .main-nav > li.nav-item.mega-4-col .menu, .main-nav > li.nav-item.mega-3-col .menu, .main-nav > li.nav-item.mega-2-col .menu {
          right: 30px;
          top: 69px;
          padding: 0 45px; }
          .main-nav > li.nav-item.mega-4-col .menu:hover, .main-nav > li.nav-item.mega-3-col .menu:hover, .main-nav > li.nav-item.mega-2-col .menu:hover {
            padding-bottom: 15px; }
      .main-nav > li.nav-item.mega-4-col .menu section {
        -moz-column-count: 4;
        -webkit-column-count: 4;
        column-count: 4; }
        .main-nav > li.nav-item.mega-4-col .menu section .sub-section {
          min-width: 150px;
          max-width: 150px; }
      .main-nav > li.nav-item.mega-3-col .menu section {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3; }
      .main-nav > li.nav-item.mega-3-col .sub-section {
        min-width: 200px;
        max-width: 250px; }
      .main-nav > li.nav-item.mega-2-col .menu section {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2; }
        .main-nav > li.nav-item.mega-2-col .menu section .sub-section {
          min-width: 300px;
          max-width: 380px; }
      .main-nav > li.nav-item.drop .menu, .main-nav > li.nav-item.mega-1-col .menu {
        padding-bottom: 0 !important;
        right: auto;
        left: 0; }
      .main-nav > li.nav-item.site-selector {
        position: absolute;
        top: -32px;
        left: 0;
        background: none;
        border: none;
        font-weight: normal; }
        .main-nav > li.nav-item.site-selector .ss-trigger {
          display: none; }
        .main-nav > li.nav-item.site-selector .menu {
          max-height: 100px;
          position: static;
          width: auto;
          background: none;
          -webkit-box-shadow: 0px 0px 0px 0px rgba(51, 51, 3, 0);
          -moz-box-shadow: 0px 0px 0px 0px rgba(51, 51, 3, 0);
          box-shadow: 0px 0px 0px 0px rgba(51, 51, 3, 0); }
          .main-nav > li.nav-item.site-selector .menu ul li {
            float: left;
            list-style: none;
            margin-right: 20px; }
            .main-nav > li.nav-item.site-selector .menu ul li a {
              padding: 0;
              font-size: 12px; }
      .main-nav > li.nav-item .sub-section {
        display: inline-block;
        margin-bottom: 12px; }
      .main-nav > li.nav-item .sub-list {
        padding: 5px 0 0 0;
        margin: 0; }
        .main-nav > li.nav-item .sub-list li {
          line-height: 1.2;
          padding: 5px 0 5px 0; }
          .main-nav > li.nav-item .sub-list li a {
            display: inline;
            padding: 0;
            font-size: 12px;
            border-bottom: 2px solid #fff;
            color: #000;
            line-height: 1; }
            .main-nav > li.nav-item .sub-list li a:hover {
              text-decoration: none;
              border-color: #fdbb30; }
          .main-nav > li.nav-item .sub-list li.bold {
            border: none;
            font-size: 12px;
            padding: 5px 0 5px 0;
            line-height: 1.5; }
            .main-nav > li.nav-item .sub-list li.bold a {
              padding: 0;
              font-weight: bold;
              margin: 0; }
          .main-nav > li.nav-item .sub-list li.group {
            border-top: none;
            font-size: 14px;
            text-transform: uppercase;
            line-height: 1.2;
            padding: 30px 0 8px 0;
            color: #8E908F;
            font-family: arial, sans-serif; }
            .main-nav > li.nav-item .sub-list li.group a {
              border-bottom: 1px solid #fff;
              color: #8E908F;
              font-size: 14px; }
              .main-nav > li.nav-item .sub-list li.group a:hover {
                text-decoration: none;
                border-bottom: #fdbb30 solid 1px; }
        .main-nav > li.nav-item .sub-list.hide-all, .main-nav > li.nav-item .sub-list.hide-dt {
          display: none; }
        .main-nav > li.nav-item .sub-list.hide-m {
          display: inline-block !important; }
      .main-nav > li.nav-item a {
        display: inline-block;
        border: none; }
        .main-nav > li.nav-item a:after {
          display: none; }
      .main-nav > li.nav-item > a.active {
        background: none; }
      .main-nav > li.nav-item:hover, .main-nav > li.nav-item.active {
        border-bottom: 6px solid #fdbb30;
        background: none; }
        .main-nav > li.nav-item:hover > a, .main-nav > li.nav-item.active > a {
          background: none; }
      .main-nav > li.nav-item.site-selector:hover, .main-nav > li.nav-item.site-selector.active {
        border: none; }
      .main-nav > li.nav-item > a:hover + .menu {
        max-height: 1000px;
        padding-bottom: 15px; }

  #symantecheader {
    line-height: 22px; } }
/* Logo */
header .logo {
  position: absolute;
  top: 5px;
  z-index: 999; }
  header .logo img {
    max-width: 135px; }

body.campaign header .logo {
  display: inline-block;
  position: static; }

footer .logo {
  display: none; }
footer .logo img {
  max-width: 135px; }

@media screen and (min-width: 1024px) {
  header .logo {
    top: 12px; }
    header .logo 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: #717070; }
.social-media-links span {
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #717070;
  border-radius: 1px;
  -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: left;
  float: left;
  padding: 20px 0 8px; }
  footer .social-media-links li {
    margin-bottom: 12px;
    margin-right: 3px;
    font-size: 12px; }
  footer .social-media-links span {
    background-color: #8E908F;
    border-radius: 50%;
    border: none; }

@media screen and (min-width: 768px) {
  footer .social-media-links {
    text-align: left;
    float: right;
    padding: 0;
    margin-top: -5px; }
    footer .social-media-links li {
      font-size: 13px;
      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: #0084AD !important; }

.site-search {
  border-top: 1px solid #E7E7E7;
  width: 320px;
  padding: 10px 25px 10px 15px;
  position: absolute;
  top: 0;
  left: 0; }
  .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: #E7E7E7;
    border: 1px solid #E7E7E7;
    color: #343434;
    display: block;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    margin: 0;
    height: 40px; }
  .site-search .btn-search {
    background-color: #fdbb30;
    border: none;
    border-radius: 100%;
    color: #000;
    float: right;
    font-size: 18px;
    height: 34px;
    margin-left: 5px;
    margin-top: 3px;
    padding: 0 7px 6px;
    text-align: center;
    text-transform: lowercase;
    vertical-align: middle; }

@media screen and (max-width: 1023px) {
  .main-navigation .site-search {
    border-top: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); } }
@media screen and (min-width: 1024px) {
  .show-search {
    display: block;
    position: absolute;
    right: 0;
    top: 21px; }
    .show-search .fa-search {
      background-color: none;
      border-radius: 100%;
      color: #000;
      display: inline-block;
      font-size: 16px;
      height: 34px;
      line-height: 32px;
      padding: 0 10px 0 9px; }

  .site-search {
    border-top: none;
    clear: both;
    margin: 0 -9999rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 9999rem;
    position: relative;
    top: 16px;
    width: auto;
    transition-timing-function: ease-out;
    transition: height .25s, opacity .3s, padding .1s; }
    .site-search .field-container {
      width: 70%;
      margin-bottom: 10px; }
    .site-search .btn-search {
      font-size: 20px;
      height: 48px;
      margin-left: 10px;
      margin-top: 7px;
      padding: 0 11px 7px; }
    .site-search input[type="search"] {
      font-size: 32px;
      height: auto;
      padding-left: 20px;
      padding-right: 20px; }
    .site-search.active {
      border-top: 1px solid #B2B2B2;
      max-height: 30em;
      transition-timing-function: ease-in;
      margin: 0 -9999rem;
      opacity: 1;
      padding: 1em 9999rem;
      position: relative;
      top: 16px;
      width: auto; } }
/* Autocomplete */
.autocomplete-suggestions {
  background: #fff;
  border: 1px solid #B2B2B2;
  overflow: auto; }
  .autocomplete-suggestions strong {
    color: #fdbb30;
    font-weight: normal; }

.autocomplete-suggestion {
  padding: 16px;
  overflow: hidden; }

.autocomplete-selected {
  background: #E7E7E7; }

.autocomplete-group {
  padding: 5px 10px; }
  .autocomplete-group strong {
    border-bottom: 1px solid #B2B2B2;
    display: block; }

@media screen and (min-width: 1024px) {
  .autocomplete-suggestion {
    font-size: 24px; } }
/* Alert bar */
.alert-bar {
  background: #fdbb30;
  max-height: 30em;
  font-size: 16px; }
  .alert-bar .content {
    padding-bottom: 5px;
    padding-top: 5px;
    position: relative;
    background: url(../img/icon-alert.png) no-repeat 20px 10px, #fdbb30; }
  .alert-bar a {
    color: #222;
    text-decoration: none; }
  .alert-bar p {
    color: #222;
    font-size: 14px;
    font-weight: bold;
    margin: 5px auto;
    padding: 0 20px 0 40px; }
    .alert-bar p span {
      display: none;
      color: #005D83;
      margin-left: 10px; }
      .alert-bar p span:before {
        font: normal normal normal 14px/1 FontAwesome;
        content: '\f054';
        color: #005D83;
        margin-right: 5px; }
  .alert-bar .dismiss {
    cursor: pointer;
    right: 20px;
    position: absolute;
    top: calc(50% - 10px); }
    .alert-bar .dismiss img {
      height: 15px; }
  .alert-bar.alert-dismissed {
    transition: max-height .5s ease;
    max-height: 0; }
    .alert-bar.alert-dismissed .content {
      transition: opacity .5s ease;
      opacity: 0; }

@media screen and (min-width: 768px) {
  .alert-bar p span {
    display: initial; } }
/* Header */
.user-identifier {
  padding-left: 34px;
  position: relative; }
  .user-identifier a {
    text-decoration: none; }
    .user-identifier a i {
      color: #5281ab;
      font-size: 26px;
      vertical-align: sub; }
    .user-identifier a span {
      display: none;
      font-size: 12px; }

.country-identifier {
  text-decoration: none;
  font-size: 12px;
  padding: 15px;
  position: relative;
  color: #000;
  background: #fdbb30;
  display: block;
  border-bottom: 1px solid #E7E7E7; }
  .country-identifier i {
    font-size: 26px;
    vertical-align: middle;
    display: inline-block;
    width: 39px;
    height: 19px;
    background: url(../img/icon-map.png) no-repeat 0 0; }

.customer-service-phone {
  position: relative;
  top: 3px; }
  .customer-service-phone span {
    display: none; }
  .customer-service-phone a {
    overflow: hidden;
    white-space: nowrap;
    display: inline-block; }
    .customer-service-phone a i {
      color: #5281ab;
      font-size: 26px;
      vertical-align: sub;
      margin-left: 3px; }

.report-breach {
  text-decoration: none;
  font-size: 12px;
  margin-left: 20px;
  padding-left: 50px;
  position: relative;
  top: 3px; }
  .report-breach i {
    content: "";
    background: url(../img/temp-icon-shield.png) no-repeat 0 0;
    background-size: 20px 23px;
    width: 20px;
    height: 23px;
    display: inline-block;
    position: absolute;
    left: 20px; }
  .report-breach span {
    display: none; }

.site-selector-row {
  height: 30px; }

.site-selector-row select {
  font-weight: bold; }

.site-selector {
  font-size: 14px;
  line-height: 2;
  position: relative;
  padding: 0; }
  .site-selector .drop-trigger {
    background-color: #fdbb30;
    padding: 8px 30px 8px 10px;
    width: 260px;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    position: relative; }
    .site-selector .drop-trigger i {
      padding: 0;
      position: absolute;
      top: 7px;
      right: 5px; }
    .site-selector .drop-trigger + ul {
      background-color: #5683a9;
      position: relative;
      bottom: 30px;
      z-index: 999;
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      border-radius: 0; }
      .site-selector .drop-trigger + ul li {
        color: #E7E7E7; }
        .site-selector .drop-trigger + ul li a {
          text-decoration: none;
          color: #fff; }
        .site-selector .drop-trigger + ul li:last-child, .site-selector .drop-trigger + ul li:last-child a {
          -webkit-border-radius: 0;
          -moz-border-radius: 0;
          border-radius: 0; }
  .site-selector.active .drop-trigger {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0; }
    .site-selector.active .drop-trigger + ul {
      display: block;
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      border-radius: 0; }
      .site-selector.active .drop-trigger + ul li:last-child, .site-selector.active .drop-trigger + ul li:last-child a {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0; }
      .site-selector.active .drop-trigger + ul a {
        border-top-color: #005D83;
        padding: 5px 16px 5px 10px; }
        .site-selector.active .drop-trigger + ul a:hover {
          background-color: #005D83; }

.hasCustomSelect {
  width: 220px !important; }

.utility-row {
  *zoom: 1;
  background-color: #E7E7E7;
  padding-top: 8px;
  padding-bottom: 8px; }
  .utility-row:before, .utility-row:after {
    content: '';
    display: table; }
  .utility-row:after {
    clear: both; }
  .utility-row .content {
    *zoom: 1; }
    .utility-row .content:before, .utility-row .content:after {
      content: '';
      display: table; }
    .utility-row .content:after {
      clear: both; }
  .utility-row a {
    color: #222; }

.cart-block {
  margin-right: 1em; }
  .cart-block i:before {
    color: #5281ab;
    font-size: 26px; }

.customer-service-phone,
.report-breach,
.cart-block,
.user-identifier {
  float: left; }

.user-config {
  float: right;
  position: relative;
  right: 0;
  top: 3px; }

header {
  *zoom: 1;
  padding-top: 0;
  padding-bottom: 48px;
  border-bottom: 1px solid #E7E7E7; }
  header:before, header:after {
    content: '';
    display: table; }
  header:after {
    clear: both; }
  header .content {
    position: relative; }

.navigation-search-row {
  clear: both;
  *zoom: 1; }
  .navigation-search-row:before, .navigation-search-row:after {
    content: '';
    display: table; }
  .navigation-search-row:after {
    clear: both; }

@media screen and (min-width: 1024px) {
  header {
    padding-top: 0;
    padding-bottom: 0;
    border-top: 28px solid #E7E7E7; }
    header .content {
      position: relative; }

  .site-selector-row {
    position: absolute;
    top: -30px;
    left: 0; }
    .site-selector-row .drop-trigger {
      display: none; }
      .site-selector-row .drop-trigger + ul {
        display: block;
        position: static;
        background: none;
        width: 1000px;
        padding-left: 20px; }
        .site-selector-row .drop-trigger + ul li {
          float: left;
          display: inline-block;
          margin-right: 20px;
          font-size: 12px; }
          .site-selector-row .drop-trigger + ul li a {
            color: #333; }

  .country-language-selector {
    position: absolute;
    top: -30px;
    right: 20px; }

  .country-identifier {
    padding: 4px 0 0 40px;
    background: none; }
    .country-identifier:before {
      background-size: 40px 25px;
      width: 40px;
      height: 25px;
      top: -4px; }
    .country-identifier i {
      opacity: .5; }

  .utility-row {
    padding-top: 15px;
    padding-bottom: 16px; }

  .cart-block {
    margin-right: 1em;
    position: relative;
    top: -2px; }
    .cart-block i:before {
      font-size: 28px; }
    .cart-block span {
      display: none; }

  .customer-service-phone span,
  .user-identifier a span {
    font-size: 16px; }

  .user-identifier {
    padding-top: 0; }
    .user-identifier:before {
      background-size: 24px 24px;
      height: 24px;
      top: -3px;
      width: 24px; }
    .user-identifier:after {
      top: 0; }
    .user-identifier a span {
      display: inline-block; }

  .report-breach {
    font-size: 16px; }
    .report-breach span {
      padding-top: 1px; } }
/* Slider */
.slick-slider {
  clear: both;
  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: 40%;
  display: block;
  width: 44px;
  height: 65px;
  margin-top: -10px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  background: none;
  border: none;
  outline: none;
  opacity: 0;
  z-index: 8998;
  font: normal normal normal 84px/1 FontAwesome; }
  .slick-prev:after, .slick-next:after {
    content: '\f104';
    color: #717070;
    position: absolute;
    top: 0;
    left: 0; }

.slick-next {
  right: 0; }
  .slick-next:after {
    content: '\f105'; }

.slick-prev:after {
  left: 29%; }

.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: 8998;
  margin: 0; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 5px !important;
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    background: #E7E7E7;
    -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: #fdbb30; }
    .slick-dots li button {
      font-size: 0;
      line-height: 0;
      display: block;
      width: 17px;
      height: 17px;
      padding: 5px;
      cursor: pointer;
      color: transparent;
      border: 0;
      outline: none;
      background: transparent; }
    .slick-dots li:hover {
      opacity: .7; }
    .slick-dots li:before {
      display: none; }

.light-blue .slick-dots li {
  border: 2px solid #E7E7E7;
  background: none; }
  .light-blue .slick-dots li.slick-active {
    background-color: #E7E7E7; }

.hero-carousel.carousel .slick-dots {
  bottom: 8px;
  /*text-align: right;*/
  /*padding-right:1em;*/ }
.hero-carousel.carousel .slide {
  position: relative; }

.resources-carousel .slick-prev,
.resources-carousel .slick-next {
  top: 48%;
  border-radius: 50px;
  height: 50px;
  width: 50px;
  right: -7px;
  background: #E7E7E7;
  font-size: 31px; }
.resources-carousel .slick-next:after {
  left: 22px;
  opacity: 1;
  top: 18%; }
.resources-carousel .slick-prev {
  left: -5px; }
  .resources-carousel .slick-prev:after {
    left: 35%;
    top: 18%;
    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: #005D83; }

.resources.light-blue .slick-prev:after,
.resources.light-blue .slick-next:after {
  color: #fff; }

.quote-carousel-section {
  border-bottom: 1px solid #E7E7E7; }

.quote-carousel.carousel {
  border: solid #E7E7E7;
  border-width: 2px 0;
  padding: 40px 0 60px; }
  .quote-carousel.carousel .slick-dots {
    bottom: 20px; }
  .quote-carousel.carousel .slide-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2.5em 0; }
    .quote-carousel.carousel .slide-content .media, .quote-carousel.carousel .slide-content .media-content {
      display: block;
      margin: 0 auto;
      text-align: center;
      position: relative; }
    .quote-carousel.carousel .slide-content .media-content {
      padding-top: 15px; }
    .quote-carousel.carousel .slide-content .media {
      display: block;
      margin: 40px auto 0;
      text-align: center; }
      .quote-carousel.carousel .slide-content .media img {
        margin: 0 auto;
        max-width: 100px;
        max-height: 100px; }
    .quote-carousel.carousel .slide-content h2,
    .quote-carousel.carousel .slide-content h3 {
      font-size: 28px;
      line-height: 1; }
    .quote-carousel.carousel .slide-content h2 {
      color: #000;
      border: none;
      padding-bottom: 0;
      margin: 22px 0 10px 0;
      position: absolute;
      top: -150px;
      text-align: center;
      font-size: 17px; }
      .quote-carousel.carousel .slide-content h2:after {
        content: none; }
    .quote-carousel.carousel .slide-content h3 {
      margin: 0 auto;
      font-size: 16px;
      font-style: italic;
      text-align: center; }
      .quote-carousel.carousel .slide-content h3:before {
        content: none; }
    .quote-carousel.carousel .slide-content span {
      display: inline-block; }
    .quote-carousel.carousel .slide-content a.cta-red-outline {
      display: inline-block;
      background: #0084AD;
      color: #fff;
      padding: 7px 20px; }
  .quote-carousel.carousel p {
    text-align: center;
    font-size: 14px; }
    .quote-carousel.carousel p b {
      color: inherit; }

.carousel-full-width {
  padding: 0; }
  .carousel-full-width .slide-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
    height: 100%;
    display: table;
    vertical-align: middle;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .carousel-full-width .slide-content .media-content {
      height: 100%;
      display: table-cell;
      vertical-align: middle; }
      .carousel-full-width .slide-content .media-content p:last-of-type {
        margin-bottom: 0; }
  .carousel-full-width p span {
    display: inline-block;
    margin: 0 30px; }
  .carousel-full-width .slick-dots {
    bottom: 5px; }
  .carousel-full-width .slide.athored-background-image {
    background-image: none;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover; }
  .carousel-full-width .cta, .carousel-full-width .cta-button {
    margin: 34px 10px 0 10px; }

.news-carousel.carousel {
  background: #fff;
  margin-bottom: 10px;
  padding: 20px 0 20px;
  border-bottom: 1px solid #E7E7E7; }
  .news-carousel.carousel .slide-content {
    max-width: 830px;
    margin: 0 auto;
    padding: 0 2.5em 50px;
    text-align: center; }
    .news-carousel.carousel .slide-content time {
      color: #B2B2B2;
      padding: 8px 8px 4px;
      margin: 20px auto 20px;
      display: inline-block;
      font-size: 16px; }
    .news-carousel.carousel .slide-content h3 {
      margin: 0 0 30px 0; }
    .news-carousel.carousel .slide-content p a {
      border: 2px solid #fdbb30;
      color: #000;
      text-decoration: none;
      display: inline-block;
      padding: 12px 34px;
      text-transform: uppercase;
      border-radius: 2px;
      -webkit-transition: background 1s ease;
      -moz-transition: background 1s ease;
      -o-transition: background 1s ease;
      -ms-transition: background 1s ease;
      transition: background 1s ease; }
      .news-carousel.carousel .slide-content p a:hover {
        background: #fdbb30; }
  .news-carousel.carousel .slick-dots {
    bottom: 20px; }

@media screen and (min-width: 768px) {
  .news-carousel.carousel {
    margin-bottom: 20px; }

  .slick-prev, .slick-next {
    opacity: .45; }

  .hero-carousel.carousel .slick-prev:after, .hero-carousel.carousel .slick-next:after {
    color: #fff; }
  .hero-carousel.carousel .slick-dots {
    bottom: 15px; }
  .hero-carousel.carousel .slide {
    /*       a { 
                h4, h3, h5, h2 {
                    font-size: 38px;
                } 
                p {
                    font-size: 14px;
                }
            }*/ }
    .hero-carousel.carousel .slide .hero-block {
      min-height: 450px;
      max-height: 450px; }

  .carousel-full-width .slide-content {
    min-height: 400px;
    padding: 60px 0; }
    .carousel-full-width .slide-content h3 {
      margin: 0 0 50px 0; }
  .carousel-full-width .slick-dots {
    bottom: 20px; }

  .carousel.quote-carousel {
    border-width: 1px 0;
    padding: 50px 0 60px; }
    .carousel.quote-carousel .slide-content {
      margin: 0 auto;
      padding: 0;
      position: relative; }
      .carousel.quote-carousel .slide-content .media, .carousel.quote-carousel .slide-content .media-content {
        display: table-cell;
        vertical-align: top;
        text-align: center; }
      .carousel.quote-carousel .slide-content .media-content {
        position: relative;
        padding: 15px 120px 0;
        width: 100%;
        display: block; }
      .carousel.quote-carousel .slide-content .media {
        position: absolute;
        left: 10px;
        top: 0;
        width: 100px;
        text-align: left; }
        .carousel.quote-carousel .slide-content .media img {
          margin-top: 18px; }
      .carousel.quote-carousel .slide-content h2 {
        position: relative;
        top: -15px;
        font-size: 34px;
        margin-top: 0; }
      .carousel.quote-carousel .slide-content h3 {
        font-size: 24px; }
      .carousel.quote-carousel .slide-content p {
        font-size: 16px; }
      .carousel.quote-carousel .slide-content a.cta-red-outline {
        padding: 9px 20px; } }
.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: 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; } }
/* Footer */
footer {
  clear: both; }
  footer * {
    font-family: arial, sans-serif; }
  footer .link-column {
    display: block;
    float: left;
    clear: none;
    width: 14.16667%;
    margin-left: 0;
    margin-right: 3%; }
    footer .link-column:last-child {
      margin-right: 0; }
  footer .footer-assets {
    *zoom: 1;
    margin-top: 0; }
    footer .footer-assets:before, footer .footer-assets:after {
      content: '';
      display: table; }
    footer .footer-assets:after {
      clear: both; }
    footer .footer-assets h6 {
      font-size: 16px;
      line-height: 24px; }
    footer .footer-assets a {
      font-size: 14px;
      text-decoration: none;
      color: #666;
      line-height: 16px; }
      footer .footer-assets a:hover {
        text-decoration: underline; }

.footer-links {
  display: none; }

.social-media-links img.norton-image {
  width: 91px;
  height: 49px;
  max-width: none;
  max-height: none;
  margin-left: 20px; }

footer.supplemental {
  border-top: 1px solid #E7E7E7;
  *zoom: 1; }
  footer.supplemental:before, footer.supplemental:after {
    content: '';
    display: table; }
  footer.supplemental:after {
    clear: both; }

.footer-links {
  clear: both; }

.footer-extra {
  display: block; }

footer.additional {
  background-color: #fdbb30;
  padding-bottom: 1em; }
  footer.additional p {
    color: #000;
    font-size: 16px;
    margin: 0 0 10px; }
  footer.additional .content {
    padding: 10px; }
  footer.additional li,
  footer.additional li a {
    color: #000;
    font-size: 10px;
    text-decoration: none; }
    footer.additional li:hover,
    footer.additional li a:hover {
      text-decoration: underline; }
  footer.additional li {
    border-color: #343434; }
  footer.additional.hasStickyCTA .content {
    padding-bottom: 95px; }
  footer.additional.no-links {
    background-color: #fff; }
    footer.additional.no-links p {
      float: left;
      margin-top: 33px; }

footer .norton-seal {
  margin-top: 15px; }
  footer .norton-seal img {
    float: right; }
footer .content {
  padding-top: 0;
  padding-bottom: 0; }
  footer .content h6 {
    padding-top: 30px;
    line-height: 1;
    margin-bottom: 10px;
    margin-top: 0;
    text-transform: uppercase; }

footer .site-selector-row {
  background-color: none;
  width: 49%;
  display: inline-block; }

@media screen and (min-width: 768px) {
  footer .content {
    padding-top: 50px;
    padding-bottom: 1.5em; }
  footer .footer-links {
    display: block; }
  footer .logo,
  footer .social-media-links {
    display: inline-block; }
  footer .logo img {
    display: initial;
    margin-top: -10px; }
  footer .link-column {
    display: block;
    float: left;
    clear: none;
    width: 14.16667%;
    margin-left: 0;
    margin-right: 3%; }
    footer .link-column:last-child {
      margin-right: 0; }
    footer .link-column ul {
      margin-bottom: 16px; }
  footer .site-selector-row,
  footer .country-language-selector {
    display: none; }

  .footer-links {
    *zoom: 1; }
    .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: 14px;
      line-height: 24px; }
    .footer-assets a {
      font-size: 12px;
      text-decoration: none;
      color: #000;
      line-height: 24px; }

  footer.additional .content {
    padding-top: 15px;
    padding-bottom: 0; }
    footer.additional .content .content {
      padding: 10px; }
  footer.additional li,
  footer.additional li a {
    font-size: 14px; }

  footer .social-media-links li {
    margin-left: -5px; }

  footer .norton-seal {
    display: inline-block;
    float: right;
    margin: 0; }

  .footer-extra {
    text-align: right;
    padding-bottom: 1.5em; }

  .norton-seal img {
    float: left; } }
@media screen and (min-width: 1024px) {
  footer .logo {
    margin-left: -12px; }
  footer .content {
    *zoom: 1; }
    footer .content:before, footer .content:after {
      content: '';
      display: table; }
    footer .content:after {
      clear: both; }

  .footer-assets {
    margin-top: 0; }
    .footer-assets h6 {
      font-size: 16px; }
    .footer-assets a {
      font-size: 14px;
      line-height: 28px; } }

/*# sourceMappingURL=devkit.css.map */
