/*!
Updated:2022-3-21

Author:
Nevin McElwrath

CONTENTS
-----------------------------------------
1. Common
2. Screen
3. Media Queries
4. Grid
5. Modules
6. Page Layout
7. Header Themes
8. Print

BRANDING
-----------------------------------------
1. COLORS
   - Blue: #0c2340
   - Gold: #ae9142
   - Sky Blue: #e1e8f2

2. FONT STACKS
   - Headings: GPC, "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif
   - Article Headings: "Sumana", Georgia, "Times New Roman", Times, serif
   - Body: "Libre Franklin", "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif

3. GALAXIE POLARIS FONT WEIGHTS
   - 100 light
   - 300 book
   - 400 medium (normal)
   - 700 bold
   - 900 heavy
*/

/*************************************************************************************
 * 1. Common Styles
 ************************************************************************************/
:root {
  --brand-green: #179448;
  --brand-green-light: #5fb882;
  --brand-green-bright: #3fad6a;
  --brand-green-dark: #127639;
  --gray-dark: #333333;
  --gray: #555555;
  --gray-light: #777777;
  --gray-extra-light: #d2d2d2;
  --link-color: #fff58c;
  --grid-gap: 1.5rem;
  --anim-duration: 325ms;
  --anim-duration-fast: 125ms;
  --anim-duration-slow: 500ms;
  --anim-ease: ease-in-out;
  --font-default: "PT Sans", "Helvetica Neue", Helvetica, Arial, Verdana,
    sans-serif;
}
@import url("https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap");

