﻿/*
 * Name: Atlas
 * Author: Zengenti Ltd
 * Author URI: http://zengenti.com
 * Description: A modern front-end framework
 * Version: 0.0.2
 */
/**
 * Utilities
 */
/**
 * Grid HTML classes
 */
/**
 * Align classes
 */
/**
 * Vertical align middle
 */
/**
 * Clearfix
 */
/**
 * Makes an element visually hidden, but accessible
 * @see http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
/**
 * Turns off the element-invisible effect
 */
/**
 * RGBA fallback
 */
/**
 * Input placeholder color
 */
/**
 * Icons
 */
/**
 * Icons fallback
 */
/**
 * Aspect ratio
 */
/**
 * Calculate columns
 */
/**
 * Strip unit
 * It strips the unit of measure and returns it
 */
/**
 * Convert to REM
 */
/**
 * REM calc
 */
/**
 * Assets paths
 */
/**
 * Base
 */
/**
 * Global
 */
/**
 * Breakpoints
 * Override default settings from _mq.scss partial
 * https://github.com/sass-mq/sass-mq
 */
/**
 * Icons
 */
/**
 * Base
 * core elements
 */
/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
/*Import Glyphicons*/
@import url("glyphicons.css");

html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  /* 1 */
  display: block;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE.
 */
template,
[hidden] {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
  color: #406C85;
  font-weight: 700;
  text-decoration: none;
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
  text-decoration: underline;
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/* Forms
   ========================================================================== */
/**
 * 1. Change font properties to `inherit` in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
select,
textarea {
  font: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Restore the font weight unset by the previous rule.
 */
optgroup {
  font-weight: bold;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

*, *:before, *:after {
  box-sizing: border-box;
}

html:lang(ko),
html:lang(ko-KR){
  font-family: "Noto Sans KR", sans-serif;
}

html {
  background: #fff;
  color: #3f3f41;
  font-family: "Noto Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 100%;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/**
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/**
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/**
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/**
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/**
 * Responsive images
 */
img {
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
  display: inline-block;
  vertical-align: middle;
}

/**
 * Heading sizes
 */
@media only screen and (min-width: 28.125em) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.875rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.5625rem;
  }
  h5 {
    font-size: 1.25rem;
  }
  h6 {
    font-size: 1rem;
  }
}

@media only screen and (min-width: 40.0625em) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.875rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.5625rem;
  }
  h5 {
    font-size: 1.25rem;
  }
  h6 {
    font-size: 1rem;
  }
}

h2 {
  font-weight: 700;
  margin-bottom: 1.5625rem;
}

h3 {
  font-weight: 700;
}

p {
  font-weight: 400;
  line-height: 1.3125rem;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: #3f3f41;
}

p.intro {
  line-height: 2rem;
  font-size: 1.125rem;
}

/**
 * Components
 * singular modular items, no parent-child relationship
 */
/**
 * Hide visually and from screen readers
 */
.hidden {
  display: none !important;
}

/**
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
.visuallyhidden {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

/**
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  position: static !important;
  height: auto;
  width: auto;
  overflow: visible;
  clip: auto;
}

/**
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/**
 * Clearfix
 */
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

/**
 * Small
 */
