@charset "UTF-8";
/**
 * Style file @
 *
 * This file is compiled into style.css
 */
/* ---------- Import variables ---------- */
/* Layout */
/**
 * Jeet grid settings.
 */
/**
 * Breakpoints - Breakpoint slicer
 * https://github.com/lolmaus/breakpoint-slicer
 */
/* Colors */
/* Greys */
/* Elements */
/* Borders */
/* Links */
/* Font stuff */
/* ---------- Import grid system ---------- */
/*  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()
*/
/**
 * 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.
 */
/**
 * 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.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to 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.
 */
/**
 * 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.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * 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.
 */
/**
 * 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.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * 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.
 */
/**
 *  Alias for 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.
 */
/**
 * Uncenter an element.
 */
/**
 * 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.
 */
/**
 * Unstack an element.
 */
/**
 * 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.
 */
/**
 * Apply a clearfix to an element.
 */
/* ---------- Import base ---------- */
/*  Better box model */
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block; }

audio,
canvas,
video {
  display: inline-block; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden], template {
  display: none; }

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

html,
button,
input,
select,
textarea {
  font-family: Helvetica, Arial, sans-serif; }

body {
  margin: 0; }

a {
  background: transparent; }
  a:focus {
    outline: thin dotted; }
  a:hover, a:active {
    outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

mark {
  background: #ff0;
  color: #000; }

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 16; }

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

q:before,
q:after {
  content: '';
  content: none; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Base responsive images */
img {
  height: auto;
  max-width: 100%;
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 0; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0;
  white-space: normal; }

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  vertical-align: baseline; }

button,
input {
  line-height: normal; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
input[disabled] {
  cursor: default; }

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0; }

input[type="search"] {
  -webkit-appearance: textfield; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto;
  vertical-align: top; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/**
 * Mixins
 *
 * Snippets of reusable CSS to develop faster and keep code readable
 */
@-webkit-keyframes fadeDown_offset {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px); } }
@keyframes fadeDown_offset {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px); } }

@-webkit-keyframes fadeIn_offset {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px); } }

@keyframes fadeIn_offset {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px); } }

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@-webkit-keyframes sk-circleBounceDelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes sk-circleBounceDelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

/**
 * Extendables
 *
 * Collect all of your extendable classes, ids and silent extendables.
 */
.clearfix {
  *zoom: 1; }
  .clearfix:before, .clearfix:after {
    content: '';
    display: table; }
  .clearfix:after {
    clear: both; }

/**
 * Typography
 */
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility; }

html,
button,
input,
select,
textarea {
  font-family: Helvetica, Arial, sans-serif; }

body {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5; }

h1 {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.3;
  color: #555;
  margin: .67em 0; }

h2 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #555;
  margin: .83em 0; }

h3 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3;
  color: #555;
  margin: 1em 0; }

h4 {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3;
  color: #555;
  margin: 1.33em 0; }

h5 {
  font-size: 12px;
  font-size: 0.75rem;
  color: #555;
  margin: 1.67em 0; }