*,
*:before,
*:after {
  box-sizing: border-box;
}
@-ms-viewport {
  width: device-width;
  zoom: 1;
}
@-o-viewport {
  width: device-width;
  zoom: 1;
}
@viewport {
  width: device-width;
  zoom: 1;
}
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: var(--font-default);
}
html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-smoothing: antialiased;
}
body {
  color: #333;
  font: 1em/1.6em var(--font-default);
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden] {
  display: none;
}
[tabindex="-1"]:focus {
  outline: none !important;
}
p {
  margin: 0 0 1rem;
  line-height: 1.625;
}
a {
  color: var(--link-color);
  overflow-wrap: break-word;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  background-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:visited {
  color: var(--brand-green);
}
a:hover {
  color: var(--brand-green-bright);
}
a:active {
  color: var(--brand-green-dark);
}
a:focus {
  outline: thin dotted;
}
address {
  font-style: normal;
}
strong,
b {
  font-weight: bolder;
}
em,
i {
  font-style: italic;
}
small {
  font-size: 80%;
}
iframe,
embed {
  max-width: 100%;
}
sub,
sup {
  position: relative;
  vertical-align: baseline;
  line-height: 0;
  font-size: smaller;
}
sup {
  vertical-align: super;
}
sub {
  vertical-align: sub;
}
pre,
code,
kbd,
samp {
  overflow: auto;
  font-family: monospace, sans-serif;
}
hr {
  clear: both;
  margin: 3rem 5%;
  max-width: calc(65rem - 10%);
  border: 1px solid var(--gray-light);
  height: 1px;
}
a,
area,
button,
[role="button"],
input:not([type="range"]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

/* Lists
----------------------------------------------------*/
ol,
ul,
dl {
  margin: 1rem 0;
  padding: 0 0 0 2rem;
}
li {
  margin: 0 0 0.25rem;
}
nav ul {
  list-style: none;
}
nav ul,
nav li {
  margin: 0;
  padding: 0;
}
nav a {
  text-decoration: none;
}
.nobullets,
.no-bullets {
  list-style-type: none;
  padding-left: 0;
}
.nobullets li,
.no-bullets li {
  max-width: none;
}
.list-gap li {
  margin-bottom: 2rem;
}
dt {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
dd {
  margin-bottom: 2rem;
}
.list-inline,
.list-grid {
  list-style: none;
  padding: 0;
  text-align: left;
}
.list-grid li,
.list-grid dt,
.list-grid dd {
  padding: 0;
  margin: 0;
  width: auto;
  font-size: 1em;
}
.list-inline li,
.list-inline dt,
.list-inline dd {
  padding: 0;
  margin: 0 1.5em 0 0;
  display: inline-block;
  font-size: 1em;
}
.list-inline dt {
  margin-right: 0.5em;
}
details {
  padding-left: 2rem;
  padding-right: 2rem;
  margin-bottom: 1rem;
}
summary {
  font-size: 1.2rem;
  font-weight: bold;
  outline: none;
  padding: 0.5rem 0 0.5rem 2rem;
  margin-left: -2rem;
  text-indent: -2rem;
  border: thin dotted transparent;
  transition: all var(--anim-duration-fast) var(--anim-ease);
}
summary:focus {
  border: thin dotted;
}
summary:hover {
  cursor: pointer;
  color: var(--brand-blue-bright);
}
summary::-webkit-details-marker {
  display: none;
}
summary:before {
  content: "\002B";
  width: 2rem;
  text-indent: 0;
  display: inline-block;
  text-align: center;
}
details[open] summary:before {
  content: "\2212";
}

/* Tables
----------------------------------------------------*/
table {
  width: 100%;
  margin: 2em 0;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid var(--gray-light);
}
tr {
  border-top: 1px solid var(--gray-light);
}
tr:nth-child(even) td {
  background: var(--gray-extra-extra-light);
}
th,
thead th {
  text-align: left;
  background-color: var(--gray-extra-light);
  color: var(--gray-dark);
  border-right: 1px solid var(--gray-light);
  font-family: var(--font-default);
  font-weight: 600;
  font-size: 1em;
  border-bottom: 3px solid var(--gray);
}
tfoot th {
  text-align: right;
}
th,
td {
  padding: 0.5em 0.75em;
}
td {
  border-right: 1px solid var(--gray-light);
  border-left: 1px solid var(--gray-light);
}
td,
td img {
  vertical-align: top;
}

/* Form Elements
----------------------------------------------------*/
form {
  margin: 0 0 1em;
}
fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
  border: 1px solid var(--gray-light);
}
legend {
  padding: 0;
  border: 0;
}
label {
  display: block;
  font-weight: bold;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  margin: 0 0 1em;
  color: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}
button {
  width: auto;
  border-radius: 0;
}
button,
input {
  line-height: normal;
  overflow: visible;
}
button,
select {
  text-transform: none;
}
select {
  max-width: 100%;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}
input[type="checkbox"],
input[type="radio"] {
  padding: 0;
}
input[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
optgroup {
  font-weight: bold;
}

/* Headings
---------------------------------------------------*/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
.page-title {
  margin: 1em 0 0.25em;
  padding-top: 10px;
  line-height: 1.3;
  color: var(--gray-dark);
  text-rendering: optimizeLegibility;
  font-family: var(--font-heading);
  font-weight: 600;
  max-width: none;
}
.page-title {
  margin: 0 0 1rem;
  line-height: 1.25;
  font-family: var(--font-default);
  clear: both;
}
h1:first-child,
.h1:first-child,
h2:first-child,
.h2:first-child,
h3:first-child,
.h3:first-child,
h4:first-child,
.h4:first-child,
h5:first-child,
.h5:first-child,
h6:first-child,
.h6:first-child {
  margin-top: 0;
}
h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
  text-decoration: none;
}
h1 a:visited,
.h1 a:visited,
h2 a:visited,
.h2 a:visited,
h3 a:visited,
.h3 a:visited,
h4 a:visited,
.h4 a:visited,
h5 a:visited,
.h5 a:visited,
h6 a:visited,
.h6 a:visited {
  color: var(--link-blue);
}
h1 a:hover,
.h1 a:hover,
h2 a:hover,
.h2 a:hover,
h3 a:hover,
.h3 a:hover,
h4 a:hover,
.h4 a:hover,
h5 a:hover,
.h5 a:hover,
h6 a:hover,
.h6 a:hover {
  text-decoration: underline;
}
h1,
.h1,
.page-title {
  font-size: 2.25rem;
}
h2,
.h2 {
  font-size: 1.75rem;
}
h3,
.h3 {
  font-size: 1.5rem;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--font-default);
  font-size: 1.25rem;
}
h4,
.h4 {
  color: var(--gray-dark);
}
h5,
.h5 {
  color: var(--gray-dark);
}
h6,
.h6 {
  color: var(--gray);
}
div > h2:first-child,
div > .h2:first-child,
div > h3:first-child,
div > .h3:first-child,
div > h4:first-child,
div > .h3:first-child,
div > h5:first-child,
div > .h5:first-child,
div > h6:first-child,
div > .h6:first-child {
  margin-top: 0;
}

/* Quotes
----------------------------------------------------*/
blockquote {
  margin: 1em 0;
  padding: 1em 1.5em;
  font-family: var(--font-default);
  font-weight: 600;
}
blockquote p {
  color: var(--gray-dark);
  line-height: 1.3em;
  font-size: 1.3rem;
  padding: 0;
  margin: 0;
}
blockquote footer,
cite,
.cite {
  color: var(--gray-dark);
  font-family: var(--font-default);
  font-size: 0.8rem;
  text-align: right;
  line-height: 1.65;
}
blockquote footer,
blockquoute > cite,
blockquote > .cite {
  display: block;
  margin-top: 1em;
}
blockquote footer {
  font-style: normal;
}
blockquote.pull {
  float: right;
  border-left: 0.2em solid var(--brand-green);
}
blockquote.blockquote-highlight {
  padding: 1.5rem;
  border: none;
  clear: both;
  background: var(--gray-extra-light);
}
cite,
.cite {
  font-style: italic;
}

/* Images & Video
----------------------------------------------------*/
svg:not(:root) {
  overflow: hidden;
}
img {
  max-width: 100%;
  width: auto;
  height: auto;
  border: none;
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
  box-sizing: content-box;
}
figure {
  display: table;
  max-width: 100%;
  margin: 0 0 1em;
}
figcaption {
  display: table-caption;
  caption-side: bottom;
  text-align: left;
  line-height: 1.5em;
}
.no-border,
.no-border img {
  border: none !important;
  box-shadow: none !important;
}

/* Images */
.image-default,
.image-right,
.image-left,
.image-full-right,
.image-full-left {
  margin: 0.4rem 0 1em;
  font-size: 0.9rem;
  color: var(--gray);
}
.image-full-right,
.image-full-left {
  margin: 3em 0;
  max-width: none;
  display: block;
}
.image-default img,
.image-right img,
.image-left img,
.image-full-right img,
.image-full-left img {
  display: block;
  margin-bottom: 0.5rem;
  width: 100%;
}
.image-circle img,
img.image-circle {
  overflow: hidden;
  border-radius: 50%;
}
.image-center {
  text-align: center;
}
.image-default > a,
.image-right > a,
.image-left > a,
.image-full-right > a,
.image-full-left > a {
  display: block;
  text-decoration: none;
  border: none;
}
.image-left + h2 {
  margin-top: 0;
}

/* FitEmbed */
.embed-inner {
  position: relative;
  padding: 0;
}
.embed-inner iframe,
.embed-inner object,
.embed-inner embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Video */
body .video,
.video-poster {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.video-poster img {
  margin: 0;
}
.video-poster::after {
  content: "";
  display: block;
}
body .video > img {
  margin-bottom: 0;
}
body .video .play,
.video-poster::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.1)
    url("/stylesheets/themes/ndt/v3/images/play-btn.svg") no-repeat left center /
    auto 100%;
  transform-origin: 12% 79%;
  transform: scale(1);
  transition: all var(--anim-duration-fast) cubic-bezier(0, 0, 0.25, 1);
}
body .video:hover .play,
.video-poster:hover::after {
  background-color: rgba(0, 0, 0, 0);
  transform: scale(1.15);
}

/* Icons
  <span class="icon" data-icon="name"></span>
----------------------------------------------------*/
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: baseline;
}