@media only screen {
  .show-for-small-only,
  .show-for-small-up,
  .hide-for-medium-only,
  .hide-for-medium-up,
  .hide-for-large-only,
  .hide-for-large-up,
  .hide-for-xlarge-only,
  .hide-for-xlarge-up,
  .hide-for-xxlarge-only,
  .hide-for-xxlarge-up {
    display: inherit !important;
  }
  .hide-for-small-only,
  .hide-for-small-up,
  .show-for-medium-only,
  .show-for-medium-up,
  .show-for-large-only,
  .show-for-large-up,
  .show-for-xlarge-only,
  .show-for-xlarge-up,
  .show-for-xxlarge-only,
  .show-for-xxlarge-up {
    display: none !important;
  }
  .visible-for-small-only,
  .visible-for-small-up,
  .hidden-for-medium-only,
  .hidden-for-medium-up,
  .hidden-for-large-only,
  .hidden-for-large-up,
  .hidden-for-xlarge-only,
  .hidden-for-xlarge-up,
  .hidden-for-xxlarge-only,
  .hidden-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .hidden-for-small-only,
  .hidden-for-small-up,
  .visible-for-medium-only,
  .visible-for-medium-up,
  .visible-for-large-only,
  .visible-for-large-up,
  .visible-for-xlarge-only,
  .visible-for-xlarge-up,
  .visible-for-xxlarge-only,
  .visible-for-xxlarge-up {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
}

/**
 * Medium
 */
@media only screen and (min-width: 40.0625em) {
  .hide-for-small-only,
  .show-for-small-up,
  .show-for-medium-only,
  .show-for-medium-up,
  .hide-for-large-only,
  .hide-for-large-up,
  .hide-for-xlarge-only,
  .hide-for-xlarge-up,
  .hide-for-xxlarge-only,
  .hide-for-xxlarge-up {
    display: inherit !important;
  }
  .show-for-small-only,
  .hide-for-small-up,
  .hide-for-medium-only,
  .hide-for-medium-up,
  .show-for-large-only,
  .show-for-large-up,
  .show-for-xlarge-only,
  .show-for-xlarge-up,
  .show-for-xxlarge-only,
  .show-for-xxlarge-up {
    display: none !important;
  }
  .hidden-for-small-only,
  .visible-for-small-up,
  .visible-for-medium-only,
  .visible-for-medium-up,
  .hidden-for-large-only,
  .hidden-for-large-up,
  .hidden-for-xlarge-only,
  .hidden-for-xlarge-up,
  .hidden-for-xxlarge-only,
  .hidden-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .visible-for-small-only,
  .hidden-for-small-up,
  .hidden-for-medium-only,
  .hidden-for-medium-up,
  .visible-for-large-only,
  .visible-for-large-up,
  .visible-for-xlarge-only,
  .visible-for-xlarge-up,
  .visible-for-xxlarge-only,
  .visible-for-xxlarge-up {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
}

/**
 * Large
 */
@media only screen and (min-width: 64.0625em) {
  .hide-for-small-only,
  .show-for-small-up,
  .hide-for-medium-only,
  .show-for-medium-up,
  .show-for-large-only,
  .show-for-large-up,
  .hide-for-xlarge-only,
  .hide-for-xlarge-up,
  .hide-for-xxlarge-only,
  .hide-for-xxlarge-up {
    display: inherit !important;
  }
  .show-for-small-only,
  .hide-for-small-up,
  .show-for-medium-only,
  .hide-for-medium-up,
  .hide-for-large-only,
  .hide-for-large-up,
  .show-for-xlarge-only,
  .show-for-xlarge-up,
  .show-for-xxlarge-only,
  .show-for-xxlarge-up {
    display: none !important;
  }
  .hidden-for-small-only,
  .visible-for-small-up,
  .hidden-for-medium-only,
  .visible-for-medium-up,
  .visible-for-large-only,
  .visible-for-large-up,
  .hidden-for-xlarge-only,
  .hidden-for-xlarge-up,
  .hidden-for-xxlarge-only,
  .hidden-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .visible-for-small-only,
  .hidden-for-small-up,
  .visible-for-medium-only,
  .hidden-for-medium-up,
  .hidden-for-large-only,
  .hidden-for-large-up,
  .visible-for-xlarge-only,
  .visible-for-xlarge-up,
  .visible-for-xxlarge-only,
  .visible-for-xxlarge-up {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
}

/**
 * X-large
 */
@media only screen and (min-width: 90.0625em) {
  .hide-for-small-only,
  .show-for-small-up,
  .hide-for-medium-only,
  .show-for-medium-up,
  .hide-for-large-only,
  .show-for-large-up,
  .show-for-xlarge-only,
  .show-for-xlarge-up,
  .hide-for-xxlarge-only,
  .hide-for-xxlarge-up {
    display: inherit !important;
  }
  .show-for-small-only,
  .hide-for-small-up,
  .show-for-medium-only,
  .hide-for-medium-up,
  .show-for-large-only,
  .hide-for-large-up,
  .hide-for-xlarge-only,
  .hide-for-xlarge-up,
  .show-for-xxlarge-only,
  .show-for-xxlarge-up {
    display: none !important;
  }
  .hidden-for-small-only,
  .visible-for-small-up,
  .hidden-for-medium-only,
  .visible-for-medium-up,
  .hidden-for-large-only,
  .visible-for-large-up,
  .visible-for-xlarge-only,
  .visible-for-xlarge-up,
  .hidden-for-xxlarge-only,
  .hidden-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .visible-for-small-only,
  .hidden-for-small-up,
  .visible-for-medium-only,
  .hidden-for-medium-up,
  .visible-for-large-only,
  .hidden-for-large-up,
  .hidden-for-xlarge-only,
  .hidden-for-xlarge-up,
  .visible-for-xxlarge-only,
  .visible-for-xxlarge-up {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
}

/**
 * XX-large
 */
@media only screen and (min-width: 120.0625em) {
  .hide-for-small-only,
  .show-for-small-up,
  .hide-for-medium-only,
  .show-for-medium-up,
  .hide-for-large-only,
  .show-for-large-up,
  .hide-for-xlarge-only,
  .show-for-xlarge-up,
  .show-for-xxlarge-only,
  .show-for-xxlarge-up {
    display: inherit !important;
  }
  .show-for-small-only,
  .hide-for-small-up,
  .show-for-medium-only,
  .hide-for-medium-up,
  .show-for-large-only,
  .hide-for-large-up,
  .show-for-xlarge-only,
  .hide-for-xlarge-up,
  .hide-for-xxlarge-only,
  .hide-for-xxlarge-up {
    display: none !important;
  }
  .hidden-for-small-only,
  .visible-for-small-up,
  .hidden-for-medium-only,
  .visible-for-medium-up,
  .hidden-for-large-only,
  .visible-for-large-up,
  .hidden-for-xlarge-only,
  .visible-for-xlarge-up,
  .visible-for-xxlarge-only,
  .visible-for-xxlarge-up {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .visible-for-small-only,
  .hidden-for-small-up,
  .visible-for-medium-only,
  .hidden-for-medium-up,
  .visible-for-large-only,
  .hidden-for-large-up,
  .visible-for-xlarge-only,
  .hidden-for-xlarge-up,
  .hidden-for-xxlarge-only,
  .hidden-for-xxlarge-up {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
}

/**
 * Orientation targeting
 */
.show-for-landscape,
.hide-for-portrait {
  display: inherit !important;
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}

@media only screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: inherit !important;
  }
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}

@media only screen and (orientation: portrait) {
  .show-for-portrait,
  .hide-for-landscape {
    display: inherit !important;
  }
  .hide-for-portrait,
  .show-for-landscape {
    display: none !important;
  }
}

/**
 * Touch-enabled device targeting
 */
.show-for-touch {
  display: none !important;
}

.hide-for-touch {
  display: inherit !important;
}

.touchevents .show-for-touch {
  display: inherit !important;
}

.touchevents .hide-for-touch {
  display: none !important;
}

/**
 * Screen reader-specific classes
 */
.show-for-sr {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

.show-on-focus {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

.show-on-focus:focus,
.show-on-focus:active {
  position: static !important;
  height: auto;
  width: auto;
  overflow: visible;
  clip: auto;
}

/**
 * Print visibility
 */
.print-only,
.show-for-print {
  display: none !important;
}

@media print {
  .print-only,
  .show-for-print {
    display: block !important;
  }
  .hide-on-print,
  .hide-for-print {
    display: none !important;
  }
}

/**
 * Alignment classes
 */
.text-left {
  text-align: left !important;
}

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

.text-center {
  text-align: center !important;
}

.text-center ul{
  list-style-position: inside;
}

.text-justify {
  text-align: justify !important;
}

@media only screen and (max-width: 40.0525em) {
  .small-only-text-left {
    text-align: left !important;
  }
  .small-only-text-right {
    text-align: right !important;
  }
  .small-only-text-center {
    text-align: center !important;
  }
  .small-only-text-justify {
    text-align: justify !important;
  }
}

@media only screen {
  .small-text-left {
    text-align: left !important;
  }
  .small-text-right {
    text-align: right !important;
  }
  .small-text-center {
    text-align: center !important;
  }
  .small-text-justify {
    text-align: justify !important;
  }
}

@media only screen and (min-width: 40.0625em) and (max-width: 64.0525em) {
  .medium-only-text-left {
    text-align: left !important;
  }
  .medium-only-text-right {
    text-align: right !important;
  }
  .medium-only-text-center {
    text-align: center !important;
  }
  .medium-only-text-justify {
    text-align: justify !important;
  }
}

@media only screen and (min-width: 40.0625em) {
  .medium-text-left {
    text-align: left !important;
  }
  .medium-text-right {
    text-align: right !important;
  }
  .medium-text-center {
    text-align: center !important;
  }
  .medium-text-justify {
    text-align: justify !important;
  }
}

@media only screen and (min-width: 64.0625em) and (max-width: 90.0525em) {
  .large-only-text-left {
    text-align: left !important;
  }
  .large-only-text-right {
    text-align: right !important;
  }
  .large-only-text-center {
    text-align: center !important;
  }
  .large-only-text-justify {
    text-align: justify !important;
  }
}

@media only screen and (min-width: 64.0625em) {
  .large-text-left {
    text-align: left !important;
  }
  .large-text-right {
    text-align: right !important;
  }
  .large-text-center {
    text-align: center !important;
  }
  .large-text-justify {
    text-align: justify !important;
  }
}

@media only screen and (min-width: 90.0625em) and (max-width: 120.0525em) {
  .xlarge-only-text-left {
    text-align: left !important;
  }
  .xlarge-only-text-right {
    text-align: right !important;
  }
  .xlarge-only-text-center {
    text-align: center !important;
  }
  .xlarge-only-text-justify {
    text-align: justify !important;
  }
}

@media only screen and (min-width: 90.0625em) {
  .xlarge-text-left {
    text-align: left !important;
  }
  .xlarge-text-right {
    text-align: right !important;
  }
  .xlarge-text-center {
    text-align: center !important;
  }
  .xlarge-text-justify {
    text-align: justify !important;
  }
}

@media only screen and (min-width: 120.0625em) {
  .xxlarge-text-left {
    text-align: left !important;
  }
  .xxlarge-text-right {
    text-align: right !important;
  }
  .xxlarge-text-center {
    text-align: center !important;
  }
  .xxlarge-text-justify {
    text-align: justify !important;
  }
}

/**
 * Uses the $icons map defined in utilities/_variables.scss
 * Add your icon into the map and the mixin will do the rest
 *
 * If for some reason you don't want to use the icons map you can manually add in an icon, example below
 * .icon-name {
 *    font-size: rem-calc(32); // works because "width" & "height" were set on .icon using em units
 *    color: #ff0000; // works for single-colored icons, because "fill" was set to "currentColor" on .icon
 * }
 */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  fill: currentColor;
}

/**
 * Icons
 */
/**
 * Icons fallback to PNGs
 * Uses Modernizr to detect svg support .no-svg
 * Remove if your not supporting older browsers
 */
.no-svg .icon {
  width: auto;
  height: auto;
  background-repeat: no-repeat;
  background-position: 0 0;
}

.skip-to-content {
  position: absolute;
  top: -1000px;
  left: 0;
  display: inline-block;
  width: 100%;
  background: #e9654c;
  color: #fff;
  padding: 1.25rem;
}

.skip-to-content:focus {
  position: relative;
  top: 0;
}

table {
  position: relative;
  display: inline-block;
  width: 100%;
}

table caption {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 5px 0;
  margin-bottom: 5px;
  background: #e9654c;
  color: #fff;
}

table tbody {
  display: table;
  width: 100%;
  border-collapse: collapse;
}

table th, table td {
  padding: 5px 10px;
  text-align: left;
}

table tr:nth-child(even) {
  background: #f4f4f4;
}

.btn {
  color: #fff;
  background: #a0005a;
  border-radius: 2px;
  padding: 0.625rem 1.875rem;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  border:none;
}
.btn:hover{
  cursor: pointer;
}

/**
 * Project specific Components
 * singular modular items, no parent-child relationship
 */
 .resp-video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    margin-bottom: 35px;
    height: 0;
    overflow: hidden
}

.resp-video iframe,
.resp-video object,
.resp-video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.resp-video-wistia {
    position: relative;
    padding: 56.25% 0 0 0;
    margin-bottom: 35px
}

.resp-video-wistia__wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0
}
.icon-play {
    font-size: 3.375rem
}
.icon {
    width: 3.5625rem;
    margin-right: .875rem
}

.solution-benefits__icon{
    text-align: center;
    color: #003B5C;
    font-size: 3.125rem;
}

.masonry__item {
    position: relative;
    overflow: hidden;
    border: 3px solid #fff
}

.block {
    position: relative;
    height: 24.125rem;
    background-color: #363537
}

.block--video {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.block--video::before {
    background-color: rgba(29, 29, 29, 0.7);
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    height: 100%
}

.no-rgba .block--video::before {
    background-color: #1d1d1d
}

.block__play {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    z-index: 1;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

@media only screen and (min-width: 64.0625em) {
    .block__play {
        bottom: auto;
        top: 50%
    }
}

@media only screen and (max-width: 64.0625em){
  .block--video {
    background-size: contain;
  }
  .block {
    height:31vh;
  }
  .block__play {
    bottom: 4.5rem;
  }
}

.block__play:hover,
.block__play:focus {
    border-bottom: 0;
    color: #009341;
}


/* Extends */
.header__tel {
  vertical-align: middle;
  color: #005983;
  font-size: 1.3125rem;
  font-weight: 600;
  text-decoration: none;
}

.header__bar {
  position: relative;
  padding: 0.75rem 0;
}

.header__bar .row.column {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.header__bar img {
  max-height: 100px;
}

@media only screen and (max-width: 40.0525em) {
  .header__bar .header__logo img {
    padding: 10px 20px 10px 0;
  }
  .header__bar .header__additional img {
    padding: 10px 0 10px 20px;
  }
}

@includ mq($until: small) {
  .header__bar img {
    max-height: 20px;
  }
}

.header__logo {
  float: left;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 190px;
  margin-top: 0;
}

.header__information {
  float: right;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: center;
      align-items: center;
  padding: 0.3125rem 0;
  text-align: right;
}

.header__tel {
  display: none;
  margin-right: 1.875rem;
}

@media only screen and (min-width: 64.0625em) {
  .header__tel {
    display: inline-block;
  }
}

.header__tel:hover, .header__tel:focus {
  text-decoration: underline;
}

.header__tel--mobile {
  position: absolute;
  bottom: -45px;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0.5rem 0;
  text-align: right;
  z-index: 1;
}

.no-rgba .header__tel--mobile {
  background-color: #fff;
}

@media only screen and (min-width: 64.0625em) {
  .header__tel--mobile {
    display: none;
  }
}

.header__tel--mobile .header__tel {
  display: block;
  margin-right: 0;
}

@media only screen and (min-width: 64.0625em) {
  .header__tel--mobile .header__tel {
    display: none;
  }
}

.header__additional {
  display: inline-block;
}

.hero__content {
  display: -ms-flexbox;
  display: flex;
  min-height: 600px;
  padding-top: 20%;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: end;
      justify-content: flex-end;
}

@media only screen and (min-width: 64.0625em) {
  .hero__content {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    min-height: 580px;
    padding: 0;
  }
}

.hero__content .btn {
  display: inline-block;
}

.header__hero {
  position: relative;
  padding: 1rem 0;
}

.header__hero:before {
  content: '';
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.no-rgba .header__hero:before {
  background-color: #000;
}

.header__hero.no-overlay:before {
  display: none;
}

.header--page {
    font-size: 1.875rem;
    text-align: center;
}

.header--page::after {
    content: "";
    display: block;
    position: relative;
    width: 3.125rem;
    height: 3px;
    margin: 1rem auto 0.5375rem;
    background-color: #DADDDE
}

.hero__heading {
  color: #fff;
  font-size: 2.5rem;
  line-height: 45px;
}

.hero__text {
  color: #fff;
  font-size: 1.1875rem;
  line-height: 28px;
}

.hero__form:lang(ko),
.hero__form:lang(ko-KR){
  font-family: "Noto Sans KR", sans-serif;
}

.hero__form {
  font-family: "Noto Sans", sans-serif;
  box-sizing: border-box;
  width: 100%;
  font-size: 1rem;
  background-color: #e5e5e5;
  margin: 30px auto 0;
  padding: 1.3125rem 1.5625rem 1.5625rem 1.5625rem;
  box-shadow: 6px 5px 5px 0px rgba(0, 0, 0, 0.75);
}

@media only screen and (min-width: 64.0625em) {
  .hero__form {
    margin: 0 auto;
  }
}

.hero__form p {
  margin: 0 0 5px 0;
}

.hero__form .form__heading {
  color: #000;
  font-size: 1.125rem;
  margin: 0;
  margin-bottom: 1.25rem;
}

.hero__form .field-label {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

.hero__form input,
.hero__form textarea {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 0.3125rem;
  border: none;
  padding: 0.5rem 0.625rem;
}

.hero__form input:last-child,
.hero__form textarea:last-child {
  margin-bottom: 0.625rem;
}

.hero__form textarea {
  resize: none;
}

.hero__form button[type="submit"],
.hero__form input[type="submit"] {
  width: 100%;
  color: #fff;
  background-color: #a0005a;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.875rem 0;
  cursor: pointer;
}

.sticky-cta {
  display: none;
}

@media only screen and (max-width: 28.115em) {
  .sticky-cta {
    display: -ms-flexbox;
    display: flex;
    z-index: 9999;
    width: 100%;
    background-color: #005983;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
  }
}

.sticky-cta a {
  margin: 10px;
}

.sticky-cta .sticky__tel img {
  width: 40px;
  height: 40px;
}

.stuck {
  position: fixed;
  bottom: 0;
}

.single-col__image {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}

.single-col__video {
  margin-top: 3.125rem;
  margin-bottom: 3.75rem;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.single-col__video iframe,
.single-col__video object,
.single-col__video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.single-col .body-txt iframe {
    width: 560px;
    height: 315px;
}

@media only screen and (max-width: 425px) {
  .single-col .body-txt iframe {
        width: 90vw;
        height: 25vh;
    }
}

.double-col .double-col__image-left, .double-col .double-col__image-right {
  position: relative;
  /*
	&:before {
		position: absolute;
		content: '';
		bottom: 0;
		height: 0px;
		width: 100%;
		box-shadow: 0px 30px 45px 9px $black;
    	z-index: -1;
	}
*/
}

.double-col .double-col__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: flex-start;
      align-items: flex-start;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-item-align: center;
      align-self: center;
}

.double-col .double-col__image-left:before {
  left: 0;
  transform: rotate(3deg);
}

.double-col .double-col__image-right:before {
  right: 0;
  transform: rotate(-3deg);
}

.double-col .double-col__heading {
  margin: 0;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.double-col .double-col__text {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.double-col span.double-col__text{
  display:block;
}

.double-col .double-col__cta {
  width: 100%;
  max-width: 13.75rem;
  color: #fff;
  background-color: #a0005a;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.875rem 0;
  cursor: pointer;
}

.double-col__form input {
  float: left;
  width: 100%;
  margin-bottom: 0.9375rem;
}

@media only screen and (min-width: 40.0625em) {
  .double-col__form input {
    width: 48%;
    margin: 0 1% 15px 1%;
  }
}

.double-col__form input,
.double-col__form textarea {
  border: none;
  padding: 0.5rem 0.625rem;
}

.double-col__form textarea {
  float: none;
  width: 100%;
  resize: none;
  border: 0;
  margin: 0 1%;
}

.double-col__form button[type="submit"] {
  width: 100%;
  max-width: 13.75rem;
  float: right;
  color: #fff;
  background-color: #a0005a;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.875rem 0;
  cursor: pointer;
}

.double-col__video {
    overflow: hidden;
}

.double-col__image {
    text-align: center;
}

.double-col__video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 560px;
    height: 315px;
    transform: translate(-50%, -50%);
}
@media only screen and (max-width: 425px) {
    .double-col__video iframe {
        top: 0;
        left: 0;
        width: 100vw;
        transform: translate(0%, 0%);
    }
}

@media only screen and (min-width: 426px) and (max-width: 1024px) {
    .double-col__video iframe {
        top: 0;
        left: 0;
        width: 100vw;
        height: 50vh;
        transform: translate(0%, 0%);
    }
}

.multi-col__heading {
  margin-top: 1.5625rem;
  margin-bottom: 1.5625rem;
}

.multi-col__image {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.multi-col__content {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  font-size: 1rem;
  max-width: 400px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.quote-testimonial .quote-testimonial__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-item-align: center;
      align-self: center;
}

.quote-testimonial .quote {
  margin: 0;
}

.quote-testimonial .blockquote {
  color: #4f4f4f;
  text-align: left;
  font-size: 1.875rem;
  font-style: italic;
  margin: 0;
}

.quote-testimonial .figcaption {
  color: #3a3a3a;
  margin-top: 1.875rem;
  font-style: normal;
  font-size: 1.125rem;
}

.quote-testimonial .cite {
  display: block;
  font-weight: 700;
  font-style: normal;
  font-size: 1.125rem;
}

.section-title {
  text-align: center;
}

.section.full-width-cta {
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
}

.section.full-width-cta .cta-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.section.full-width-cta .cta-wrap > * {
  margin: 5px 20px;
}

.section.full-width-cta.section--orient .cta-heading {
  color: #fff;
}

.section.full-width-cta .cta-heading {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0;
}

.section.full-width-cta .full-width-cta__icon {
  display: inline-block;
  width: 2.5rem;
  margin-right: 0.5rem;
}
.section.full-width-cta .full-width-cta__icon .cls-1 {
  fill: #fff;
}

.site-footer {
  background-image: url("/site-elements/images/footergfx/RTR-Right.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}

@media only screen and (max-width: 1028px) {
  .site-footer {
    background-position: right bottom;
    height: 300px;
    background-size: auto;
    background-image: url("/site-elements/images/footergfx/RTR-Right-Mobile.png");
  }
}

.site-footer a {
  color: #005983;
  font-weight: bold;
}

.site-footer.site-footer__blue {
  color: #fff;
  background-color: #003b5c;
  background-image: url("/site-elements/images/footergfx/DoMore-Wave-Right.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}

@media only screen and (max-width: 1028px) {
  .site-footer.site-footer__blue {
    background-position: right bottom;
    height: 300px;
    background-size: auto;
  }
}

.site-footer.site-footer__blue a {
  color: #fff;
}

.site-footer.site-footer__blue .site-footer__inner {
  background: none;
}

.site-footer__inner {
  padding: 60px 0;
  background-image: url("/site-elements/images/footergfx/RTR-leftt.png");
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
}

@media only screen and (max-width: 1028px) {
  .site-footer__inner {
    background-image: url("/site-elements/images/footergfx/RTR-Left-Mobile.png");
    background-position: left bottom;
    background-size: auto;
    height: 300px;
  }
}

@media only screen and (max-width: 460px) {
  .site-footer__inner {
    background-position: left bottom;
    background-size: auto;
    background: none;
  }
}

/**
 * Patterns
 * objects that have children
 */
/**
 * Row
 */
.row {
  margin: 0 auto;
  max-width: 81.25rem;
  width: 100%;
}

.row:before, .row:after {
  content: " ";
  display: table;
}

.row:after {
  clear: both;
}

.row.collapse > .column {
  padding-left: 0;
  padding-right: 0;
}

.row.collapse .row {
  margin-left: 0;
  margin-right: 0;
}

.row .row {
  margin: 0 -0.625rem;
  max-width: none;
  width: auto;
}

.row .row:before, .row .row:after {
  content: " ";
  display: table;
}

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

.row .row.collapse {
  margin: 0;
  max-width: none;
  width: auto;
}

.row .row.collapse:before, .row .row.collapse:after {
  content: " ";
  display: table;
}

.row .row.collapse:after {
  clear: both;
}

/**
 * Column
 */
.column,.columns {
  position: relative;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  width: 100%;
  float: left;
}

.column.row {
  float: none;
}

/**
 * Grid HTML classes
 */
@media only screen {
  .small-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .small-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto;
  }
  .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto;
  }
  .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto;
  }
  .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto;
  }
  .small-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto;
  }
  .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto;
  }
  .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto;
  }
  .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto;
  }
  .small-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto;
  }
  .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto;
  }
  .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto;
  }
  .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto;
  }
  .small-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto;
  }
  .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto;
  }
  .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto;
  }
  .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto;
  }
  .small-1 {
    width: 8.33333%;
  }
  .small-2 {
    width: 16.66667%;
  }
  .small-3 {
    width: 25%;
  }
  .small-4 {
    width: 33.33333%;
  }
  .small-5 {
    width: 41.66667%;
  }
  .small-6 {
    width: 50%;
  }
  .small-7 {
    width: 58.33333%;
  }
  .small-8 {
    width: 66.66667%;
  }
  .small-9 {
    width: 75%;
  }
  .small-10 {
    width: 83.33333%;
  }
  .small-11 {
    width: 91.66667%;
  }
  .small-12 {
    width: 100%;
  }
  .small-offset-0 {
    margin-left: 0 !important;
  }
  .small-offset-1 {
    margin-left: 8.33333% !important;
  }
  .small-offset-2 {
    margin-left: 16.66667% !important;
  }
  .small-offset-3 {
    margin-left: 25% !important;
  }
  .small-offset-4 {
    margin-left: 33.33333% !important;
  }
  .small-offset-5 {
    margin-left: 41.66667% !important;
  }
  .small-offset-6 {
    margin-left: 50% !important;
  }
  .small-offset-7 {
    margin-left: 58.33333% !important;
  }
  .small-offset-8 {
    margin-left: 66.66667% !important;
  }
  .small-offset-9 {
    margin-left: 75% !important;
  }
  .small-offset-10 {
    margin-left: 83.33333% !important;
  }
  .small-offset-11 {
    margin-left: 91.66667% !important;
  }
  .small-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.small-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.small-centered:last-child {
    float: none;
  }
  .column.small-uncentered:last-child {
    float: left;
  }
  .column.small-uncentered.opposite {
    float: right;
  }
  .row.small-collapse > .column {
    padding-left: 0;
    padding-right: 0;
  }
  .row.small-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.small-uncollapse > .column {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    float: left;
  }
}

