/*!
 * sandbox v1.187.1
 * sandbox
 * (c) 2025 
 *  License
 */
/* Import Defaults
------------------------------------------------------------------ */
/* stylelint-disable order/properties-alphabetical-order */
/* stylelint-enable */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut; }

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

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/* [Core] - Variables
------------------------------------------------------------------ */
/* [Core] - Helpers
------------------------------------------------------------------ */
.text--center {
  text-align: center; }

.text--left {
  text-align: left; }

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

.text--grey {
  color: #343434; }

.text--red {
  color: #fb0026; }

.text--small {
  font-size: 14px; }

.text--bold {
  font-weight: bold; }

.text--large {
  font-size: 18px; }

.mt--1 {
  margin-top: 100px !important; }

.mt--2 {
  margin-top: 80px !important; }

.mt--3 {
  margin-top: 60px !important; }

.mt--4 {
  margin-top: 40px !important; }

.mt--5 {
  margin-top: 20px !important; }

.float--right {
  float: right; }

.float--left {
  float: left; }

.width250 {
  width: 100%;
  max-width: 250px; }

.clearfix::after {
  clear: both;
  content: "";
  display: block; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

td,
th {
  padding: 0; }

/* [Base] - Default
------------------------------------------------------------------ */
*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit; }

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

html {
  height: 100%; }

body {
  min-height: 100%;
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  overflow-x: hidden; }

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  color: #005eb8; }
  a:hover {
    text-decoration: underline; }

ul {
  padding: 0; }

.clearfix:after {
  content: '';
  display: block;
  clear: both; }

/* [Base] - Text
------------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500; }

h1 {
  color: #005eb8;
  font-size: 1.75rem;
  margin-bottom: 1.875rem;
  margin-top: 3.125rem; }

h2 {
  color: #343434;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  margin-top: 3.125rem; }
  h2 + p {
    margin-top: -0.9375rem; }

h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #4a4a4a; }
  h3 + p {
    margin-top: 0; }

h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #4a4a4a;
  font-family: "Roboto", sans-serif; }
  h4 + p {
    margin-top: 0; }

p {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #343434;
  margin: 0; }
  p + p {
    margin-top: 0.3125rem; }
  p strong {
    color: #343434; }
  p.subtitle {
    margin-bottom: 1.125rem; }

/* [Base] - Grid
------------------------------------------------------------------ */
.container {
  position: relative;
  width: 100%;
  margin: auto; }
  .container--small {
    max-width: 450px; }
  .container--medium {
    max-width: 750px; }

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top; }

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 8020; }

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  border-radius: 4px; }

.fancybox-opened {
  z-index: 8030; }

.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); }

.fancybox-outer, .fancybox-inner {
  position: relative; }

.fancybox-inner {
  overflow: hidden; }

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch; }

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap; }

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%; }

.fancybox-image {
  max-width: 100%;
  max-height: 100%; }

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: url(/wp-content/themes/rigips/images/lightbox/fancybox_sprite.png); }

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060; }

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url(/wp-content/themes/rigips/images/lightbox/fancybox_loading.gif) center center no-repeat; }

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040; }

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url(/wp-content/themes/rigips/images/lightbox/blank.gif);
  /* helps IE */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 8040; }

.fancybox-prev {
  left: 0; }

.fancybox-next {
  right: 0; }

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden; }

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px; }

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px; }

.fancybox-nav:hover span {
  visibility: visible; }

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important; }

/* Overlay helper */
.fancybox-lock {
  overflow: visible !important;
  width: auto; }

.fancybox-lock body {
  overflow: hidden !important; }

.fancybox-lock-test {
  overflow-y: hidden !important; }

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url(/wp-content/themes/rigips/images/lightbox/fancybox_overlay.png); }

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0; }

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll; }

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050; }

.fancybox-opened .fancybox-title {
  visibility: visible; }

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center; }

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap; }

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff; }

.fancybox-title-inside-wrap {
  padding-top: 10px; }

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8); }

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url(/wp-content/themes/rigips/images/lightbox/fancybox_sprite@2x.png);
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/ }
  #fancybox-loading div {
    background-image: url(/wp-content/themes/rigips/images/lightbox/fancybox_loading@2x.gif);
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/ } }

/* Import Components
------------------------------------------------------------------ */
.back-link {
  margin-bottom: 1.25rem; }
  .back-link a {
    display: block; }

.box {
  width: 100%;
  position: relative;
  display: block; }
  .box--white {
    background: #fff;
    border-radius: 8px; }
  .box--white-large {
    padding: 1.875rem; }