/* General
----------------------------------------------------*/
.hidden {
  display: none !important;
}
.invisible {
  visibility: hidden;
}
.visually-hidden {
  position: absolute;
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  white-space: nowrap;
}

/* Alignment */
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.block-center {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}
.block-center-wide {
  max-width: 90rem;
}
.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.justify-self-start {
  justify-self: flex-start;
}
.justify-self-center {
  justify-self: center;
}
.justify-self-end {
  justify-self: flex-end;
}
.align-start {
  align-items: flex-start;
}
.align-center {
  align-items: center;
}
.align-end {
  align-items: flex-end;
}
.align-self-start {
  align-self: flex-start;
}
.align-self-center {
  align-self: center;
}
.align-self-end {
  align-self: flex-end;
}

/* Alerts
----------------------------------------------------*/
.alert {
  --alert-background: #f2f2f2;
  --alert-border: #ccc;
  --alert-text: #333;
  --alert-padding: 1.5rem;
  position: relative;
  padding: var(--alert-padding);
  margin: 0 0 3rem;
  border: 1px solid var(--alert-border);
  background: var(--alert-background);
  border-radius: 0.5rem;
  display: flex;
  flex-flow: row nowrap;
  align-items: baseline;
}
.alert.has-icon {
}
.alert svg {
  fill: var(--alert-text);
}
.alert p {
  margin: 0;
}
.alert .icon {
  position: relative;
  top: 2px;
  width: var(--alert-padding);
  height: var(--alert-padding);
  vertical-align: sub;
  margin-right: var(--alert-padding);
  min-width: var(--alert-padding);
}
.alert .alert-content {
}
.alert-heading {
  font-size: x-large;
  font-family: var(--font-default);
  margin: 0 0 0.5rem;
  padding: 0;
  color: inherit;
}
.alert-link {
  font-weight: 600;
  text-decoration: underline;
  color: inherit;
}
.alert-primary {
  --alert-background: var(--sky-blue);
  --alert-border: var(--sky-blue-dark);
  --alert-text: var(--brand-blue);
  color: var(--alert-text);
  background-color: var(--alert-background);
  border-color: var(--alert-border);
}
.alert-secondary {
  --alert-text: #4e3f51;
  --alert-background: #f3eaf6;
  --alert-border: #c9a7cf;
  color: var(--alert-text);
  background-color: var(--alert-background);
  border-color: var(--alert-border);
}
.alert-success {
  --alert-text: #40513f;
  --alert-background: #eaf6ec;
  --alert-border: #a7cfac;
  color: var(--alert-text);
  background-color: var(--alert-background);
  border-color: var(--alert-border);
}
.alert-danger {
  --alert-text: #513f3f;
  --alert-background: #f5d7d7;
  --alert-border: #f49f9f;
  color: var(--alert-text);
  background-color: var(--alert-background);
  border-color: var(--alert-border);
}
.alert-warning {
  --alert-text: #51493f;
  --alert-background: #f4d2b8;
  --alert-border: #e4ac81;
  color: var(--alert-text);
  background-color: var(--alert-background);
  border-color: var(--alert-border);
}
.alert-info {
  --alert-text: #856404;
  --alert-background: #fff3cd;
  --alert-border: #e4d5a9;
  color: var(--alert-text);
  background-color: var(--alert-background);
  border-color: var(--alert-border);
}

.site-header {
  border-top: 5px solid var(--brand-green);
  background-color: white;
}
.site-logo {
  margin: 2rem 0;
}
.site-logo a {
  display: block;
  text-indent: -999rem;
  background: url("../img/logo-snappystorage.svg") left center / contain
    no-repeat;
  height: 85px;
  max-width: 90vw;
  margin: 0 5vw;
}

#page-content {
  padding: 3rem 1.5rem;
}
.site-footer {
  padding-top: 2.5rem;
  background-color: white;
}
.site-footer a {
  color: var(--brand-green);
}
.site-footer .footer-branding .footer-logo a {
  display: block;
  text-indent: -999rem;
  background: url("../img/logo-snappystorage.svg") center center / contain
    no-repeat;
  width: 100%;
  height: 60px;
}