@media only screen and (min-width: 40.0625em) {
  .medium-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .medium-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto;
  }
  .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto;
  }
  .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto;
  }
  .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto;
  }
  .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto;
  }
  .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto;
  }
  .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto;
  }
  .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto;
  }
  .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto;
  }
  .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto;
  }
  .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto;
  }
  .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto;
  }
  .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto;
  }
  .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto;
  }
  .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto;
  }
  .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto;
  }
  .medium-1 {
    width: 8.33333%;
  }
  .medium-2 {
    width: 16.66667%;
  }
  .medium-3 {
    width: 25%;
  }
  .medium-4 {
    width: 33.33333%;
  }
  .medium-5 {
    width: 41.66667%;
  }
  .medium-6 {
    width: 50%;
  }
  .medium-7 {
    width: 58.33333%;
  }
  .medium-8 {
    width: 66.66667%;
  }
  .medium-9 {
    width: 75%;
  }
  .medium-10 {
    width: 83.33333%;
  }
  .medium-11 {
    width: 91.66667%;
  }
  .medium-12 {
    width: 100%;
  }
  .medium-offset-0 {
    margin-left: 0 !important;
  }
  .medium-offset-1 {
    margin-left: 8.33333% !important;
  }
  .medium-offset-2 {
    margin-left: 16.66667% !important;
  }
  .medium-offset-3 {
    margin-left: 25% !important;
  }
  .medium-offset-4 {
    margin-left: 33.33333% !important;
  }
  .medium-offset-5 {
    margin-left: 41.66667% !important;
  }
  .medium-offset-6 {
    margin-left: 50% !important;
  }
  .medium-offset-7 {
    margin-left: 58.33333% !important;
  }
  .medium-offset-8 {
    margin-left: 66.66667% !important;
  }
  .medium-offset-9 {
    margin-left: 75% !important;
  }
  .medium-offset-10 {
    margin-left: 83.33333% !important;
  }
  .medium-offset-11 {
    margin-left: 91.66667% !important;
  }
  .medium-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.medium-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.medium-centered:last-child {
    float: none;
  }
  .column.medium-uncentered:last-child {
    float: left;
  }
  .column.medium-uncentered.opposite {
    float: right;
  }
  .row.medium-collapse > .column {
    padding-left: 0;
    padding-right: 0;
  }
  .row.medium-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.medium-uncollapse > .column {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    float: left;
  }
}