h6 {
  font-size: 12px;
  font-size: 0.75rem;
  color: #555;
  margin: 2.33em 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b, strong {
  font-weight: 700; }

dfn {
  font-style: italic; }

hr {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

mark {
  background: #ff0;
  color: #000; }

p, pre {
  margin: 1.5em 0; }

code, kbd, pre, samp {
  font-family: monospace,serif;
  font-family: 'courier new',monospace;
  font-size: 16px;
  font-size: 1rem; }

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

q {
  quotes: none; }

q:before, q:after {
  content: '';
  content: none; }

small {
  font-size: 14px;
  font-size: 0.875rem; }

large {
  font-size: 18px;
  font-size: 1.125rem; }

sub, sup {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -.5em; }

sub {
  bottom: -.25em; }

dl, ol, ul {
  margin: 1.5em 0; }
  dl dl, dl menu, dl ul, ol dl, ol menu, ol ul, ul dl, ul menu, ul ul {
    margin: 0; }

dd {
  margin: 0 0 0 30px; }

ul {
  padding: 0 0 0 30px;
  list-style: disc; }
  ul.rteindent1 {
    padding: 0; }

ol {
  padding: 0 0 0 30px;
  list-style: decimal; }
  ol.rteindent1 {
    padding: 0; }

ol ol {
  margin: 0;
  list-style: lower-alpha; }

nav ul, nav ol {
  list-style: none;
  list-style-image: none; }

img {
  border: 0;
  -ms-interpolation-mode: bicubic; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 0; }

@font-face {
  font-family: 'icomoon';
  src: url("../assets/fonts/icomoon/icomoon.eot?2wfpe8");
  src: url("../assets/fonts/icomoon/icomoon.eot?2wfpe8#iefix") format("embedded-opentype"), url("../assets/fonts/icomoon/icomoon.ttf?2wfpe8") format("truetype"), url("../assets/fonts/icomoon/icomoon.woff?2wfpe8") format("woff"), url("../assets/fonts/icomoon/icomoon.svg?2wfpe8#icomoon") format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change ../assets/fonts/icomoon */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* ---------- Components ---------- */
blockquote {
  margin: 2.5em 0;
  border-left: 4px solid #c00;
  padding: 0 2.5em; }

.circle-button {
  cursor: pointer;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  position: relative;
  border: 2px solid white;
  border-radius: 50%;
  height: 37px;
  width: 37px;
  display: block;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease; }
  .circle-button::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    margin-left: 3px;
    -webkit-transform: translate(-50%, -50%) rotate(-135deg);
    -ms-transform: translate(-50%, -50%) rotate(-135deg);
    transform: translate(-50%, -50%) rotate(-135deg);
    margin-left: -3px; }
  .circle-button:hover {
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }

.front-help-you {
  padding: 3rem 0; }
  .front-help-you::before {
    content: "";
    width: 3px;
    height: 40px;
    background-color: #58595b;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border: 0;
    outline: 0; }
  .front-help-you h2 {
    text-align: center;
    margin-top: 1em; }
  .front-help-you .views-label-contextual-links {
    display: none; }
  .front-help-you .contextual-links-wrapper {
    display: none; }
    .front-help-you .contextual-links-wrapper .edit_link {
      margin: 0; }
  .front-help-you .view-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    @media (min-width: 769px) {
      .front-help-you .view-content {
        padding: 40px; } }
    .front-help-you .view-content .views-row {
      min-height: 390px;
      background-size: cover;
      background-position: 0 -50px;
      -webkit-transition: all .3s ease;
      -o-transition: all .3s ease;
      transition: all .3s ease; }
      @media (max-width: 480px) {
        .front-help-you .view-content .views-row {
          min-height: 280px; } }
      .front-help-you .view-content .views-row:hover {
        background-position: 0 0px; }
      .front-help-you .view-content .views-row .views-field-nothing {
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
        position: relative;
        height: 100%; }
        .front-help-you .view-content .views-row .views-field-nothing:hover {
          -webkit-transition: all .3s ease;
          -o-transition: all .3s ease;
          transition: all .3s ease; }
        .front-help-you .view-content .views-row .views-field-nothing .field-content .title {
          color: white;
          cursor: pointer;
          margin: 0 1em;
          position: absolute;
          top: 50%;
          font-size: 24px; }
          @media (min-width: 1025px) {
            .front-help-you .view-content .views-row .views-field-nothing .field-content .title {
              width: 80%; } }
          @media (max-width: 480px) {
            .front-help-you .view-content .views-row .views-field-nothing .field-content .title {
              font-size: 18px; } }
          .front-help-you .view-content .views-row .views-field-nothing .field-content .title:hover, .front-help-you .view-content .views-row .views-field-nothing .field-content .title:visited {
            color: white;
            opacity: 1; }
        .front-help-you .view-content .views-row .views-field-nothing .field-content .circle-button {
          font-size: 24px;
          position: absolute;
          bottom: 0;
          margin: 0 1em  1em; }
          @media (max-width: 480px) {
            .front-help-you .view-content .views-row .views-field-nothing .field-content .circle-button {
              font-size: 18px; } }
      .front-help-you .view-content .views-row:nth-child(1) .views-field-nothing {
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(132, 132, 132, 0)), color-stop(63%, #70bbe9));
        background: -webkit-linear-gradient(top, rgba(132, 132, 132, 0) 0%, #70bbe9 63%);
        background: -o-linear-gradient(top, rgba(132, 132, 132, 0) 0%, #70bbe9 63%);
        background: linear-gradient(to bottom, rgba(132, 132, 132, 0) 0%, #70bbe9 63%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00848484', endColorstr='#70bbe9',GradientType=0 ); }
      .front-help-you .view-content .views-row:nth-child(2) .views-field-nothing {
        background: -moz-linear-gradient(top, rgba(132, 132, 132, 0) 0%, #2189c4 63%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(top, rgba(132, 132, 132, 0) 0%, #2189c4 63%);
        /* Chrome10-25,Safari5.1-6 */
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(132, 132, 132, 0)), color-stop(63%, #2189c4));
        background: -o-linear-gradient(top, rgba(132, 132, 132, 0) 0%, #2189c4 63%);
        background: linear-gradient(to bottom, rgba(132, 132, 132, 0) 0%, #2189c4 63%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00848484', endColorstr='#2189c4',GradientType=0 ); }
      .front-help-you .view-content .views-row:nth-child(3) .views-field-nothing {
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#848484+0,1165a6+62&0+0,1+63 */
        background: -moz-linear-gradient(top, rgba(132, 132, 132, 0) 0%, rgba(17, 101, 166, 0.98) 62%, #1165a6 63%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(top, rgba(132, 132, 132, 0) 0%, rgba(17, 101, 166, 0.98) 62%, #1165a6 63%);
        /* Chrome10-25,Safari5.1-6 */
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(132, 132, 132, 0)), color-stop(62%, rgba(17, 101, 166, 0.98)), color-stop(63%, #1165a6));
        background: -o-linear-gradient(top, rgba(132, 132, 132, 0) 0%, rgba(17, 101, 166, 0.98) 62%, #1165a6 63%);
        background: linear-gradient(to bottom, rgba(132, 132, 132, 0) 0%, rgba(17, 101, 166, 0.98) 62%, #1165a6 63%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00848484', endColorstr='#1165a6',GradientType=0 ); }
      .front-help-you .view-content .views-row:nth-child(4) .views-field-nothing {
        background: -webkit-linear-gradient(top, rgba(132, 132, 132, 0) 0%, #143b86 63%);
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(132, 132, 132, 0)), color-stop(63%, #143b86));
        background: -o-linear-gradient(top, rgba(132, 132, 132, 0) 0%, #143b86 63%);
        background: linear-gradient(to bottom, rgba(132, 132, 132, 0) 0%, #143b86 63%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00848484', endColorstr='#143b86',GradientType=0 ); }
      @media (min-width: 481px) and (max-width: 1024px) {
        .front-help-you .view-content .views-row {
          -ms-flex-preferred-size: 48%;
          flex-basis: 48%;
          margin-bottom: 1em; } }
      @media (min-width: 1025px) {
        .front-help-you .view-content .views-row {
          -ms-flex-preferred-size: 23.5%;
          flex-basis: 23.5%;
          margin-right: 1%; } }
      @media (max-width: 480px) {
        .front-help-you .view-content .views-row {
          -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
          margin-bottom: 1em; } }

/*
 * Buttons
 */
.button,
input[type=submit] {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  padding: 10px 15px;
  border: 0;
  border-radius: 2px;
  background-color: #00aeef;
  color: #fff; }

.button:hover,
input[type=submit]:hover,
.button:focus {
  background-color: #c00;
  color: #fff;
  text-decoration: none; }

.breadcrumb {
  font-size: 80%;
  margin: 1.5em 0; }

/*
 * caption.js styles
 */
/* Main */
.caption {
  line-height: 0; }

.caption figcaption {
  display: block;
  line-height: 1.2;
  font-size: 90%;
  padding: 1em 0; }

/*
 * Classes that can be used in CKEditor
 */
.layout-row {
  *zoom: 1; }

.layout-row:before, .layout-row:after {
  content: '';
  display: table; }

.layout-row:after {
  clear: both; }

body.cke_editable {
  padding: 20px; }

body.cke_editable .layout-row {
  padding: 10px;
  margin: 0 -10px 20px;
  border: 1px dashed pink; }

body.cke_editable .layout-row > div {
  border: 1px dashed #a5d3e4; }

body.cke_editable table td {
  border: 1px dashed #ccc; }

@media (min-width: 769px) {
  .col-one-half {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%; }
  .col-one-half:before, .col-one-half:after {
    content: '';
    display: table; }
  .col-one-half:after {
    clear: both; }
  .col-one-half:last-child {
    margin-right: 0%; }
  .col-one-third {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%; }
  .col-one-third:before, .col-one-third:after {
    content: '';
    display: table; }
  .col-one-third:after {
    clear: both; }
  .col-one-third:last-child {
    margin-right: 0%; }
  .col-two-thirds {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 65.66667%;
    margin-left: 0%;
    margin-right: 3%; }
  .col-two-thirds:before, .col-two-thirds:after {
    content: '';
    display: table; }
  .col-two-thirds:after {
    clear: both; }
  .col-two-thirds:last-child {
    margin-right: 0%; }
  .col-one-quarter {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%; }
  .col-one-quarter:before, .col-one-quarter:after {
    content: '';
    display: table; }
  .col-one-quarter:after {
    clear: both; }
  .col-one-quarter:last-child {
    margin-right: 0%; } }

.image-left {
  float: left;
  background-color: #fff;
  border: 1px #ccc;
  padding: 5px;
  margin-right: 1.25em; }

.image-right {
  float: right;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 5px;
  margin-left: 1.25em; }

big {
  font-size: 18px;
  font-size: 1.125rem; }

small {
  font-size: 14px;
  font-size: 0.875rem; }

/* 
// Using jeet.gs


.layout-row {
	@include cf();
}
body.cke_editable {
	padding: 20px;
	.layout-row {
		padding: 10px;
		margin: 0 -10px 20px;
		border: 1px dashed pink;
	}
	.layout-row > div {
		border: 1px dashed #a5d3e4;
	}
	table {
		td {
			border: 1px dashed #ccc;
		}
	}
}
@include from(tablet-l) {
	.col-one-half {
		@include col(1/2, $gutter: 3);
	}
	.col-one-third {
		@include col(1/3, $gutter: 3);
	}
	.col-two-thirds {
		@include col(2/3, $gutter: 3);
	}	
	.col-one-quarter {
		@include col(1/4, $gutter: 3);
	}
}

*/
/*
 * Forms, webforms
 */
input[type=text],
input[type=password],
input[type=email],
input[type=url],
input[type=date],
input[type=month],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=week],
input[type=number],
input[type=search],
input[type=tel],
input[type=color],
.form-text,
select,
textarea {
  padding: .5em .6em;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 2px;
  color: #555;
  font-size: 16;
  width: 100%;
  max-width: 500px;
  outline: none; }
  input[type=text]:focus,
  input[type=password]:focus,
  input[type=email]:focus,
  input[type=url]:focus,
  input[type=date]:focus,
  input[type=month]:focus,
  input[type=time]:focus,
  input[type=datetime]:focus,
  input[type=datetime-local]:focus,
  input[type=week]:focus,
  input[type=number]:focus,
  input[type=search]:focus,
  input[type=tel]:focus,
  input[type=color]:focus,
  .form-text:focus,
  select:focus,
  textarea:focus {
    border-color: #777; }

fieldset {
  margin-bottom: 1.5em;
  padding: 0;
  border: 0; }
  fieldset fieldset {
    margin-bottom: 0; }

form fieldset:last-of-type {
  margin-bottom: 0; }

.fieldset-description {
  margin-bottom: 1.5em; }

.grippie {
  max-width: 500px; }

/*  legend... wait for it... dary! */
legend {
  padding: 0;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  border-bottom: 1px solid #dfdfdf;
  display: block;
  width: 100%;
  margin-bottom: 1.5em; }

label {
  display: block;
  margin-bottom: 0.5em; }

/*  Placeholders. Keep as seperate selectors or it won't work  */
.placeholder {
  color: #919191;
  opacity: 0.5 !important; }

::-webkit-input-placeholder {
  color: #919191;
  opacity: 0.5 !important; }

:-moz-placeholder {
  /* Firefox 18- */
  color: #919191;
  opacity: 0.5 !important; }

::-moz-placeholder {
  /* Firefox 19+ */
  color: #919191;
  opacity: 0.5 !important; }

:-ms-input-placeholder {
  color: #919191;
  opacity: 0.5 !important; }

/*  Drupal classes */
.form-item {
  margin-bottom: 1.5em; }

input[type="submit"], .form-submit {
  background-color: #777;
  cursor: pointer; }
  .views-reset-button input[type="submit"], .views-reset-button .form-submit {
    background-color: #777; }
    .views-reset-button input[type="submit"]:hover, .views-reset-button input[type="submit"]:focus, .views-reset-button .form-submit:hover, .views-reset-button .form-submit:focus {
      background-color: #c00; }

.form-managed-file .form-submit {
  background-color: #777; }
  .form-managed-file .form-submit:hover {
    background-color: #c00; }

.description {
  font-size: 14px;
  font-size: 0.875rem;
  color: #a2a2a2;
  margin: 0.75em 0; }

.form-type-checkbox {
  margin-bottom: 0; }
  .form-type-checkbox label {
    font-weight: 400; }

.form-type-radio {
  margin-bottom: 0; }

.form-radios label,
label.option {
  display: inline; }

.form-managed-file .form-file {
  display: inline;
  width: auto; }

.form-type-date select {
  width: auto; }

/*
  WEBFORM
*/
.webform-client-form .form,
.webform-client-form .form-item {
  margin-bottom: 1.5em; }
  .webform-client-form .form label,
  .webform-client-form .form-item label {
    margin-bottom: 1.5em; }

.webform-client-form .form-item {
  position: relative; }
  .webform-client-form .form-item > label {
    font-weight: bold; }
  .webform-client-form .form-item .label-inline {
    display: inline; }
  .webform-client-form .form-item textarea {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #dfdfdf;
    padding: 10px;
    border-radius: 0; }
  .webform-client-form .form-item input[readonly="readonly"] {
    background-color: #fcfcfc;
    border-color: #dfdfdf; }

.webform-client-form .webform-component-checkboxes input,
.webform-client-form .webform-component-radios input {
  padding-top: 2px; }

.webform-client-form .webform-component-checkboxes.form-item .form-item,
.webform-client-form .webform-component-radios.form-item .form-item {
  margin-bottom: 0; }
  .webform-client-form .webform-component-checkboxes.form-item .form-item label,
  .webform-client-form .webform-component-radios.form-item .form-item label {
    font-weight: normal;
    margin-bottom: 0; }
  .webform-client-form .webform-component-checkboxes.form-item .form-item .form-type-checkbox,
  .webform-client-form .webform-component-radios.form-item .form-item .form-type-checkbox {
    margin: 0;
    padding: 10px 0 10px 5px; }

.webform-client-form .form-item-clear {
  width: auto;
  border: 0;
  padding: 0;
  font-weight: bold; }

.webform-client-form .webform-component-date .form-select,
.webform-client-form .webform-component-time .form-select {
  width: auto; }

.webform-client-form .webform-component-textarea .grippie {
  display: none; }

/**
 * Google Recaptcha
 */
.g-recaptcha {
  margin-bottom: 1.5em; }

.page-user {
  background: #fff;
  padding: 0 20px; }

#login-top img {
  max-width: 70%;
  margin: 0 auto;
  display: block; }

#auth_box {
  font-family: Helvetica, Arial, sans-serif;
  max-width: 340px;
  margin: 3em auto 0; }
  #auth_box .form-submit {
    width: 100%;
    float: none;
    padding: 12px;
    font-weight: 700;
    text-transform: uppercase; }

#auth_box input[type="text"], #auth_box input[type="password"] {
  width: 100%;
  padding: 12px;
  background: #f2f2f2; }

#top_part {
  margin-top: 2em; }

#login-middle {
  border: 1px solid #dfdfdf;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 25px #f2f2f2;
  box-shadow: 0 0 25px #f2f2f2;
  padding: 1em;
  margin-bottom: 2em; }
  #login-middle h2 {
    font-size: 1.5em;
    margin-top: 0; }

#login-bottom {
  text-align: center; }

.login-footer {
  margin-top: 4em;
  text-align: center; }

.page-maintenance {
  padding: 50px 20px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center; }
  .page-maintenance h1:before {
    content: "";
    display: block;
    width: 150px;
    height: 150px;
    margin: 0 auto 1em;
    background: url("../img/admin/info.png");
    background: url("../img/admin/info.svg"), none;
    background-size: 150px 150px; }

/*
 * Pagination
 */
.item-list {
  overflow: auto; }
  .item-list .pager {
    padding: 0;
    text-align: left;
    overflow: auto; }
    .item-list .pager li {
      float: left;
      list-style: none;
      padding: 0; }
    .item-list .pager a {
      color: #555;
      background: #fff;
      border-top: 1px solid #dfdfdf;
      border-left: 1px solid #dfdfdf;
      border-bottom: 1px solid #dfdfdf;
      display: inline-block;
      padding: 5px 14px; }
      .item-list .pager a:hover {
        background: #c00;
        border-color: #c00;
        color: #fff;
        text-decoration: none; }
      .item-list .pager a:active {
        background: #999999; }
    .item-list .pager .pager-ellipsis {
      background: #fff;
      border-top: 1px solid #dfdfdf;
      border-left: 1px solid #dfdfdf;
      border-bottom: 1px solid #dfdfdf;
      display: inline-block;
      padding: 5px 12px;
      /*  2 px less */ }
    .item-list .pager .last {
      border-right: 1px solid #dfdfdf; }
    .item-list .pager .pager-current {
      background: #777;
      border-top: 1px solid #dfdfdf;
      border-left: 1px solid #dfdfdf;
      border-bottom: 1px solid #dfdfdf;
      color: #fff;
      padding: 6px 15px;
      margin-top: -1px; }

.site-map ul {
  padding: 0;
  margin: 0; }
  .site-map ul ul {
    padding-left: 20px; }
    .site-map ul ul a {
      background: #999; }
    .site-map ul ul ul a {
      background: #777; }
    .site-map ul ul ul ul a {
      background: #555; }
    .site-map ul ul ul ul ul a {
      background: #333; }
  .site-map ul a {
    padding: 5px 10px;
    background: #00aeef;
    /* Change to primary-color colour */ }

.site-map li {
  list-style: none;
  padding: 0;
  margin: 0; }

.site-map a {
  color: white;
  display: inline-block;
  margin-bottom: 1px; }
  .site-map a:hover {
    background: #0089bc;
    color: #fff; }

.search-results {
  list-style-type: none;
  padding: 0; }
  .search-results a {
    font-weight: 700; }
  .search-results .search-snippet {
    font-size: 15; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .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; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -10px;
  padding: 0;
  border: none;
  outline: none;
  z-index: 1000; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }

.slick-prev:before, .slick-next:before {
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: 20px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "←"; }
    [dir="rtl"] .slick-prev:before {
      content: "→"; }

.slick-next {
  right: 20px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "→"; }
    [dir="rtl"] .slick-next:before {
      content: "←"; }

/* Dots */
.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: 0;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%;
  z-index: 1000; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0;
      font-size: 0;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "•";
        width: 20px;
        height: 20px;
        font-size: 30px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }

/*
 * Tables
 */
table {
  background-color: #fff;
  border: 0 solid transparent;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.5em; }
  table caption {
    text-align: left; }
  table th {
    text-align: left; }
  table td {
    vertical-align: top; }
  table > thead > tr > th,
  table > thead > tr > td,
  table > tbody > tr > th,
  table > tbody > tr > td,
  table > tfoot > tr > th,
  table > tfoot > tr > td {
    padding: 5px;
    vertical-align: top;
    border-bottom: 1px solid #dfdfdf; }
  table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #dfdfdf; }
  table > caption + thead > tr:first-child > th,
  table > caption + thead > tr:first-child > td,
  table > colgroup + thead > tr:first-child > th,
  table > colgroup + thead > tr:first-child > td,
  table > thead:first-child > tr:first-child > th,
  table > thead:first-child > tr:first-child > td {
    border-top: 0; }
  table > tbody + tbody {
    border-top: 2px solid #dfdfdf; }
  table table {
    background-color: #fff;
    margin-bottom: 0; }

/**
 * Responsive tables. tables in node content are wrapped with a div with class "table-responsive" via js in scripts.js
 */
.table-responsive {
  width: 100%;
  overflow-y: auto; }

.table-responsive::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 14px;
  height: 14px; }

.table-responsive::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 3px solid #fff;
  background-color: rgba(0, 0, 0, 0.3); }

.table-bordered {
  border: 1px solid #dfdfdf; }
  .table-bordered > thead > tr > th,
  .table-bordered > thead > tr > td,
  .table-bordered > tbody > tr > th,
  .table-bordered > tbody > tr > td,
  .table-bordered > tfoot > tr > th,
  .table-bordered > tfoot > tr > td {
    border: 1px solid #dfdfdf;
    padding: 5px; }

.table-striped > tbody > tr:nth-child(odd),
.table-striped .odd-row {
  background-color: #f2f2f2; }

.table-striped th, .table-striped td {
  border: 0; }

.table-striped-vertical th:nth-child(odd),
.table-striped-vertical td:nth-child(odd),
.table-striped-vertical .odd-column {
  background-color: #f2f2f2; }

.table-striped-vertical th, .table-striped-vertical td {
  border: 0; }

.table-vertical th, .table-vertical td {
  border-top: 0;
  border-bottom: 0;
  border-right: 1px solid #dfdfdf; }

.table-vertical tr td:last-child,
.table-vertical tr th:last-child {
  border: 0; }

.table-unstyled > thead > tr > th,
.table-unstyled > thead > tr > td,
.table-unstyled > tbody > tr > th,
.table-unstyled > tbody > tr > td,
.table-unstyled > tfoot > tr > th,
.table-unstyled > tfoot > tr > td {
  padding: 0;
  vertical-align: top;
  border: 0; }

/**
 * Tabs
 */
.tabs.primary {
  list-style: none;
  padding-left: 0;
  border-bottom: 1px solid #dfdfdf; }
  .tabs.primary li {
    display: inline-block;
    position: relative;
    top: 1px; }
  .tabs.primary a {
    display: inline-block;
    padding: .5em 1em; }
    .tabs.primary a.active {
      border-top: 1px solid #dfdfdf;
      border-left: 1px solid #dfdfdf;
      border-right: 1px solid #dfdfdf;
      border-bottom: 0 solid white;
      background: white; }

/* ---------- Import design ---------- */
/**
 * Layout
 *
 * All layout theming should go in this file
 */
.container, .page-node-142 .skills-future-related > .view, .ntsop_industry .view-ntsopl, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-quote-full-width .content, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-quote .content, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-column-content .inner, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-cols-with-full-height-image-on .content, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-list-item-with-icon .content, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  *zoom: 1; }
  .container:before, .page-node-142 .skills-future-related > .view:before, .ntsop_industry .view-ntsopl:before, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-quote-full-width .content:before, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-quote .content:before, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-column-content .inner:before, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-cols-with-full-height-image-on .content:before, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-list-item-with-icon .content:before, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content:before, .container:after, .page-node-142 .skills-future-related > .view:after, .ntsop_industry .view-ntsopl:after, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-quote-full-width .content:after, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-quote .content:after, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-column-content .inner:after, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-cols-with-full-height-image-on .content:after, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-list-item-with-icon .content:after, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content:after {
    content: '';
    display: table; }
  .container:after, .page-node-142 .skills-future-related > .view:after, .ntsop_industry .view-ntsopl:after, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-quote-full-width .content:after, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-quote .content:after, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-column-content .inner:after, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-cols-with-full-height-image-on .content:after, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-list-item-with-icon .content:after, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content:after {
    clear: both; }

@media (min-width: 769px) {
  .one-sidebar.sidebar-first .main {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 74%;
    margin-left: 0%;
    margin-right: 4%;
    position: relative;
    left: 26%; }
    .one-sidebar.sidebar-first .main:before, .one-sidebar.sidebar-first .main:after {
      content: '';
      display: table; }
    .one-sidebar.sidebar-first .main:after {
      clear: both; }
    .one-sidebar.sidebar-first .main:last-child {
      margin-right: 0%; }
  .one-sidebar.sidebar-second .main {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 74%;
    margin-left: 0%;
    margin-right: 4%; }
    .one-sidebar.sidebar-second .main:before, .one-sidebar.sidebar-second .main:after {
      content: '';
      display: table; }
    .one-sidebar.sidebar-second .main:after {
      clear: both; }
    .one-sidebar.sidebar-second .main:last-child {
      margin-right: 0%; }
  .one-sidebar aside.sidebar_first {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22%;
    margin-left: 0%;
    margin-right: 4%;
    position: relative;
    left: -78%; }
    .one-sidebar aside.sidebar_first:before, .one-sidebar aside.sidebar_first:after {
      content: '';
      display: table; }
    .one-sidebar aside.sidebar_first:after {
      clear: both; }
    .one-sidebar aside.sidebar_first:last-child {
      margin-right: 0%; }
  .one-sidebar aside.sidebar_second {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22%;
    margin-left: 0%;
    margin-right: 4%; }
    .one-sidebar aside.sidebar_second:before, .one-sidebar aside.sidebar_second:after {
      content: '';
      display: table; }
    .one-sidebar aside.sidebar_second:after {
      clear: both; }
    .one-sidebar aside.sidebar_second:last-child {
      margin-right: 0%; }
  .two-sidebars .main {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48%;
    margin-left: 0%;
    margin-right: 4%;
    position: relative;
    left: 26%; }
    .two-sidebars .main:before, .two-sidebars .main:after {
      content: '';
      display: table; }
    .two-sidebars .main:after {
      clear: both; }
    .two-sidebars .main:last-child {
      margin-right: 0%; }
  .two-sidebars .sidebar_first {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22%;
    margin-left: 0%;
    margin-right: 4%;
    position: relative;
    left: -52%; }
    .two-sidebars .sidebar_first:before, .two-sidebars .sidebar_first:after {
      content: '';
      display: table; }
    .two-sidebars .sidebar_first:after {
      clear: both; }
    .two-sidebars .sidebar_first:last-child {
      margin-right: 0%; }
  .two-sidebars .sidebar_second {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22%;
    margin-left: 0%;
    margin-right: 4%; }
    .two-sidebars .sidebar_second:before, .two-sidebars .sidebar_second:after {
      content: '';
      display: table; }
    .two-sidebars .sidebar_second:after {
      clear: both; }
    .two-sidebars .sidebar_second:last-child {
      margin-right: 0%; } }

.page-node-142 .blow-content * {
  text-align: center; }

.page-node-142 .blow-content .container, .page-node-142 .blow-content .skills-future-related > .view, .page-node-142 .blow-content .ntsop_industry .view-ntsopl, .ntsop_industry .page-node-142 .blow-content .view-ntsopl, .page-node-142 .blow-content body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-quote-full-width .content, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-quote-full-width .page-node-142 .blow-content .content, .page-node-142 .blow-content body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-quote .content, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-quote .page-node-142 .blow-content .content, .page-node-142 .blow-content body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-column-content .inner, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-column-content .page-node-142 .blow-content .inner, .page-node-142 .blow-content body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-cols-with-full-height-image-on .content, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-cols-with-full-height-image-on .page-node-142 .blow-content .content, .page-node-142 .blow-content body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-list-item-with-icon .content, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-list-item-with-icon .page-node-142 .blow-content .content, .page-node-142 .blow-content body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .page-node-142 .blow-content .content {
  max-width: 730px; }

.page-node-142 .blow-content h2 {
  color: #58595b;
  margin: 2em  auto;
  text-align: center;
  text-transform: uppercase; }
  @media (min-width: 481px) and (max-width: 1024px) {
    .page-node-142 .blow-content h2 {
      font-size: 55px;
      font-size: 3.4375rem; } }
  @media (min-width: 769px) {
    .page-node-142 .blow-content h2 {
      font-size: 80px;
      font-size: 5rem; } }
  .page-node-142 .blow-content h2 strong {
    margin-bottom: 1.5em;
    font-size: 45px;
    font-size: 2.8125rem;
    display: block;
    font-weight: bold; }

.page-node-142 .blow-content h3 {
  color: #58595b;
  text-align: center;
  text-transform: uppercase; }
  @media (min-width: 481px) and (max-width: 1024px) {
    .page-node-142 .blow-content h3 {
      font-size: 45px;
      font-size: 2.8125rem; } }
  @media (min-width: 769px) {
    .page-node-142 .blow-content h3 {
      font-size: 55px;
      font-size: 3.4375rem; } }
  .page-node-142 .blow-content h3 strong {
    margin-bottom: 1em;
    font-size: 33px;
    font-size: 2.0625rem;
    display: block;
    font-weight: bold; }

.page-node-142 .blow-content svg {
  height: auto !important;
  margin-bottom: 1.5em; }
  @media (max-width: 768px) {
    .page-node-142 .blow-content svg {
      margin: 0 auto;
      margin-bottom: 30px;
      width: 100%; } }
  .page-node-142 .blow-content svg.jobs {
    width: 100%; }
    .page-node-142 .blow-content svg.jobs .left-text {
      -webkit-animation: transform-left 1s  1;
      animation: transform-left 1s  1; }
    .page-node-142 .blow-content svg.jobs .right-text {
      -webkit-animation: transform-right 1s  1;
      animation: transform-right 1s  1; }
    .page-node-142 .blow-content svg.jobs .arrow {
      -webkit-animation: up-down 1s infinite;
      animation: up-down 1s infinite; }
  .page-node-142 .blow-content svg.job-skills {
    max-width: 400px;
    margin: auto; }
    .page-node-142 .blow-content svg.job-skills.show .creativity {
      opacity: 0;
      -webkit-animation: fadeIn_offset .5s ease forwards;
      animation: fadeIn_offset .5s ease forwards;
      -webkit-animation-delay: 0;
      animation-delay: 0; }
    .page-node-142 .blow-content svg.job-skills.show .solving {
      opacity: 0;
      -webkit-animation: fadeIn_offset .5s ease forwards;
      animation: fadeIn_offset .5s ease forwards;
      -webkit-animation-delay: .5s;
      animation-delay: .5s; }
    .page-node-142 .blow-content svg.job-skills.show .think {
      opacity: 0;
      -webkit-animation: fadeIn_offset .5s ease forwards;
      animation: fadeIn_offset .5s ease forwards;
      -webkit-animation-delay: 1s;
      animation-delay: 1s; }

.page-node-142 .blow-content .infographic-top {
  position: relative;
  padding-bottom: 6em; }
  .page-node-142 .blow-content .infographic-top::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-style: solid;
    border-width: 0 27.5px 25px 27.5px;
    border-color: transparent transparent #f4f4f4 transparent; }
  .page-node-142 .blow-content .infographic-top h2 {
    max-width: 70%; }

.page-node-142 .blow-content .infographic-bottom {
  background-color: #f4f4f4; }
  .page-node-142 .blow-content .infographic-bottom .des {
    margin: auto;
    padding-top: 1em; }
    @media (min-width: 769px) {
      .page-node-142 .blow-content .infographic-bottom .des {
        max-width: 70%; } }
    @media (max-width: 768px) {
      .page-node-142 .blow-content .infographic-bottom .des {
        text-align: left; } }
    .page-node-142 .blow-content .infographic-bottom .des::before {
      content: "";
      border-top: 2px solid #dfdfdf;
      display: block;
      width: 4em;
      margin: auto;
      padding-bottom: 1em; }
  .page-node-142 .blow-content .infographic-bottom h2 {
    max-width: 800px; }
    .page-node-142 .blow-content .infographic-bottom h2 strong {
      max-width: 500px;
      margin: 1em auto; }
  .page-node-142 .blow-content .infographic-bottom p {
    color: #919191;
    font-size: 32px;
    font-size: 2rem; }
  .page-node-142 .blow-content .infographic-bottom .layout-row {
    margin: 2em 0; }
    .page-node-142 .blow-content .infographic-bottom .layout-row.one-person .col-one-half:nth-child(1) {
      margin-top: 1em; }
      .page-node-142 .blow-content .infographic-bottom .layout-row.one-person .col-one-half:nth-child(1) p {
        text-align: left; }
        @media (min-width: 769px) {
          .page-node-142 .blow-content .infographic-bottom .layout-row.one-person .col-one-half:nth-child(1) p {
            text-align: right;
            border-right: 2px solid #dfdfdf;
            padding-right: 1em; } }
    .page-node-142 .blow-content .infographic-bottom .layout-row.one-person .col-one-half:nth-child(2) svg {
      max-height: 180px; }
      .page-node-142 .blow-content .infographic-bottom .layout-row.one-person .col-one-half:nth-child(2) svg.show {
        -webkit-animation: transform-right 1s  1;
        animation: transform-right 1s  1; }
    @media (min-width: 769px) {
      .page-node-142 .blow-content .infographic-bottom .layout-row.person-with-cloud .col-one-half:nth-child(1) svg {
        max-width: 585px; } }
    .page-node-142 .blow-content .infographic-bottom .layout-row.person-with-cloud .col-one-half:nth-child(1) svg.show .vet-cloud {
      opacity: 0;
      -webkit-animation: show-hide .5s ease forwards;
      animation: show-hide .5s ease forwards;
      -webkit-animation-delay: 0;
      animation-delay: 0; }
    .page-node-142 .blow-content .infographic-bottom .layout-row.person-with-cloud .col-one-half:nth-child(1) svg.show .or-cloud {
      opacity: 0;
      -webkit-animation: show-hide .5s ease forwards;
      animation: show-hide .5s ease forwards;
      -webkit-animation-delay: .5s;
      animation-delay: .5s; }
    .page-node-142 .blow-content .infographic-bottom .layout-row.person-with-cloud .col-one-half:nth-child(1) svg.show .academia-cloud {
      opacity: 0;
      -webkit-animation: show-hide .5s ease forwards;
      animation: show-hide .5s ease forwards;
      -webkit-animation-delay: 1s;
      animation-delay: 1s; }
    .page-node-142 .blow-content .infographic-bottom .layout-row.person-with-cloud .col-one-half:nth-child(1) svg.show .text {
      opacity: 0;
      -webkit-animation: show-hide .5s ease forwards;
      animation: show-hide .5s ease forwards;
      -webkit-animation-delay: 1.5s;
      animation-delay: 1.5s; }
    .page-node-142 .blow-content .infographic-bottom .layout-row.person-with-cloud .col-one-half:nth-child(2) p {
      text-align: left; }
      @media (min-width: 769px) {
        .page-node-142 .blow-content .infographic-bottom .layout-row.person-with-cloud .col-one-half:nth-child(2) p {
          margin-top: 9em;
          padding-left: 1em;
          border-left: 2px solid #dfdfdf; } }
    .page-node-142 .blow-content .infographic-bottom .layout-row.person-with-number {
      position: relative; }
      .page-node-142 .blow-content .infographic-bottom .layout-row.person-with-number svg.person-with-number {
        width: 100%; }
        @media (min-width: 769px) {
          .page-node-142 .blow-content .infographic-bottom .layout-row.person-with-number svg.person-with-number {
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            max-height: 536px; } }
        .page-node-142 .blow-content .infographic-bottom .layout-row.person-with-number svg.person-with-number.show .person-top {
          -webkit-animation: person-top-in .5s ease forwards;
          animation: person-top-in .5s ease forwards;
          -webkit-animation-delay: 0s;
          animation-delay: 0s; }
        .page-node-142 .blow-content .infographic-bottom .layout-row.person-with-number svg.person-with-number.show .arrow {
          opacity: 0;
          -webkit-animation: show-hide 1s ease forwards;
          animation: show-hide 1s ease forwards;
          -webkit-animation-delay: .5s;
          animation-delay: .5s; }
        .page-node-142 .blow-content .infographic-bottom .layout-row.person-with-number svg.person-with-number.show .person-bottom {
          opacity: 0;
          -webkit-animation: person-bottom-in .5s ease forwards;
          animation: person-bottom-in .5s ease forwards;
          -webkit-animation-delay: 1s;
          animation-delay: 1s; }
      @media (min-width: 769px) {
        .page-node-142 .blow-content .infographic-bottom .layout-row.person-with-number > p + div {
          margin-top: 50px; } }
      .page-node-142 .blow-content .infographic-bottom .layout-row.person-with-number > p + div p {
        text-align: left; }
        @media (min-width: 769px) {
          .page-node-142 .blow-content .infographic-bottom .layout-row.person-with-number > p + div p {
            text-align: right;
            border-right: 2px solid #dfdfdf;
            padding-right: 1em; } }
      @media (min-width: 769px) {
        .page-node-142 .blow-content .infographic-bottom .layout-row.person-with-number > div + div {
          margin-top: 450px; } }
      .page-node-142 .blow-content .infographic-bottom .layout-row.person-with-number > div + div p {
        text-align: left; }
        @media (min-width: 769px) {
          .page-node-142 .blow-content .infographic-bottom .layout-row.person-with-number > div + div p {
            margin-left: 2em;
            border-left: 2px solid #dfdfdf;
            padding-left: 1em; } }
  .page-node-142 .blow-content .infographic-bottom svg.industry {
    background: none;
    width: 100%; }
    @media (min-width: 769px) {
      .page-node-142 .blow-content .infographic-bottom svg.industry {
        max-width: 543px;
        margin: auto; } }
    .page-node-142 .blow-content .infographic-bottom svg.industry.show .tools {
      opacity: 0;
      -webkit-animation: transform-left .5s ease forwards;
      animation: transform-left .5s ease forwards;
      -webkit-animation-delay: 0s;
      animation-delay: 0s; }
    .page-node-142 .blow-content .infographic-bottom svg.industry.show .stars {
      opacity: 0;
      -webkit-animation: show-hide 1s ease forwards;
      animation: show-hide 1s ease forwards;
      -webkit-animation-delay: .5s;
      animation-delay: .5s; }
    .page-node-142 .blow-content .infographic-bottom svg.industry.show .text {
      opacity: 0;
      -webkit-animation: scale-in 1s ease forwards;
      animation: scale-in 1s ease forwards;
      -webkit-animation-delay: 1s;
      animation-delay: 1s; }

.page-node-142 .skills-future-related h2 {
  margin: 3em auto 2em auto;
  font-size: 40px;
  font-size: 2.5rem; }

.page-node-142 .skills-future-related > .view {
  max-width: 1200px !important; }
  .page-node-142 .skills-future-related > .view .panel-footer {
    text-align: left; }
  .page-node-142 .skills-future-related > .view .grid-masonry {
    margin-top: 0; }
    .page-node-142 .skills-future-related > .view .grid-masonry h3 {
      font-size: 40px;
      font-size: 2.5rem;
      text-transform: none;
      text-align: left; }
    .page-node-142 .skills-future-related > .view .grid-masonry p {
      text-align: left; }
    .page-node-142 .skills-future-related > .view .grid-masonry .tag {
      text-align: left; }

.sources {
  text-transform: uppercase; }

.sources-list {
  padding-bottom: 2em;
  padding-left: 0; }
  .sources-list li {
    list-style: none; }
    .sources-list li a {
      font-weight: bold;
      font-size: 15px;
      font-size: 0.9375rem; }

@-webkit-keyframes scale-in {
  from {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: -50% -50%;
    transform-origin: -50% -50%; }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: -50% -50%;
    transform-origin: -50% -50%; } }

@keyframes scale-in {
  from {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: -50% -50%;
    transform-origin: -50% -50%; }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: -50% -50%;
    transform-origin: -50% -50%; } }

@-webkit-keyframes grow-in {
  from {
    height: 0%; }
  to {
    height: 100%; } }

@keyframes grow-in {
  from {
    height: 0%; }
  to {
    height: 100%; } }

@-webkit-keyframes person-top-in {
  from {
    -webkit-transform: matrix(0.35278, 0, 0, -0.35278, -259.229, 212.466);
    transform: matrix(0.35278, 0, 0, -0.35278, -259.229, 212.466);
    opacity: 0; }
  to {
    -webkit-transform: matrix(0.35278, 0, 0, -0.35278, -259.229, 295.466);
    transform: matrix(0.35278, 0, 0, -0.35278, -259.229, 295.466);
    opacity: 1; } }

@keyframes person-top-in {
  from {
    -webkit-transform: matrix(0.35278, 0, 0, -0.35278, -259.229, 212.466);
    transform: matrix(0.35278, 0, 0, -0.35278, -259.229, 212.466);
    opacity: 0; }
  to {
    -webkit-transform: matrix(0.35278, 0, 0, -0.35278, -259.229, 295.466);
    transform: matrix(0.35278, 0, 0, -0.35278, -259.229, 295.466);
    opacity: 1; } }

@-webkit-keyframes person-bottom-in {
  from {
    opacity: 0;
    -webkit-transform: translate(1.5119, 79.09285px);
    transform: translate(1.5119, 79.09285px); }
  to {
    opacity: 1;
    -webkit-transform: translate(1.5119, -0.90715);
    transform: translate(1.5119, -0.90715); } }

@keyframes person-bottom-in {
  from {
    opacity: 0;
    -webkit-transform: translate(1.5119, 79.09285px);
    transform: translate(1.5119, 79.09285px); }
  to {
    opacity: 1;
    -webkit-transform: translate(1.5119, -0.90715);
    transform: translate(1.5119, -0.90715); } }

@-webkit-keyframes transform-left {
  from {
    -webkit-transform: translateX(-110px);
    transform: translateX(-110px);
    opacity: 0; }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@keyframes transform-left {
  from {
    -webkit-transform: translateX(-110px);
    transform: translateX(-110px);
    opacity: 0; }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@-webkit-keyframes transform-right {
  from {
    -webkit-transform: translateX(110px);
    transform: translateX(110px);
    opacity: 0; }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@keyframes transform-right {
  from {
    -webkit-transform: translateX(110px);
    transform: translateX(110px);
    opacity: 0; }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@-webkit-keyframes up-down {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 1; } }

@keyframes up-down {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 1; } }

@keyframes fadeIn_offset {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px); } }

@-webkit-keyframes show-hide {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes show-hide {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.ajax-progress {
  display: none !important; }

.ajax-processing .preloader {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease; }

.ajax-processing::after {
  content: "";
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 99; }

.preloader {
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  -webkit-transition: opacity .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, -webkit-transform .3s ease;
  -o-transition: transform .3s ease, opacity .3s ease;
  transition: transform .3s ease, opacity .3s ease;
  transition: transform .3s ease, opacity .3s ease, -webkit-transform .3s ease;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 999;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0); }
  .preloader .sk-circle {
    display: block;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%); }
    .preloader .sk-circle .sk-child {
      width: 50px;
      height: 50px;
      position: absolute;
      left: 0;
      top: 0; }
      .preloader .sk-circle .sk-child:nth-child(1) {
        -webkit-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        transform: rotate(60deg); }
      .preloader .sk-circle .sk-child:nth-child(2) {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg); }
      .preloader .sk-circle .sk-child:nth-child(3) {
        -webkit-transform: rotate(120deg);
        -ms-transform: rotate(120deg);
        transform: rotate(120deg); }
      .preloader .sk-circle .sk-child:nth-child(4) {
        -webkit-transform: rotate(150deg);
        -ms-transform: rotate(150deg);
        transform: rotate(150deg); }
      .preloader .sk-circle .sk-child:nth-child(5) {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg); }
      .preloader .sk-circle .sk-child:nth-child(6) {
        -webkit-transform: rotate(210deg);
        -ms-transform: rotate(210deg);
        transform: rotate(210deg); }
      .preloader .sk-circle .sk-child:nth-child(7) {
        -webkit-transform: rotate(240deg);
        -ms-transform: rotate(240deg);
        transform: rotate(240deg); }
      .preloader .sk-circle .sk-child:nth-child(8) {
        -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        transform: rotate(270deg); }
      .preloader .sk-circle .sk-child:nth-child(9) {
        -webkit-transform: rotate(300deg);
        -ms-transform: rotate(300deg);
        transform: rotate(300deg); }
      .preloader .sk-circle .sk-child:nth-child(10) {
        -webkit-transform: rotate(330deg);
        -ms-transform: rotate(330deg);
        transform: rotate(330deg); }
      .preloader .sk-circle .sk-child:nth-child(11) {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg); }
      .preloader .sk-circle .sk-child:nth-child(12) {
        -webkit-transform: rotate(390deg);
        -ms-transform: rotate(390deg);
        transform: rotate(390deg); }
      .preloader .sk-circle .sk-child:before {
        content: '';
        display: block;
        margin: 0 auto;
        width: 15%;
        height: 15%;
        background-color: #2189c4;
        opacity: .8;
        border-radius: 100%;
        -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
        animation: sk-circleBounceDelay 1.2s infinite ease-in-out both; }
      .preloader .sk-circle .sk-child:nth-child(2)::before {
        -webkit-animation-delay: -1.1s;
        animation-delay: -1.1s; }
      .preloader .sk-circle .sk-child:nth-child(3)::before {
        -webkit-animation-delay: -1s;
        animation-delay: -1s; }
      .preloader .sk-circle .sk-child:nth-child(4)::before {
        -webkit-animation-delay: -0.9s;
        animation-delay: -0.9s; }
      .preloader .sk-circle .sk-child:nth-child(5)::before {
        -webkit-animation-delay: -0.8s;
        animation-delay: -0.8s; }
      .preloader .sk-circle .sk-child:nth-child(6)::before {
        -webkit-animation-delay: -0.7s;
        animation-delay: -0.7s; }
      .preloader .sk-circle .sk-child:nth-child(7)::before {
        -webkit-animation-delay: -0.6s;
        animation-delay: -0.6s; }
      .preloader .sk-circle .sk-child:nth-child(8)::before {
        -webkit-animation-delay: -0.5s;
        animation-delay: -0.5s; }
      .preloader .sk-circle .sk-child:nth-child(9)::before {
        -webkit-animation-delay: -0.4s;
        animation-delay: -0.4s; }
      .preloader .sk-circle .sk-child:nth-child(10)::before {
        -webkit-animation-delay: -0.3s;
        animation-delay: -0.3s; }
      .preloader .sk-circle .sk-child:nth-child(11)::before {
        -webkit-animation-delay: -0.2s;
        animation-delay: -0.2s; }
      .preloader .sk-circle .sk-child:nth-child(12)::before {
        -webkit-animation-delay: -0.1s;
        animation-delay: -0.1s; }

.page-node-162 .page-content {
  padding-bottom: 0px; }

.page-node-162 #node-162 {
  padding-bottom: 4em; }
  .page-node-162 #node-162 h2 {
    color: #e16521; }
    .page-node-162 #node-162 h2::before {
      height: .75em;
      background-color: #e16521;
      display: inline-block;
      width: 4px;
      margin-right: .5em;
      content: ""; }
  .page-node-162 #node-162 .svg-image {
    width: 100%;
    height: auto;
    opacity: 0; }
    .page-node-162 #node-162 .svg-image.list {
      max-width: 300px;
      margin: auto; }
      @media (min-width: 1025px) {
        .page-node-162 #node-162 .svg-image.list {
          max-width: 330px; } }
      .page-node-162 #node-162 .svg-image.list.show {
        opacity: 1;
        -webkit-animation: bounceIn .5s ease;
        animation: bounceIn .5s ease; }
        .page-node-162 #node-162 .svg-image.list.show #group-wrapper:hover > g {
          -webkit-transform: scale(1.1);
          -ms-transform: scale(1.1);
          transform: scale(1.1); }
        .page-node-162 #node-162 .svg-image.list.show #group-wrapper > g {
          -webkit-transform: scale(1);
          -ms-transform: scale(1);
          transform: scale(1);
          opacity: 0;
          opacity: 0; }
          .page-node-162 #node-162 .svg-image.list.show #group-wrapper > g:nth-child(1) {
            -webkit-animation: fadeIn_offset .5s ease forwards;
            animation: fadeIn_offset .5s ease forwards;
            -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s; }
          .page-node-162 #node-162 .svg-image.list.show #group-wrapper > g:nth-child(2) {
            -webkit-animation: fadeIn_offset .5s ease forwards;
            animation: fadeIn_offset .5s ease forwards;
            -webkit-animation-delay: 1s;
            animation-delay: 1s; }
          .page-node-162 #node-162 .svg-image.list.show #group-wrapper > g:nth-child(3) {
            -webkit-animation: fadeIn_offset .5s ease forwards;
            animation: fadeIn_offset .5s ease forwards;
            -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s; }
          .page-node-162 #node-162 .svg-image.list.show #group-wrapper > g:nth-child(4) {
            -webkit-animation: fadeIn_offset .5s ease forwards;
            animation: fadeIn_offset .5s ease forwards;
            -webkit-animation-delay: 2s;
            animation-delay: 2s; }
          .page-node-162 #node-162 .svg-image.list.show #group-wrapper > g:nth-child(5) {
            -webkit-animation: fadeIn_offset .5s ease forwards;
            animation: fadeIn_offset .5s ease forwards;
            -webkit-animation-delay: 2.5s;
            animation-delay: 2.5s; }
          .page-node-162 #node-162 .svg-image.list.show #group-wrapper > g:nth-child(6) {
            -webkit-animation: fadeIn_offset .5s ease forwards;
            animation: fadeIn_offset .5s ease forwards;
            -webkit-animation-delay: 3s;
            animation-delay: 3s; }
          .page-node-162 #node-162 .svg-image.list.show #group-wrapper > g:nth-child(7) {
            -webkit-animation: fadeIn_offset .5s ease forwards;
            animation: fadeIn_offset .5s ease forwards;
            -webkit-animation-delay: 3.5s;
            animation-delay: 3.5s; }
          .page-node-162 #node-162 .svg-image.list.show #group-wrapper > g:nth-child(8) {
            -webkit-animation: fadeIn_offset .5s ease forwards;
            animation: fadeIn_offset .5s ease forwards;
            -webkit-animation-delay: 4s;
            animation-delay: 4s; }
          .page-node-162 #node-162 .svg-image.list.show #group-wrapper > g:nth-child(9) {
            -webkit-animation: fadeIn_offset .5s ease forwards;
            animation: fadeIn_offset .5s ease forwards;
            -webkit-animation-delay: 4.5s;
            animation-delay: 4.5s; }
          .page-node-162 #node-162 .svg-image.list.show #group-wrapper > g:nth-child(10) {
            -webkit-animation: fadeIn_offset .5s ease forwards;
            animation: fadeIn_offset .5s ease forwards;
            -webkit-animation-delay: 5s;
            animation-delay: 5s; }
          .page-node-162 #node-162 .svg-image.list.show #group-wrapper > g:nth-child(11) {
            -webkit-animation: fadeIn_offset .5s ease forwards;
            animation: fadeIn_offset .5s ease forwards;
            -webkit-animation-delay: 5.5s;
            animation-delay: 5.5s; }
          .page-node-162 #node-162 .svg-image.list.show #group-wrapper > g:nth-child(12) {
            -webkit-animation: fadeIn_offset .5s ease forwards;
            animation: fadeIn_offset .5s ease forwards;
            -webkit-animation-delay: 6s;
            animation-delay: 6s; }
          .page-node-162 #node-162 .svg-image.list.show #group-wrapper > g:nth-child(13) {
            -webkit-animation: fadeIn_offset .5s ease forwards;
            animation: fadeIn_offset .5s ease forwards;
            -webkit-animation-delay: 6.5s;
            animation-delay: 6.5s; }
          .page-node-162 #node-162 .svg-image.list.show #group-wrapper > g:nth-child(14) {
            -webkit-animation: fadeIn_offset .5s ease forwards;
            animation: fadeIn_offset .5s ease forwards;
            -webkit-animation-delay: 7s;
            animation-delay: 7s; }

.ntsop_industry {
  background-color: #efefef;
  padding-bottom: 3em; }
  .ntsop_industry.visible.first-time .form-type-bef-link {
    opacity: 0; }
    .ntsop_industry.visible.first-time .form-type-bef-link:nth-child(1) {
      -webkit-animation: fadeIn_offset .5s ease forwards;
      animation: fadeIn_offset .5s ease forwards;
      -webkit-animation-delay: 0.1s;
      animation-delay: 0.1s; }
    .ntsop_industry.visible.first-time .form-type-bef-link:nth-child(2) {
      -webkit-animation: fadeIn_offset .5s ease forwards;
      animation: fadeIn_offset .5s ease forwards;
      -webkit-animation-delay: 0.2s;
      animation-delay: 0.2s; }
    .ntsop_industry.visible.first-time .form-type-bef-link:nth-child(3) {
      -webkit-animation: fadeIn_offset .5s ease forwards;
      animation: fadeIn_offset .5s ease forwards;
      -webkit-animation-delay: 0.3s;
      animation-delay: 0.3s; }
    .ntsop_industry.visible.first-time .form-type-bef-link:nth-child(4) {
      -webkit-animation: fadeIn_offset .5s ease forwards;
      animation: fadeIn_offset .5s ease forwards;
      -webkit-animation-delay: 0.4s;
      animation-delay: 0.4s; }
    .ntsop_industry.visible.first-time .form-type-bef-link:nth-child(5) {
      -webkit-animation: fadeIn_offset .5s ease forwards;
      animation: fadeIn_offset .5s ease forwards;
      -webkit-animation-delay: 0.5s;
      animation-delay: 0.5s; }
    .ntsop_industry.visible.first-time .form-type-bef-link:nth-child(6) {
      -webkit-animation: fadeIn_offset .5s ease forwards;
      animation: fadeIn_offset .5s ease forwards;
      -webkit-animation-delay: 0.6s;
      animation-delay: 0.6s; }
    .ntsop_industry.visible.first-time .form-type-bef-link:nth-child(7) {
      -webkit-animation: fadeIn_offset .5s ease forwards;
      animation: fadeIn_offset .5s ease forwards;
      -webkit-animation-delay: 0.7s;
      animation-delay: 0.7s; }
    .ntsop_industry.visible.first-time .form-type-bef-link:nth-child(8) {
      -webkit-animation: fadeIn_offset .5s ease forwards;
      animation: fadeIn_offset .5s ease forwards;
      -webkit-animation-delay: 0.8s;
      animation-delay: 0.8s; }
    .ntsop_industry.visible.first-time .form-type-bef-link:nth-child(9) {
      -webkit-animation: fadeIn_offset .5s ease forwards;
      animation: fadeIn_offset .5s ease forwards;
      -webkit-animation-delay: 0.9s;
      animation-delay: 0.9s; }
    .ntsop_industry.visible.first-time .form-type-bef-link:nth-child(10) {
      -webkit-animation: fadeIn_offset .5s ease forwards;
      animation: fadeIn_offset .5s ease forwards;
      -webkit-animation-delay: 1s;
      animation-delay: 1s; }
    .ntsop_industry.visible.first-time .form-type-bef-link:nth-child(11) {
      -webkit-animation: fadeIn_offset .5s ease forwards;
      animation: fadeIn_offset .5s ease forwards;
      -webkit-animation-delay: 1.1s;
      animation-delay: 1.1s; }
    .ntsop_industry.visible.first-time .form-type-bef-link:nth-child(12) {
      -webkit-animation: fadeIn_offset .5s ease forwards;
      animation: fadeIn_offset .5s ease forwards;
      -webkit-animation-delay: 1.2s;
      animation-delay: 1.2s; }
    .ntsop_industry.visible.first-time .form-type-bef-link:nth-child(13) {
      -webkit-animation: fadeIn_offset .5s ease forwards;
      animation: fadeIn_offset .5s ease forwards;
      -webkit-animation-delay: 1.3s;
      animation-delay: 1.3s; }
    .ntsop_industry.visible.first-time .form-type-bef-link:nth-child(14) {
      -webkit-animation: fadeIn_offset .5s ease forwards;
      animation: fadeIn_offset .5s ease forwards;
      -webkit-animation-delay: 1.4s;
      animation-delay: 1.4s; }
  .ntsop_industry.visible .group-wrapper {
    -webkit-animation: fadeDown_offset .8s ease forwards;
    animation: fadeDown_offset .8s ease forwards; }
  .ntsop_industry .views-exposed-widget {
    float: none;
    padding: 0; }
    .ntsop_industry .views-exposed-widget label[for="edit-title-selective"] {
      margin-top: 3.5em;
      margin-bottom: 2em;
      color: #1165a6; }
  @media (min-width: 1025px) {
    .ntsop_industry {
      padding-bottom: 8em; } }
  .ntsop_industry .view-ntsopl {
    padding: 0 15px; }
    .ntsop_industry .view-ntsopl .content, .ntsop_industry .view-ntsopl .view-filters {
      background-color: transparent;
      padding: 0; }
      @media (min-width: 1025px) {
        .ntsop_industry .view-ntsopl .content, .ntsop_industry .view-ntsopl .view-filters {
          padding: 0 45px; } }
  .ntsop_industry .bef-select-as-links > #edit-title-selective {
    display: none !important; }
  .ntsop_industry .bef-select-as-links .form-type-bef-link:nth-child(1) a::before {
    content: "";
    font-family: 'icomoon'; }
  .ntsop_industry .bef-select-as-links .form-type-bef-link:nth-child(2) a::before {
    content: "";
    font-family: 'icomoon'; }
  .ntsop_industry .bef-select-as-links .form-type-bef-link:nth-child(3) a::before {
    content: "";
    font-family: 'icomoon'; }
  .ntsop_industry .bef-select-as-links .form-type-bef-link:nth-child(4) a::before {
    content: "";
    font-family: 'icomoon'; }
  .ntsop_industry .bef-select-as-links .form-type-bef-link:nth-child(5) a::before {
    content: "";
    font-family: 'icomoon'; }
  .ntsop_industry .bef-select-as-links .form-type-bef-link:nth-child(6) a::before {
    content: "";
    font-family: 'icomoon'; }
  .ntsop_industry .bef-select-as-links .form-type-bef-link:nth-child(7) a::before {
    content: "";
    font-family: 'icomoon'; }
  .ntsop_industry .bef-select-as-links .form-type-bef-link:nth-child(8) a::before {
    content: "";
    font-family: 'icomoon'; }
  .ntsop_industry .bef-select-as-links .form-type-bef-link:nth-child(9) a::before {
    content: "";
    font-family: 'icomoon'; }
  .ntsop_industry .bef-select-as-links .form-type-bef-link:nth-child(10) a::before {
    content: "";
    font-family: 'icomoon'; }
  @media (max-width: 768px) {
    .ntsop_industry .bef-select-as-links .form-type-bef-link {
      border-bottom: 1px solid #dfdfdf; }
      .ntsop_industry .bef-select-as-links .form-type-bef-link:hover, .ntsop_industry .bef-select-as-links .form-type-bef-link.active {
        background-color: #dfdfdf; }
      .ntsop_industry .bef-select-as-links .form-type-bef-link a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        padding: .5em 1em;
        display: block;
        font-size: 14px; }
        .ntsop_industry .bef-select-as-links .form-type-bef-link a::before {
          margin-right: .5em; } }
  @media (min-width: 769px) {
    .ntsop_industry .bef-select-as-links > .form-item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
      flex-flow: row wrap;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; } }
  @media (min-width: 769px) and (min-width: 769px) and (max-width: 1024px) {
    .ntsop_industry .bef-select-as-links > .form-item:after {
      content: "";
      -webkit-box-flex: 1;
      -ms-flex: auto;
      flex: auto; } }
  @media (min-width: 769px) {
      .ntsop_industry .bef-select-as-links > .form-item .form-type-bef-link {
        position: relative;
        margin-bottom: 1em; } }
    @media (min-width: 769px) and (min-width: 769px) and (max-width: 1024px) {
      .ntsop_industry .bef-select-as-links > .form-item .form-type-bef-link {
        -ms-flex-preferred-size: 23%;
        flex-basis: 23%;
        margin-right: 2%; } }
    @media (min-width: 769px) and (min-width: 1025px) {
      .ntsop_industry .bef-select-as-links > .form-item .form-type-bef-link {
        -ms-flex-preferred-size: 18.5%;
        flex-basis: 18.5%; } }
  @media (min-width: 769px) {
        .ntsop_industry .bef-select-as-links > .form-item .form-type-bef-link::before {
          content: "";
          display: block;
          width: 100%;
          padding-bottom: 100%;
          background-color: white;
          -webkit-transition: all .5s ease;
          -o-transition: all .5s ease;
          transition: all .5s ease; }
        .ntsop_industry .bef-select-as-links > .form-item .form-type-bef-link a {
          display: block;
          text-align: center;
          top: 50%;
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%);
          position: absolute;
          left: 0;
          right: 0;
          font-size: 13px;
          padding: 0 2em;
          font-weight: 600;
          -webkit-transition: none;
          -o-transition: none;
          transition: none;
          -webkit-transition: color .5s ease;
          -o-transition: color .5s ease;
          transition: color .5s ease; }
          .ntsop_industry .bef-select-as-links > .form-item .form-type-bef-link a::before {
            font-weight: normal;
            text-align: center;
            display: block;
            font-size: 73px;
            color: #e16521; }
          .ntsop_industry .bef-select-as-links > .form-item .form-type-bef-link a::after {
            text-align: center;
            display: block;
            color: white;
            content: "";
            font-family: 'icomoon';
            opacity: 0;
            -webkit-transform: translateY(-10px);
            -ms-transform: translateY(-10px);
            transform: translateY(-10px);
            -webkit-transition: all .5s ease;
            -o-transition: all .5s ease;
            transition: all .5s ease;
            font-weight: 100;
            font-size: 0; }
        .ntsop_industry .bef-select-as-links > .form-item .form-type-bef-link:hover::before, .ntsop_industry .bef-select-as-links > .form-item .form-type-bef-link.active::before {
          background-color: #2189c4;
          -webkit-transition: all .5s ease;
          -o-transition: all .5s ease;
          transition: all .5s ease; }
        .ntsop_industry .bef-select-as-links > .form-item .form-type-bef-link:hover a, .ntsop_industry .bef-select-as-links > .form-item .form-type-bef-link.active a {
          -webkit-transition: none;
          -o-transition: none;
          transition: none;
          font-size: 0px;
          color: #2189c4;
          -webkit-transition: color .5s ease;
          -o-transition: color .5s ease;
          transition: color .5s ease; }
          .ntsop_industry .bef-select-as-links > .form-item .form-type-bef-link:hover a::before, .ntsop_industry .bef-select-as-links > .form-item .form-type-bef-link.active a::before {
            color: white;
            font-size: 83px; }
          .ntsop_industry .bef-select-as-links > .form-item .form-type-bef-link:hover a::after, .ntsop_industry .bef-select-as-links > .form-item .form-type-bef-link.active a::after {
            opacity: 1;
            font-size: 33px;
            -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
            transform: translateY(0);
            -webkit-transition: all .5s ease;
            -o-transition: all .5s ease;
            transition: all .5s ease; } }
  @media (max-width: 768px) {
    .ntsop_industry .node-teaser {
      margin: 0 -15px; }
      .ntsop_industry .node-teaser .group-wrapper .group-officer-wrapper {
        padding: 3em 1.5em; } }
  .ntsop_industry .group-wrapper {
    color: white; }
    @media (min-width: 769px) {
      .ntsop_industry .group-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }
    .ntsop_industry .group-wrapper .group-content-wrapper {
      background-color: #2189c4;
      padding: 3em 4em; }
      @media (min-width: 769px) {
        .ntsop_industry .group-wrapper .group-content-wrapper {
          -webkit-box-flex: 1;
          -ms-flex: 1;
          flex: 1;
          padding: 3em 9em 3em 4em; } }
      .ntsop_industry .group-wrapper .group-content-wrapper .field-name-title h2 {
        font-size: 22px;
        font-weight: bold; }
        @media (min-width: 1025px) {
          .ntsop_industry .group-wrapper .group-content-wrapper .field-name-title h2 {
            padding-right: 40%; } }
    .ntsop_industry .group-wrapper .group-officer-wrapper {
      background-color: #70bbe9;
      padding: 3em 4em; }
      @media (min-width: 769px) {
        .ntsop_industry .group-wrapper .group-officer-wrapper {
          -webkit-box-flex: 0;
          -ms-flex: 0;
          flex: 0; } }
      .ntsop_industry .group-wrapper .group-officer-wrapper a {
        color: white; }
      .ntsop_industry .group-wrapper .group-officer-wrapper .group-photo-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 1.8em; }
        .ntsop_industry .group-wrapper .group-officer-wrapper .group-photo-wrapper .field, .ntsop_industry .group-wrapper .group-officer-wrapper .group-photo-wrapper h3 {
          margin: 0; }
        .ntsop_industry .group-wrapper .group-officer-wrapper .group-photo-wrapper .field-name-title h3 a {
          text-transform: uppercase;
          font-size: 18px; }
        .ntsop_industry .group-wrapper .group-officer-wrapper .group-photo-wrapper .field-name-field-post-image {
          margin-right: 1.5em; }
          .ntsop_industry .group-wrapper .group-officer-wrapper .group-photo-wrapper .field-name-field-post-image .field-item {
            width: 105px;
            height: 105px; }
            .ntsop_industry .group-wrapper .group-officer-wrapper .group-photo-wrapper .field-name-field-post-image .field-item img {
              display: block;
              border-radius: 50%;
              width: 100%; }
      .ntsop_industry .group-wrapper .group-officer-wrapper .field-name-node-link {
        padding-bottom: 2em;
        border-bottom: 1px solid #9cd0f0;
        margin: 0; }
        .ntsop_industry .group-wrapper .group-officer-wrapper .field-name-node-link a {
          display: block;
          font-weight: bold;
          text-align: center;
          color: white;
          font-size: 16px;
          border: 2px solid white; }
          @media (min-width: 481px) {
            .ntsop_industry .group-wrapper .group-officer-wrapper .field-name-node-link a {
              min-width: 15em;
              padding: .7em 2.5em; } }
          @media (max-width: 480px) {
            .ntsop_industry .group-wrapper .group-officer-wrapper .field-name-node-link a {
              padding: .7em 0;
              width: 100%; } }
          .ntsop_industry .group-wrapper .group-officer-wrapper .field-name-node-link a:hover {
            background-color: white;
            color: #2189c4; }
      .ntsop_industry .group-wrapper .group-officer-wrapper .field-name-field-survey, .ntsop_industry .group-wrapper .group-officer-wrapper .field-name-survey-colorbox {
        margin-top: 2em; }
        .ntsop_industry .group-wrapper .group-officer-wrapper .field-name-field-survey a, .ntsop_industry .group-wrapper .group-officer-wrapper .field-name-survey-colorbox a {
          display: block;
          font-weight: bold;
          text-align: center;
          color: white;
          font-size: 16px;
          background-color: #2189c4; }
          @media (min-width: 481px) {
            .ntsop_industry .group-wrapper .group-officer-wrapper .field-name-field-survey a, .ntsop_industry .group-wrapper .group-officer-wrapper .field-name-survey-colorbox a {
              min-width: 15em;
              padding: .7em 2.5em; } }
          @media (max-width: 480px) {
            .ntsop_industry .group-wrapper .group-officer-wrapper .field-name-field-survey a, .ntsop_industry .group-wrapper .group-officer-wrapper .field-name-survey-colorbox a {
              padding: .7em 0;
              width: 100%; } }
          .ntsop_industry .group-wrapper .group-officer-wrapper .field-name-field-survey a:hover, .ntsop_industry .group-wrapper .group-officer-wrapper .field-name-survey-colorbox a:hover {
            background-color: white;
            color: #2189c4; }

/*
 * Design
 *
 * Include all your design elements in this file.
 */
body {
  background: #fff;
  color: #555; }

.easy-breadcrumb span {
  font-size: 11px;
  font-weight: bold; }
  .easy-breadcrumb span a {
    font-weight: normal;
    color: #d8d8d8; }
  .easy-breadcrumb span.easy-breadcrumb_segment-separator {
    color: #d8d8d8;
    font-weight: normal; }

.animated-rows.invisible .views-row {
  opacity: 0; }

.animated-rows.visible .views-row {
  opacity: 0; }
  .animated-rows.visible .views-row:nth-child(1) {
    -webkit-animation: fadeIn_offset .5s ease forwards;
    animation: fadeIn_offset .5s ease forwards;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s; }
  .animated-rows.visible .views-row:nth-child(2) {
    -webkit-animation: fadeIn_offset .5s ease forwards;
    animation: fadeIn_offset .5s ease forwards;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s; }
  .animated-rows.visible .views-row:nth-child(3) {
    -webkit-animation: fadeIn_offset .5s ease forwards;
    animation: fadeIn_offset .5s ease forwards;
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s; }
  .animated-rows.visible .views-row:nth-child(4) {
    -webkit-animation: fadeIn_offset .5s ease forwards;
    animation: fadeIn_offset .5s ease forwards;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s; }
  .animated-rows.visible .views-row:nth-child(5) {
    -webkit-animation: fadeIn_offset .5s ease forwards;
    animation: fadeIn_offset .5s ease forwards;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s; }
  .animated-rows.visible .views-row:nth-child(6) {
    -webkit-animation: fadeIn_offset .5s ease forwards;
    animation: fadeIn_offset .5s ease forwards;
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s; }
  .animated-rows.visible .views-row:nth-child(7) {
    -webkit-animation: fadeIn_offset .5s ease forwards;
    animation: fadeIn_offset .5s ease forwards;
    -webkit-animation-delay: 2.1s;
    animation-delay: 2.1s; }
  .animated-rows.visible .views-row:nth-child(8) {
    -webkit-animation: fadeIn_offset .5s ease forwards;
    animation: fadeIn_offset .5s ease forwards;
    -webkit-animation-delay: 2.4s;
    animation-delay: 2.4s; }
  .animated-rows.visible .views-row:nth-child(9) {
    -webkit-animation: fadeIn_offset .5s ease forwards;
    animation: fadeIn_offset .5s ease forwards;
    -webkit-animation-delay: 2.7s;
    animation-delay: 2.7s; }
  .animated-rows.visible .views-row:nth-child(10) {
    -webkit-animation: fadeIn_offset .5s ease forwards;
    animation: fadeIn_offset .5s ease forwards;
    -webkit-animation-delay: 3s;
    animation-delay: 3s; }
  .animated-rows.visible .views-row:nth-child(11) {
    -webkit-animation: fadeIn_offset .5s ease forwards;
    animation: fadeIn_offset .5s ease forwards;
    -webkit-animation-delay: 3.3s;
    animation-delay: 3.3s; }
  .animated-rows.visible .views-row:nth-child(12) {
    -webkit-animation: fadeIn_offset .5s ease forwards;
    animation: fadeIn_offset .5s ease forwards;
    -webkit-animation-delay: 3.6s;
    animation-delay: 3.6s; }
  .animated-rows.visible .views-row:nth-child(13) {
    -webkit-animation: fadeIn_offset .5s ease forwards;
    animation: fadeIn_offset .5s ease forwards;
    -webkit-animation-delay: 3.9s;
    animation-delay: 3.9s; }
  .animated-rows.visible .views-row:nth-child(14) {
    -webkit-animation: fadeIn_offset .5s ease forwards;
    animation: fadeIn_offset .5s ease forwards;
    -webkit-animation-delay: 4.2s;
    animation-delay: 4.2s; }

a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #00aeef;
  text-decoration: none; }
  a:focus, a:hover {
    color: #c00; }

#block-system-main-menu .navbar-nav > li > .dropdown-menu > .sub-menu-container > ul {
  float: left; }

#block-system-main-menu span.nolink {
  padding: 46px 17px;
  display: block;
  font-weight: 600;
  color: #58595b !important; }

.field {
  margin-bottom: 1em; }
  .field .field-label {
    font-weight: 700; }

.view-id-cta_what_we_do {
  *zoom: 1; }
  .view-id-cta_what_we_do:before, .view-id-cta_what_we_do:after {
    content: '';
    display: table; }
  .view-id-cta_what_we_do:after {
    clear: both; }
  .view-id-cta_what_we_do .views-row .views-field {
    position: relative;
    display: block;
    height: 170px;
    background-color: #1165a6;
    color: white;
    margin-bottom: 20px; }
    .view-id-cta_what_we_do .views-row .views-field a {
      padding: 20px;
      display: block;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      color: inherit; }
      .view-id-cta_what_we_do .views-row .views-field a:hover {
        opacity: 1; }
        .view-id-cta_what_we_do .views-row .views-field a:hover .readmore {
          background-color: white;
          color: #1165a6; }
    .view-id-cta_what_we_do .views-row .views-field .cta-content {
      font-size: 1.3em;
      margin-bottom: 2em;
      display: block; }
    .view-id-cta_what_we_do .views-row .views-field .readmore {
      position: absolute;
      bottom: 20px;
      left: 20px;
      text-transform: uppercase;
      border: 2px solid white;
      font-size: 0.8em;
      padding: 0.5em;
      -webkit-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }

.page-node-200 .the-content {
  padding: 0 !important; }

.page-node-200 #node-200 .ckeditor-accordion dt a {
  text-decoration: none; }

.page-node-200 #node-200 .ckeditor-accordion dd {
  padding: 1em; }

.page-node-200 #node-200 .button {
  color: white;
  text-decoration: none; }
  .page-node-200 #node-200 .button:hover, .page-node-200 #node-200 .button:visited {
    background-color: #003f56;
    opacity: 1; }

.page-node-200 .blow-content > .block > *:not(.contextual-links-wrapper) {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
  @media (min-width: 768px) {
    .page-node-200 .blow-content > .block > *:not(.contextual-links-wrapper) {
      width: 750px; } }
  @media (min-width: 992px) {
    .page-node-200 .blow-content > .block > *:not(.contextual-links-wrapper) {
      width: 970px; } }
  @media (min-width: 1200px) {
    .page-node-200 .blow-content > .block > *:not(.contextual-links-wrapper) {
      width: 1170px; } }

.page-node-200 .blow-content > .block > p,
.page-node-200 .blow-content > .block > h2 {
  margin-bottom: 1em; }

.page-node-200 .blow-content .Industry-consultations {
  padding: 3em 0; }
  .page-node-200 .blow-content .Industry-consultations h2 {
    margin-bottom: 1em;
    text-align: center; }
  @media (min-width: 769px) {
    .page-node-200 .blow-content .Industry-consultations h2, .page-node-200 .blow-content .Industry-consultations p {
      padding: 0 !important; } }
  .page-node-200 .blow-content .Industry-consultations .layout-row {
    overflow: hidden; }
    @media (min-width: 769px) {
      .page-node-200 .blow-content .Industry-consultations .layout-row {
        border: 1px solid #dfdfdf; } }
    @media (max-width: 768px) {
      .page-node-200 .blow-content .Industry-consultations .layout-row {
        border-top: 1px solid #dfdfdf;
        border-bottom: 1px solid #dfdfdf; } }
    .page-node-200 .blow-content .Industry-consultations .layout-row .col-one-half {
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
      -webkit-transition: -webkit-transform .3s ease;
      transition: -webkit-transform .3s ease;
      -o-transition: transform .3s ease;
      transition: transform .3s ease;
      transition: transform .3s ease, -webkit-transform .3s ease;
      padding: 2em 0;
      text-align: center; }
      .page-node-200 .blow-content .Industry-consultations .layout-row .col-one-half:hover {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
        -webkit-transition: -webkit-transform .3s ease;
        transition: -webkit-transform .3s ease;
        -o-transition: transform .3s ease;
        transition: transform .3s ease;
        transition: transform .3s ease, -webkit-transform .3s ease; }
      @media (min-width: 769px) {
        .page-node-200 .blow-content .Industry-consultations .layout-row .col-one-half:first-child {
          border-right: 1px solid #dfdfdf; } }
      @media (max-width: 768px) {
        .page-node-200 .blow-content .Industry-consultations .layout-row .col-one-half:first-child {
          border-bottom: 1px solid #dfdfdf; } }
      .page-node-200 .blow-content .Industry-consultations .layout-row .col-one-half a {
        display: block;
        line-height: 1.8em; }

.page-node-200 .blow-content .online-feedback-form {
  padding-top: 3em;
  padding-bottom: 2em;
  background-color: #dfdfdf;
  padding-left: 2em 0; }
  .page-node-200 .blow-content .online-feedback-form .contact-form {
    max-width: 800px; }
    .page-node-200 .blow-content .online-feedback-form .contact-form input {
      max-width: 800px; }
    .page-node-200 .blow-content .online-feedback-form .contact-form fieldset {
      margin-bottom: 50px;
      height: auto; }
      .page-node-200 .blow-content .online-feedback-form .contact-form fieldset.webform-component--feedback-on-course-description {
        padding-bottom: 3em; }
      .page-node-200 .blow-content .online-feedback-form .contact-form fieldset.collapsed a::before {
        -webkit-transform: rotate(0deg) !important;
        -ms-transform: rotate(0deg) !important;
        transform: rotate(0deg) !important;
        -webkit-transition: -webkit-transform 0.2s ease-in-out;
        transition: -webkit-transform 0.2s ease-in-out;
        -o-transition: transform 0.2s ease-in-out;
        transition: transform 0.2s ease-in-out;
        transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out; }
      .page-node-200 .blow-content .online-feedback-form .contact-form fieldset label {
        background-color: #2188c4; }
      .page-node-200 .blow-content .online-feedback-form .contact-form fieldset legend {
        margin: 0; }
        .page-node-200 .blow-content .online-feedback-form .contact-form fieldset legend a {
          background-color: #2188c4;
          color: white;
          padding: 12px 17px;
          display: block;
          display: block;
          font-size: 16px; }
          .page-node-200 .blow-content .online-feedback-form .contact-form fieldset legend a::before {
            color: white;
            content: "+";
            font-family: Arial, Helvetica, sans-serif;
            font-size: 1em;
            font-weight: 700;
            display: inline-block;
            margin-right: 10px;
            -webkit-transition: -webkit-transform 0.3s ease-in-out;
            transition: -webkit-transform 0.3s ease-in-out;
            -o-transition: transform 0.3s ease-in-out;
            transition: transform 0.3s ease-in-out;
            transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            -webkit-transform: rotate(-225deg);
            -ms-transform: rotate(-225deg);
            transform: rotate(-225deg); }
          @media screen and (max-width: 767px) {
            .page-node-200 .blow-content .online-feedback-form .contact-form fieldset legend a {
              font-size: 12px; } }
      .page-node-200 .blow-content .online-feedback-form .contact-form fieldset .fieldset-wrapper {
        padding: .5em 0 .5em 2em; }
        @media screen and (max-width: 600px) {
          .page-node-200 .blow-content .online-feedback-form .contact-form fieldset .fieldset-wrapper {
            padding: .5em 2em .5em 2em; } }
        .page-node-200 .blow-content .online-feedback-form .contact-form fieldset .fieldset-wrapper .form-type-textfield {
          margin-top: 3em; }
        .page-node-200 .blow-content .online-feedback-form .contact-form fieldset .fieldset-wrapper .form-type-webform-number {
          margin: 1em 0; }
          @media screen and (min-width: 600px) {
            .page-node-200 .blow-content .online-feedback-form .contact-form fieldset .fieldset-wrapper .form-type-webform-number {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex; } }
          .page-node-200 .blow-content .online-feedback-form .contact-form fieldset .fieldset-wrapper .form-type-webform-number label {
            -webkit-box-flex: 1;
            -ms-flex: 1;
            flex: 1;
            margin: 0;
            position: static;
            font-size: 16px; }
            @media screen and (max-width: 599px) {
              .page-node-200 .blow-content .online-feedback-form .contact-form fieldset .fieldset-wrapper .form-type-webform-number label {
                display: block; } }
            @media screen and (max-width: 767px) {
              .page-node-200 .blow-content .online-feedback-form .contact-form fieldset .fieldset-wrapper .form-type-webform-number label {
                font-size: 12px; } }
          .page-node-200 .blow-content .online-feedback-form .contact-form fieldset .fieldset-wrapper .form-type-webform-number input {
            padding: 0;
            width: 50px;
            height: 50px;
            text-align: center; }
            @media screen and (max-width: 599px) {
              .page-node-200 .blow-content .online-feedback-form .contact-form fieldset .fieldset-wrapper .form-type-webform-number input {
                width: 100%;
                text-align: left;
                padding: 0 1em; } }
      .page-node-200 .blow-content .online-feedback-form .contact-form fieldset + .form-item {
        margin-top: 25px; }
  .page-node-200 .blow-content .online-feedback-form h2 {
    text-align: center;
    color: #58595b;
    margin: 1em 0 1.5em 0; }
  .page-node-200 .blow-content .online-feedback-form label.error {
    display: block;
    color: #b50000;
    font-size: 14px;
    position: absolute;
    bottom: 0;
    top: auto !important;
    -webkit-transform: translateY(100%) !important;
    -ms-transform: translateY(100%) !important;
    transform: translateY(100%) !important;
    margin: 0;
    width: 100%;
    text-align: right; }
  .page-node-200 .blow-content .online-feedback-form .form-type-select label {
    position: static;
    margin: 0;
    width: 100%;
    max-width: 500px;
    display: block; }
  .page-node-200 .blow-content .online-feedback-form .form-type-select select {
    display: block; }
  .page-node-200 .blow-content .online-feedback-form .form-type-select input {
    padding: 1em; }
  .page-node-200 .blow-content .online-feedback-form #edit-submitted-course-description {
    margin-top: -25px;
    margin-bottom: 50px; }
  .page-node-200 .blow-content .online-feedback-form .form-type-textfield label {
    bottom: 0;
    margin: 0;
    -webkit-transform: translateY(-3em);
    -ms-transform: translateY(-3em);
    transform: translateY(-3em);
    top: auto; }
  .page-node-200 .blow-content .online-feedback-form .btn {
    float: none;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease; }
    .page-node-200 .blow-content .online-feedback-form .btn:hover {
      background-color: #e16521;
      color: white;
      -webkit-transition: all .3s ease;
      -o-transition: all .3s ease;
      transition: all .3s ease; }

.page-node-200 .story-image-wrapper {
  text-align: center; }
  .page-node-200 .story-image-wrapper img {
    max-width: 800px; }

.page-node-200 .small-images-wrapper {
  display: none !important;
  margin-bottom: 2em;
  width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap; }
  .page-node-200 .small-images-wrapper .col {
    width: 100px;
    border: 1px solid #dfdfdf;
    margin: 5px;
    padding: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .page-node-200 .small-images-wrapper .col img {
      display: block;
      width: 100%;
      -ms-flex-item-align: center;
      align-self: center; }

body.node-type-snapshot .node-snapshot {
  position: relative; }

body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item > .content {
  padding: 0;
  border-radius: 0;
  background: transparent; }

body.node-type-snapshot .paragraphs-items img {
  vertical-align: middle; }

body.node-type-snapshot .paragraphs-items .field-collection-container {
  border-bottom: 0; }

.snapshot-container .title-and-breadcrumb {
  position: absolute;
  z-index: 1;
  width: 100%;
  color: #fff; }
  .snapshot-container .title-and-breadcrumb > div {
    text-align: center;
    padding: 0 25px; }
  .snapshot-container .title-and-breadcrumb h1 {
    margin: 70px 0 15px;
    color: #fff; }

body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-banner-title-and-image {
  position: relative;
  height: 535px;
  width: 100%;
  overflow: hidden;
  background-position: top center;
  background-size: cover; }
  body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-banner-title-and-image:before {
    content: '';
    position: absolute;
    width: 100%;
    height: inherit;
    background: rgba(20, 59, 134, 0.8);
    top: 0; }
  body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-banner-title-and-image .content {
    width: 100%;
    height: inherit;
    position: absolute;
    top: 0;
    padding-top: 200px;
    text-align: center;
    color: #fff; }
    body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-banner-title-and-image .content > .field {
      max-width: 700px;
      margin: 0 auto;
      text-align: center; }
      body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-banner-title-and-image .content > .field.field-name-field-icon {
        width: 80px;
        margin: 0 auto; }
        body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-banner-title-and-image .content > .field.field-name-field-icon > .field-item {
          background: #558239;
          display: inline-block;
          width: 80px;
          height: 80px;
          padding: 10px 10px;
          border-radius: 100%;
          margin-bottom: 20px; }
  body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-banner-title-and-image .field-name-field-banner-image {
    display: none; }

body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-quote-full-width {
  position: relative;
  background: #558239;
  color: #fff; }
  body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-quote-full-width .content {
    padding: 200px 0 100px;
    font-style: italic;
    background: transparent url(../img/icon-quote.png) no-repeat center 125px;
    font-size: 24px;
    max-width: 800px;
    text-align: center; }
  body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-quote-full-width .field-name-field-title {
    height: 0;
    overflow: hidden; }

body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-quote {
  position: relative;
  color: #fff;
  margin: 60px 0; }
  body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-quote .content {
    padding: 150px 20px 100px;
    font-style: italic;
    background: #558239 url(../img/icon-quote.png) no-repeat center 90px;
    font-size: 24px;
    max-width: 800px;
    text-align: center; }
    body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-quote .content blockquote {
      margin: 0;
      padding: 0;
      border: 0;
      font-size: 24px; }
      body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-quote .content blockquote footer {
        color: #fff;
        margin-top: 20px; }
  body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-quote .field-name-field-title {
    height: 0;
    overflow: hidden; }

body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-column-content {
  position: relative;
  padding: 100px 0; }

body.node-type-snapshot .paragraphs-items .field.field-name-field-title > .field-item,
body.node-type-snapshot .paragraphs-items > h3 {
  color: #558239;
  margin: 60px auto 40px;
  padding-bottom: 20px;
  position: relative;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  max-width: 500px;
  width: 100%; }
  body.node-type-snapshot .paragraphs-items .field.field-name-field-title > .field-item:after,
  body.node-type-snapshot .paragraphs-items > h3:after {
    width: 50px;
    height: 5px;
    background: #558239;
    content: '';
    position: absolute;
    bottom: 0;
    left: 46%; }

body.node-type-snapshot .paragraphs-items .paragraphs-item-banner-title-and-image .field.field-name-field-title > .field-item {
  color: #fff;
  margin: 0 0 0 0;
  display: inline;
  padding-bottom: 0;
  position: relative;
  font-weight: bold;
  font-size: 34px;
  text-align: center;
  max-width: 600px;
  width: 100%;
  background: #558239;
  -webkit-box-shadow: 10px 0 0 #558239, -10px 0 0 #558239;
  box-shadow: 10px 0 0 #558239, -10px 0 0 #558239;
  line-height: 1.6; }
  body.node-type-snapshot .paragraphs-items .paragraphs-item-banner-title-and-image .field.field-name-field-title > .field-item:after {
    display: none; }

@media (min-width: 769px) {
  body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-cols-with-full-height-image-on .content > div.field-name-field-wysiwyg, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-cols-with-full-height-image-on .content > div.field-name-field-post-image {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48%;
    margin-left: 0%;
    margin-right: 4%; }
    body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-cols-with-full-height-image-on .content > div.field-name-field-wysiwyg:before, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-cols-with-full-height-image-on .content > div.field-name-field-wysiwyg:after, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-cols-with-full-height-image-on .content > div.field-name-field-post-image:before, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-cols-with-full-height-image-on .content > div.field-name-field-post-image:after {
      content: '';
      display: table; }
    body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-cols-with-full-height-image-on .content > div.field-name-field-wysiwyg:after, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-cols-with-full-height-image-on .content > div.field-name-field-post-image:after {
      clear: both; }
    body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-cols-with-full-height-image-on .content > div.field-name-field-wysiwyg:last-child, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-cols-with-full-height-image-on .content > div.field-name-field-post-image:last-child {
      margin-right: 0%; } }

@media (min-width: 769px) {
  body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-cols-with-full-height-image-on .content .field {
    margin: 0; } }

body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-cols-with-full-height-image-on .content .field-name-field-wysiwyg {
  padding: 40px 0; }
  @media (min-width: 769px) {
    body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-cols-with-full-height-image-on .content .field-name-field-wysiwyg {
      padding: 140px 20px 0 0; } }
  body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-cols-with-full-height-image-on .content .field-name-field-wysiwyg h3 {
    color: #558239;
    margin: 0 0 40px;
    padding-bottom: 20px;
    position: relative;
    font-weight: bold;
    font-size: 20px; }
    body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-2-cols-with-full-height-image-on .content .field-name-field-wysiwyg h3:after {
      width: 50px;
      height: 5px;
      background: #558239;
      content: '';
      position: absolute;
      bottom: 0;
      left: 0; }

body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-list-item-with-icon {
  padding: 30px 0;
  background-color: #ebebeb; }
  body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-list-item-with-icon .content strong {
    font-weight: bold;
    color: #223f84;
    text-transform: uppercase; }
  body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-list-item-with-icon .content .content {
    background-color: transparent; }
  body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-list-item-with-icon .content .field {
    margin-bottom: 0; }
    body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-list-item-with-icon .content .field .field-type-image {
      float: left; }
      body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-list-item-with-icon .content .field .field-type-image .field-item {
        border-radius: 100%;
        background: #558239;
        width: 120px;
        height: 120px;
        padding: 15px;
        text-align: center; }
        body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-list-item-with-icon .content .field .field-type-image .field-item img {
          margin: 0 auto; }
    body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-list-item-with-icon .content .field .field-name-field-wysiwyg {
      margin-left: 150px; }
    body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-list-item-with-icon .content .field .field-collection-view {
      padding: 10px 0;
      margin: 0;
      border: 0; }
  body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-list-item-with-icon .content > .field.field-name-field-wysiwyg {
    margin-bottom: 40px; }

body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig {
  margin-bottom: 40px; }
  body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content .field-name-field-top-right-lightbox {
    display: none; }
  body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .field-name-field-description {
    margin-bottom: 40px; }
  body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container {
    max-width: 1000px;
    margin: 0 auto; }
    body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container > .group-top {
      *zoom: 1; }
      body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container > .group-top:before, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container > .group-top:after {
        content: '';
        display: table; }
      body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container > .group-top:after {
        clear: both; }
      body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container > .group-top > .group-top-left {
        background: #ebebeb;
        padding: 30px;
        text-align: center;
        position: relative; }
        @media (min-width: 769px) {
          body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container > .group-top > .group-top-left {
            float: left;
            width: 50%;
            height: 360px; }
            body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container > .group-top > .group-top-left .field-type-image {
              height: 300px;
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
              -ms-flex-align: center;
              align-items: center; }
              body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container > .group-top > .group-top-left .field-type-image div {
                width: 100%; } }
      body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container > .group-top > .group-top-right {
        background: #fff;
        padding: 30px;
        text-align: center;
        position: relative; }
        @media (min-width: 769px) {
          body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container > .group-top > .group-top-right {
            float: left;
            width: 50%;
            height: 360px; }
            body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container > .group-top > .group-top-right .field-type-image {
              height: 300px;
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
              -ms-flex-align: center;
              align-items: center; }
              body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container > .group-top > .group-top-right .field-type-image div {
                width: 100%; } }
    body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container > .group-bottom {
      *zoom: 1;
      background: #143b86 url(../img/captovate/icon-graph.png) no-repeat center center; }
      body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container > .group-bottom:before, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container > .group-bottom:after {
        content: '';
        display: table; }
      body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container > .group-bottom:after {
        clear: both; }
      body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container > .group-bottom > .group-bottom-left {
        padding: 30px;
        text-align: center;
        padding-bottom: 140px;
        position: relative; }
        @media (min-width: 769px) {
          body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container > .group-bottom > .group-bottom-left {
            float: left;
            width: 50%;
            height: 360px;
            padding-bottom: 30px; }
            body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container > .group-bottom > .group-bottom-left .field-type-image {
              height: 300px;
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
              -ms-flex-align: center;
              align-items: center; }
              body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container > .group-bottom > .group-bottom-left .field-type-image div {
                width: 100%; } }
      body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container > .group-bottom > .group-bottom-right {
        padding: 30px;
        text-align: center;
        padding-top: 140px;
        position: relative; }
        @media (min-width: 769px) {
          body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container > .group-bottom > .group-bottom-right {
            float: left;
            width: 50%;
            height: 360px;
            padding-top: 30px; }
            body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container > .group-bottom > .group-bottom-right .field-type-image {
              height: 300px;
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
              -ms-flex-align: center;
              align-items: center; }
              body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container > .group-bottom > .group-bottom-right .field-type-image div {
                width: 100%; } }
    body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container .field {
      margin: 0; }
    body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container .field-type-text-long {
      display: none; }
    body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-3-boxes-with-text-images-and-lig .content > .group-container .open-lb-container .btn-open-lb {
      display: block;
      width: 38px;
      height: 38px;
      background: transparent url(../img/captovate/icon-open-lightbox.png) no-repeat 0 0;
      text-indent: -9001px;
      position: absolute;
      bottom: 20px;
      right: 20px;
      cursor: pointer; }

.verticallyCenter, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-banner-title-and-image .content > .field.field-name-field-icon > .field-item, body.node-type-snapshot .paragraphs-items > .entity-paragraphs-item.paragraphs-item-list-item-with-icon .content .field .field-type-image .field-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.snapshot-nav-holder {
  position: absolute;
  z-index: 1;
  top: 0;
  margin-top: 20px;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all; }
  .snapshot-nav-holder.fixed {
    position: fixed;
    margin-top: 170px; }
  .snapshot-nav-holder .snapshot-nav > ul > li > a {
    color: #2b2b2b;
    font-size: 14px;
    -webkit-transition: 0.2s all;
    -o-transition: 0.2s all;
    transition: 0.2s all;
    font-weight: bold;
    display: inline;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    -webkit-box-shadow: 5px 0 0 rgba(255, 255, 255, 0.2), -5px 0 0 rgba(255, 255, 255, 0.2);
    box-shadow: 5px 0 0 rgba(255, 255, 255, 0.2), -5px 0 0 rgba(255, 255, 255, 0.2); }
    .snapshot-nav-holder .snapshot-nav > ul > li > a.active {
      font-size: 18px;
      color: #558239; }

body.node-type-snapshot .ss-modal-holder {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all; }
  body.node-type-snapshot .show.ss-modal-holder {
    opacity: 1;
    visibility: visible; }
  body.node-type-snapshot .ss-modal-holder .ss-modal {
    max-width: 600px;
    width: 100%;
    margin: 80px auto 0;
    background: #fff;
    color: #333;
    padding: 30px 0; }
    body.node-type-snapshot .ss-modal-holder .ss-modal .ss-modal-inner {
      overflow: auto;
      height: 300px;
      padding: 0 30px; }
    body.node-type-snapshot .ss-modal-holder .ss-modal p {
      font-size: 18px;
      line-height: 1.5; }

/*# sourceMappingURL=style.css.map */