@media only screen {
  body {
    background: var(--brand-green) url("../img/bg-zigzag.svg") center center /
      100% auto no-repeat;
  }
  .skip-links {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin-left: 0;
    text-align: center;
    list-style: outside none;
  }
  .skip-links a {
    position: absolute;
    left: -100vw;
    top: 0.5em;
    transition: 0.25s;
  }
  .header-nav .main-nav {
    display: none;
  }
  .header-nav .main-nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-flow: row nowrap;
    bottom: 1rem;
  }
  .header-nav .main-nav li {
    margin: 0;
  }
  .header-nav .main-nav a {
    font-size: 1.2rem;
    font-family: var(--font-default);
    font-weight: bold;
    color: var(--gray-dark);
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-bottom: 6px solid transparent;
    transition: all var(--anim-duration-fast) var(--anim-ease);
  }
  .header-nav .main-nav a.active {
    border-bottom-color: var(--gray-extra-light);
  }
  .header-nav .main-nav a:hover {
    border-bottom-color: var(--brand-green);
  }

  .section h1,
  .section .h1,
  .section h2,
  .section .h2,
  .section h3,
  .section .h3,
  .section h4,
  .section .h4,
  .section h5,
  .section .h5,
  .section h6,
  .section .h6 {
    color: white;
  }
  .section.bg-white h1,
  .section.bg-white .h1,
  .section.bg-white h2,
  .section.bg-white .h2,
  .section.bg-white h3,
  .section.bg-white .h3,
  .section.bg-white h4,
  .section.bg-white .h4,
  .section.bg-white h5,
  .section.bg-white .h5,
  .section.bg-white h6,
  .section.bg-white .h6 {
    color: inherit;
  }

  body,
  html {
    -ms-overflow-style: none !important;
  } /* Needed for WinPhone to allow vertical scrolling in nav */
  .nav-mobile {
    display: none;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    bottom: 0;
    transition: 0.15s ease;
    right: -13.755rem;
    width: 13.755rem;
    height: auto;
    padding: 1em;
    border-left: 1px solid rgba(0, 0, 0, 0.3);
    background-color: rgba(200, 200, 200, 0.2);
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25) inset;
  }
  .nav-mobile.active {
    display: block;
    right: 0;
  }
  .nav-mobile {
    overflow-y: scroll;
    position: fixed;
    top: 0;
    bottom: 0;
    transition: 0.15s ease;
    right: -14rem;
    width: 14rem;
    height: auto;
    padding: 1em;
    border-left: 1px solid rgba(0, 0, 0, 0.2);
    background-color: var(--gray-dark);
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25) inset;
  }
  .nav-mobile .nav-home,
  .nav-mobile .nav-search-wrapper {
    display: none;
  }
  .nav-mobile a,
  .nav-mobile ul li a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: white;
  }
  .nav-mobile ul {
    font-size: 1.1rem;
  }
  .nav-mobile ul ul {
    font-size: 1rem;
    padding: 0;
    margin: 0;
  }
  .nav-mobile .depth_2 {
    margin-left: 0.75rem;
  }
  .nav-mobile .depth_3 {
    margin-left: 0.75rem;
  }
  .nav-mobile.active {
    right: 0;
  }
  .nav-mobile .active > a {
    font-weight: bold;
  }
  .nav-mobile ul ul li.active > a {
    border-bottom: 0;
  }
  .nav-mobile ul + ul {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-light);
  }

  .page-content {
  }
  .wrapper {
    transition: right var(--anim-duration-fast) var(--anim-ease);
  }
  .wrapper.active {
    right: 14rem;
  }

  /* Mobile Utility Nav
  ----------------------------------------------------*/
  .nav-mobile-util {
    overflow: hidden;
    position: relative;
    z-index: 999;
    width: 100vw;
    margin: 0;
    padding: 0;
    color: var(--brand-green);
    border-bottom: 4px solid var(--brand-green);
    background: white;
  }
  .nav-mobile-util.fixed {
    position: fixed;
    margin: 0;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
  }
  .btn-nav-mobile {
    display: block;
    width: 2.6rem;
    height: 2.6rem;
    padding: 0.3rem;
    text-decoration: none;
  }
  .nav-menu {
    display: block;
    text-decoration: none;
  }
  .ni {
    transition-duration: 0.5s;
    transition-delay: 0.2s;
  }
  line.ni {
    stroke: var(--brand-green);
    transform: rotate(0deg);
  }
  g.ni {
    fill: var(--brand-green);
  }
  .ni3 {
    position: relative;
    top: -0.8rem;
  }
  .toggled .ni1 {
    transform: translate(5px, 2px) rotate(45deg);
  }
  .toggled .ni2 {
    transform: translate(-3px, 11.4px) rotate(-45deg);
  }
  .toggled .ni3 {
    opacity: 0;
    transform: translate(0, 6px);
  }
  .nav-mobile-util ul {
    display: flex;
    align-items: end;
    margin: 0;
    padding: 1rem 0;
    opacity: 1;
    visibility: visible;
  }
  .nav-mobile-util li {
    flex: 1 1 auto;
    margin: 0;
    height: 100%;
    text-align: center;
    font-size: 0.75rem;
  }
  .nav-mobile-util button {
    margin: 0 auto;
    border: none;
    background: transparent;
  }
  .nav-mobile-util .btn-search,
  .nav-mobile-util a {
    display: block;
    height: 2.5rem;
    padding: 0;
    line-height: 1.8em;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--brand-green);
  }
  .nav-mobile-util svg {
    display: block;
    margin: 0 auto;
    fill: var(--brand-green);
  }
  .nav-mobile-util .icon {
    width: 1.2rem;
    height: 1.2rem;
  }
  .nav-mobile-util .nav-menu svg {
    width: 2rem;
    height: 2rem;
  }
  .nav-mobile-util.active ul,
  .nav-mobile-util.is-opening-search ul {
    opacity: 0;
    visibility: hidden;
  }
  .nav-mobile-util.active .nav-search-wrapper,
  .wrapper.active .nav-mobile-util.fixed {
    left: auto;
    right: 14rem;
  }

  /* Buttons
  ----------------------------------------------------*/
  .btn {
    display: inline-block;
    padding: 0.6em 1.5em;
    margin: 0 0.25em 0.25em 0;
    font-size: 1rem;
    border: 3px solid white;
    border-radius: 2em;
    line-height: 1.2;
    text-decoration: none;
    align-self: flex-start;
    color: white;
    background-color: var(--brand-green);
    transition: all var(--anim-duration-fast) var(--anim-ease);
  }
  .btn svg {
    fill: currentColor;
    vertical-align: text-top;
    transition: transform 0.25s ease-in-out;
  }
  .btn:hover {
    background-color: var(--brand-green-dark);
    color: white;
    transform: scale(1.02);
  }
  .btn:visited {
    color: var(--brand-green-light);
  }
  .btn:focus {
    border-color: var(--link-color);
    outline: none;
  }
  .btn:active {
    color: var(--brand-green-light);
    background-color: var(--brand-green-dark);
  }
  .btn-sm {
    font-size: 0.8rem !important;
    padding: 0.4em 1em;
  }
  .btn-lg {
    font-size: 1.25rem !important;
  }

  .btn-cta {
    font-size: 1.1rem;
    color: #fff;
    min-width: 200px;
    text-align: center;
    background-color: var(--brand-green);
  }
  .btn-cta:hover {
    background-color: var(--brand-green-dark);
    color: white;
  }
  .btn-cta:visited {
    color: white;
  }
  .btn-cta:active {
    background-color: var(--brand-green-dark);
  }
  .btn-cta.btn-light {
    background-color: #fff;
    color: var(--brand-green);
  }
  .btn-cta.btn-light:hover {
    background-color: #fff;
    color: var(--brand-green-dark);
  }
  .btn-cta.btn-light:active {
    background-color: var(--gray-extra-light);
  }

  .btn-more {
    padding-right: 1.2em;
  }
  .btn-more::after {
    content: "\2060";
    display: inline;
    padding: 0.5625em 0.5em;
    margin-left: 0.15em;
    vertical-align: text-bottom;
    background: url("/stylesheets/themes/ndt/v3/images/chevron-gold.svg") 50%
      50% / 0.45em no-repeat;
    transform: translateX(0);
    transition: all var(--anim-duration-fast) var(--anim-ease);
  }
  .btn-more:hover::after {
    transform: translateX(0.25em);
  }

  .btn-action {
    width: 4rem;
    height: 4rem;
    color: #fff;
    line-height: 1;
    text-indent: 4rem;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    border-radius: 100%;
    background-color: var(--brand-blue);
    padding: 0.5em;
  }
  .btn-action svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    transform: translate(-50%, -50%);
    width: 2em;
    height: 2em;
  }
  .btn-action:hover {
    transform: scale(1.1);
    background-color: var(--brand-blue-light);
    color: #fff;
  }
  .btn-action:visited {
    color: #fff;
  }

  .btn-action.btn-sm {
    width: 2rem;
    height: 2rem;
    text-indent: 2rem;
  }
  .btn-action.btn-sm svg {
    width: 1rem;
    height: 1rem;
  }

  .btn-inline {
    background-color: transparent;
  }
  .btn-inline.btn-light {
    color: #fff;
    background-color: transparent;
  }
  .btn-inline.btn-light:hover {
    background-color: var(--brand-green-light);
  }
  .btn-inline.btn-light:active {
    color: var(--gray-extra-extra-light);
    background-color: var(--brand-blue-light);
  }

  .btn-group {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
  }

  .section a {
    color: var(--link-color);
  }
  .section.bg-white a {
    color: var(--brand-green);
  }

  .gallery-item {
    position: relative;
    border: 3px solid transparent;
    transition: all var(--anim-duration-fast) var(--anim-ease);
    display: block;
  }
  .gallery-item:hover {
    border: 3px solid var(--link-color);
  }
  .gallery-item::before {
    content: "";
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 2rem;
    height: 2rem;
    border-radius: 1rem;
    background: rgba(50, 50, 50, 0.6) url("../img/icon-search-w.svg") center
      center / 1rem auto no-repeat;
    transition: all var(--anim-duration-fast) var(--anim-ease);
  }
}