@media only screen and (min-width: 64.0625em) {
  .large-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .large-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto;
  }
  .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto;
  }
  .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto;
  }
  .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto;
  }
  .large-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto;
  }
  .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto;
  }
  .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto;
  }
  .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto;
  }
  .large-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto;
  }
  .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto;
  }
  .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto;
  }
  .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto;
  }
  .large-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto;
  }
  .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto;
  }
  .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto;
  }
  .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto;
  }
  .large-1 {
    width: 8.33333%;
  }
  .large-2 {
    width: 16.66667%;
  }
  .large-3 {
    width: 25%;
  }
  .large-4 {
    width: 33.33333%;
  }
  .large-5 {
    width: 41.66667%;
  }
  .large-6 {
    width: 50%;
  }
  .large-7 {
    width: 58.33333%;
  }
  .large-8 {
    width: 66.66667%;
  }
  .large-9 {
    width: 75%;
  }
  .large-10 {
    width: 83.33333%;
  }
  .large-11 {
    width: 91.66667%;
  }
  .large-12 {
    width: 100%;
  }
  .large-offset-0 {
    margin-left: 0 !important;
  }
  .large-offset-1 {
    margin-left: 8.33333% !important;
  }
  .large-offset-2 {
    margin-left: 16.66667% !important;
  }
  .large-offset-3 {
    margin-left: 25% !important;
  }
  .large-offset-4 {
    margin-left: 33.33333% !important;
  }
  .large-offset-5 {
    margin-left: 41.66667% !important;
  }
  .large-offset-6 {
    margin-left: 50% !important;
  }
  .large-offset-7 {
    margin-left: 58.33333% !important;
  }
  .large-offset-8 {
    margin-left: 66.66667% !important;
  }
  .large-offset-9 {
    margin-left: 75% !important;
  }
  .large-offset-10 {
    margin-left: 83.33333% !important;
  }
  .large-offset-11 {
    margin-left: 91.66667% !important;
  }
  .large-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.large-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.large-centered:last-child {
    float: none;
  }
  .column.large-uncentered:last-child {
    float: left;
  }
  .column.large-uncentered.opposite {
    float: right;
  }
  .row.large-collapse > .column {
    padding-left: 0;
    padding-right: 0;
  }
  .row.large-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.large-uncollapse > .column {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    float: left;
  }
}