.button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  margin: 0;
  display: inline-block;
  text-decoration: none;
  color: inherit;
  letter-spacing: 0.02em;
  border-radius: 4px;
  padding: 0.66rem 1rem;
  font-size: 16px;
  font-weight: 500;
  font-family: "Ubuntu", sans-serif; }
  .button--primary {
    background: #005eb8;
    color: #fff;
    border: solid 2px #005eb8;
    text-decoration: none; }
    .button--primary:hover {
      background: #00519f;
      border-color: #00519f; }
    .button--primary:focus,
    .button--primary :active {
      outline-offset: #004485; }
  .button--link {
    border: none;
    background: transparent;
    color: #005eb8;
    text-decoration: underline;
    font-weight: 500;
    padding: 0; }
    .button--link:hover {
      text-decoration: none; }
    .button--link:focus, .button--link:active {
      outline-offset: #00101f; }
  .button--small {
    padding: 0.3625rem 0.625rem; }

.f-calculator-button {
  position: relative;
  width: 100%;
  min-height: rem-calc(137);
  padding: rem-calc(18 10 18 10);
  margin-bottom: rem-calc(40);
  background-color: #005eb8; }
  @media screen and (min-width: em-calc(450)) {
    .f-calculator-button {
      padding: rem-calc(18 25 18 10); } }
  @media screen and (min-width: em-calc(617)) {
    .f-calculator-button {
      max-width: rem-calc(617);
      padding: rem-calc(18 32 18 40); } }
  .f-calculator-button:hover .f-calculator-button__text-secondary {
    text-decoration: none; }
  .f-calculator-button__holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .f-calculator-button__image {
    display: none;
    min-width: rem-calc(40);
    -webkit-box-shadow: 5px 0 0 #f1f1f1;
            box-shadow: 5px 0 0 #f1f1f1; }
    .f-calculator-button__image img {
      max-width: rem-calc(40); }
    @media screen and (min-width: em-calc(617)) {
      .f-calculator-button__image {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        min-width: rem-calc(85);
        max-width: rem-calc(85);
        min-height: rem-calc(85);
        max-height: rem-calc(85);
        -webkit-box-shadow: 0 0 0 8px #f1f1f1;
                box-shadow: 0 0 0 8px #f1f1f1;
        border-radius: 50%; }
        .f-calculator-button__image .f-calculator-button__inner {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          width: 100%;
          -webkit-box-shadow: 0 0 0 3px #005eb8;
                  box-shadow: 0 0 0 3px #005eb8;
          border-radius: 50%;
          background-color: white; }
        .f-calculator-button__image img {
          display: block;
          margin: auto;
          max-width: rem-calc(45); } }
  .f-calculator-button__text {
    color: white;
    font-size: rem-calc(13);
    font-family: "Roboto", sans-serif; }
    .f-calculator-button__text p, .f-calculator-button__text a {
      color: white !important; }
    .f-calculator-button__text p {
      margin-bottom: 0; }
    .f-calculator-button__text .br-hide {
      display: none; }
      @media screen and (min-width: em-calc(400)) {
        .f-calculator-button__text .br-hide {
          display: block; } }
    @media screen and (min-width: em-calc(450)) {
      .f-calculator-button__text {
        padding: rem-calc(0 10);
        font-size: rem-calc(18); } }
    @media screen and (min-width: em-calc(617)) {
      .f-calculator-button__text {
        padding: rem-calc(0 30); } }
  .f-calculator-button__text-secondary {
    display: block;
    text-decoration: underline; }
  .f-calculator-button__icon {
    min-width: rem-calc(30); }
    .f-calculator-button__icon img {
      max-width: rem-calc(30); }
    @media screen and (min-width: em-calc(617)) {
      .f-calculator-button__icon {
        min-width: rem-calc(46); }
        .f-calculator-button__icon img {
          max-width: rem-calc(46); } }
  .f-calculator-button__link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 0; }

@media (min-width: 980px) {
  .carousel {
    width: 980px;
    margin: 0 auto 50px;
    padding: 0 70px;
    position: relative; } }

.carousel__image {
  max-width: 250px;
  border-radius: 15px;
  margin-left: auto;
  margin-right: auto; }
  @media (min-width: 420px) {
    .carousel__image {
      max-width: 250px; } }

.carousel__navButton {
  border: 0;
  padding: 0;
  margin: 0 10px;
  height: 46px;
  width: 46px;
  outline: none; }
  @media (min-width: 980px) {
    .carousel__navButton {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); } }

.carousel__navButton.disabled {
  opacity: .7; }

.carousel__navButton:not(.disabled):hover {
  -webkit-transition: all 150ms ease-in;
  transition: all 150ms ease-in; }
  @media (min-width: 980px) {
    .carousel__navButton:not(.disabled):hover {
      -webkit-transform: scale(1.05) translateY(-50%);
              transform: scale(1.05) translateY(-50%); } }

.carousel__navButton--prev {
  background: transparent url("/wp-content/themes/rigips/images/icon-left-button.svg") center center no-repeat; }
  @media (min-width: 980px) {
    .carousel__navButton--prev {
      left: 0; } }

.carousel__navButton--next {
  background: transparent url("/wp-content/themes/rigips/images/icon-right-button.svg") center center no-repeat; }
  @media (min-width: 980px) {
    .carousel__navButton--next {
      right: 0; } }

.carousel__nav {
  text-align: center;
  margin-top: 15px; }

.carousel__dots {
  display: none; }

.error-field,
.error-field p {
  color: #fb0026;
  margin-top: 0.3125rem;
  font-size: 0.875rem; }

.error-field--checkbox {
  margin-left: 30px;
  color: #e56b1a !important; }

.checkbox {
  color: #005eb8;
  padding: .25em 0;
  cursor: pointer;
  position: relative;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 3.125rem;
  display: block; }
  .checkbox::after {
    clear: both;
    content: "";
    display: block; }
  .checkbox:focus {
    border: 2px solid #52aaff;
    outline: none;
    display: inline-block; }
  .checkbox__native {
    position: absolute;
    margin-left: -100vw; }
    .checkbox__native:checked + .checkbox__control:after {
      opacity: 1;
      -webkit-transform: none;
              transform: none; }
  .checkbox__control {
    display: inline-block;
    font-size: 1.7rem;
    width: 18px;
    height: 18px;
    background: white;
    border: solid 3px;
    border-radius: 6px;
    position: relative;
    left: 0;
    top: -0.0625rem;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 0.625rem;
    float: left; }
    .checkbox__control:after {
      content: '';
      display: block;
      position: absolute;
      top: 1px;
      left: 1px;
      right: 1px;
      bottom: 1px;
      border-radius: 3px;
      width: 10px;
      background: #005eb8;
      background-size: 100%;
      opacity: 0;
      -webkit-transform: scaleY(0.1) scaleX(0.6);
              transform: scaleY(0.1) scaleX(0.6);
      -webkit-transition: all ease-in-out .1s;
      transition: all ease-in-out .1s; }

.input-item__container::after {
  clear: both;
  content: "";
  display: block; }

@media (min-width: 600px) {
  .input-item__container .input-item {
    float: left; } }

@media (min-width: 600px) {
  .input-item__container .input-item:first-of-type {
    margin-right: 1.875rem; } }

@media (min-width: 600px) {
  .input-item__container .input-item:nth-of-type(2) {
    display: contents; } }

.input-item__container + .input-item {
  margin-top: 1.25rem; }

.input-item {
  position: relative; }
  .input-item::after {
    clear: both;
    content: "";
    display: block; }
  .input-item + .input-item,
  .input-item + .input-item__container {
    margin-top: 1.0125rem; }
  .input-item--large-top-space {
    margin-top: 1.875rem !important; }

.input__description {
  display: inline-block;
  -webkit-transform: translateY(32px);
          transform: translateY(32px); }

.input,
.textarea {
  border: 2px solid #005eb8;
  border-radius: 4px;
  padding: 5px 10px;
  color: #000;
  width: 100%; }
  .input:focus,
  .textarea:focus {
    outline-offset: #004485; }
  .input--s,
  .textarea--s {
    max-width: 120px; }
  .input--m,
  .textarea--m {
    max-width: 180px; }
  .input--l,
  .textarea--l {
    max-width: 230px; }
  .input--xl,
  .textarea--xl {
    max-width: 330px; }
  .input--xxl,
  .textarea--xxl {
    max-width: 484px; }

.textarea {
  height: 133px; }

.label {
  display: block;
  margin-bottom: 5px;
  color: #343434; }

.f-form-newsletter__fieldset {
  margin: 0;
  padding: 0;
  border: none; }

.f-form-newsletter__holder {
  margin-bottom: rem-calc(15); }
  .f-form-newsletter__holder:first-of-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: rem-calc(3);
    border-radius: 4px;
    background-color: #005eb8; }

.f-form-newsletter input {
  width: 100%;
  height: rem-calc(42);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  font-size: rem-calc(14);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border: none; }

.f-form-newsletter button {
  width: 100%;
  min-width: rem-calc(100);
  height: rem-calc(42);
  -ms-flex-negative: 1;
      flex-shrink: 1;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  font-weight: 500; }

@media screen and (min-width: em-calc(410)) {
  .f-form-newsletter input {
    width: 67%;
    height: rem-calc(33); }
  .f-form-newsletter button {
    width: 33%;
    height: auto; } }

.siteFooter-ssv-new {
  background: #fff; }
  .siteFooter-ssv-new__wrap {
    max-width: 1087px;
    margin: auto;
    padding: 1.875rem 0.5625rem 0; }
    @media (min-width: 760px) {
      .siteFooter-ssv-new__wrap {
        padding: 3.125rem 0.5625rem; } }
  .siteFooter-ssv-new__content {
    margin-bottom: 3.125rem; }
  .siteFooter-ssv-new__question {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-right: 2.375rem;
    font-weight: 700; }
    @media (min-width: 760px) {
      .siteFooter-ssv-new__question {
        float: left; } }
  .siteFooter-ssv-new__description {
    max-width: 535px; }
    @media (min-width: 760px) {
      .siteFooter-ssv-new__description {
        float: left; } }
  .siteFooter-ssv-new__copyright {
    color: #A7A8AA;
    font-size: 0.875rem; }
    @media (min-width: 760px) {
      .siteFooter-ssv-new__copyright {
        float: left; } }
  .siteFooter-ssv-new__social-icon {
    margin-top: 10px; }
    @media (min-width: 760px) {
      .siteFooter-ssv-new__social-icon {
        float: right;
        margin-top: -0.3125rem; } }
    .siteFooter-ssv-new__social-icon img {
      height: 2rem; }
    .siteFooter-ssv-new__social-icon img:first-of-type {
      margin-right: 1.25rem; }

.ssv-course-header {
  max-width: 760px;
  padding: 30px;
  margin-bottom: 50px; }
  .ssv-course-header::after {
    clear: both;
    content: "";
    display: block; }
  .ssv-course-header--contact {
    max-width: 450px; }
  @media (min-width: 760px) {
    .ssv-course-header__price {
      float: right;
      text-align: right;
      padding-left: 10px; } }
  .ssv-course-header__price-value {
    color: #4a4a4a;
    font-size: 18px;
    font-weight: 700;
    font-family: "Ubuntu", sans-serif;
    margin-bottom: 6px; }
    @media (max-width: 759px) {
      .ssv-course-header__price-value {
        margin-bottom: 0; } }
  .ssv-course-header__name {
    margin-bottom: 30px; }
    .ssv-course-header__name h3 {
      margin-bottom: 4px; }
    .ssv-course-header__name strong {
      font-weight: 400; }
    @media (min-width: 760px) {
      .ssv-course-header__name {
        float: left;
        margin-bottom: 0;
        max-width: 84%; } }

.ssv-form {
  margin-bottom: 3.125rem; }
  .ssv-form .button--ares {
    margin-top: 0.625rem;
    margin-bottom: 0.3125rem;
    width: 100%;
    text-align: left; }
    @media (min-width: 434px) {
      .ssv-form .button--ares {
        width: auto;
        margin-left: 1.25rem;
        margin-bottom: 0;
        margin-top: 0; } }
  @media (max-width: 820px) {
    .ssv-form .input-item .float--left {
      float: none; } }
  @media (max-width: 820px) {
    .ssv-form .input-item .input__description {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      margin-top: 0.3125rem; } }
  .ssv-form--personal-data {
    margin-bottom: 3.125rem; }

.ssv-order {
  margin-top: 0.75rem; }
  .ssv-order__container {
    max-width: 930px;
    margin-bottom: -0.625rem; }
    .ssv-order__container::after {
      clear: both;
      content: "";
      display: block; }
    @media (min-width: 595px) {
      .ssv-order__container {
        margin-right: -0.625rem; } }
  .ssv-order__participant-item {
    padding: 1.875rem 1.875rem 2.5rem;
    width: 100%;
    border-radius: 4px;
    float: left;
    margin-bottom: 0.625rem;
    min-height: 25rem; }
    @media (min-width: 595px) {
      .ssv-order__participant-item {
        width: calc((100% - 20px) / 2);
        margin-right: 10px; } }
    @media (min-width: 936px) {
      .ssv-order__participant-item {
        width: calc((100% - 30px) / 3); } }
    .ssv-order__participant-item:hover {
      -webkit-box-shadow: 2px 2px 4px 2px rgba(0, 94, 184, 0.12);
              box-shadow: 2px 2px 4px 2px rgba(0, 94, 184, 0.12); }
    @media (max-width: 935px) {
      .ssv-order__participant-item .input--l {
        max-width: 100%; } }
    .ssv-order__participant-item h4 {
      color: #646567;
      font-family: "Roboto", sans-serif;
      margin-bottom: 1.875rem;
      font-weight: 700; }
      .ssv-order__participant-item h4 .button--link {
        float: right; }
    .ssv-order__participant-item--add-item {
      background-color: #f1f1f1;
      height: 25rem;
      border-radius: 4px;
      position: relative;
      border: none;
      cursor: pointer; }
      .ssv-order__participant-item--add-item .button--link {
        position: relative;
        width: auto;
        width: 8.125rem;
        top: 2.5rem;
        margin: auto; }
        .ssv-order__participant-item--add-item .button--link:before {
          content: "+";
          border-radius: 100%;
          width: 4.0625rem;
          height: 4.0625rem;
          line-height: 3.25rem;
          border: 2px solid #005eb8;
          color: #005eb8;
          position: absolute;
          font-size: 3.75rem;
          left: 0;
          right: 0;
          top: -6.5625rem;
          bottom: 0;
          margin: auto; }
  .ssv-order .error-field {
    float: left; }

.ssv-page-content__main {
  position: relative;
  max-width: 1105px;
  margin: 0 auto;
  padding: 0 0.5625rem 0.625rem; }
  .ssv-page-content__main::after {
    clear: both;
    content: "";
    display: block; }
  .ssv-page-content__main--small-container {
    max-width: 36.25rem;
    margin: auto; }

.ssv-page-content__in {
  width: 100%;
  max-width: 58.125rem;
  margin-bottom: 6.25rem; }
  @media (min-width: 900px) {
    .ssv-page-content__in {
      margin-bottom: 12.5rem; } }
  @media (min-width: 900px) {
    .ssv-page-content__in {
      float: left; } }

.ssv-page-content__in--thankyou-page {
  margin-bottom: 1.875rem; }

.ssv-page-content__aside {
  position: relative;
  display: inline-table;
  text-align: center;
  margin: 2rem auto -1rem;
  display: none; }
  @media (min-width: 1090px) {
    .ssv-page-content__aside {
      display: block; } }
  .ssv-page-content__aside img {
    margin-top: 8.4375rem;
    max-width: 9.0625rem; }
    @media (max-width: 899px) {
      .ssv-page-content__aside img {
        display: none; } }

.ssv-thankyou-page--text {
  width: 100%;
  max-width: 40.625rem; }

.ssv-thankyou-page--video-block h2 {
  color: #005eb8;
  margin-bottom: 2.1875rem; }

.ssv-thankyou-page--video-block .videoPart {
  max-height: 100%; }

.ssv-summry-price-box {
  width: 100%;
  min-height: 7.1875rem;
  margin-bottom: 1.25rem; }
  @media (min-width: 795px) {
    .ssv-summry-price-box {
      float: left;
      max-width: 13.75rem;
      margin-right: 0.625rem; } }
  .ssv-summry-price-box__title, .ssv-summry-price-box__price {
    color: #4a4a4a;
    font-weight: 700; }
  .ssv-summry-price-box__title {
    font-size: 1.125rem; }
  .ssv-summry-price-box__price {
    font-size: 1.875rem; }

.ssv-summary__wrap {
  margin-top: 3.125rem; }

.ssv-summry-voucher-box {
  width: 100%;
  min-height: 7.1875rem;
  margin-bottom: 1.25rem; }
  @media (min-width: 795px) {
    .ssv-summry-voucher-box {
      float: left;
      max-width: 33.125rem; } }
  .ssv-summry-voucher-box__code {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
    display: block; }
  .ssv-summry-voucher-box__sale {
    margin-right: 1.25rem;
    display: block; }
  .ssv-summry-voucher-box__form {
    margin-top: 0.3125rem; }

.buttonReset {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  line-height: inherit;
  border: none;
  display: inline-block;
  text-decoration: none;
  color: inherit;
  border-radius: 0;
  letter-spacing: 0.02em;
  border-radius: 4px;
  padding: .66em 1em;
  font-size: 16px;
  font-weight: 400;
  font-family: "Ubuntu", sans-serif; }

.button-icon {
  display: inline-block;
  margin-right: .4em;
  -webkit-transform: translateY(1px);
          transform: translateY(1px); }

.button.view-primary {
  background: #005eb8;
  color: #fff;
  border: solid 2px #005eb8;
  text-decoration: none; }

.button.view-primary-white {
  background: #fff;
  color: #82BD27;
  font-weight: 500; }

.button.view-primary-alt {
  background: #fff;
  color: #005eb8;
  border: solid 2px #fff; }

.button.view-primary-light {
  background: #005eb8;
  color: #fff;
  border: solid 2px #005eb8; }
  .button.view-primary-light.view-shadow {
    -webkit-box-shadow: 0 2px 10px #005eb8;
            box-shadow: 0 2px 10px #005eb8; }

.button.view-primary-green {
  background: #82bd27;
  color: #fff;
  border: solid 2px #82bd27; }
  .button.view-primary-green.view-shadow {
    -webkit-box-shadow: 0 2px 10px #82bd27;
            box-shadow: 0 2px 10px #82bd27; }

.button.view-bordered {
  background: #fff;
  color: #005eb8;
  border: solid 2px; }

.button.view-bordered-extraLightBlue, .button.view-bordered-green, .button.view-bordered-LightBlue {
  font-size: 16px;
  font-weight: 700;
  padding: 0.62em 25px;
  background: #fff;
  border: solid 3px;
  border-radius: 4px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.button.view-bordered-extraLightBlue {
  color: #219cdc; }
  .button.view-bordered-extraLightBlue.active {
    padding: 0.62em 25px;
    background: #219cdc;
    color: #fff;
    border: solid 3px #219cdc;
    border-radius: 4px;
    text-decoration: none; }

.button.view-bordered-green {
  color: #82bd27; }
  .button.view-bordered-green.active {
    padding: 0.62em 25px;
    background: #82bd27;
    color: #fff;
    border: solid 3px #82bd27;
    border-radius: 4px;
    text-decoration: none; }

.button.view-bordered-LightBlue {
  color: #005eb8; }
  .button.view-bordered-LightBlue.active {
    padding: 0.62em 25px;
    background: #005eb8;
    color: #fff;
    border: solid 3px #005eb8;
    border-radius: 4px;
    text-decoration: none; }

.button.view-rt {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.button.view-banner-style {
  background: #fff;
  color: #fb0026;
  font-weight: 400;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); }

.button.view-warning {
  background: #fb0026;
  color: #fff;
  border: solid 2px #fb0026; }

.button.view-link {
  color: #005eb8;
  display: inline;
  padding: 0; }

.button.view-mobile-menu-toggle {
  padding: 22.95px .4em .65em .75em;
  height: 67px; }

.button.view-hero {
  background: #fff;
  color: #fb0026;
  font-size: 24px; }

.button.view-hero-blue {
  background: #fff;
  color: #005eb8;
  font-size: 18px;
  padding: .9em 1.5em; }

.button.view-hero-red {
  background: #fb0026;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: .9em 1.5em; }

.button.view-hero-blueBg {
  background: #005eb8;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: .9em 1.5em; }

.button.view-hero-colorRed {
  background: #fff;
  color: #fb0026;
  font-size: 18px;
  font-weight: 500;
  padding: .9em 1.5em; }

.button.view-show-arrow-gray {
  padding-right: 50px;
  background-image: url(/wp-content/themes/rigips/images/arrow-gray.svg);
  background-repeat: no-repeat;
  background-position: right 20px center; }

.button.view-show-arrow-white {
  padding-right: 50px;
  background-image: url(/wp-content/themes/rigips/images/btn-arrow@white.svg);
  background-repeat: no-repeat;
  background-position: right 20px center; }

.button.view-show-arrow {
  padding-right: 50px;
  background-image: url(/wp-content/themes/rigips/images/button-arrow.svg);
  background-repeat: no-repeat;
  background-position: right 20px center; }
  @media (min-width: 300px) {
    .button.view-show-arrow.view-hero, .button.view-show-arrow.view-hero-blue {
      padding-right: 100px; } }

.button--backHistory {
  position: relative;
  display: block;
  text-align: right;
  color: #005eb8;
  font-weight: 700;
  text-decoration: underline;
  margin-bottom: 20px;
  float: left;
  cursor: pointer; }
  @media (min-width: 900px) {
    .button--backHistory {
      display: none; } }

.button--backRoot {
  display: block;
  text-align: right;
  color: #005eb8;
  font-weight: 700;
  text-decoration: underline;
  margin-bottom: 20px;
  float: left;
  cursor: pointer; }

.croppedDiv--basic {
  max-width: 380px;
  width: 100%; }

.croppedDiv--with-file {
  position: relative;
  left: 30px; }

@media (max-width: 1131px) {
  .croppedDiv--right {
    overflow: hidden;
    border-bottom-left-radius: 20px; } }

@media (min-width: 900px) {
  .croppedDiv--right {
    margin: 0 -2rem 0 2rem; } }

.croppedDiv--profile .croppedDiv__re-transform {
  background-color: #BBCE00; }

.croppedDiv--board .croppedDiv__re-transform {
  background-color: #67B9B0; }

.croppedDiv--video .croppedDiv__re-transform {
  height: 0;
  padding-bottom: calc((358/535) * 100%); }

.croppedDiv__transform {
  -webkit-transform: skewY(-11deg);
          transform: skewY(-11deg);
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
  border-radius: 0 0 20px 20px;
  overflow: hidden; }

@media (min-width: 700px) and (max-width: 1129px) {
  .articles .croppedDiv__transform {
    -webkit-transform: skewY(0);
            transform: skewY(0); } }

.articles .croppedDiv__transform-overflowHidden {
  overflow: unset; }

.croppedDiv__re-transform-aside {
  -webkit-transform: skewY(-11deg);
          transform: skewY(-11deg);
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
  border-radius: 0 0 20px 20px;
  overflow: hidden; }

.croppedDiv__re-transform {
  -webkit-transform: skewY(11deg);
          transform: skewY(11deg);
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
  min-height: 250px; }
  @media (max-width: 900px) {
    .croppedDiv__re-transform {
      -webkit-transform-origin: -6% 100%;
              transform-origin: -6% 100%; } }

@media (min-width: 700px) and (max-width: 1129px) {
  .articles .croppedDiv__re-transform {
    -webkit-transform: skewY(0);
            transform: skewY(0); } }

.croppedDiv--video .croppedDiv__transform, .croppedDiv--video .croppedDiv__re-transform {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0; }

.croppedDiv--video .croppedDiv__re-transform {
  min-height: 0; }

.croppedDiv--video .croppedDiv__transform {
  border-radius: 20px;
  margin-bottom: calc((94/535) * 100%); }

.croppedDiv__image {
  display: block;
  width: 100%; }

.crtop {
  width: 100%;
  height: 0;
  padding-bottom: calc((121/535)*100%);
  background: url(/wp-content/themes/rigips/images/croppedDiv-top.svg) 0 0 no-repeat;
  background-size: 100% auto;
  position: absolute;
  z-index: 1;
  left: 0; }

@media (max-width: 699px) {
  .croppedDiv__transform-height-rightSmall {
    height: 340px; } }

@media (min-width: 700px) and (max-width: 899px) {
  .croppedDiv__transform-height-rightSmall {
    height: 340px; }
  .croppedDiv__transform-height-leftBig {
    height: 422px; }
  .croppedDiv__transform-height-rightBig {
    height: 366px; } }

@media (min-width: 900px) and (max-width: 1129px) {
  .croppedDiv__transform-height-leftBig {
    height: 420px; }
  .croppedDiv__transform-height-rightBig {
    height: 450px; } }

@media (min-width: 600px) {
  .pageContent-aside-largeImage-left .croppedDiv__transform-overflowHidden {
    overflow: hidden; } }

@media (min-width: 1001px) {
  .croppedDiv__transform-rightCropped {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden; } }

@media (max-width: 1132px) {
  .cropped-borderRightBottom {
    border-radius: 0 0 0 20px; }
  .cropped-borderLeftBottom {
    border-radius: 0 0 20px 0; } }

.form, .searchForm, .form fieldset, .searchForm fieldset {
  margin: 0;
  padding: 0;
  display: block;
  border: none; }

.input-displayNone {
  display: none; }

.info {
  color: #a7a8aa;
  font-size: inherit;
  font-weight: 300;
  margin-left: 30px; }

.header-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1105px;
  padding: 0 9px 1rem;
  margin: 0 auto; }
  .header-navigation-item {
    margin-right: 20px; }
    .header-navigation-item img {
      max-width: 100%; }
  @media (max-width: 750px) {
    .header-navigation {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      .header-navigation-item {
        margin: 0 auto 10px; } }

.header-navigation div:last-child.header-navigation-item {
  margin-right: 0; }
  @media (max-width: 750px) {
    .header-navigation div:last-child.header-navigation-item {
      margin: auto; } }

.logo-list {
  text-align: center;
  margin: 40px 0; }
  .logo-list-item {
    display: inline-block;
    vertical-align: middle;
    margin: 30px 20px; }
    .logo-list-item img {
      max-width: 100%; }

@media (max-width: 900px) {
  .logo-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .logo-list-item {
      width: 40%;
      margin: 5%; } }

.mobileNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #4a4a4a;
  font-size: 18px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  max-width: 400px;
  margin: 0 auto; }
  .mobileNav-item {
    display: inline-block;
    padding: .75em 0;
    border-bottom: solid 2px transparent; }
    .mobileNav-item.is-active {
      color: #005eb8;
      border-bottom-color: currentColor;
      text-decoration: none; }

.topNavigation::after {
  clear: both;
  content: "";
  display: block; }

@media (min-width: 1150px) {
  .topNavigation ul::after {
    clear: both;
    content: "";
    display: block; } }

@media (max-width: 899px) {
  .topNavigation ul {
    width: 100%; } }

.topNavigation ul li {
  width: 100%;
  padding: 0;
  position: static;
  margin: 0; }
  @media (min-width: 900px) {
    .topNavigation ul li {
      display: inline-block;
      padding: 0 7px;
      float: left;
      width: auto; } }
  @media (min-width: 1150px) {
    .topNavigation ul li {
      padding: 0 15px; } }
  .topNavigation ul li > a {
    padding: 5px 0 !important;
    margin: 0;
    color: #6b6c6d;
    border-bottom: 2px solid transparent; }
    @media (max-width: 899px) {
      .topNavigation ul li > a {
        border-bottom: 2px solid #fff;
        display: block;
        padding: 10px 0 !important; } }
    .topNavigation ul li > a:hover {
      border-color: #005eb8; }
  .topNavigation ul li:first-child {
    padding-left: 0; }
  .topNavigation ul li:last-child {
    padding-right: 0; }
  .topNavigation ul li.view-arrow > a, .topNavigation ul li.is-open > a {
    padding: 0;
    border: 0 none;
    position: relative;
    display: block; }
    @media (max-width: 899px) {
      .topNavigation ul li.view-arrow > a, .topNavigation ul li.is-open > a {
        border-bottom: 2px solid #fff; } }
    .topNavigation ul li.view-arrow > a:before, .topNavigation ul li.is-open > a:before {
      display: none;
      content: '';
      -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5), 0 1px 10px rgba(0, 0, 0, 0.2);
              box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5), 0 1px 10px rgba(0, 0, 0, 0.2);
      background: #fff;
      border-radius: 4px;
      position: absolute;
      top: -11px;
      left: -9px;
      right: -5px;
      bottom: -12px; }
    .topNavigation ul li.view-arrow > a > span, .topNavigation ul li.is-open > a > span {
      position: relative;
      z-index: 5;
      padding-right: 20px; }
      @media (max-width: 899px) {
        .topNavigation ul li.view-arrow > a > span, .topNavigation ul li.is-open > a > span {
          width: 100%;
          display: block; } }
      .topNavigation ul li.view-arrow > a > span:before, .topNavigation ul li.is-open > a > span:before {
        display: none;
        content: '';
        background: #fff;
        position: absolute;
        bottom: -5px;
        height: .5em;
        left: -1em;
        right: -.25em; }
      .topNavigation ul li.view-arrow > a > span:after, .topNavigation ul li.is-open > a > span:after {
        content: '';
        display: inline-block;
        width: 1.3em;
        height: .7em;
        background: url(/wp-content/themes/rigips/images/arrow.svg) no-repeat center center;
        -webkit-transform: scaleY(-1);
                transform: scaleY(-1);
        position: absolute;
        top: 4px;
        right: 0; }
  .topNavigation ul li.is-open .siteHeader-subnav {
    display: block; }
  @media (min-width: 900px) {
    .topNavigation ul li.is-open > a:before {
      display: block; }
    .topNavigation ul li.is-open > a:after {
      content: '';
      background: #fff;
      z-index: 1000;
      position: absolute;
      height: 20px;
      left: -9px;
      right: -5px;
      bottom: -22px; }
    .topNavigation ul li.is-open span:before {
      display: block; } }
  .topNavigation ul li.is-active > a {
    color: #005eb8;
    font-weight: 500; }
  .topNavigation ul li.menu-button a {
    padding-bottom: 20px !important; }
    .topNavigation ul li.menu-button a span {
      background-color: #005eb8;
      display: block;
      padding: 12.5px 10px;
      color: #fff;
      width: 152px;
      text-align: center;
      border-top-left-radius: 4px;
      border-top-right-radius: 4px;
      border-bottom-left-radius: 4px;
      border-bottom-right-radius: 4px;
      border-bottom-left-radius: 4px;
      border-top-left-radius: 4px;
      border-bottom-right-radius: 4px;
      border-top-right-radius: 4px; }
    .topNavigation ul li.menu-button a:hover span {
      border-color: transparent; }
  @media (max-width: 899px) {
    .topNavigation ul li.menu-button {
      margin-top: 9px; }
      .topNavigation ul li.menu-button a {
        text-align: center; } }
  @media (min-width: 900px) {
    .topNavigation ul li.menu-button {
      position: relative; }
      .topNavigation ul li.menu-button a:hover span {
        background-color: #005eb8; } }

.topNavigation__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 34px;
  overflow: hidden; }
  @media (min-width: 900px) {
    .topNavigation__wrap {
      width: 37%; } }
  @media (min-width: 1150px) {
    .topNavigation__wrap {
      position: relative;
      width: auto; } }
  @media (min-width: 1150px) {
    .topNavigation__wrap::after {
      position: absolute;
      width: 100vw;
      content: '';
      left: -6%;
      bottom: 0;
      top: 0;
      background: #f9f9f9;
      z-index: 0;
      -webkit-transform: skew(-8deg, 0deg);
              transform: skew(-8deg, 0deg);
      -webkit-transform-origin: bottom left;
              transform-origin: bottom left; } }
  @media screen and (min-width: 1150px) and (-ms-high-contrast: active), (min-width: 1150px) and (-ms-high-contrast: none) {
    .topNavigation__wrap::after {
      bottom: 1px; } }
  .topNavigation__wrap .searchForm {
    position: relative;
    z-index: 2; }

.topNavigation--primary {
  float: left;
  width: 64%; }
  @media (min-width: 1150px) {
    .topNavigation--primary {
      width: 100%; } }
  .topNavigation--primary ul {
    float: left; }
  @media (min-width: 900px) {
    .topNavigation--primary ul:not(.subnav-items) {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  @media (max-width: 899px) {
    .topNavigation--primary {
      float: none;
      width: 100%; }
      .topNavigation--primary ul {
        float: none; } }

.topNavigation--secondary {
  float: left;
  position: relative;
  z-index: 1; }
  .topNavigation--secondary ul {
    float: right; }
  @media (max-width: 899px) {
    .topNavigation--secondary {
      float: none;
      width: 100%; }
      .topNavigation--secondary ul {
        float: none; } }

.nav-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: transparent;
  z-index: 1; }

.overlay {
  z-index: -1;
  opacity: 0;
  visibility: hidden; }

.overlay--opened {
  visibility: visible;
  z-index: 999;
  opacity: 1; }

.overlay__wrapper {
  position: fixed;
  left: 50%;
  top: 50%;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1001;
  padding: 20px 0 0;
  width: 100%; }
  @media (min-width: 900px) {
    .overlay__wrapper {
      width: auto; } }

.overlay__content {
  padding: 20px; }
  @media (min-width: 900px) {
    .overlay__content {
      padding-left: 80px;
      padding-right: 80px; } }

.overlay__content--full {
  padding-left: 0;
  padding-right: 0; }

.overlay__item {
  display: none; }

.overlay__close {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 10px;
  color: #fb0026;
  white-space: nowrap;
  border: 0;
  padding: 0;
  outline: none;
  background: transparent; }

.overlay__bg {
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 94, 184, 0.9);
  z-index: 1000;
  border: 0;
  height: 100%;
  width: 100%;
  outline: none; }

.primaryNav-item.view-arrow > a {
  position: relative;
  display: block; }
  .primaryNav-item.view-arrow > a:before {
    display: none;
    content: '';
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5), 0 1px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5), 0 1px 10px rgba(0, 0, 0, 0.2);
    background: #fff;
    border-radius: 4px;
    position: absolute;
    top: -11px;
    left: -1em;
    right: -.25em;
    bottom: -12px; }

.primaryNav-item.view-arrow .primaryNav-item-label:before {
  display: none;
  content: '';
  background: #fff;
  position: absolute;
  bottom: -2px;
  height: .5em;
  left: -1em;
  right: -.25em; }

.primaryNav-item.view-arrow .primaryNav-item-label:after {
  content: '';
  display: inline-block;
  width: 2em;
  height: .7em;
  background: url(/wp-content/themes/rigips/images/arrow.svg) no-repeat center center;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1); }

.primaryNav-item .is-active {
  color: #005eb8;
  font-weight: 500; }

.primaryNav-item.is-open > a:before, .primaryNav-item:hover > a:before {
  display: block; }

.primaryNav-item.is-open .primaryNav-item-label:after,
.primaryNav-item:hover .primaryNav-item-label:after {
  -webkit-transform: none;
          transform: none; }

@media (max-width: 899.9px) {
  .primaryNav-item.view-arrow > a:before {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0; }
  .primaryNav-item.view-arrow > a span {
    position: relative;
    display: block; }
  .primaryNav-item.view-arrow .primaryNav-item-label:after {
    position: absolute;
    top: 5px;
    right: 0; } }

@media (min-width: 900px) {
  .primaryNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: "Ubuntu", sans-serif;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    color: #6B6C6E;
    max-width: 590px; }
    .primaryNav-item {
      margin: 0 .25em;
      border-bottom: solid 2px transparent;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .primaryNav-item-label {
        position: relative; }
      .primaryNav-item.view-arrow .primaryNav-item-label {
        padding: .5em 0; }
      .primaryNav-item.is-active a > .primaryNav-item-label {
        color: #005eb8;
        border-bottom-color: #005eb8;
        font-weight: 700; }
      .primaryNav-item.button {
        margin: 0; }
    .primaryNav-item.is-open .primaryNav-item-label,
    .primaryNav-item:hover .primaryNav-item-label {
      position: relative;
      z-index: 5; }
    .primaryNav-item.is-open .primaryNav-item-label:before,
    .primaryNav-item:hover .primaryNav-item-label:before {
      display: block; } }

.quickContact {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  color: #4a4a4a; }
  .quickContact a {
    color: #646567 !important;
    font-weight: 400; }
  .quickContact p {
    margin: 0;
    color: #4a4a4a; }
  .quickContact-small {
    font-weight: 300;
    line-height: 1;
    font-size: 0.55556em; }

@media (min-width: 900px) {
  .quickNav {
    position: relative;
    z-index: 1;
    background: #f9f9f9;
    padding: 7px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: "Ubuntu", sans-serif;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    font-size: 0.875rem;
    color: #4a4a4a; }
    .quickNav::after {
      position: absolute;
      width: 100vw;
      content: '';
      left: -6%;
      bottom: 0;
      top: 0;
      background: #f9f9f9;
      z-index: 0;
      -webkit-transform: skew(-8deg, 0deg);
              transform: skew(-8deg, 0deg);
      -webkit-transform-origin: bottom left;
              transform-origin: bottom left; } }
    @media (min-width: 900px) and (min-width: 1150px) {
      .quickNav::after {
        width: 17.5rem;
        background: #fff; } }

@media (max-width: 899.9px) {
  .quickNav-searchForm {
    display: none; } }

.searchForm {
  font-family: "Ubuntu", sans-serif;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px; }
  .searchForm-input {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    font-family: inherit;
    font-size: inherit;
    border: none;
    background: transparent;
    width: 180px; }
  .searchForm-button {
    color: #005eb8;
    font-weight: 500;
    font-size: inherit; }
  .searchForm fieldset {
    z-index: 1; }

.textcontent p .searchResults-link {
  color: #005eb8;
  font-size: 18px; }

.secondaryNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #343434;
  font-size: 14px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400; }
  .secondaryNav-item {
    display: inline-block;
    padding: 1.5em 0 1.25em;
    text-decoration: underline;
    border-bottom: solid 2px transparent;
    color: #6b6c6d;
    font-weight: 300; }
    .secondaryNav-item.is-active {
      color: #005eb8;
      border-bottom-color: currentColor;
      text-decoration: none;
      font-weight: 500; }
      .secondaryNav-item.is-active-blueGreen {
        border-bottom-color: #67b9b0; }
      .secondaryNav-item.is-active-orange {
        border-bottom-color: #e5531a; }
      .secondaryNav-item.is-active-blue {
        border-bottom-color: #27b9d5; }
      .secondaryNav-item.is-active-limet {
        border-bottom-color: #bbce00; }
      .secondaryNav-item.is-active-green {
        border-bottom-color: #009d3c; }

.siteHeader {
  width: 100%;
  position: relative;
  background: #fff; }
  .siteHeader a {
    text-decoration: none; }
  .siteHeader ul {
    list-style-type: none; }
  .siteHeader--index {
    z-index: 100;
    background: #fff;
    border-bottom: solid 2px #F1F1F1; }
  .siteHeader-in {
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    max-width: 1105px;
    margin: 0 auto;
    padding: 0 9px 10px;
    max-width: 1117px;
    padding: 0; }
    .siteHeader-in > * {
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
  .siteHeader-leftblock-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1.5625rem 0 1.4375rem; }
    @media (min-width: 900px) {
      .siteHeader-leftblock-logo {
        padding: 1.5625rem 0 0.9375rem; } }
    @media (min-width: 1150px) {
      .siteHeader-leftblock-logo {
        padding: 1.5625rem 0 1.4375rem; } }
  .siteHeader-rightBlock-mobileNavWrapper {
    position: relative; }
    .siteHeader-rightBlock-mobileNavWrapper::after {
      clear: both;
      content: "";
      display: block; }
  .siteHeader-mobileNavWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; }
    @media (min-width: 1150px) {
      .siteHeader-mobileNavWrapper {
        width: 45%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
    .siteHeader-mobileNavWrapper-top {
      width: 100%; }
      @media (min-width: 900px) {
        .siteHeader-mobileNavWrapper-top {
          padding-bottom: 20px; } }
      @media (min-width: 1150px) {
        .siteHeader-mobileNavWrapper-top {
          width: 77%;
          padding-bottom: 0; } }
      @media (max-width: 899.9px) {
        .siteHeader-mobileNavWrapper-top {
          width: 100%; } }
  @media (max-width: 899.9px) {
    .siteHeader-logo.view-desktop {
      display: none; } }
  @media (min-width: 900px) {
    .siteHeader-logo.view-mobile {
      display: none; } }
  .siteHeader-logo .site-title {
    font-size: 2em;
    padding: 0;
    margin: 0;
    font-family: "Ubuntu", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-weight: 400; }
    .siteHeader-logo .site-title a {
      display: table; }
  @media (max-width: 899px) {
    .siteHeader-logo .site-logo {
      width: 130px; } }
  @media (min-width: 900px) {
    .siteHeader-upper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  @media (min-width: 1150px) {
    .siteHeader-upper {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; } }
  .siteHeader-secondaryNav, .siteHeader-mobileNav {
    display: none; }
    @media (min-width: 900px) {
      .siteHeader-secondaryNav, .siteHeader-mobileNav {
        display: block;
        border-top: solid 2px #f1f1f1; } }
  @media (min-width: 900px) {
    .siteHeader-mobileNav {
      display: none; } }
  @media (min-width: 900px) {
    .siteHeader-secondaryNav .secondaryNav,
    .siteHeader-mobileNav .mobileNav {
      margin-bottom: -2px; } }
  .siteHeader-breadcrumbs {
    display: none; }
    @media (min-width: 900px) {
      .siteHeader-breadcrumbs {
        border-top: solid 2px #f1f1f1;
        display: block; } }
  .siteHeader-mobileToggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0; }
    @media (min-width: 900px) {
      .siteHeader-mobileToggle {
        display: none; } }
  @media (min-width: 900px) {
    .siteHeader-quickNav {
      margin-right: 0.1875rem;
      position: absolute;
      top: 2.5875rem;
      right: 0; } }
  @media (min-width: 1150px) {
    .siteHeader-quickNav {
      margin-right: 0.5rem;
      position: relative;
      max-width: 1105px;
      float: left;
      top: 0; } }
  @media (min-width: 900px) {
    .siteHeader-quickContact {
      position: relative;
      margin-left: 42px; } }
  .siteHeader-subnav {
    display: none;
    width: 100%;
    position: absolute;
    top: 165px;
    left: 0;
    right: 0;
    z-index: 100; }
    .siteHeader-subnav.is-open {
      display: block; }
    @media (min-width: 1150px) {
      .siteHeader-subnav {
        top: 97px; } }
    @media (max-width: 899px) {
      .siteHeader-subnav {
        position: static;
        width: 100%; }
        .siteHeader-subnav .subnav-part {
          margin-top: 20px; } }
    .siteHeader-subnav ul li {
      float: none;
      display: block;
      padding: 0;
      margin: 10px 0 !important; }
      @media (min-width: 900px) {
        .siteHeader-subnav ul li {
          margin: .5em 0; } }
      .siteHeader-subnav ul li a {
        color: #005eb8;
        border: 0 none !important; }
        @media (max-width: 899px) {
          .siteHeader-subnav ul li a {
            padding: 0 !important; } }
        .siteHeader-subnav ul li a:hover {
          text-decoration: none; }
  @media (max-width: 899.9px) {
    .siteHeader-mobileNavWrapper {
      display: none;
      position: absolute;
      top: 66px;
      right: 0;
      left: 0;
      z-index: 1000;
      background-color: #f1f1f1;
      padding: 30px 30px 10px; }
      .nav-is-open .siteHeader-mobileNavWrapper {
        display: block; }
    .siteHeader-mobileNavItem {
      display: block;
      font-size: 16px;
      color: #646567;
      padding: 10px 0;
      border-bottom: 2px solid #fff; }
      .siteHeader-mobileNavItem.button {
        text-align: center;
        margin: 20px 0; }
    .siteHeader.view-show-mobile-quick-contact .siteHeader-quickContact {
      display: block;
      text-align: center;
      position: static;
      border-bottom: solid 2px #f1f1f1;
      margin: 0 -9px;
      padding: .8em 0 1.4em; } }

header .siteHeader-upper-wrap .siteHeader-in {
  padding: 10PX 9px 4px; }
  @media (min-width: 900px) {
    header .siteHeader-upper-wrap .siteHeader-in {
      padding: 0 9px; } }

.top-header-alert {
  background-image: -webkit-gradient(linear, left top, right top, from(#005EB8), color-stop(51%, #219cdc), to(#219cdc));
  background-image: linear-gradient(to right, #005EB8 0%, #219cdc 51%, #219cdc 100%);
  color: #ffffff;
  text-align: center;
  padding: 5px;
  margin-bottom: 0px;
  font-weight: 500; }
  .top-header-alert p {
    color: #ffffff !important; }
  .top-header-alert a {
    color: #ffffff;
    text-decoration: underline; }

@media only screen and (min-width: 768px) {
  .mobile-line-break {
    display: none; } }

.subnav {
  color: #4a4a4a; }
  @media (max-width: 899.9px) {
    .subnav {
      margin: 40px 0; } }
  @media (min-width: 900px) {
    .subnav {
      -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.5), 0 2px 12px rgba(0, 0, 0, 0.2);
              box-shadow: 0 1px 6px rgba(0, 0, 0, 0.5), 0 2px 12px rgba(0, 0, 0, 0.2);
      background: #fff; } }
  @media (min-width: 900px) {
    .subnav-in {
      -webkit-box-sizing: content-box;
              box-sizing: content-box;
      max-width: 1105px;
      margin: 0 auto;
      padding: 0 9px 10px;
      max-width: 900px; }
      .subnav-in > * {
        -webkit-box-sizing: border-box;
                box-sizing: border-box; } }
  .sg .subnav {
    margin: 1em 0; }
  @media (min-width: 900px) {
    .subnav-parts {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      -webkit-box-pack: stretch;
          -ms-flex-pack: stretch;
              justify-content: stretch;
      margin: 0 -1em;
      padding: 2em 0; } }
  @media (max-width: 899.9px) {
    .subnav-part {
      margin-top: 40px; } }
  @media (min-width: 900px) {
    .subnav-part {
      padding: 1em;
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      width: 300px; }
      .subnav-part.view-banners {
        width: 250px; } }
  .subnav-title {
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: .5em; }
    @media (min-width: 900px) {
      .subnav-title {
        font-size: 18px; } }
  .subnav-lead {
    font-size: 14px;
    min-height: 3em;
    margin-bottom: 1em; }
    .subnav-lead p {
      margin: 0;
      padding: 0; }
  .subnav-footer {
    background: #f9f9f9;
    text-align: center;
    font-size: 14px;
    padding: 1em 0; }
    .subnav-footer a {
      color: #4a4a4a;
      font-weight: 500;
      text-decoration: underline; }
  .subnav-items {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 18px; }
    .subnav-items li {
      margin: .5em 0; }
    .subnav-items a {
      color: #005eb8;
      text-decoration: underline; }

.subnavBanners {
  padding-top: 1.5em; }
  .subnavBanners-item {
    margin: .5em 0; }
    .subnavBanners-item-image {
      overflow: hidden;
      border-radius: 8px;
      margin-top: 1.5rem; }
      @media (min-width: 900px) {
        .subnavBanners-item-image {
          max-height: 190px; } }
      @media (max-width: 899px) {
        .subnavBanners-item-image .view-with-overlay {
          margin: auto; } }
      @media (max-width: 500px) {
        .subnavBanners-item-image .view-with-overlay {
          padding-bottom: 0; } }
      @media (max-width: 500px) {
        .subnavBanners-item-image .view-with-overlay .mediaCard-image-img {
          margin-top: 0;
          padding-bottom: 0;
          margin: auto; } }
      .subnavBanners-item-image span.mediaCardsSubNav {
        position: relative !important;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        max-width: 300px; }
        @media (max-width: 899px) {
          .subnavBanners-item-image span.mediaCardsSubNav {
            margin: auto; } }
        .subnavBanners-item-image span.mediaCardsSubNav-overlay {
          position: absolute;
          z-index: 12;
          width: 80%;
          color: #FFFFFF;
          background: url(/wp-content/themes/rigips/images/media-card-overlay-shape.svg) no-repeat center bottom;
          background-size: 535px;
          max-width: 300px;
          top: -0.5px;
          left: 0px;
          max-width: 300px;
          background-position: right bottom;
          height: 175px;
          z-index: 12; }
          @media (max-width: 899px) {
            .subnavBanners-item-image span.mediaCardsSubNav-overlay {
              width: 67%; } }
          .subnavBanners-item-image span.mediaCardsSubNav-overlay-in {
            display: block;
            padding: 15px 19px;
            font-weight: 300;
            font-family: "Ubuntu";
            font-size: 16px; }
        .subnavBanners-item-image span.mediaCardsSubNav img {
          width: 120%; }
          @media (max-width: 899px) {
            .subnavBanners-item-image span.mediaCardsSubNav img {
              width: 100%; } }
          @media (min-width: 500px) {
            .subnavBanners-item-image span.mediaCardsSubNav img {
              max-height: 244px; } }
    .subnavBanners-item .button {
      font-size: 16px;
      width: 100%;
      text-align: center;
      padding: .7em; }
      @media (min-width: 900px) {
        .subnavBanners-item .button {
          padding: 1em;
          font-size: 18px; } }
  .subnavBanners .mediaCard {
    font-size: 14px; }
    .subnavBanners .mediaCard-image {
      border-radius: 8px; }
    .subnavBanners .mediaCard-overlay {
      width: 65%; }
      .subnavBanners .mediaCard-overlay-in {
        padding-left: 1.125em;
        padding-top: 1.125em; }
  @media (max-width: 899.9px) {
    .subnavBanners-item.view-mediacard {
      display: none; } }

.videoPart {
  display: none;
  max-height: 181px;
  margin: 2rem 0; }
  .videoPart-thankyouPage {
    margin: 2rem 0 6rem; }
  .videoPart .joinUsPromo__playIcon {
    background: transparent url("/wp-content/themes/rigips/images/icon-play-video.svg");
    background-size: 100%;
    height: 68px;
    width: 68px;
    position: absolute;
    bottom: 31%;
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    opacity: .7; }
    .videoPart .joinUsPromo__playIcon:hover {
      opacity: 1; }
  .videoPart .owl-item {
    float: left; }

.videoPart-homepage {
  text-align: center;
  margin: 84px auto -10px; }
  .videoPart-homepage .joinUsPromo__playIcon {
    background: transparent url("/wp-content/themes/rigips/images/icon-play-video.svg");
    background-size: 100%;
    height: 68px;
    width: 68px;
    position: absolute;
    bottom: 31%;
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    opacity: .7; }
    .videoPart-homepage .joinUsPromo__playIcon:hover {
      opacity: 1; }
  .videoPart-homepage .owl-item {
    float: left; }

body {
  background: #f9f9f9; }