/*************************************************************************************
 * 3. Media Queries
 ************************************************************************************/

/* 480px
----------------------------------------------------*/
@media only screen and (min-width: 30em) {
}

/* 768px
----------------------------------------------------*/
@media only screen and (min-width: 48em) {
  body {
    background-attachment: fixed;
  }
  .site-logo a {
    max-width: unset;
    margin: 0;
  }
  #page-content {
    padding: 3rem 0;
  }
  .site-footer .footer-branding .footer-logo a {
    width: 300px;
  }
}

/* 960px
----------------------------------------------------*/
@media only screen and (min-width: 60em) {
  .nav-mobile-util {
    display: none;
  }

  .gallery-item::before {
    opacity: 0;
    transform: scale(0.7);
    width: 3rem;
    height: 3rem;
    background-size: 1.5rem auto;
    border-radius: 1.5rem;
  }
  .gallery-item:hover::before {
    opacity: 1;
    transform: scale(1);
  }
}

/* 1024px
----------------------------------------------------*/
@media only screen and (min-width: 64em) {
}

/* 1280px
----------------------------------------------------*/
@media only screen and (min-width: 80em) {
}

/* 1600px
----------------------------------------------------*/
@media only screen and (min-width: 100em) {
  .header-nav .main-nav a {
    font-size: 1.5rem;
    padding: 0.8rem 1.8rem;
  }
}

/* 1920px
----------------------------------------------------*/
@media only screen and (min-width: 120em) {
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (min-device-pixel-ratio: 1.5),
  only screen and (-webkit-min-device-pixel-ratio: 144),
  only screen and (min-resolution: 144dpi),
  only screen and (min-resolution: 1.5dppx) {
  @media only screen and (min-width: 48em) {
  }
}

/*************************************************************************************
 * Page Layout
 ************************************************************************************/
.wrapper {
  display: flex;
  flex-flow: column nowrap;
  margin: 0 auto;
  min-height: 100%;
  position: relative;
  right: 0;
  overflow: hidden;
}

.section {
  background: transparent;
  color: white;
  margin-top: 2rem;
  margin-bottom: 2rem;
  align-content: flex-start;
}
.section.bg-white {
  background: white;
  color: var(--gray-dark);
}
.section .section-content {
  padding: 1.5rem;
}
.section .section-image {
  padding: 0;
}

.footer-contact {
  padding: 0 1.5rem;
  margin-bottom: 2rem;
}
.footer-contact address {
  margin-bottom: 1rem;
}

/* 768px
----------------------------------------------------*/
@media only screen and (min-width: 48em) {
  .wrapper {
    display: grid;
    grid-template-rows:
      [header-start] auto [header-end main-start] minmax(auto, 1fr)
      [main-end footer-start] auto [footer-end];
    grid-template-columns:
      [screen-start] var(--gutter-width)
      [container-start main-start] 1fr [main-end container-end] var(
        --gutter-width
      )
      [screen-end];
    --gutter-width: 5vw;
    --gutter-offset: calc(var(--gutter-width) * -1);
  }
  .site-header {
    grid-row: header;
    grid-column: 1 / span 3;
    padding: 0;
    display: grid;
    grid-template-columns:
      [screen-start] var(--gutter-width)
      [container-start title-start] 1fr [title-end nav-start] 2fr [nav-end container-end] var(
        --gutter-width
      )
      [screen-end];
    grid-template-rows: [header-start] auto [header-end];
  }
  .header-logo {
    grid-column: title;
  }
  .header-nav {
    grid-row: header;
    grid-column: nav;
    justify-self: right;
    align-self: flex-end;
    padding-bottom: 3rem;
  }
  .header-nav .main-nav {
    display: flex;
  }
  #page-content {
    grid-row: main;
    grid-column: 2;
  }
  .site-footer {
    display: grid;
    grid-row: footer;
    grid-column: 1 / span 3;
    grid-template-rows: [footer-start] auto [footer-end];
    grid-template-columns:
      [screen-start] var(--gutter-width)
      [container-start footer-contact-start] 1fr [footer-contact-end footer-brand-start] 300px [footer-brand-end container-end] var(
        --gutter-width
      )
      [screen-end];
  }
  .footer-contact {
    grid-column: footer-contact;
    display: flex;
    flex-flow: row wrap;
  }
  .footer-contact address {
    width: 50%;
  }
  .footer-branding {
    grid-column: footer-brand;
    grid-row: footer;
    justify-self: right;
  }
}