section, .section {
  padding-top: 1.6875rem;
  padding-bottom: 1.6875rem;
}

.section .section {
  padding: 0;
}

.section--concrete {
  background-color: #f2f2f2;
}

.section--orient {
  background-color: #005983;
  color: #fff;
}

.section--orient p,
.section--orient .blockquote,
.section--orient .figcaption {
  color: #fff;
}

.section--mercury {
  background-color: #e5e5e5;
}

.section--silver {
  background-color: #cccccc;
}

.hero--blue {
  color: #fff;
}

.gated--content {
  padding-top: 1.25rem;
}

.gated-content__form {
  padding-top: 4.6875rem;
}

/**
 * Views
 * specific views
 */

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

.margin-top20{
  margin-top:20px!important
}

/*FLOATING LABLE FORM*/

.form-floating-label {
    position: relative;
  }


@supports (-moz-appearance:none) {
      select {
    /* height: 3.53rem;*/
    padding: 10px 1.21rem 1.25rem!important;    
  }
  .formStyle.option1 select{
    padding: 14px 1.21rem 1.25rem!important;    
  }
}

  
  .form-floating-label [type='text'],
  .form-floating-label [type='password'],
  .form-floating-label [type='date'],
  .form-floating-label [type='datetime'],
  .form-floating-label [type='datetime-local'],
  .form-floating-label [type='month'],
  .form-floating-label [type='week'],
  .form-floating-label [type='email'],
  .form-floating-label [type='number'],
  .form-floating-label [type='search'],
  .form-floating-label [type='tel'],
  .form-floating-label [type='time'],
  .form-floating-label [type='url'],
  .form-floating-label [type='color'],
  .form-floating-label textarea,
  .form-floating-label select {
    margin-bottom: 0;
    color: #00000;
    font-size: 1rem;
    font-weight: 300;
   /* padding: 23px 1rem 1rem 8px!important;*/
    padding: 1.28rem 1.25rem;
    line-height: 1rem;
    width: 100%;    
  }
  
  .form-floating-label label {
    color: #cacaca;
    font-size: 18px;
    position: absolute;
    pointer-events: none;
    left: 9px;
    bottom: 9px;
    transition: all 0.2s ease-in;
    font-weight: 300;
  }
  
  .form-floating-label textarea ~ label {
    top: 20px;
    font-size: 18px;
    font-weight: 300;
  }
  
  .form-floating-label input:focus ~ label,
  .form-floating-label input:disabled[value] ~ label,
  .form-floating-label.has-value input ~ label,
   .form-floating-label select.has-value ~ label
   {
    top: 0;
    font-size: 14px;
    color: #406C85;
    font-weight: 400;
  }
  
  .form-floating-label textarea:focus ~ label,
  .form-floating-label.has-value textarea ~ label {
    top: 0;
    font-size: 14px;
    color: #406C85;
    font-weight: 400;
  }

  .form-floating-label .input-validation-error{
   -webkit-box-shadow: -5px 0px 0px 0px #FF0000;
    box-shadow: -5px 0px 0px 0px #FF0000;
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
  }
  @keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