/* 960px
----------------------------------------------------*/
@media only screen and (min-width: 60em) {
  .section {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}

/* IE10/11
  --brand-green:#0c2340;
  --link-blue:#0c2340;
  --brand-gold:#ae9142;
  --font-default:"Helvetica Neue", Helvetica, Arial, Verdana, sans-serif;
  --font-heading:GPC, "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif;
----------------------------------------------------*/

@media screen and (-ms-high-contrast: active),
  screen and (-ms-high-contrast: none) {
}

/*************************************************************************************
 * 4. Grid
 ************************************************************************************/
.row {
  width: 100%;
  flex-flow: row;
}
.row-container {
  flex-flow: row;
  padding-left: 0;
  padding-right: 0;
  max-width: 90vw;
  margin: 0 auto;
}
.grid {
  display: flex;
  flex-flow: row wrap;
  list-style: none;
  padding: 0;
  clear: both;
}
.grid-xs-2 > * {
  width: 50%;
}
.grid-xs-3 > * {
  width: 33.33%;
}
.grid-xs-4 > * {
  width: 25%;
}
.grid-xs-5 > * {
  width: 20%;
}
.grid-xs-6 > * {
  width: 16.66%;
}
.order-xs--1 {
  order: -1;
}
.order-xs-0 {
  order: 0;
}
.order-xs-1 {
  order: 1;
}
.order-xs-2 {
  order: 2;
}
.order-xs-3 {
  order: 3;
}
.order-xs-4 {
  order: 4;
}
.order-xs-5 {
  order: 5;
}

@media only screen and (min-width: 30em), print {
  .grid-sm-2 > * {
    width: 50%;
  }
  .grid-sm-3 > * {
    width: 33.33%;
  }
  .grid-sm-4 > * {
    width: 25%;
  }
  .grid-sm-5 > * {
    width: 20%;
  }
  .grid-sm-6 > * {
    width: 16.66%;
  }
  .grid-sm-6 > .span-sm-2 {
    width: 33.3%;
  }
  .grid-sm-5 > .span-sm-2 {
    width: 40%;
  }
  .grid-sm-4 > .span-sm-2,
  .grid-sm-6 > .span-sm-3 {
    width: 50%;
  }
  .grid-sm-5 > .span-sm-3 {
    width: 60%;
  }
  .grid-sm-3 > .span-sm-2,
  .grid-sm-6 > .span-sm-4 {
    width: 66.7%;
  }
  .grid-sm-4 > .span-sm-3 {
    width: 75%;
  }
  .grid-sm-5 > .span-sm-4 {
    width: 80%;
  }
  .grid-sm-6 > .span-sm-5 {
    width: 83.4%;
  }
  .order-sm--1 {
    order: -1;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
}

@media only screen and (min-width: 48em), print {
  .grid-md-2 > * {
    width: 50%;
  }
  .grid-md-3 > * {
    width: 33.33%;
  }
  .grid-md-4 > * {
    width: 25%;
  }
  .grid-md-5 > * {
    width: 20%;
  }
  .grid-md-6 > * {
    width: 16.66%;
  }
  .grid-md-6 > .span-md-2 {
    width: 33.3%;
  }
  .grid-md-5 > .span-md-2 {
    width: 40%;
  }
  .grid-md-4 > .span-md-2,
  .grid-md-6 > .span-md-3 {
    width: 50%;
  }
  .grid-md-5 > .span-md-3 {
    width: 60%;
  }
  .grid-md-3 > .span-md-2,
  .grid-md-6 > .span-md-4 {
    width: 66.7%;
  }
  .grid-md-4 > .span-md-3 {
    width: 75%;
  }
  .grid-md-5 > .span-md-4 {
    width: 80%;
  }
  .grid-md-6 > .span-md-5 {
    width: 83.4%;
  }
  .order-md--1 {
    order: -1;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
}

@media only screen and (min-width: 60em) {
  .grid-lg-2 > * {
    width: 50%;
  }
  .grid-lg-3 > * {
    width: 33.33%;
  }
  .grid-lg-4 > * {
    width: 25%;
  }
  .grid-lg-5 > * {
    width: 20%;
  }
  .grid-lg-6 > * {
    width: 16.66%;
  }
  .grid-lg-6 > .span-lg-2 {
    width: 33.3%;
  }
  .grid-lg-5 > .span-lg-2 {
    width: 40%;
  }
  .grid-lg-4 > .span-lg-2,
  .grid-lg-6 > .span-lg-3 {
    width: 50%;
  }
  .grid-lg-5 > .span-lg-3 {
    width: 60%;
  }
  .grid-lg-3 > .span-lg-2,
  .grid-lg-6 > .span-lg-4 {
    width: 66.7%;
  }
  .grid-lg-4 > .span-lg-3 {
    width: 75%;
  }
  .grid-lg-5 > .span-lg-4 {
    width: 80%;
  }
  .grid-lg-6 > .span-lg-5 {
    width: 83.4%;
  }
  .order-lg--1 {
    order: -1;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
}

@media only screen and (min-width: 100em) {
  .grid-xl-2 > * {
    width: 50%;
  }
  .grid-xl-3 > * {
    width: 33.33%;
  }
  .grid-xl-4 > * {
    width: 25%;
  }
  .grid-xl-5 > * {
    width: 20%;
  }
  .grid-xl-6 > * {
    width: 16.66%;
  }
  .grid-xl-6 > .span-xl-2 {
    width: 33.3%;
  }
  .grid-xl-5 > .span-xl-2 {
    width: 40%;
  }
  .grid-xl-4 > .span-xl-2,
  .grid-xl-6 > .span-xl-3 {
    width: 50%;
  }
  .grid-xl-5 > .span-xl-3 {
    width: 60%;
  }
  .grid-xl-3 > .span-xl-2,
  .grid-xl-6 > .span-xl-4 {
    width: 66.7%;
  }
  .grid-xl-4 > .span-xl-3 {
    width: 75%;
  }
  .grid-xl-5 > .span-xl-4 {
    width: 80%;
  }
  .grid-xl-6 > .span-xl-5 {
    width: 83.4%;
  }
  .order-xl--1 {
    order: -1;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
}

@supports (display: grid) {
  .grid {
    display: grid;
    grid-gap: var(--grid-gap);
  }
  .grid > * {
    width: auto;
  }
  .grid.no-gap {
    grid-gap: 0;
  }
  .grid-xs-2 {
    grid-template-columns: repeat(2, minmax(0, 50%));
  }
  .grid-xs-3 {
    grid-template-columns: repeat(3, minmax(0, 33.3%));
  }
  .grid-xs-4 {
    grid-template-columns: repeat(4, minmax(0, 25%));
  }
  .grid-xs-5 {
    grid-template-columns: repeat(5, minmax(0, 20%));
  }
  .grid-xs-6 {
    grid-template-columns: repeat(6, minmax(0, 16.6%));
  }
  [class*="grid-xs-"] > [class*="span-xs"] {
    width: auto;
  }
  .span-xs-1 {
    grid-column: span 1;
  }
  .span-xs-2 {
    grid-column: span 2;
  }
  .span-xs-3 {
    grid-column: span 3;
  }
  .span-xs-4 {
    grid-column: span 4;
  }
  .span-xs-5 {
    grid-column: span 5;
  }
  .span-xs-6 {
    grid-column: span 6;
  }
  .span-full,
  .full {
    grid-column: 1/-1;
  }

  /* 480px
  ----------------------------------------------------*/
  @media only screen and (min-width: 30em), print {
    .grid-sm-1 {
      grid-template-columns: 100%;
    }
    .grid-sm-2 {
      grid-template-columns: repeat(2, minmax(0, 50%));
    }
    .grid-sm-3 {
      grid-template-columns: repeat(3, minmax(0, 33.3%));
    }
    .grid-sm-4 {
      grid-template-columns: repeat(4, minmax(0, 25%));
    }
    .grid-sm-5 {
      grid-template-columns: repeat(5, minmax(0, 20%));
    }
    .grid-sm-6 {
      grid-template-columns: repeat(6, minmax(0, 16.6%));
    }
    [class*="grid-sm-"] > [class*="span-sm"] {
      width: auto;
    }
    .span-sm-1 {
      grid-column: span 1;
    }
    .span-sm-2 {
      grid-column: span 2;
    }
    .span-sm-3 {
      grid-column: span 3;
    }
    .span-sm-4 {
      grid-column: span 4;
    }
    .span-sm-5 {
      grid-column: span 5;
    }
    .span-sm-6 {
      grid-column: span 6;
    }
  }
  /* 768px
  ----------------------------------------------------*/
  @media only screen and (min-width: 48em), print {
    .grid-md-1 {
      grid-template-columns: 100%;
    }
    .grid-md-2 {
      grid-template-columns: repeat(2, minmax(0, 50%));
    }
    .grid-md-3 {
      grid-template-columns: repeat(3, minmax(0, 33.3%));
    }
    .grid-md-4 {
      grid-template-columns: repeat(4, minmax(0, 25%));
    }
    .grid-md-5 {
      grid-template-columns: repeat(5, minmax(0, 20%));
    }
    .grid-md-6 {
      grid-template-columns: repeat(6, minmax(0, 16.6%));
    }
    [class*="grid-md-"] > [class*="span-md"] {
      width: auto;
    }
    .span-md-1 {
      grid-column: span 1;
    }
    .span-md-2 {
      grid-column: span 2;
    }
    .span-md-3 {
      grid-column: span 3;
    }
    .span-md-4 {
      grid-column: span 4;
    }
    .span-md-5 {
      grid-column: span 5;
    }
    .span-md-6 {
      grid-column: span 6;
    }
  }

  /* 960px
  ----------------------------------------------------*/
  @media only screen and (min-width: 60em) {
    .grid-lg-1 {
      grid-template-columns: 100%;
    }
    .grid-lg-2 {
      grid-template-columns: repeat(2, minmax(0, 50%));
    }
    .grid-lg-3 {
      grid-template-columns: repeat(3, minmax(0, 33.3%));
    }
    .grid-lg-4 {
      grid-template-columns: repeat(4, minmax(0, 25%));
    }
    .grid-lg-5 {
      grid-template-columns: repeat(5, minmax(0, 20%));
    }
    .grid-lg-6 {
      grid-template-columns: repeat(6, minmax(0, 16.6%));
    }
    [class*="grid-lg-"] > [class*="span-lg"] {
      width: auto;
    }
    .span-lg-1 {
      grid-column: span 1;
    }
    .span-lg-2 {
      grid-column: span 2;
    }
    .span-lg-3 {
      grid-column: span 3;
    }
    .span-lg-4 {
      grid-column: span 4;
    }
    .span-lg-5 {
      grid-column: span 5;
    }
    .span-lg-6 {
      grid-column: span 6;
    }
  }

  /* 1600px
  ----------------------------------------------------*/
  @media only screen and (min-width: 100em) {
    .grid-xl-1 {
      grid-template-columns: 100%;
    }
    .grid-xl-2 {
      grid-template-columns: repeat(2, minmax(0, 50%));
    }
    .grid-xl-3 {
      grid-template-columns: repeat(3, minmax(0, 33.3%));
    }
    .grid-xl-4 {
      grid-template-columns: repeat(4, minmax(0, 25%));
    }
    .grid-xl-5 {
      grid-template-columns: repeat(5, minmax(0, 20%));
    }
    .grid-xl-6 {
      grid-template-columns: repeat(6, minmax(0, 16.6%));
    }
    [class*="grid-xl-"] > [class*="span-xl"] {
      width: auto;
    }
    .span-xl-1 {
      grid-column: span 1;
    }
    .span-xl-2 {
      grid-column: span 2;
    }
    .span-xl-3 {
      grid-column: span 3;
    }
    .span-xl-4 {
      grid-column: span 4;
    }
    .span-xl-5 {
      grid-column: span 5;
    }
    .span-xl-6 {
      grid-column: span 6;
    }
  }
}

/* 1920px
----------------------------------------------------*/
@media only screen and (min-width: 120em) {
  .row-container {
    max-width: 108rem;
  }
}

/* Print
----------------------------------------------------*/
@media print {
  .grid-print-1 {
    grid-template-columns: 100%;
  }
  .grid-print-2 {
    grid-template-columns: repeat(2, minmax(0, 50%));
  }
  .grid-print-3 {
    grid-template-columns: repeat(3, minmax(0, 33.3%));
  }
  .grid-print-4 {
    grid-template-columns: repeat(4, minmax(0, 25%));
  }
  .grid-print-5 {
    grid-template-columns: repeat(5, minmax(0, 20%));
  }
  .grid-print-6 {
    grid-template-columns: repeat(6, minmax(0, 16.6%));
  }
}

/*************************************************************************************
 * 8. Print Styles
 ************************************************************************************/
@media print {
  @page {
    margin: 1.5cm 2cm;
  }
}

/* Plugins
----------------------------------------------------*/
/*!
 * simpleLightbox
 * https://github.com/dbrekalo/simpleLightbox
 * Copyright (c) 2018 Damir Brekalo
 */
.slbOverlay,
.slbWrapOuter,
.slbWrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.slbOverlay {
  overflow: hidden;
  z-index: 2000;
  background-color: #000;
  opacity: 0.85;
  -webkit-animation: slbOverlay 0.5s;
  animation: slbOverlay 0.5s;
}

.slbWrapOuter {
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 2010;
}

.slbWrap {
  position: absolute;
  text-align: center;
}

.slbWrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.slbContentOuter {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0px auto;
  padding: 0 10%;
  box-sizing: border-box;
  z-index: 2020;
  text-align: left;
  max-width: 100%;
}

.slbContentEl .slbContentOuter {
  padding: 5em 1em;
}

.slbContent {
  position: relative;
}

.slbContentEl .slbContent {
  -webkit-animation: slbEnter 0.3s;
  animation: slbEnter 0.3s;
  background-color: #fff;
  box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.4);
}

.slbImageWrap {
  -webkit-animation: slbEnter 0.3s;
  animation: slbEnter 0.3s;
  position: relative;
}

.slbImageWrap:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 5em;
  bottom: 5em;
  display: block;
  z-index: -1;
  box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.6);
  background-color: #fff;
}

.slbDirectionNext .slbImageWrap {
  -webkit-animation: slbEnterNext 0.4s;
  animation: slbEnterNext 0.4s;
}

.slbDirectionPrev .slbImageWrap {
  -webkit-animation: slbEnterPrev 0.4s;
  animation: slbEnterPrev 0.4s;
}

.slbImage {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 5em 0;
  margin: 0 auto;
}

.slbCaption {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  font-size: 1.4em;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.71429em 0;
  color: #fff;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.slbCloseBtn,
.slbArrow {
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none;
}

.slbCloseBtn::-moz-focus-inner,
.slbArrow::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.slbCloseBtn:hover,
.slbArrow:hover {
  opacity: 0.5;
}

.slbCloseBtn:active,
.slbArrow:active {
  opacity: 0.8;
}

.slbCloseBtn {
  -webkit-animation: slbEnter 0.3s;
  animation: slbEnter 0.3s;
  font-size: 3em;
  width: 1.66667em;
  height: 1.66667em;
  line-height: 1.66667em;
  position: absolute;
  right: calc(10% - 0.5em);
  top: 0;
  color: white;
  text-align: center;
}

.slbLoading .slbCloseBtn {
  display: none;
}

.slbLoadingText {
  font-size: 1.4em;
  color: #fff;
  color: rgba(255, 255, 255, 0.9);
}

.slbArrows {
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
}

.slbLoading .slbArrows {
  display: none;
}

.slbArrow {
  position: absolute;
  top: 50%;
  margin-top: -5em;
  width: 5em;
  height: 10em;
  opacity: 0.7;
  text-indent: -999em;
  overflow: hidden;
}

.slbArrow:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -0.8em 0 0 -0.8em;
  border: 0.8em solid transparent;
}

.slbArrow.next {
  right: 0;
}

.slbArrow.next:before {
  border-left-color: #fff;
}

.slbArrow.prev {
  left: 0;
}

.slbArrow.prev:before {
  border-right-color: #fff;
}

.slbIframeCont {
  width: 80em;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
  margin: 5em 0;
}

.slbIframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.6);
  background: #000;
}

@-webkit-keyframes slbOverlay {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.85;
  }
}

@keyframes slbOverlay {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.85;
  }
}

@-webkit-keyframes slbEnter {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -1em, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
  }
}

@keyframes slbEnter {
  from {
    opacity: 0;
    transform: translate3d(0, -1em, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slbEnterNext {
  from {
    opacity: 0;
    -webkit-transform: translate3d(4em, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
  }
}

@keyframes slbEnterNext {
  from {
    opacity: 0;
    transform: translate3d(4em, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slbEnterPrev {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-4em, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
  }
}

@keyframes slbEnterPrev {
  from {
    opacity: 0;
    transform: translate3d(-4em, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Overrides */
.slbOverlay {
  background-color: rgba(0, 0, 0, 0.7);
}

.slbContent .card-label {
  margin: 0;
}

.slbContent .card-title {
  font-size: 2.2em;
  margin-bottom: 0.1em;
}

.slbContent .card-body .position-title {
  margin-bottom: 1em;
}