.columns.no-padding {
    padding:0px;
    float: left;
}
  
.legal-text{
    background-color: #e0e0e0;
    color: #363537;
    padding-top:10px;
    padding-bottom: 10px;
    text-align: center;
}

button:disabled,
button[disabled],
.btn[disabled],
.sys_cms-form-control [disabled].sys_form-submit{
  background-color:grey;
  cursor: not-allowed!important
}

/*Form handlers styling options*/
.form__heading{  
    font-size: 2.5rem;
    font-weight: bold;
}
.form__subheading{
    font-size: 1.1875rem;
    line-height: 28px;
}
.formStyle.option1 .form__heading, 
.formStyle.option1 .form__subheading p,
.formStyle.option2 .form__heading, 
.formStyle.option2 .form__subheading p {
    color:white;
}

.formStyle.option1 p,
.formStyle.option2 p {
  color: #ffffff;
}

.formStyle.option1 .terms_conditions,
.formStyle.option2 .terms_conditions,
.formStyle.option1 .comms_subscription,
.formStyle.option2 .comms_subscription
 {
  color:white;
}

.formStyle.option2 input,
.formStyle.option2 select{
  background-color: rgba(34, 34, 34, 0.34);  
}

.formStyle.option2 .form-floating-label.has-value label,
.formStyle.option2 .form-floating-label.has-value input,
.formStyle.option2 .form-floating-label select.has-value,
.formStyle.option2 .form-floating-label select.has-value ~ label{
  color:white;
}

.formStyle.option2 option {
  background: white;
  color:initial;
}
.formStyle.option2 .form-floating-label{
  border:1px solid white;
}
/*Vertical blocklist*/
.vertical__blockList .columns{
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 10px;
}
.vertical__blockItem{
    min-height: 6rem;
    color:white;
    display:flex;
    align-items: center;
    /*justify-content: center; 
    text-align: center;     */ 
}
.vertical__blockItem p{
    margin:0;    
}

.vertical__blockItem__icon {
    float: left;
    color: #FFFFFF;
    font-size: 2.5rem;
    margin:0 6px;
}

.vertical__blockItem.leftBlock{
    font-size: max(1.4vw, 15px);    
    font-weight: 700;
    line-height: 1em;
}

.vertical__blockItem.leftBlock.justify-content-center{
    justify-content: center;
    text-align: center;
}
.vertical__blockList .medium-4:nth-of-type(3n + 1){
    background-color: #003b5d;
}
.vertical__blockList .medium-4:nth-of-type(3n + 3){
    background-color: #809dae;
}
.vertical__blockList .medium-4:nth-of-type(3n+2){
    background-color: #4298B5;
}
.vertical__blockItem.rightBlock{
    background-color: #e5e8e9;
    justify-content: left;
    padding-left:20px;
    color:initial;
    flex-wrap: wrap;
}
.vertical__blockItem.rightBlock li{
    text-align: left;
}

.vertical__blockItem.rightBlock table tr:nth-child(even){
    background-color: #e5e8e9 !important;
}
@media only screen and (max-width: 40.0525em) {
    .vertical__blockList .columns {
        margin-bottom:0;        
    }
    .vertical__blockList .rightBlock{
        margin-bottom:20px;
    }
}
@media only screen and (min-width: 64em) {
    .vertical__blockItem.rightBlock table {
        text-align: justify;
    }    
}
/*END --- Vertical blocklist*/

#header__countdown {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  text-transform: uppercase;
  font-weight: 600;
  flex-wrap: wrap;
}

#header__countdown .countdown__digits {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 3.075rem;
  margin-bottom: 2px;
  flex:1 0 100%;
}

#header__countdown .countdown__labels {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 0.75rem;
  flex:1 0 100%;
}

#header__countdown .countdown__digit,
#header__countdown .countdown__label {
  display: inline-block;
  vertical-align: middle;
  /*width: 4.5rem;*/
  /*height: 4.5rem;*/
  height:10vh;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  flex: 1 0;
}

.no-rgba #header__countdown .countdown__digit, .no-rgba
#header__countdown .countdown__label {
  background-color: #000;
}

#header__countdown .countdown__digit {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin: 0 1px;
}

#header__countdown .countdown__digit:first-child {
  margin-left: 0;
}

#header__countdown .countdown__digit:last-child {
  margin-right: 0;
}

#header__countdown .countdown__label {
  /*width: 4.59375rem;*/
  height: 1.875rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

/*Video Grid*/
.video-listing .video_title {
    font-size: 1.1em;
    font-weight: 700;
    color: #406C85;
    margin-top: 15px;
}
.card-listing__more {
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
}
.btn--outline.btn--primary {
    color: #406C85;
    display: inline-block;
    padding: .875rem 1.3125rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    border: 3px solid #406C85;
    border-radius: 2px;
    -webkit-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
    cursor: pointer;
    background: #f0f0f0;
    text-decoration: none;
}
.btn--outline.btn--primary:hover, .btn--outline.btn--primary:focus {
    background-color: #406C85;
    color: #fff;
}
.btn--outline:hover, .btn--outline:focus {
    border-width: 3px;
    border-color: #FFF;
    background-color: #FFF;
    color: #003B5C;
}
/*Video Grid End*/

/*Popup Modal*/
.modal {
    visibility: hidden;
    position: fixed;
    z-index: 100;
    padding-top: 5%;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f3f4;
    background-color: rgba(0, 0, 0, 0.4)
}

.modalContent {
    position: relative;
    background-color: #f0f3f4;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 90%;
    height: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19)
}

#playButton {
    cursor: pointer;
    width: 10%
}

#loadingImg {
    width: 10%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: none;
    z-index: 0
}

#renderCanvas {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    padding: 0%;
    -ms-touch-action: none;
    touch-action: none;
    z-index: 1
}

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #333;
    opacity: .75;
    filter: alpha(opacity=75)
}
.mfp-bg.mfp-with-zoom{
    opacity:.9;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle
}

.mfp-align-top .mfp-container:before {
    display: none
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto
}

.mfp-ajax-cur {
    cursor: progress
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: zoom-out
}

.mfp-zoom {
    cursor: pointer;
    cursor: zoom-in
}

.mfp-auto-cursor .mfp-content {
    cursor: auto
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.mfp-loading.mfp-figure {
    display: none
}

.mfp-hide {
    display: none !important
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044
}

.mfp-preloader a {
    color: #CCC
}

.mfp-preloader a:hover {
    color: #fff
}

.mfp-s-ready .mfp-preloader {
    display: none
}

.mfp-s-error .mfp-content {
    display: none
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    border: 0;
    -webkit-appearance: none;
    display: block;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
    box-shadow: none;    
    background: #ffffff61;    
}

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

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 41px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 1;
    cursor: pointer;
    color: #000;
    filter: alpha(opacity=100)
}

.mfp-close:hover,
.mfp-close:focus {
    border-bottom: 0;
    opacity: 0.7;
    filter: alpha(opacity=70)
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close,
.popup--video .mfp-close {
    color: #fff;
    right: -6px
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap
}

.mfp-arrow {
    position: absolute;
    opacity: 1;
    filter: alpha(opacity=100);
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
    margin-top: -54px
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
    filter: alpha(opacity=100)
}

.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent
}

.mfp-arrow:after,
.mfp-arrow .mfp-a {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px
}

.mfp-arrow:before,
.mfp-arrow .mfp-b {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7
}

.mfp-arrow-left {
    left: 0
}

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
    border-right: 17px solid #003B5C;
    margin-left: 31px
}

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
    margin-left: 25px;
    border-right: 27px solid #003B5C
}
.mfp-arrow-left:hover:before,
.mfp-arrow-left .mfp-b:hover,
.mfp-arrow-right:hover:before,
.mfp-arrow-right .mfp-b:hover {    
    opacity:1;
}

.mfp-arrow-right {
    right: 0
}

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
    border-left: 17px solid #003B5C;
    margin-left: 39px
}

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
    border-left: 27px solid #003B5C
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 1300px
}

.mfp-iframe-holder .mfp-close {
    top: -45px
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 49px 0 rgba(0, 0, 0, 0.16);
    background: #000
}

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto
}

.mfp-figure {
    line-height: 0
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 49px 0 rgba(0, 0, 0, 0.16);
    background: #444
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px
}

.mfp-figure figure {
    margin: 0
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px
}

.mfp-image-holder .mfp-content {
    max-width: 100%
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0
    }
    .mfp-img-mobile img.mfp-img {
        padding: 0
    }
    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0
    }
    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px
    }
    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box
    }
    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0
    }
    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px
    }
    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75)
    }
    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0
    }
    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%
    }
    .mfp-container {
        padding-left: 6px;
        padding-right: 6px
    }
}

.mfp-ie7 .mfp-img {
    padding: 0
}

.mfp-ie7 .mfp-bottom-bar {
    width: 600px;
    left: 50%;
    margin-left: -300px;
    margin-top: 5px;
    padding-bottom: 5px
}

.mfp-ie7 .mfp-container {
    padding: 0
}

.mfp-ie7 .mfp-content {
    padding-top: 44px
}

.mfp-ie7 .mfp-close {
    top: 0;
    right: 0;
    padding-top: 0
}

.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: .75
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0
}

.popup {
    position: relative;
    padding: 4.375rem 6px;
    width: auto;
    max-width: 840px;
    margin: 20px auto;
    background-color: #fff
}

.popup.full-width-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: transparent;
}

.popup.full-width-image .popup-inner {
    position: relative;
    background: #fff;
    padding: 2rem;
    border-radius: 0.25rem;
}

.popup.full-width-image .popup-inner img {
    display: block;
    width: auto;
    height: auto;
    max-width: 80vw;
    max-height: 80vh;
}

@media only screen and (min-width: 20.0625em) {
    .popup {
        padding-right: 1.25rem;
        padding-left: 1.25rem
    }
}

@media only screen and (min-width: 40.0625em) {
    .popup {
        padding-right: 2.5rem;
        padding-left: 2.5rem
    }

}

.popup--video {
    padding: 0;
    max-width: 1300px;
    margin-top: 40px;
    margin-bottom: 40px
}

.popup--video .mfp-close {
    top: -45px
}
/*Popup Modal Close*/

/*COOKIE CONSENT*/
.cc-window{opacity:1;transition:opacity 1s ease; border:1px solid #005983;}.cc-window.cc-invisible{opacity:0}.cc-animate.cc-revoke{transition:transform 1s ease}.cc-animate.cc-revoke.cc-top{transform:translateY(-2em)}.cc-animate.cc-revoke.cc-bottom{transform:translateY(2em)}.cc-animate.cc-revoke.cc-active.cc-bottom,.cc-animate.cc-revoke.cc-active.cc-top,.cc-revoke:hover{transform:translateY(0)}.cc-grower{max-height:0;overflow:hidden;transition:max-height 1s}
.cc-link,.cc-revoke:hover{text-decoration:underline}.cc-revoke,.cc-window{position:fixed;overflow:hidden;box-sizing:border-box;font-family:Helvetica,Calibri,Arial,sans-serif;font-size:16px;line-height:1.5em;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;z-index:9999}.cc-window.cc-static{position:static}.cc-window.cc-floating{padding:2em;max-width:24em;-ms-flex-direction:column;flex-direction:column}.cc-window.cc-banner{padding:1em 1.8em;width:100%;-ms-flex-direction:row;flex-direction:row}.cc-revoke{padding:.5em}.cc-header{font-size:18px;font-weight:700}.cc-btn,.cc-close,.cc-link,.cc-revoke{cursor:pointer}.cc-link{opacity:.8;display:inline-block;padding:.2em}.cc-link:hover{opacity:1}.cc-link:active,.cc-link:visited{color:initial}.cc-btn{display:block;padding:.4em .8em;font-size:.9em;font-weight:700;border-width:2px;border-style:solid;text-align:center;white-space:nowrap}.cc-banner .cc-btn:last-child{min-width:140px}.cc-highlight .cc-btn:first-child{background-color:transparent;border-color:transparent}.cc-highlight .cc-btn:first-child:focus,.cc-highlight .cc-btn:first-child:hover{background-color:transparent;text-decoration:underline}.cc-close{display:block;position:absolute;top:.5em;right:.5em;font-size:1.6em;opacity:.9;line-height:.75}.cc-close:focus,.cc-close:hover{opacity:1}
.cc-revoke.cc-top{top:0;left:3em;border-bottom-left-radius:.5em;border-bottom-right-radius:.5em}.cc-revoke.cc-bottom{bottom:0;left:3em;border-top-left-radius:.5em;border-top-right-radius:.5em}.cc-revoke.cc-left{left:3em;right:unset}.cc-revoke.cc-right{right:3em;left:unset}.cc-top{top:1em}.cc-left{left:1em}.cc-right{right:1em}.cc-bottom{bottom:1em}.cc-floating>.cc-link{margin-bottom:1em}.cc-floating .cc-message{/* display:block; */margin-bottom:1em;}.cc-window.cc-floating .cc-compliance{-ms-flex:1;flex:1}.cc-window.cc-banner{-ms-flex-align:center;align-items:center}.cc-banner.cc-top{left:0;right:0;top:0}.cc-banner.cc-bottom{left:0;right:0;bottom:0}.cc-banner .cc-message{-ms-flex:1;flex:1}.cc-compliance{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:justify;align-content:space-between}.cc-compliance>.cc-btn{-ms-flex:1;flex:1}.cc-btn+.cc-btn{margin-left:.5em}
@media print{.cc-revoke,.cc-window{display:none}}@media screen and (max-width:900px){.cc-btn{white-space:normal}}@media screen and (max-width:414px) and (orientation:portrait),screen and (max-width:736px) and (orientation:landscape){.cc-window.cc-top{top:0}.cc-window.cc-bottom{bottom:0}.cc-window.cc-banner,.cc-window.cc-left,.cc-window.cc-right{left:0;right:0}.cc-window.cc-banner{-ms-flex-direction:column;flex-direction:column}.cc-window.cc-banner .cc-compliance{-ms-flex:1;flex:1}.cc-window.cc-floating{max-width:none}.cc-window .cc-message{margin-bottom:1em;}.cc-window.cc-banner{-ms-flex-align:unset;align-items:unset}}
.cc-floating.cc-theme-classic{padding:1.2em;border-radius:5px}.cc-floating.cc-type-info.cc-theme-classic .cc-compliance{text-align:center;display:inline;-ms-flex:none;flex:none}.cc-theme-classic .cc-btn{border-radius:5px}.cc-theme-classic .cc-btn:last-child{min-width:140px}.cc-floating.cc-type-info.cc-theme-classic .cc-btn{display:inline-block}
.cc-theme-edgeless.cc-window{padding:0}.cc-floating.cc-theme-edgeless .cc-message{/* margin:2em 2em 1.5em; */}.cc-banner.cc-theme-edgeless .cc-btn{margin:0;padding:.8em 1.8em;height:100%}.cc-banner.cc-theme-edgeless .cc-message{margin-left:1em}.cc-floating.cc-theme-edgeless .cc-btn+.cc-btn{margin-left:0}

#pi_tracking_opt_in_div{display:none!important}

/*BUY DOMINO BANNER*/
.buydomino-banner {
    position: relative;
    height: 19rem;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 2px 0 2px 0;
}

@media only screen and (max-width: 64.0625em) {
    .buydomino-banner {
        height: 15rem;
        background-position: center center;
        background-size: contain;
    }
}
/*@media only screen and (max-width: 40.0625em) {
    .buydomino-banner{
        height: 12rem;
    }
} */

.fixpaddingLR {
    padding-left: 2px;
    padding-right: 2px;
}

.partial-borderbox {
    /* position:relative;     */
    width: auto;
}

    .partial-borderbox:before, .partial-borderbox:after {
        content: "";
        position: absolute;
        top: 0px;
        bottom: 0px;
        border: 2px solid #009639;
    }

    .partial-borderbox::before {
        left: 0px;
        right: 80%;
        border-right: none;
    }

    .partial-borderbox::after {
        border-left: none;
        right: 0px;
        left: 80%;
    }

.buydomino-cta {
    padding: 71px 0 0 55px;
}


.customer-portal-subtitle {
    color: #00527f;
    font-size: 1.2rem;
}

.customer-portal-title {
    color: #009639;
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.customer-portal-subtitle-small {
    color: #00527f;
    font-size: .9rem;
    margin-bottom: .5rem;
}
