/* =============================================
   RESETS
================================================ */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

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

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

[hidden],
template {
  display: none;
}

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

td,
th {
  padding: 0;
}

/* =============================================
   COLOURS / MIXINS / EXTENDS
================================================ */
.bg-clr {
  background: #fff;
}

.theme-clr {
  color: #0061a5;
}

.red {
  color: red;
}

.clearfix::before,
.clearfix::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-order: 1;
  order: 1;
}

.clearfix::after {
  clear: both;
}

.is-visible {
  display: block !important;
}

.is-hidden {
  display: none !important;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

/* =============================================
   TOP LEVEL
================================================ */
html {
  font-size: 100%;
  box-sizing: border-box;
  font-family: inherit;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden !important;
  line-height: 1.8;
  padding: 0;
  margin: 0;
  font-family: "objektiv-mk3", sans-serif;
  font-weight: 400;
  font-size: 13.5px;
  color: #555;
  height: 100%;
  background: #fff;
  opacity: 1;
  position: relative; /* Required for static Slidebars to function properly. */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =============================================
   TAG / ELEMENTS
================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "objektiv-mk3", sans-serif;
  font-weight: 700;
  color: #0061a5;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
  margin-top: 0;
  margin-bottom: 0.5rem;
  clear: both;
  line-height: 1.2;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

h1 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.3rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.9rem;
}

h6 {
  font-size: 0.8rem;
  padding-top: 0.5rem;
}

.sansSerif {
  font-family: "objektiv-mk3", sans-serif;
}

@media (max-width: 640px) {
  h1,
  h2,
  h3 {
    font-size: 180% !important;
  }
}
p {
  font-size: inherit;
  margin-bottom: 0.6rem;
  text-align: justify;
  text-rendering: optimizeLegibility;
}

b,
strong {
  font-weight: bold;
}

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* =============================================
   LINKS
================================================ */
a {
  cursor: default;
  cursor: pointer;
  text-decoration: none;
  background-color: transparent;
  color: #555;
}

a:active,
a:hover {
  outline: 0;
}

a:visited {
  color: inherit;
}

a:focus {
  outline: none;
}

a:link {
  color: #0061a5;
  text-decoration: none;
  line-height: inherit;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  cursor: pointer;
  opacity: 0.9;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a div {
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover div {
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a div:hover {
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.float, footer img {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.float-hover:hover, footer img:hover,
.float-hover:focus,
.float-hover:active {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.grow {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.grow-hover:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.slideRight {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.slideRight:hover {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}

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

a img {
  border: none;
}

a:link img {
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover img {
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

img.stretchy,
img.lazyload {
  width: 100%;
}

.stretchy img,
.lazyload img {
  width: 100%;
}

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

/* =============================================
   HEADER
================================================ */
header {
  position: fixed;
  mix-blend-mode: hard-light;
  width: 100%;
  top: 0;
  height: 120px;
  background: rgba(20, 100, 220, 0.9);
  z-index: 1000000000000000000;
}

header::before {
  content: "";
  background-image: url("../img/texture-blue.jpg");
  background-size: 200%;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.2;
}

#index header {
  background: #fff;
  width: 100%;
  mix-blend-mode: normal;
  z-index: 1000000000000000000;
}

#index header::before {
  background-image: none;
}

@media (max-width: 640px) {
  header {
    height: 50px;
  }
}
/* =============================================
   HEADER AUTO HIDE ON SCROLL
================================================ */
.headroom {
  will-change: transform;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header--hidden {
  -webkit-transform: translateY(-130px);
  -ms-transform: translateY(-130px);
  transform: translateY(-130px);
}

.headroom.headroom--not-bottom.headroom--not-top.headroom--unpinned,
.headroom.headroom--not-bottom.headroom--not-top.headroom--pinned,
.headroom.headroom--not-top.headroom--not-bottom,
.headroom.headroom--not-top.headroom--bottom,
.headroom.headroom--not-bottom.headroom--not-top.headroom--pinned {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  top: -130px;
}

@media (max-width: 640px) {
  #logo-mobile.moveUp.headroom.headroom--not-top.headroom--bottom.headroom--pinned,
  #logo-mobile.moveUp.headroom.headroom--not-top.headroom--not-bottom.headroom--unpinned,
  #logo-mobile.moveUp.headroom.headroom--not-top.headroom--not-bottom.headroom--pinned {
    height: 50px;
    display: block;
    background: url("../img/logo-dalmi-wh.svg") no-repeat left 0px bottom 8px;
    background-size: 70px;
    top: 0px;
  }
  .headroom--not-top.headroom.headroom--not-bottom.headroom--pinned #hamburger {
    padding: 2.5rem 4rem;
    top: -5px;
  }
}
#index header.dontMove {
  mix-blend-mode: normal;
  background: #0061a5;
}

.headroom.dontMove {
  mix-blend-mode: normal;
  background: #0061a5;
}

header.dontMove::before {
  background-image: none;
}

#index #header.dontMove #hamburger.open span {
  background: #fff !important;
}

/* =============================================
   LOGO MOBILE
================================================ */
#logo-mobile.moveUp {
  width: 250px;
  height: 120px;
  display: block;
  background: url("../img/logo-dalmi-wh.svg") no-repeat center left;
  background-size: 240px;
  margin-left: 5%;
  z-index: 999999999999;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

#logo-mobile.moveUp > a div {
  width: 100%;
  height: 120px;
  cursor: pointer;
  max-width: 200px;
}

#index #logo-mobile.moveUp {
  width: 250px;
  height: 120px;
  display: block;
  background: url("../img/logo-dalmi.svg") no-repeat center left;
  background-size: 240px;
  margin-left: 5%;
}

#logo-mobile.moveUp:hover {
  opacity: 1;
}

#index #header.dontMove #logo-mobile.moveUp {
  width: 250px;
  height: 120px;
  display: block;
  background: url("../img/logo-dalmi-wh.svg") no-repeat center left;
  background-size: 240px;
  margin-left: 5%;
}

@media (max-width: 640px) {
  #logo-mobile.moveUp {
    height: 50px;
    display: block;
    background: url("../img/logo-dalmi-wh.svg") no-repeat center left;
    background-size: 130px;
    left: 20px;
  }
  #index #logo-mobile.moveUp {
    height: 50px;
    display: block;
    background: url("../img/logo-dalmi.svg") no-repeat center left;
    background-size: 130px;
    left: 20px;
  }
  #index #header.dontMove #logo-mobile.moveUp {
    height: 50px;
    display: block;
    background: url("../img/logo-dalmi-wh.svg") no-repeat center left;
    background-size: 130px;
    left: 20px;
  }
  #logo-mobile.moveUp > a div {
    width: 100%;
    height: 50px;
    max-width: 150px;
  }
}
/* =============================================
   BANNER IMAGES
================================================ */
.reveal-container {
  position: relative;
  overflow: hidden !important;
  width: 100%;
}

.reveal-container img {
  min-width: 900px;
}

.reveal {
  margin-bottom: -3.5%;
  opacity: 1;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  -ms-transition: all 1.5s ease;
  transition: all 1.5s ease;
}

.reveal.revealer--show {
  visibility: visible;
  opacity: 1;
}

.reveal.revealer--unpinned {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-5%);
  -ms-transform: translateY(-5%);
  transform: translateY(-5%);
}

@media (max-width: 640px) {
  .reveal {
    margin-bottom: -5%;
  }
  .reveal-container img {
    min-width: 100%;
  }
}
/* =============================================
   FOOTER
================================================ */
footer {
  position: relative;
  bottom: 0;
  clear: both;
  color: #555;
  background: #e5e5e5;
  width: 100%;
  border-top: 0.5rem #fff solid;
  margin: 0 auto;
  padding: 3rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  font-family: inherit;
  line-height: 1.8;
  z-index: 1;
}

#index footer {
  border-top: 15px #fff solid;
}

@media (max-width: 640px) {
  #index footer {
    border-top: 0;
  }
}
footer a:hover,
footer a#selected {
  color: #000;
  opacity: 1 !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

footer #nav ul {
  list-style: none;
  font-size: 0.65rem;
}

footer #nav a:link,
footer #nav a:visited {
  color: #555;
  padding: 2px 0;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

footer #nav a:hover {
  color: #0061a5;
}

footer #nav a#selected {
  color: #0061a5;
  font-weight: 700;
}

footer #nav .menu a {
  color: #0061a5;
  font-weight: 700;
}

footer #nav .menu a:hover,
footer #nav .menu a#selected {
  color: #000;
  opacity: 1 !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

footer #nav .cell:nth-child(n+2) li:first-child a {
  color: #0061a5;
  font-weight: 700;
}

@media (max-width: 500px) {
  footer #nav .cell {
    min-width: 300px;
  }
  footer #nav ul:not(.menu) {
    margin-top: 1rem;
  }
}
footer img {
  padding: 0.5rem 0 0.5rem;
}

footer img:hover {
  padding: 0.5rem 0 0.5rem;
}

footer #offices {
  border-top: 1px #ccc solid;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

footer h6 {
  padding: 0 0 0 0;
  margin-bottom: 0.3rem;
  font-size: 0.65rem;
}

footer #offices h6 {
  padding: 1.5rem 0 0 0;
}

footer .addresses {
  width: auto;
}

footer #privacy {
  text-align: right;
  font-size: 9px !important;
  letter-spacing: 1px;
}

footer #privacy img {
  max-width: 125px;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  footer #privacy {
    text-align: left;
  }
}
@media (max-width: 800px) {
  footer #privacy {
    min-width: 200px;
  }
}
@media (max-width: 640px) {
  footer #privacy {
    text-align: left;
    display: block !important;
    clear: both;
  }
}
/* =============================================
   NAV MOBILE HAMBURGER
================================================ */
#hamburger {
  padding: 3.75rem 4rem;
  top: 0;
  right: 3%;
  position: fixed;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 10000000000000000000000000000000000;
}

#index #hamburger span {
  background: #0061a5;
}

#index #hamburger.open span {
  background: #0061a5;
}

#hamburger span {
  display: block;
  position: absolute;
  margin: 3.2rem 0 0 1.75rem;
  right: 2.75rem;
  height: 2px;
  width: 34px;
  background: #fff;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

#hamburger span:nth-child(1) {
  top: 0;
}

#hamburger span:nth-child(2) {
  top: 10px;
}

#hamburger.open span:nth-child(2) {
  opacity: 1;
}

#hamburger.open span:nth-child(1) {
  top: 5px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#hamburger.open span:nth-child(2) {
  top: 5px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (max-width: 640px) {
  #hamburger {
    top: -0.3rem;
    padding: 1.75rem 2.5rem;
    right: 0;
  }
  #hamburger.open {
    right: 0;
  }
  #hamburger span {
    margin: 1.5rem 0rem 0 0;
    right: 1.5rem;
  }
  #hamburger.open span:nth-child(1) {
    top: 0;
    left: 22px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #hamburger.open span:nth-child(2) {
    opacity: 1;
  }
  #hamburger.open span:nth-child(1) {
    top: 5px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #hamburger.open span:nth-child(2) {
    top: 5px;
    left: 22px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
/* =============================================
   MOBILE MENU OVERLAY
================================================ */
.overlay {
  display: none;
  position: fixed;
  overflow-y: scroll;
  top: 0;
  height: 100vh;
  width: 100%;
  background: #0061a5;
  z-index: 99999999;
  opacity: 1;
}

.overlay::-webkit-scrollbar,
.overlay::-webkit-scrollbar-track {
  width: 0 !important;
  visibility: hidden !important;
}

body.preventUnpinned .headroom--unpinned {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
}

body.preventUnpinned #container {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}

@media (min-width: 641px) {
  body.preventUnpinned #container {
    opacity: 1;
  }
}
/* =============================================
   NAV MOBILE
================================================ */
#nav-mobile {
  display: block;
  margin: 10rem 0 5rem 0;
  padding: 0;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-family: "objektiv-mk3", sans-serif;
  line-height: 1;
  -webkit-transition: all 0.75s ease;
  -moz-transition: all 0.75s ease;
  -o-transition: all 0.75s ease;
  -ms-transition: all 0.75s ease;
  transition: all 0.75s ease;
}

#nav-mobile li {
  text-align: center;
  list-style: none;
}

#nav-mobile li a {
  display: block;
  color: #fff;
  padding: 15px 25px;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
}

#nav-mobile ul {
  margin-bottom: 1rem;
  display: none;
}

#nav-mobile a:hover,
#nav-mobile a#selected,
#nav-mobile ul a:hover,
#nav-mobile ul a#selected {
  color: #000;
  opacity: 1 !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#nav-mobile li ul a {
  padding: 7px 25px !important;
  font-size: 0.9rem;
}

#nav-mobile .has-dropdown a.active {
  color: #000;
  opacity: 1 !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 640px) {
  #nav-mobile {
    font-size: 1rem;
    margin: 4rem 0 2rem 0;
  }
  #nav-mobile li ul a {
    padding: 7px 25px !important;
    font-size: 0.8rem;
  }
}
/* =============================================
   GENERAL HEADINGS
================================================ */
h1 {
  background: #0061a5;
  color: #fff;
  display: inline-block;
  padding: 0.3rem 3rem 0.3rem 0.75rem !important;
  font-size: 2rem;
  margin: 0;
  line-height: 1;
}

h2 {
  color: #0061a5;
  font-family: "Times", serif;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0.4rem 0 1rem 0.75rem;
  line-height: 1;
}

.north-america h3,
.international h3 {
  color: #fff;
  background: #0061a5;
  padding: 10px 25px;
  display: inline-block;
  font-size: 1rem !important;
  margin-bottom: 2.25rem;
}

.north-america h4,
.international h4 {
  font-size: 1rem !important;
}

h5:first-child {
  margin: 0.3rem 0 0.3rem;
}

h5 {
  text-transform: capitalize;
  margin: 1.5rem 0 0.3rem;
}

@media (max-width: 640px) {
  .north-america h4,
  .international h4 {
    margin-top: 1rem;
  }
}
/* =============================================
   GENERAL CONTAINERS
================================================ */
.container {
  padding: 0 0.5rem;
}

.container.top {
  padding-top: 6rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.container.bottom {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 6rem;
}

.container.grey {
  background: #e5e5e5;
}

/* =============================================
   GENERAL FORMATTING
================================================ */
.padding {
  padding: 0 1.5rem !important;
}

.line {
  padding: 4rem 1rem;
}

.line div {
  border-top: 1px #c4c4c4 solid;
}

.bold {
  font-weight: bold;
}

#north-america .property,
#international .property {
  padding-top: 3%;
  position: relative;
}

.property-details {
  max-width: 430px;
  color: #0061a5;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 1rem 0 2rem 5%;
  text-transform: uppercase;
  display: none !important;
}

.link a,
.link:visited {
  font-weight: bold;
  color: #0061a5 !important;
  padding: 5px 0;
}

.top {
  padding-top: 6rem;
}

.top-small {
  padding-top: 1.5rem;
}

.top-medium {
  padding-top: 3rem;
}

.top-medium-shops {
  padding-top: 2rem;
}

.property-details div {
  line-height: 1.2;
  padding: 5px 0;
}

@media (max-width: 640px) {
  .property {
    padding-top: 2rem;
  }
  .top-medium-shops {
    padding-top: 0;
  }
}
/* =============================================
   GENERAL NAV
================================================ */
#nav-property-type {
  padding: 3rem 0.5rem 0;
  max-width: 1230px;
  margin: 0 auto;
}

#nav-north-america {
  border-right: 4px #fff solid;
  position: relative;
  cursor: pointer;
}

#nav-international {
  border-left: 4px #fff solid;
  position: relative;
  cursor: pointer;
}

#nav-north-america > div {
  position: absolute;
  bottom: 0;
  background: rgba(0, 40, 120, 0.8);
  padding: 1.5rem;
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 0.8rem;
  width: 100%;
  line-height: 1.4;
}

#nav-international > div {
  position: absolute;
  bottom: 0;
  background: rgba(100, 30, 0, 0.8);
  padding: 1.5rem;
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 0.8rem;
  width: 100%;
  line-height: 1.4;
}

@media (max-width: 640px) {
  #nav-north-america {
    border-right: 0;
    border-bottom: 8px #fff solid;
  }
  #nav-international {
    border-left: 0;
  }
  #nav-north-america > div,
  #nav-international > div {
    position: relative;
  }
}
.gallery-button,
.gallery-button:visited {
  color: #0061a5;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.5rem 0 0;
  position: absolute;
  bottom: 0;
  border-bottom: 1px #0061a5 solid;
  width: 130px;
  display: block;
}

@media (max-width: 640px) {
  .gallery-button {
    position: relative;
    padding-top: 3rem !important;
    border-bottom: 1px #0061a5 solid;
  }
}
.back-button,
.back-button:visited {
  color: #0061a5;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.5rem 0 0;
  border-bottom: 1px #0061a5 solid;
  width: 130px;
  display: block;
}

/* =============================================
   STICKY NAV
================================================ */
#navbar {
  overflow: hidden;
  text-align: center;
  border-top: 1px #bfbfbf solid;
  padding: 1.5rem 0 0;
}

#navbar a {
  display: inline-block;
  color: #0061a5;
  text-align: center;
  padding: 5px 0 1px;
  font-size: 11px;
  font-weight: bold;
  border-bottom: 1px #fff solid;
  -webkit-transition: all ease 0s;
  -moz-transition: all ease 0s;
  -o-transition: all ease 0s;
  -ms-transition: all ease 0s;
  transition: all ease 0s;
}

#navbar .active {
  padding: 5px 0 1px;
  border-bottom: 1px #0061a5 solid;
  -webkit-transition: all ease 0s;
  -moz-transition: all ease 0s;
  -o-transition: all ease 0s;
  -ms-transition: all ease 0s;
  transition: all ease 0s;
}

#navbar .active:hover {
  border-bottom: 1px #0061a5 solid;
}

#navbar a:hover {
  padding: 5px 0 1px;
  border-bottom: 1px #0061a5 solid;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.international #navbar .active a {
  padding: 5px 0 1px;
  border-bottom: 0;
  -webkit-transition: all ease 0s;
  -moz-transition: all ease 0s;
  -o-transition: all ease 0s;
  -ms-transition: all ease 0s;
  transition: all ease 0s;
}

.international #navbar .active a:hover {
  border-bottom: 0;
}

#navbar .divider {
  font-size: 0.7rem;
  color: #bfbfbf;
  padding: 0 10px;
}

.sticky {
  position: fixed;
  top: 0;
  padding: 0;
  width: 100%;
}

.sticky#navbar {
  padding: 0;
  width: 100%;
  left: 0;
  background: #fff;
  z-index: 9999999;
}

.border-left {
  border-left: 1rem #fff solid;
}

.border-right {
  border-right: 1rem #fff solid;
}

@media (max-width: 800px) {
  #navbar .hide {
    display: none;
  }
  #navbar a {
    font-size: 10px;
  }
  #navbar .divider {
    padding: 0 5px;
  }
}
@media (max-width: 500px) {
  #navbar a {
    font-size: 8px;
  }
  #navbar .divider {
    padding: 0 2px;
  }
}
/* =============================================
   HOMEPAGE
================================================ */
#index {
  background: #e5e5e5;
}

/* =============================================
   HOMEPAGE SWIPER
================================================ */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: #fff;
  /* Fix of Webkit flickering */
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  border-left: 15px #fff solid;
  border-right: 15px #fff solid;
}

.swiper-slide {
  margin-top: 120px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 100%;
  max-height: 70%;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.slide-inner {
  width: 100%;
  height: 100%;
}

.slide-inner a:hover {
  opacity: 1;
}

.title {
  position: absolute;
  top: 0%;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.title img {
  position: absolute;
  max-width: 300px;
  z-index: 9999999999999;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

@media (max-width: 1600px) {
  .title img {
    max-width: 230px;
  }
}
@media (max-width: 1300px) {
  .title img {
    max-width: 180px;
  }
}
@media (max-width: 1000px) {
  .title img {
    max-width: 130px;
  }
}
@media (min-width: 641px) {
  #mobileProperties {
    display: none;
  }
}
#mobileProperties .north-america {
  margin-top: 66px;
  border-bottom: 15px #e5e5e5 solid;
}

@media (max-width: 640px) {
  .title img {
    max-width: 100px;
  }
  .swiper-slide {
    display: none;
  }
}
/* =============================================
   ABOUT
================================================ */
#about img[src="img/about-intro.jpg"] {
  max-width: 250px;
  float: left;
  padding: 0.5rem 1.5rem 0 0;
}

@media (max-width: 640px) {
  #about img[src="img/about-intro.jpg"] {
    max-width: 250px;
    float: none;
    padding: 0.75rem 0 1.5rem;
  }
}
/* =============================
   ABOUT Team
================================ */
#about #team img {
  float: left;
  max-width: 120px;
  padding: 0.3rem 1rem 0.5rem 0;
}

#about #team h3 {
  color: #0061a5;
  text-transform: capitalize;
  font-family: "Times", serif;
  font-weight: 500;
  font-size: 2rem;
  margin: 0;
  line-height: 1;
}

#about #team h6 {
  color: #666666;
  text-transform: capitalize;
  font-family: "objektiv-mk3", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0 0 1rem 0;
  line-height: 1;
  font-style: italic;
}

#about #team p {
  margin-bottom: 3rem;
}

@media (max-width: 640px) {
  #about #properties h5:first-child {
    margin-top: 2rem;
  }
}
/* =============================
   ABOUT Vision
================================ */
#about #vision h2 {
  margin: 0.4rem 0 0.3rem 0.75rem;
}

#about #vision h4 {
  font-family: "Times", serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.4;
}

#about #vision p {
  padding: 2rem 0;
}

#about #vision div div div div {
  max-width: 410px;
  margin: 0 auto;
}

#about #vision table {
  width: 100%;
  margin: 1.5rem auto 2rem;
}

#about #vision table td {
  font-size: 0.75rem;
  line-height: 1.2;
  padding: 0.5rem 0;
  text-transform: uppercase;
}

.dotted-line {
  display: flex;
}

.dotted-line:after {
  border-bottom: 1px dotted black;
  content: "";
  flex: 1;
  margin-bottom: 3px;
  margin-left: 3px;
}

#about #vision table td:nth-child(2n+1) {
  color: #0061a5;
  font-weight: 600;
  min-width: 150px;
  padding-right: 5px;
}

#about #vision table td:nth-child(2n+2) {
  color: #666666;
  font-weight: normal;
  font-style: italic;
}

/* =============================================
   INTERNATIONAL
================================================ */
#international {
  background: #ebebeb;
}

#international header {
  background: #ebebeb;
  text-align: center;
  mix-blend-mode: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px #fff solid;
  position: relative;
}

#international header:before {
  background: none;
}

#international header > div {
  display: flex;
  align-items: center;
  justify-content: center;
}

#international header .logo-dalmi {
  width: 250px;
  z-index: 1000000000000000000000000;
}

#international header .line {
  background: url("../img/logo-line.svg") no-repeat center center;
  background-size: 200px;
  height: 20px;
  overflow-x: hidden;
  width: 150px;
}

#international header .line:first-child {
  margin-right: 2rem;
}

#international header .line:last-child {
  margin-left: 2rem;
}

#international #locations .mrc {
  background: url("../img/location-mrc.webp") no-repeat center top;
  background-size: 100% 100%;
}

#international #locations .lbr {
  background: url("../img/location-lbr.webp") no-repeat center top;
  background-size: 100% 100%;
}

#international #locations .cell {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20% 1.5rem;
  object-fit: fill;
  transition: all ease 0.5s;
}

#international #locations .cell:hover {
  height: 100%;
  padding: 20% 1.5rem;
  background-size: 120% 120%;
}

#international #locations .cell:first-child {
  border-right: 1px #fff solid;
  border-bottom: 2px #fff solid;
}

#international #locations .cell:last-child {
  border-left: 2px #fff solid;
  border-bottom: 2px #fff solid;
}

.award {
  display: none;
}

#index .award {
  display: block;
  position: absolute;
  max-width: clamp(225px, 30%, 350px);
  top: -150px;
  right: 2%;
  z-index: 999;
}

#international .award {
  display: block;
  position: absolute;
  max-width: clamp(200px, 50%, 350px);
  bottom: -20%;
  right: -5%;
  left: 0;
  margin: 0 auto;
  z-index: 999;
}

@media (max-width: 900px) {
  #index .award {
    top: -125px;
  }
}
@media (max-width: 800px) {
  #international .award {
    bottom: -20%;
  }
}
@media (max-width: 640px) {
  #index .award {
    top: -125px;
  }
  #international .award {
    bottom: 0;
  }
}
@media (max-width: 500px) {
  #index .award {
    top: -80px;
  }
}
#international .resort {
  margin: 0 auto;
  text-align: center;
  max-width: 400px;
}

#international .resort img {
  max-width: 250px;
  margin-bottom: 4rem;
  display: block;
  width: 100%;
}

#international .link {
  max-width: 230px;
  margin: 0 auto;
  padding: unset;
  display: inline-block;
}

#international .link a {
  color: #fff !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 2px;
  background: #bc955b;
  line-height: 1;
  display: block;
}

@media (max-width: 640px) {
  #international header {
    height: 80px;
  }
  #international header .logo-dalmi {
    width: 150px;
  }
  #international header .line {
    width: 50px;
  }
  #international header .line:first-child {
    margin-right: 1rem;
  }
  #international header .line:last-child {
    margin-left: 1rem;
  }
  #international #locations .cell:first-child {
    border-right: 0;
    border-bottom: 2px #fff solid;
  }
  #international #locations .cell:last-child {
    border-left: 0;
  }
  #international #locations .cell.mrc,
  #international #locations .cell.mrc:hover {
    padding: 25% 1.5rem 60%;
  }
  #international #locations .cell.lbr,
  #international #locations .cell.lbr:hover {
    padding: 25% 1.5rem;
  }
}
/* =============================================
   RESIDENTIAL / COMMERCIAL BG IMAGES
================================================ */
.north-america .img,
.international .img {
  min-height: 500px;
  border-left: 1rem #fff solid;
  border-right: 1rem #fff solid;
}

.north-america .img.grey-borders,
.international .img.grey-borders {
  border-left: 1rem #e5e5e5 solid;
  border-right: 1rem #e5e5e5 solid;
}

@media (max-width: 1000px) {
  .north-america .img,
  .international .img {
    min-height: 400px;
  }
}
@media (max-width: 550px) {
  .north-america .img,
  .international .img {
    min-height: 300px;
  }
}
/* =========================
   RESIDENTIAL IMAGES
============================ */
.aberfoyle.img {
  background: url("../img/property-aberfoyle.jpg") no-repeat center top;
  background-size: cover;
}

.durban.img {
  background: url("../img/property-durban.jpg") no-repeat center top;
  background-size: cover;
}

.birchview.img {
  background: url("../img/property-birchview.jpg") no-repeat center top;
  background-size: cover;
}

.bannon.img {
  background: url("../img/property-bannon.jpg") no-repeat center top;
  background-size: cover;
}

.crates.img {
  background: url("../img/property-crates.jpg") no-repeat center top;
  background-size: cover;
}

.primosten.img {
  background: url("../img/property-primosten.jpg") no-repeat center top;
  background-size: cover;
}

.cavtat.img {
  background: url("../img/property-cavtat.jpg") no-repeat center top;
  background-size: cover;
}

.kipling.img {
  background: url("../img/property-kipling.jpg") no-repeat left top;
  background-size: cover;
}

.stephens.img {
  background: url("../img/property-st-stephens.jpg") no-repeat center top;
  background-size: cover;
}

.shelter.img {
  background: url("../img/property-womens-shelter.jpg") no-repeat center top;
  background-size: cover;
}

.water-works.img {
  background: url("../img/property-water-works.jpg") no-repeat center top;
  background-size: cover;
}

.borden.img {
  background: url("../img/property-borden.jpg") no-repeat center top;
  background-size: cover;
}

.legion.img {
  background: url("../img/property-legion.jpg") no-repeat center top;
  background-size: cover;
}

.library.img {
  background: url("../img/property-library.jpg") no-repeat center top;
  background-size: cover;
}

.horseshoe.img {
  background: url("../img/property-horseshoe.jpg") no-repeat center top;
  background-size: cover;
}

.hospital.img {
  background: url("../img/property-hospital.jpg") no-repeat center top;
  background-size: cover;
}

img[src="img/logo-horseshoe-resort.png"] {
  margin-top: 15px;
  max-width: 150px;
}

img[src="img/logo-toronto-public-library.png"] {
  margin-top: 15px;
  max-width: 130px;
}

/* ======================================
   RESIDENTIAL / COMMERCIAL GALLERIES
========================================= */
.gallery-left {
  border-right: 3px #fff solid;
}

.gallery-right {
  border-left: 3px #fff solid;
}

.gallery-bottom {
  border-bottom: 6px #fff solid;
}

.north-america .gallery-durban.img {
  background: url("../img/property-gallery.jpg") no-repeat center top;
  background-size: cover;
}

@media (max-width: 640px) {
  .gallery-left {
    border-right: 0;
  }
  .gallery-right {
    border-left: 0;
  }
}
/* =============================================
   CONTACT
================================================ */
#mapToronto,
#mapCroatia {
  min-height: 350px;
}

.gmnoprint a,
.gmnoprint span {
  display: none;
}

.gmnoprint div {
  background: none !important;
}

#GMapsID div div a div img {
  display: none;
}

.gm-style-cc {
  display: none;
}

.gm-style-iw {
  max-width: 300px !important;
}

a[href^="http://maps.google.com/maps"] {
  display: none !important;
}

a[href^="https://maps.google.com/maps"] {
  display: none !important;
}

/* =============================================
   THANK YOU / PRIVACY
================================================ */
#thankyou {
  opacity: 1 !important;
}

#thankyou .thankyou {
  min-height: 700px;
  margin-top: 10rem;
  text-align: center;
}

#thankyou .thankyou h3,
#thankyou .thankyou p {
  text-align: center;
}

/* =============================================
   LISTS
================================================ */
ul,
ol,
dl {
  font-size: inherit;
  line-height: 1.6;
  margin-bottom: 0.5rem; /* 1.25rem */
  list-style-position: outside;
  font-family: inherit;
}

ul {
  margin-left: 0;
  margin-bottom: 0;
  font-size: 1rem; /* Override nested font-size change */
}

ol {
  margin-left: 1.4rem;
  list-style-position: outside !important;
}

/* =============================================
   TABS
================================================ */
.tabs {
  margin: 0;
  border: 1px solid #e6e6e6;
  background: #fefefe;
  list-style-type: none;
}

.tabs::before,
.tabs::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-order: 1;
  order: 1;
}

.tabs::after {
  clear: both;
}

.tabs.vertical > li {
  display: block;
  float: none;
  width: auto;
}

.tabs.simple > li > a {
  padding: 0;
}

.tabs.simple > li > a:hover {
  background: transparent;
}

.tabs.primary {
  background: #2ba6cb;
}

.tabs.primary > li > a {
  color: #0a0a0a;
}

.tabs.primary > li > a:hover,
.tabs.primary > li > a:focus {
  background: #299ec1;
}

.tabs-title {
  float: left;
}

.tabs-title > a {
  display: block;
  padding: 1.25rem 1.5rem;
  font-size: 0.75rem;
  line-height: 1;
  color: #2ba6cb;
}

.tabs-title > a:hover {
  background: #fefefe;
  color: #258faf;
}

.tabs-title > a:focus,
.tabs-title > a[aria-selected=true] {
  background: #e6e6e6;
  color: #2ba6cb;
}

.tabs-content {
  border: 1px solid #e6e6e6;
  border-top: 0;
  background: #fefefe;
  color: #0a0a0a;
  transition: all 0.5s ease;
}

.tabs-content.vertical {
  border: 1px solid #e6e6e6;
  border-left: 0;
}

.tabs-panel {
  display: none;
  padding: 1rem;
}

.tabs-panel.is-active {
  display: block;
}

/* ==========================================================================
   VIDEO RESPONSIVE
============================================================================= */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 56.25% is 16:9 */
  padding-top: 0;
  height: 0;
  z-index: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* =============================================
   BUTTONS / INPUTS / LABELS
================================================ */
button,
input,
optgroup,
select,
textarea {
  font: inherit;
  margin: 0;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  overflow: visible;
  border: 0;
  border-radius: 2px;
  line-height: 1;
}

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

button a,
.button a {
  color: #fff;
  text-transform: uppercase;
}

.button {
  text-align: center;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  vertical-align: middle;
  border: 1px #0e5192 solid;
  border-radius: 2px;
  padding: 0.75rem 1.75rem;
  margin: 0 0 1rem 0;
  font-size: 11px;
  font-weight: bold;
  background: #0061a5;
  color: #fff !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

[data-whatinput=mouse] .button {
  outline: 0;
}

.button:hover,
.button:focus {
  opacity: 0.9;
  color: #fff;
}

input.button {
  text-align: center;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  vertical-align: middle;
  border: 0;
  border-radius: 2px;
  padding: 0.75rem 1.75rem;
  margin: 0 0 1rem 0;
  font-size: 11px;
  font-weight: bold;
  background: #0061a5;
  color: #fff !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

button:hover,
input[type=button]:hover,
button a:hover,
.button a:hover,
button:focus,
.button:hover,
button:focus {
  opacity: 0.8 !important;
  background: #000;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

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

input {
  line-height: normal;
  font-weight: bold;
  font-size: 11px;
  font-family: "Arial", sans-serif;
  color: #0061a5;
}

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

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: border-box;
}

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

textarea {
  max-width: 100%;
  overflow: auto;
  height: auto;
  font-family: inherit;
  font-weight: bold;
  /*min-height: 80px;*/
  border-radius: 2px;
}

[type=text],
[type=password],
[type=date],
[type=datetime],
[type=datetime-local],
[type=month],
[type=week],
[type=email],
[type=number],
[type=search],
[type=tel],
[type=time],
[type=url],
[type=color],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  /*height: 2.4375rem;*/
  padding: 0.5rem 0.6rem;
  margin: 0 0 1rem;
  font-family: "Arial", sans-serif;
  font-size: 11px;
  color: #0061a5;
  text-transform: uppercase !important;
  background-color: transparent;
  /*box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);*/
  border-radius: 2px;
  border: 1px #0e5192 solid;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
}

[type=text]:focus,
[type=password]:focus,
[type=date]:focus,
[type=datetime]:focus,
[type=datetime-local]:focus,
[type=month]:focus,
[type=week]:focus,
[type=email]:focus,
[type=number]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=time]:focus,
[type=url]:focus,
[type=color]:focus,
textarea:focus {
  border: 1px solid #999;
  background-color: #fefefe;
  outline: none;
  box-shadow: 0 0 5px #cacaca;
  transition: box-shadow 0.2s, border-color 0.2s ease-in-out;
}

[type=submit],
[type=button] {
  border-radius: 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
}

[type=file],
[type=checkbox],
[type=radio] {
  margin: 0 0 1rem;
}

input[type=radio]:after {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  top: -2px;
  outline: none;
  left: -1px;
  position: relative;
  content: "";
  display: inline-block;
  visibility: visible;
  -webkit-appearance: none;
  background-color: #fff;
  padding: 6px;
  border: 2px #0daaa3 solid;
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear;
}

input[type=radio]:checked:after {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  top: -2px;
  left: -1px;
  position: relative;
  background-color: #fff;
  content: "";
  display: inline-block;
  visibility: visible;
  transition: background 0.2s linear;
  -webkit-transition: background 0.2s linear;
}

[type=checkbox] + label,
[type=radio] + label {
  display: inline-block;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
  vertical-align: baseline;
}

label > [type=checkbox],
label > [type=label] {
  margin-right: 0.5rem;
}

[type=file] {
  width: 100%;
}

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
  color: #0a0a0a;
}

/* =============================================
   SELECT
================================================ */
select {
  /*height: 2.4375rem;*/
  width: 100%;
  padding: 0.5rem 0.6rem;
  margin: 0 0 1rem;
  font-size: 11px;
  text-transform: uppercase !important;
  font-weight: bold;
  font-family: "Arial", sans-serif;
  line-height: normal;
  color: #0061a5;
  background-color: transparent;
  border: 1px #0e5192 solid;
  border-radius: 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("../img/arrow-down-select-drk.png");
  background-size: 9px 6px;
  background-position: right center;
  background-origin: content-box;
  background-repeat: no-repeat;
}

select:focus {
  outline: none;
  border: 1px solid #8a8a8a;
  background-color: #fefefe;
  box-shadow: 0 0 5px #cacaca;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

select::-ms-expand {
  display: none;
}

select[multiple] {
  height: auto;
  background-image: none;
}

/* =============================================
   PLACEHOLDER TEXT
================================================ */
/* Placeholder text */
::-webkit-input-placeholder {
  color: #0061a5;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #0061a5;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #0061a5;
}

:-ms-input-placeholder {
  color: #0061a5;
}

/* Placeholder text focus */
[placeholder]:focus::-webkit-input-placeholder {
  transition: opacity 0.2s 0.2s ease;
  opacity: 0;
}

/* =============================================
   WTL FORM VALIDATION
================================================ */
#signupForm {
  max-width: 400px;
}

#signupForm label.error {
  color: #555 !important;
  margin-top: -10px;
  padding-bottom: 15px;
  display: block;
  font-family: sans-serif;
  font-size: 11px;
  line-height: 1;
}

#signupForm div {
  position: relative;
}

#signupForm span {
  position: absolute;
  top: -13px;
  font-size: 9px;
  letter-spacing: 1px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  font-family: "objektiv-mk3", sans-serif;
  background: #0061a5;
  padding: 0 3px !important;
  margin-left: 0px;
  border-radius: 2px;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#signupForm input:focus + span,
#signupForm textarea:focus + span,
#signupForm input:focus ~ label + span {
  opacity: 1 !important;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#signupForm input ~ label + span {
  opacity: 0 !important;
}

.g-recaptcha {
  transform: scale(0.65);
  -webkit-transform: scale(0.65);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}

.disclaimer {
  font-size: 0.7rem;
  margin-top: 40px;
  color: #666;
  max-width: 400px;
}

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

/* =============================================
   GRID
================================================ */
.grid-container {
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  max-width: 78.125rem;
  margin: 0 auto;
}

.grid-container.fluid {
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  max-width: 100%;
  margin: 0 auto;
}

.grid-container.full {
  padding-right: 0;
  padding-left: 0;
  max-width: 100%;
  margin: 0 auto;
}

.grid-x {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.cell {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 0px;
  min-width: 0px;
  width: 100%;
}

.cell.auto {
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
}

.cell.shrink {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.grid-x > .auto {
  width: auto;
}

.grid-x > .shrink {
  width: auto;
}

.grid-x > .small-shrink,
.grid-x > .small-full,
.grid-x > .small-1,
.grid-x > .small-2,
.grid-x > .small-3,
.grid-x > .small-4,
.grid-x > .small-5,
.grid-x > .small-6,
.grid-x > .small-7,
.grid-x > .small-8,
.grid-x > .small-9,
.grid-x > .small-10,
.grid-x > .small-11,
.grid-x > .small-12,
.grid-x > .small-13,
.grid-x > .small-14,
.grid-x > .small-15,
.grid-x > .small-16,
.grid-x > .small-17,
.grid-x > .small-18 {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

@media print, screen and (min-width: 40.063em) {
  .grid-x > .medium-shrink,
  .grid-x > .medium-full,
  .grid-x > .medium-1,
  .grid-x > .medium-2,
  .grid-x > .medium-3,
  .grid-x > .medium-4,
  .grid-x > .medium-5,
  .grid-x > .medium-6,
  .grid-x > .medium-7,
  .grid-x > .medium-8,
  .grid-x > .medium-9,
  .grid-x > .medium-10,
  .grid-x > .medium-11,
  .grid-x > .medium-12,
  .grid-x > .medium-13,
  .grid-x > .medium-14,
  .grid-x > .medium-15,
  .grid-x > .medium-16,
  .grid-x > .medium-17,
  .grid-x > .medium-18 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x > .large-shrink,
  .grid-x > .large-full,
  .grid-x > .large-1,
  .grid-x > .large-2,
  .grid-x > .large-3,
  .grid-x > .large-4,
  .grid-x > .large-5,
  .grid-x > .large-6,
  .grid-x > .large-7,
  .grid-x > .large-8,
  .grid-x > .large-9,
  .grid-x > .large-10,
  .grid-x > .large-11,
  .grid-x > .large-12,
  .grid-x > .large-13,
  .grid-x > .large-14,
  .grid-x > .large-15,
  .grid-x > .large-16,
  .grid-x > .large-17,
  .grid-x > .large-18 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
.grid-x > .small-1 {
  width: 5.55556%;
}

.grid-x > .small-2 {
  width: 11.11111%;
}

.grid-x > .small-3 {
  width: 16.66667%;
}

.grid-x > .small-4 {
  width: 22.22222%;
}

.grid-x > .small-5 {
  width: 27.77778%;
}

.grid-x > .small-6 {
  width: 33.33333%;
}

.grid-x > .small-7 {
  width: 38.88889%;
}

.grid-x > .small-8 {
  width: 44.44444%;
}

.grid-x > .small-9 {
  width: 50%;
}

.grid-x > .small-10 {
  width: 55.55556%;
}

.grid-x > .small-11 {
  width: 61.11111%;
}

.grid-x > .small-12 {
  width: 66.66667%;
}

.grid-x > .small-13 {
  width: 72.22222%;
}

.grid-x > .small-14 {
  width: 77.77778%;
}

.grid-x > .small-15 {
  width: 83.33333%;
}

.grid-x > .small-16 {
  width: 88.88889%;
}

.grid-x > .small-17 {
  width: 94.44444%;
}

.grid-x > .small-18 {
  width: 100%;
}

@media print, screen and (min-width: 40.063em) {
  .grid-x > .medium-auto {
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .medium-shrink {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .grid-x > .medium-1 {
    width: 5.55556%;
  }
  .grid-x > .medium-2 {
    width: 11.11111%;
  }
  .grid-x > .medium-3 {
    width: 16.66667%;
  }
  .grid-x > .medium-4 {
    width: 22.22222%;
  }
  .grid-x > .medium-5 {
    width: 27.77778%;
  }
  .grid-x > .medium-6 {
    width: 33.33333%;
  }
  .grid-x > .medium-7 {
    width: 38.88889%;
  }
  .grid-x > .medium-8 {
    width: 44.44444%;
  }
  .grid-x > .medium-9 {
    width: 50%;
  }
  .grid-x > .medium-10 {
    width: 55.55556%;
  }
  .grid-x > .medium-11 {
    width: 61.11111%;
  }
  .grid-x > .medium-12 {
    width: 66.66667%;
  }
  .grid-x > .medium-13 {
    width: 72.22222%;
  }
  .grid-x > .medium-14 {
    width: 77.77778%;
  }
  .grid-x > .medium-15 {
    width: 83.33333%;
  }
  .grid-x > .medium-16 {
    width: 88.88889%;
  }
  .grid-x > .medium-17 {
    width: 94.44444%;
  }
  .grid-x > .medium-18 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x > .large-auto {
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .large-shrink {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .grid-x > .large-1 {
    width: 5.55556%;
  }
  .grid-x > .large-2 {
    width: 11.11111%;
  }
  .grid-x > .large-3 {
    width: 16.66667%;
  }
  .grid-x > .large-4 {
    width: 22.22222%;
  }
  .grid-x > .large-5 {
    width: 27.77778%;
  }
  .grid-x > .large-6 {
    width: 33.33333%;
  }
  .grid-x > .large-7 {
    width: 38.88889%;
  }
  .grid-x > .large-8 {
    width: 44.44444%;
  }
  .grid-x > .large-9 {
    width: 50%;
  }
  .grid-x > .large-10 {
    width: 55.55556%;
  }
  .grid-x > .large-11 {
    width: 61.11111%;
  }
  .grid-x > .large-12 {
    width: 66.66667%;
  }
  .grid-x > .large-13 {
    width: 72.22222%;
  }
  .grid-x > .large-14 {
    width: 77.77778%;
  }
  .grid-x > .large-15 {
    width: 83.33333%;
  }
  .grid-x > .large-16 {
    width: 88.88889%;
  }
  .grid-x > .large-17 {
    width: 94.44444%;
  }
  .grid-x > .large-18 {
    width: 100%;
  }
}
.grid-margin-x:not(.grid-x) > .cell {
  width: auto;
}

.grid-margin-y:not(.grid-y) > .cell {
  height: auto;
}

.grid-margin-x {
  margin-left: -0.9375rem;
  margin-right: -0.9375rem;
}

.grid-margin-x > .cell {
  width: calc(100% - 1.875rem);
  margin-left: 0.9375rem;
  margin-right: 0.9375rem;
}

.grid-margin-x > .auto {
  width: auto;
}

.grid-margin-x > .shrink {
  width: auto;
}

.grid-margin-x > .small-1 {
  width: calc(5.55556% - 1.875rem);
}

.grid-margin-x > .small-2 {
  width: calc(11.11111% - 1.875rem);
}

.grid-margin-x > .small-3 {
  width: calc(16.66667% - 1.875rem);
}

.grid-margin-x > .small-4 {
  width: calc(22.22222% - 1.875rem);
}

.grid-margin-x > .small-5 {
  width: calc(27.77778% - 1.875rem);
}

.grid-margin-x > .small-6 {
  width: calc(33.33333% - 1.875rem);
}

.grid-margin-x > .small-7 {
  width: calc(38.88889% - 1.875rem);
}

.grid-margin-x > .small-8 {
  width: calc(44.44444% - 1.875rem);
}

.grid-margin-x > .small-9 {
  width: calc(50% - 1.875rem);
}

.grid-margin-x > .small-10 {
  width: calc(55.55556% - 1.875rem);
}

.grid-margin-x > .small-11 {
  width: calc(61.11111% - 1.875rem);
}

.grid-margin-x > .small-12 {
  width: calc(66.66667% - 1.875rem);
}

.grid-margin-x > .small-13 {
  width: calc(72.22222% - 1.875rem);
}

.grid-margin-x > .small-14 {
  width: calc(77.77778% - 1.875rem);
}

.grid-margin-x > .small-15 {
  width: calc(83.33333% - 1.875rem);
}

.grid-margin-x > .small-16 {
  width: calc(88.88889% - 1.875rem);
}

.grid-margin-x > .small-17 {
  width: calc(94.44444% - 1.875rem);
}

.grid-margin-x > .small-18 {
  width: calc(100% - 1.875rem);
}

@media print, screen and (min-width: 40.063em) {
  .grid-margin-x > .medium-auto {
    width: auto;
  }
  .grid-margin-x > .medium-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-1 {
    width: calc(5.55556% - 1.875rem);
  }
  .grid-margin-x > .medium-2 {
    width: calc(11.11111% - 1.875rem);
  }
  .grid-margin-x > .medium-3 {
    width: calc(16.66667% - 1.875rem);
  }
  .grid-margin-x > .medium-4 {
    width: calc(22.22222% - 1.875rem);
  }
  .grid-margin-x > .medium-5 {
    width: calc(27.77778% - 1.875rem);
  }
  .grid-margin-x > .medium-6 {
    width: calc(33.33333% - 1.875rem);
  }
  .grid-margin-x > .medium-7 {
    width: calc(38.88889% - 1.875rem);
  }
  .grid-margin-x > .medium-8 {
    width: calc(44.44444% - 1.875rem);
  }
  .grid-margin-x > .medium-9 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .medium-10 {
    width: calc(55.55556% - 1.875rem);
  }
  .grid-margin-x > .medium-11 {
    width: calc(61.11111% - 1.875rem);
  }
  .grid-margin-x > .medium-12 {
    width: calc(66.66667% - 1.875rem);
  }
  .grid-margin-x > .medium-13 {
    width: calc(72.22222% - 1.875rem);
  }
  .grid-margin-x > .medium-14 {
    width: calc(77.77778% - 1.875rem);
  }
  .grid-margin-x > .medium-15 {
    width: calc(83.33333% - 1.875rem);
  }
  .grid-margin-x > .medium-16 {
    width: calc(88.88889% - 1.875rem);
  }
  .grid-margin-x > .medium-17 {
    width: calc(94.44444% - 1.875rem);
  }
  .grid-margin-x > .medium-18 {
    width: calc(100% - 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x > .large-auto {
    width: auto;
  }
  .grid-margin-x > .large-shrink {
    width: auto;
  }
  .grid-margin-x > .large-1 {
    width: calc(5.55556% - 1.875rem);
  }
  .grid-margin-x > .large-2 {
    width: calc(11.11111% - 1.875rem);
  }
  .grid-margin-x > .large-3 {
    width: calc(16.66667% - 1.875rem);
  }
  .grid-margin-x > .large-4 {
    width: calc(22.22222% - 1.875rem);
  }
  .grid-margin-x > .large-5 {
    width: calc(27.77778% - 1.875rem);
  }
  .grid-margin-x > .large-6 {
    width: calc(33.33333% - 1.875rem);
  }
  .grid-margin-x > .large-7 {
    width: calc(38.88889% - 1.875rem);
  }
  .grid-margin-x > .large-8 {
    width: calc(44.44444% - 1.875rem);
  }
  .grid-margin-x > .large-9 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .large-10 {
    width: calc(55.55556% - 1.875rem);
  }
  .grid-margin-x > .large-11 {
    width: calc(61.11111% - 1.875rem);
  }
  .grid-margin-x > .large-12 {
    width: calc(66.66667% - 1.875rem);
  }
  .grid-margin-x > .large-13 {
    width: calc(72.22222% - 1.875rem);
  }
  .grid-margin-x > .large-14 {
    width: calc(77.77778% - 1.875rem);
  }
  .grid-margin-x > .large-15 {
    width: calc(83.33333% - 1.875rem);
  }
  .grid-margin-x > .large-16 {
    width: calc(88.88889% - 1.875rem);
  }
  .grid-margin-x > .large-17 {
    width: calc(94.44444% - 1.875rem);
  }
  .grid-margin-x > .large-18 {
    width: calc(100% - 1.875rem);
  }
}
.grid-padding-x .grid-padding-x {
  margin-right: -0.9375rem;
  margin-left: -0.9375rem;
}

.grid-container:not(.full) > .grid-padding-x {
  margin-right: -0.9375rem;
  margin-left: -0.9375rem;
}

.grid-padding-x > .cell {
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
}

.small-up-1 > .cell {
  width: 100%;
}

.small-up-2 > .cell {
  width: 50%;
}

.small-up-3 > .cell {
  width: 33.33333%;
}

.small-up-4 > .cell {
  width: 25%;
}

.small-up-5 > .cell {
  width: 20%;
}

.small-up-6 > .cell {
  width: 16.66667%;
}

.small-up-7 > .cell {
  width: 14.28571%;
}

.small-up-8 > .cell {
  width: 12.5%;
}

@media print, screen and (min-width: 40.063em) {
  .medium-up-1 > .cell {
    width: 100%;
  }
  .medium-up-2 > .cell {
    width: 50%;
  }
  .medium-up-3 > .cell {
    width: 33.33333%;
  }
  .medium-up-4 > .cell {
    width: 25%;
  }
  .medium-up-5 > .cell {
    width: 20%;
  }
  .medium-up-6 > .cell {
    width: 16.66667%;
  }
  .medium-up-7 > .cell {
    width: 14.28571%;
  }
  .medium-up-8 > .cell {
    width: 12.5%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-up-1 > .cell {
    width: 100%;
  }
  .large-up-2 > .cell {
    width: 50%;
  }
  .large-up-3 > .cell {
    width: 33.33333%;
  }
  .large-up-4 > .cell {
    width: 25%;
  }
  .large-up-5 > .cell {
    width: 20%;
  }
  .large-up-6 > .cell {
    width: 16.66667%;
  }
  .large-up-7 > .cell {
    width: 14.28571%;
  }
  .large-up-8 > .cell {
    width: 12.5%;
  }
}
.grid-margin-x.small-up-1 > .cell {
  width: calc(100% - 1.875rem);
}

.grid-margin-x.small-up-2 > .cell {
  width: calc(50% - 1.875rem);
}

.grid-margin-x.small-up-3 > .cell {
  width: calc(33.33333% - 1.875rem);
}

.grid-margin-x.small-up-4 > .cell {
  width: calc(25% - 1.875rem);
}

.grid-margin-x.small-up-5 > .cell {
  width: calc(20% - 1.875rem);
}

.grid-margin-x.small-up-6 > .cell {
  width: calc(16.66667% - 1.875rem);
}

.grid-margin-x.small-up-7 > .cell {
  width: calc(14.28571% - 1.875rem);
}

.grid-margin-x.small-up-8 > .cell {
  width: calc(12.5% - 1.875rem);
}

@media print, screen and (min-width: 40.063em) {
  .grid-margin-x.medium-up-1 > .cell {
    width: calc(100% - 1.875rem);
  }
  .grid-margin-x.medium-up-2 > .cell {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x.medium-up-3 > .cell {
    width: calc(33.33333% - 1.875rem);
  }
  .grid-margin-x.medium-up-4 > .cell {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x.medium-up-5 > .cell {
    width: calc(20% - 1.875rem);
  }
  .grid-margin-x.medium-up-6 > .cell {
    width: calc(16.66667% - 1.875rem);
  }
  .grid-margin-x.medium-up-7 > .cell {
    width: calc(14.28571% - 1.875rem);
  }
  .grid-margin-x.medium-up-8 > .cell {
    width: calc(12.5% - 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x.large-up-1 > .cell {
    width: calc(100% - 1.875rem);
  }
  .grid-margin-x.large-up-2 > .cell {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x.large-up-3 > .cell {
    width: calc(33.33333% - 1.875rem);
  }
  .grid-margin-x.large-up-4 > .cell {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x.large-up-5 > .cell {
    width: calc(20% - 1.875rem);
  }
  .grid-margin-x.large-up-6 > .cell {
    width: calc(16.66667% - 1.875rem);
  }
  .grid-margin-x.large-up-7 > .cell {
    width: calc(14.28571% - 1.875rem);
  }
  .grid-margin-x.large-up-8 > .cell {
    width: calc(12.5% - 1.875rem);
  }
}
.small-margin-collapse {
  margin-right: 0;
  margin-left: 0;
}

.small-margin-collapse > .cell {
  margin-right: 0;
  margin-left: 0;
}

.small-margin-collapse > .small-1 {
  width: 5.55556%;
}

.small-margin-collapse > .small-2 {
  width: 11.11111%;
}

.small-margin-collapse > .small-3 {
  width: 16.66667%;
}

.small-margin-collapse > .small-4 {
  width: 22.22222%;
}

.small-margin-collapse > .small-5 {
  width: 27.77778%;
}

.small-margin-collapse > .small-6 {
  width: 33.33333%;
}

.small-margin-collapse > .small-7 {
  width: 38.88889%;
}

.small-margin-collapse > .small-8 {
  width: 44.44444%;
}

.small-margin-collapse > .small-9 {
  width: 50%;
}

.small-margin-collapse > .small-10 {
  width: 55.55556%;
}

.small-margin-collapse > .small-11 {
  width: 61.11111%;
}

.small-margin-collapse > .small-12 {
  width: 66.66667%;
}

.small-margin-collapse > .small-13 {
  width: 72.22222%;
}

.small-margin-collapse > .small-14 {
  width: 77.77778%;
}

.small-margin-collapse > .small-15 {
  width: 83.33333%;
}

.small-margin-collapse > .small-16 {
  width: 88.88889%;
}

.small-margin-collapse > .small-17 {
  width: 94.44444%;
}

.small-margin-collapse > .small-18 {
  width: 100%;
}

@media print, screen and (min-width: 40.063em) {
  .small-margin-collapse > .medium-1 {
    width: 5.55556%;
  }
  .small-margin-collapse > .medium-2 {
    width: 11.11111%;
  }
  .small-margin-collapse > .medium-3 {
    width: 16.66667%;
  }
  .small-margin-collapse > .medium-4 {
    width: 22.22222%;
  }
  .small-margin-collapse > .medium-5 {
    width: 27.77778%;
  }
  .small-margin-collapse > .medium-6 {
    width: 33.33333%;
  }
  .small-margin-collapse > .medium-7 {
    width: 38.88889%;
  }
  .small-margin-collapse > .medium-8 {
    width: 44.44444%;
  }
  .small-margin-collapse > .medium-9 {
    width: 50%;
  }
  .small-margin-collapse > .medium-10 {
    width: 55.55556%;
  }
  .small-margin-collapse > .medium-11 {
    width: 61.11111%;
  }
  .small-margin-collapse > .medium-12 {
    width: 66.66667%;
  }
  .small-margin-collapse > .medium-13 {
    width: 72.22222%;
  }
  .small-margin-collapse > .medium-14 {
    width: 77.77778%;
  }
  .small-margin-collapse > .medium-15 {
    width: 83.33333%;
  }
  .small-margin-collapse > .medium-16 {
    width: 88.88889%;
  }
  .small-margin-collapse > .medium-17 {
    width: 94.44444%;
  }
  .small-margin-collapse > .medium-18 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .small-margin-collapse > .large-1 {
    width: 5.55556%;
  }
  .small-margin-collapse > .large-2 {
    width: 11.11111%;
  }
  .small-margin-collapse > .large-3 {
    width: 16.66667%;
  }
  .small-margin-collapse > .large-4 {
    width: 22.22222%;
  }
  .small-margin-collapse > .large-5 {
    width: 27.77778%;
  }
  .small-margin-collapse > .large-6 {
    width: 33.33333%;
  }
  .small-margin-collapse > .large-7 {
    width: 38.88889%;
  }
  .small-margin-collapse > .large-8 {
    width: 44.44444%;
  }
  .small-margin-collapse > .large-9 {
    width: 50%;
  }
  .small-margin-collapse > .large-10 {
    width: 55.55556%;
  }
  .small-margin-collapse > .large-11 {
    width: 61.11111%;
  }
  .small-margin-collapse > .large-12 {
    width: 66.66667%;
  }
  .small-margin-collapse > .large-13 {
    width: 72.22222%;
  }
  .small-margin-collapse > .large-14 {
    width: 77.77778%;
  }
  .small-margin-collapse > .large-15 {
    width: 83.33333%;
  }
  .small-margin-collapse > .large-16 {
    width: 88.88889%;
  }
  .small-margin-collapse > .large-17 {
    width: 94.44444%;
  }
  .small-margin-collapse > .large-18 {
    width: 100%;
  }
}
.small-padding-collapse {
  margin-right: 0;
  margin-left: 0;
}

.small-padding-collapse > .cell {
  padding-right: 0;
  padding-left: 0;
}

@media print, screen and (min-width: 40.063em) {
  .medium-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 40.063em) {
  .medium-margin-collapse > .small-1 {
    width: 5.55556%;
  }
  .medium-margin-collapse > .small-2 {
    width: 11.11111%;
  }
  .medium-margin-collapse > .small-3 {
    width: 16.66667%;
  }
  .medium-margin-collapse > .small-4 {
    width: 22.22222%;
  }
  .medium-margin-collapse > .small-5 {
    width: 27.77778%;
  }
  .medium-margin-collapse > .small-6 {
    width: 33.33333%;
  }
  .medium-margin-collapse > .small-7 {
    width: 38.88889%;
  }
  .medium-margin-collapse > .small-8 {
    width: 44.44444%;
  }
  .medium-margin-collapse > .small-9 {
    width: 50%;
  }
  .medium-margin-collapse > .small-10 {
    width: 55.55556%;
  }
  .medium-margin-collapse > .small-11 {
    width: 61.11111%;
  }
  .medium-margin-collapse > .small-12 {
    width: 66.66667%;
  }
  .medium-margin-collapse > .small-13 {
    width: 72.22222%;
  }
  .medium-margin-collapse > .small-14 {
    width: 77.77778%;
  }
  .medium-margin-collapse > .small-15 {
    width: 83.33333%;
  }
  .medium-margin-collapse > .small-16 {
    width: 88.88889%;
  }
  .medium-margin-collapse > .small-17 {
    width: 94.44444%;
  }
  .medium-margin-collapse > .small-18 {
    width: 100%;
  }
}
@media print, screen and (min-width: 40.063em) {
  .medium-margin-collapse > .medium-1 {
    width: 5.55556%;
  }
  .medium-margin-collapse > .medium-2 {
    width: 11.11111%;
  }
  .medium-margin-collapse > .medium-3 {
    width: 16.66667%;
  }
  .medium-margin-collapse > .medium-4 {
    width: 22.22222%;
  }
  .medium-margin-collapse > .medium-5 {
    width: 27.77778%;
  }
  .medium-margin-collapse > .medium-6 {
    width: 33.33333%;
  }
  .medium-margin-collapse > .medium-7 {
    width: 38.88889%;
  }
  .medium-margin-collapse > .medium-8 {
    width: 44.44444%;
  }
  .medium-margin-collapse > .medium-9 {
    width: 50%;
  }
  .medium-margin-collapse > .medium-10 {
    width: 55.55556%;
  }
  .medium-margin-collapse > .medium-11 {
    width: 61.11111%;
  }
  .medium-margin-collapse > .medium-12 {
    width: 66.66667%;
  }
  .medium-margin-collapse > .medium-13 {
    width: 72.22222%;
  }
  .medium-margin-collapse > .medium-14 {
    width: 77.77778%;
  }
  .medium-margin-collapse > .medium-15 {
    width: 83.33333%;
  }
  .medium-margin-collapse > .medium-16 {
    width: 88.88889%;
  }
  .medium-margin-collapse > .medium-17 {
    width: 94.44444%;
  }
  .medium-margin-collapse > .medium-18 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .medium-margin-collapse > .large-1 {
    width: 5.55556%;
  }
  .medium-margin-collapse > .large-2 {
    width: 11.11111%;
  }
  .medium-margin-collapse > .large-3 {
    width: 16.66667%;
  }
  .medium-margin-collapse > .large-4 {
    width: 22.22222%;
  }
  .medium-margin-collapse > .large-5 {
    width: 27.77778%;
  }
  .medium-margin-collapse > .large-6 {
    width: 33.33333%;
  }
  .medium-margin-collapse > .large-7 {
    width: 38.88889%;
  }
  .medium-margin-collapse > .large-8 {
    width: 44.44444%;
  }
  .medium-margin-collapse > .large-9 {
    width: 50%;
  }
  .medium-margin-collapse > .large-10 {
    width: 55.55556%;
  }
  .medium-margin-collapse > .large-11 {
    width: 61.11111%;
  }
  .medium-margin-collapse > .large-12 {
    width: 66.66667%;
  }
  .medium-margin-collapse > .large-13 {
    width: 72.22222%;
  }
  .medium-margin-collapse > .large-14 {
    width: 77.77778%;
  }
  .medium-margin-collapse > .large-15 {
    width: 83.33333%;
  }
  .medium-margin-collapse > .large-16 {
    width: 88.88889%;
  }
  .medium-margin-collapse > .large-17 {
    width: 94.44444%;
  }
  .medium-margin-collapse > .large-18 {
    width: 100%;
  }
}
@media print, screen and (min-width: 40.063em) {
  .medium-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .small-1 {
    width: 5.55556%;
  }
  .large-margin-collapse > .small-2 {
    width: 11.11111%;
  }
  .large-margin-collapse > .small-3 {
    width: 16.66667%;
  }
  .large-margin-collapse > .small-4 {
    width: 22.22222%;
  }
  .large-margin-collapse > .small-5 {
    width: 27.77778%;
  }
  .large-margin-collapse > .small-6 {
    width: 33.33333%;
  }
  .large-margin-collapse > .small-7 {
    width: 38.88889%;
  }
  .large-margin-collapse > .small-8 {
    width: 44.44444%;
  }
  .large-margin-collapse > .small-9 {
    width: 50%;
  }
  .large-margin-collapse > .small-10 {
    width: 55.55556%;
  }
  .large-margin-collapse > .small-11 {
    width: 61.11111%;
  }
  .large-margin-collapse > .small-12 {
    width: 66.66667%;
  }
  .large-margin-collapse > .small-13 {
    width: 72.22222%;
  }
  .large-margin-collapse > .small-14 {
    width: 77.77778%;
  }
  .large-margin-collapse > .small-15 {
    width: 83.33333%;
  }
  .large-margin-collapse > .small-16 {
    width: 88.88889%;
  }
  .large-margin-collapse > .small-17 {
    width: 94.44444%;
  }
  .large-margin-collapse > .small-18 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .medium-1 {
    width: 5.55556%;
  }
  .large-margin-collapse > .medium-2 {
    width: 11.11111%;
  }
  .large-margin-collapse > .medium-3 {
    width: 16.66667%;
  }
  .large-margin-collapse > .medium-4 {
    width: 22.22222%;
  }
  .large-margin-collapse > .medium-5 {
    width: 27.77778%;
  }
  .large-margin-collapse > .medium-6 {
    width: 33.33333%;
  }
  .large-margin-collapse > .medium-7 {
    width: 38.88889%;
  }
  .large-margin-collapse > .medium-8 {
    width: 44.44444%;
  }
  .large-margin-collapse > .medium-9 {
    width: 50%;
  }
  .large-margin-collapse > .medium-10 {
    width: 55.55556%;
  }
  .large-margin-collapse > .medium-11 {
    width: 61.11111%;
  }
  .large-margin-collapse > .medium-12 {
    width: 66.66667%;
  }
  .large-margin-collapse > .medium-13 {
    width: 72.22222%;
  }
  .large-margin-collapse > .medium-14 {
    width: 77.77778%;
  }
  .large-margin-collapse > .medium-15 {
    width: 83.33333%;
  }
  .large-margin-collapse > .medium-16 {
    width: 88.88889%;
  }
  .large-margin-collapse > .medium-17 {
    width: 94.44444%;
  }
  .large-margin-collapse > .medium-18 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .large-1 {
    width: 5.55556%;
  }
  .large-margin-collapse > .large-2 {
    width: 11.11111%;
  }
  .large-margin-collapse > .large-3 {
    width: 16.66667%;
  }
  .large-margin-collapse > .large-4 {
    width: 22.22222%;
  }
  .large-margin-collapse > .large-5 {
    width: 27.77778%;
  }
  .large-margin-collapse > .large-6 {
    width: 33.33333%;
  }
  .large-margin-collapse > .large-7 {
    width: 38.88889%;
  }
  .large-margin-collapse > .large-8 {
    width: 44.44444%;
  }
  .large-margin-collapse > .large-9 {
    width: 50%;
  }
  .large-margin-collapse > .large-10 {
    width: 55.55556%;
  }
  .large-margin-collapse > .large-11 {
    width: 61.11111%;
  }
  .large-margin-collapse > .large-12 {
    width: 66.66667%;
  }
  .large-margin-collapse > .large-13 {
    width: 72.22222%;
  }
  .large-margin-collapse > .large-14 {
    width: 77.77778%;
  }
  .large-margin-collapse > .large-15 {
    width: 83.33333%;
  }
  .large-margin-collapse > .large-16 {
    width: 88.88889%;
  }
  .large-margin-collapse > .large-17 {
    width: 94.44444%;
  }
  .large-margin-collapse > .large-18 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}
.small-offset-0 {
  margin-left: 0%;
}

.grid-margin-x > .small-offset-0 {
  margin-left: calc(0% + 0.9375rem);
}

.small-offset-1 {
  margin-left: 5.55556%;
}

.grid-margin-x > .small-offset-1 {
  margin-left: calc(5.55556% + 0.9375rem);
}

.small-offset-2 {
  margin-left: 11.11111%;
}

.grid-margin-x > .small-offset-2 {
  margin-left: calc(11.11111% + 0.9375rem);
}

.small-offset-3 {
  margin-left: 16.66667%;
}

.grid-margin-x > .small-offset-3 {
  margin-left: calc(16.66667% + 0.9375rem);
}

.small-offset-4 {
  margin-left: 22.22222%;
}

.grid-margin-x > .small-offset-4 {
  margin-left: calc(22.22222% + 0.9375rem);
}

.small-offset-5 {
  margin-left: 27.77778%;
}

.grid-margin-x > .small-offset-5 {
  margin-left: calc(27.77778% + 0.9375rem);
}

.small-offset-6 {
  margin-left: 33.33333%;
}

.grid-margin-x > .small-offset-6 {
  margin-left: calc(33.33333% + 0.9375rem);
}

.small-offset-7 {
  margin-left: 38.88889%;
}

.grid-margin-x > .small-offset-7 {
  margin-left: calc(38.88889% + 0.9375rem);
}

.small-offset-8 {
  margin-left: 44.44444%;
}

.grid-margin-x > .small-offset-8 {
  margin-left: calc(44.44444% + 0.9375rem);
}

.small-offset-9 {
  margin-left: 50%;
}

.grid-margin-x > .small-offset-9 {
  margin-left: calc(50% + 0.9375rem);
}

.small-offset-10 {
  margin-left: 55.55556%;
}

.grid-margin-x > .small-offset-10 {
  margin-left: calc(55.55556% + 0.9375rem);
}

.small-offset-11 {
  margin-left: 61.11111%;
}

.grid-margin-x > .small-offset-11 {
  margin-left: calc(61.11111% + 0.9375rem);
}

.small-offset-12 {
  margin-left: 66.66667%;
}

.grid-margin-x > .small-offset-12 {
  margin-left: calc(66.66667% + 0.9375rem);
}

.small-offset-13 {
  margin-left: 72.22222%;
}

.grid-margin-x > .small-offset-13 {
  margin-left: calc(72.22222% + 0.9375rem);
}

.small-offset-14 {
  margin-left: 77.77778%;
}

.grid-margin-x > .small-offset-14 {
  margin-left: calc(77.77778% + 0.9375rem);
}

.small-offset-15 {
  margin-left: 83.33333%;
}

.grid-margin-x > .small-offset-15 {
  margin-left: calc(83.33333% + 0.9375rem);
}

.small-offset-16 {
  margin-left: 88.88889%;
}

.grid-margin-x > .small-offset-16 {
  margin-left: calc(88.88889% + 0.9375rem);
}

.small-offset-17 {
  margin-left: 94.44444%;
}

.grid-margin-x > .small-offset-17 {
  margin-left: calc(94.44444% + 0.9375rem);
}

@media print, screen and (min-width: 40.063em) {
  .medium-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .medium-offset-0 {
    margin-left: calc(0% + 0.9375rem);
  }
  .medium-offset-1 {
    margin-left: 5.55556%;
  }
  .grid-margin-x > .medium-offset-1 {
    margin-left: calc(5.55556% + 0.9375rem);
  }
  .medium-offset-2 {
    margin-left: 11.11111%;
  }
  .grid-margin-x > .medium-offset-2 {
    margin-left: calc(11.11111% + 0.9375rem);
  }
  .medium-offset-3 {
    margin-left: 16.66667%;
  }
  .grid-margin-x > .medium-offset-3 {
    margin-left: calc(16.66667% + 0.9375rem);
  }
  .medium-offset-4 {
    margin-left: 22.22222%;
  }
  .grid-margin-x > .medium-offset-4 {
    margin-left: calc(22.22222% + 0.9375rem);
  }
  .medium-offset-5 {
    margin-left: 27.77778%;
  }
  .grid-margin-x > .medium-offset-5 {
    margin-left: calc(27.77778% + 0.9375rem);
  }
  .medium-offset-6 {
    margin-left: 33.33333%;
  }
  .grid-margin-x > .medium-offset-6 {
    margin-left: calc(33.33333% + 0.9375rem);
  }
  .medium-offset-7 {
    margin-left: 38.88889%;
  }
  .grid-margin-x > .medium-offset-7 {
    margin-left: calc(38.88889% + 0.9375rem);
  }
  .medium-offset-8 {
    margin-left: 44.44444%;
  }
  .grid-margin-x > .medium-offset-8 {
    margin-left: calc(44.44444% + 0.9375rem);
  }
  .medium-offset-9 {
    margin-left: 50%;
  }
  .grid-margin-x > .medium-offset-9 {
    margin-left: calc(50% + 0.9375rem);
  }
  .medium-offset-10 {
    margin-left: 55.55556%;
  }
  .grid-margin-x > .medium-offset-10 {
    margin-left: calc(55.55556% + 0.9375rem);
  }
  .medium-offset-11 {
    margin-left: 61.11111%;
  }
  .grid-margin-x > .medium-offset-11 {
    margin-left: calc(61.11111% + 0.9375rem);
  }
  .medium-offset-12 {
    margin-left: 66.66667%;
  }
  .grid-margin-x > .medium-offset-12 {
    margin-left: calc(66.66667% + 0.9375rem);
  }
  .medium-offset-13 {
    margin-left: 72.22222%;
  }
  .grid-margin-x > .medium-offset-13 {
    margin-left: calc(72.22222% + 0.9375rem);
  }
  .medium-offset-14 {
    margin-left: 77.77778%;
  }
  .grid-margin-x > .medium-offset-14 {
    margin-left: calc(77.77778% + 0.9375rem);
  }
  .medium-offset-15 {
    margin-left: 83.33333%;
  }
  .grid-margin-x > .medium-offset-15 {
    margin-left: calc(83.33333% + 0.9375rem);
  }
  .medium-offset-16 {
    margin-left: 88.88889%;
  }
  .grid-margin-x > .medium-offset-16 {
    margin-left: calc(88.88889% + 0.9375rem);
  }
  .medium-offset-17 {
    margin-left: 94.44444%;
  }
  .grid-margin-x > .medium-offset-17 {
    margin-left: calc(94.44444% + 0.9375rem);
  }
}
@media print, screen and (min-width: 64em) {
  .large-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .large-offset-0 {
    margin-left: calc(0% + 0.9375rem);
  }
  .large-offset-1 {
    margin-left: 5.55556%;
  }
  .grid-margin-x > .large-offset-1 {
    margin-left: calc(5.55556% + 0.9375rem);
  }
  .large-offset-2 {
    margin-left: 11.11111%;
  }
  .grid-margin-x > .large-offset-2 {
    margin-left: calc(11.11111% + 0.9375rem);
  }
  .large-offset-3 {
    margin-left: 16.66667%;
  }
  .grid-margin-x > .large-offset-3 {
    margin-left: calc(16.66667% + 0.9375rem);
  }
  .large-offset-4 {
    margin-left: 22.22222%;
  }
  .grid-margin-x > .large-offset-4 {
    margin-left: calc(22.22222% + 0.9375rem);
  }
  .large-offset-5 {
    margin-left: 27.77778%;
  }
  .grid-margin-x > .large-offset-5 {
    margin-left: calc(27.77778% + 0.9375rem);
  }
  .large-offset-6 {
    margin-left: 33.33333%;
  }
  .grid-margin-x > .large-offset-6 {
    margin-left: calc(33.33333% + 0.9375rem);
  }
  .large-offset-7 {
    margin-left: 38.88889%;
  }
  .grid-margin-x > .large-offset-7 {
    margin-left: calc(38.88889% + 0.9375rem);
  }
  .large-offset-8 {
    margin-left: 44.44444%;
  }
  .grid-margin-x > .large-offset-8 {
    margin-left: calc(44.44444% + 0.9375rem);
  }
  .large-offset-9 {
    margin-left: 50%;
  }
  .grid-margin-x > .large-offset-9 {
    margin-left: calc(50% + 0.9375rem);
  }
  .large-offset-10 {
    margin-left: 55.55556%;
  }
  .grid-margin-x > .large-offset-10 {
    margin-left: calc(55.55556% + 0.9375rem);
  }
  .large-offset-11 {
    margin-left: 61.11111%;
  }
  .grid-margin-x > .large-offset-11 {
    margin-left: calc(61.11111% + 0.9375rem);
  }
  .large-offset-12 {
    margin-left: 66.66667%;
  }
  .grid-margin-x > .large-offset-12 {
    margin-left: calc(66.66667% + 0.9375rem);
  }
  .large-offset-13 {
    margin-left: 72.22222%;
  }
  .grid-margin-x > .large-offset-13 {
    margin-left: calc(72.22222% + 0.9375rem);
  }
  .large-offset-14 {
    margin-left: 77.77778%;
  }
  .grid-margin-x > .large-offset-14 {
    margin-left: calc(77.77778% + 0.9375rem);
  }
  .large-offset-15 {
    margin-left: 83.33333%;
  }
  .grid-margin-x > .large-offset-15 {
    margin-left: calc(83.33333% + 0.9375rem);
  }
  .large-offset-16 {
    margin-left: 88.88889%;
  }
  .grid-margin-x > .large-offset-16 {
    margin-left: calc(88.88889% + 0.9375rem);
  }
  .large-offset-17 {
    margin-left: 94.44444%;
  }
  .grid-margin-x > .large-offset-17 {
    margin-left: calc(94.44444% + 0.9375rem);
  }
}
.grid-y {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
}

.grid-y > .cell {
  width: auto;
}

.grid-y > .auto {
  height: auto;
}

.grid-y > .shrink {
  height: auto;
}

.grid-y > .small-shrink,
.grid-y > .small-full,
.grid-y > .small-1,
.grid-y > .small-2,
.grid-y > .small-3,
.grid-y > .small-4,
.grid-y > .small-5,
.grid-y > .small-6,
.grid-y > .small-7,
.grid-y > .small-8,
.grid-y > .small-9,
.grid-y > .small-10,
.grid-y > .small-11,
.grid-y > .small-12,
.grid-y > .small-13,
.grid-y > .small-14,
.grid-y > .small-15,
.grid-y > .small-16,
.grid-y > .small-17,
.grid-y > .small-18 {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

@media print, screen and (min-width: 40.063em) {
  .grid-y > .medium-shrink,
  .grid-y > .medium-full,
  .grid-y > .medium-1,
  .grid-y > .medium-2,
  .grid-y > .medium-3,
  .grid-y > .medium-4,
  .grid-y > .medium-5,
  .grid-y > .medium-6,
  .grid-y > .medium-7,
  .grid-y > .medium-8,
  .grid-y > .medium-9,
  .grid-y > .medium-10,
  .grid-y > .medium-11,
  .grid-y > .medium-12,
  .grid-y > .medium-13,
  .grid-y > .medium-14,
  .grid-y > .medium-15,
  .grid-y > .medium-16,
  .grid-y > .medium-17,
  .grid-y > .medium-18 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y > .large-shrink,
  .grid-y > .large-full,
  .grid-y > .large-1,
  .grid-y > .large-2,
  .grid-y > .large-3,
  .grid-y > .large-4,
  .grid-y > .large-5,
  .grid-y > .large-6,
  .grid-y > .large-7,
  .grid-y > .large-8,
  .grid-y > .large-9,
  .grid-y > .large-10,
  .grid-y > .large-11,
  .grid-y > .large-12,
  .grid-y > .large-13,
  .grid-y > .large-14,
  .grid-y > .large-15,
  .grid-y > .large-16,
  .grid-y > .large-17,
  .grid-y > .large-18 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
.grid-y > .small-1 {
  height: 5.55556%;
}

.grid-y > .small-2 {
  height: 11.11111%;
}

.grid-y > .small-3 {
  height: 16.66667%;
}

.grid-y > .small-4 {
  height: 22.22222%;
}

.grid-y > .small-5 {
  height: 27.77778%;
}

.grid-y > .small-6 {
  height: 33.33333%;
}

.grid-y > .small-7 {
  height: 38.88889%;
}

.grid-y > .small-8 {
  height: 44.44444%;
}

.grid-y > .small-9 {
  height: 50%;
}

.grid-y > .small-10 {
  height: 55.55556%;
}

.grid-y > .small-11 {
  height: 61.11111%;
}

.grid-y > .small-12 {
  height: 66.66667%;
}

.grid-y > .small-13 {
  height: 72.22222%;
}

.grid-y > .small-14 {
  height: 77.77778%;
}

.grid-y > .small-15 {
  height: 83.33333%;
}

.grid-y > .small-16 {
  height: 88.88889%;
}

.grid-y > .small-17 {
  height: 94.44444%;
}

.grid-y > .small-18 {
  height: 100%;
}

@media print, screen and (min-width: 40.063em) {
  .grid-y > .medium-auto {
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .medium-shrink {
    height: auto;
  }
  .grid-y > .medium-1 {
    height: 5.55556%;
  }
  .grid-y > .medium-2 {
    height: 11.11111%;
  }
  .grid-y > .medium-3 {
    height: 16.66667%;
  }
  .grid-y > .medium-4 {
    height: 22.22222%;
  }
  .grid-y > .medium-5 {
    height: 27.77778%;
  }
  .grid-y > .medium-6 {
    height: 33.33333%;
  }
  .grid-y > .medium-7 {
    height: 38.88889%;
  }
  .grid-y > .medium-8 {
    height: 44.44444%;
  }
  .grid-y > .medium-9 {
    height: 50%;
  }
  .grid-y > .medium-10 {
    height: 55.55556%;
  }
  .grid-y > .medium-11 {
    height: 61.11111%;
  }
  .grid-y > .medium-12 {
    height: 66.66667%;
  }
  .grid-y > .medium-13 {
    height: 72.22222%;
  }
  .grid-y > .medium-14 {
    height: 77.77778%;
  }
  .grid-y > .medium-15 {
    height: 83.33333%;
  }
  .grid-y > .medium-16 {
    height: 88.88889%;
  }
  .grid-y > .medium-17 {
    height: 94.44444%;
  }
  .grid-y > .medium-18 {
    height: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y > .large-auto {
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .large-shrink {
    height: auto;
  }
  .grid-y > .large-1 {
    height: 5.55556%;
  }
  .grid-y > .large-2 {
    height: 11.11111%;
  }
  .grid-y > .large-3 {
    height: 16.66667%;
  }
  .grid-y > .large-4 {
    height: 22.22222%;
  }
  .grid-y > .large-5 {
    height: 27.77778%;
  }
  .grid-y > .large-6 {
    height: 33.33333%;
  }
  .grid-y > .large-7 {
    height: 38.88889%;
  }
  .grid-y > .large-8 {
    height: 44.44444%;
  }
  .grid-y > .large-9 {
    height: 50%;
  }
  .grid-y > .large-10 {
    height: 55.55556%;
  }
  .grid-y > .large-11 {
    height: 61.11111%;
  }
  .grid-y > .large-12 {
    height: 66.66667%;
  }
  .grid-y > .large-13 {
    height: 72.22222%;
  }
  .grid-y > .large-14 {
    height: 77.77778%;
  }
  .grid-y > .large-15 {
    height: 83.33333%;
  }
  .grid-y > .large-16 {
    height: 88.88889%;
  }
  .grid-y > .large-17 {
    height: 94.44444%;
  }
  .grid-y > .large-18 {
    height: 100%;
  }
}
.grid-padding-y .grid-padding-y {
  margin-top: -0.9375rem;
  margin-bottom: -0.9375rem;
}

.grid-padding-y > .cell {
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
}

.grid-margin-y {
  margin-top: -0.9375rem;
  margin-bottom: -0.9375rem;
}

.grid-margin-y > .cell {
  height: calc(100% - 1.875rem);
  margin-top: 0.9375rem;
  margin-bottom: 0.9375rem;
}

.grid-margin-y > .auto {
  height: auto;
}

.grid-margin-y > .shrink {
  height: auto;
}

.grid-margin-y > .small-1 {
  height: calc(5.55556% - 1.875rem);
}

.grid-margin-y > .small-2 {
  height: calc(11.11111% - 1.875rem);
}

.grid-margin-y > .small-3 {
  height: calc(16.66667% - 1.875rem);
}

.grid-margin-y > .small-4 {
  height: calc(22.22222% - 1.875rem);
}

.grid-margin-y > .small-5 {
  height: calc(27.77778% - 1.875rem);
}

.grid-margin-y > .small-6 {
  height: calc(33.33333% - 1.875rem);
}

.grid-margin-y > .small-7 {
  height: calc(38.88889% - 1.875rem);
}

.grid-margin-y > .small-8 {
  height: calc(44.44444% - 1.875rem);
}

.grid-margin-y > .small-9 {
  height: calc(50% - 1.875rem);
}

.grid-margin-y > .small-10 {
  height: calc(55.55556% - 1.875rem);
}

.grid-margin-y > .small-11 {
  height: calc(61.11111% - 1.875rem);
}

.grid-margin-y > .small-12 {
  height: calc(66.66667% - 1.875rem);
}

.grid-margin-y > .small-13 {
  height: calc(72.22222% - 1.875rem);
}

.grid-margin-y > .small-14 {
  height: calc(77.77778% - 1.875rem);
}

.grid-margin-y > .small-15 {
  height: calc(83.33333% - 1.875rem);
}

.grid-margin-y > .small-16 {
  height: calc(88.88889% - 1.875rem);
}

.grid-margin-y > .small-17 {
  height: calc(94.44444% - 1.875rem);
}

.grid-margin-y > .small-18 {
  height: calc(100% - 1.875rem);
}

@media print, screen and (min-width: 40.063em) {
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(5.55556% - 1.875rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(11.11111% - 1.875rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(16.66667% - 1.875rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(22.22222% - 1.875rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(27.77778% - 1.875rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(33.33333% - 1.875rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(38.88889% - 1.875rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(44.44444% - 1.875rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(55.55556% - 1.875rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(61.11111% - 1.875rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(66.66667% - 1.875rem);
  }
  .grid-margin-y > .medium-13 {
    height: calc(72.22222% - 1.875rem);
  }
  .grid-margin-y > .medium-14 {
    height: calc(77.77778% - 1.875rem);
  }
  .grid-margin-y > .medium-15 {
    height: calc(83.33333% - 1.875rem);
  }
  .grid-margin-y > .medium-16 {
    height: calc(88.88889% - 1.875rem);
  }
  .grid-margin-y > .medium-17 {
    height: calc(94.44444% - 1.875rem);
  }
  .grid-margin-y > .medium-18 {
    height: calc(100% - 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(5.55556% - 1.875rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(11.11111% - 1.875rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(16.66667% - 1.875rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(22.22222% - 1.875rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(27.77778% - 1.875rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(33.33333% - 1.875rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(38.88889% - 1.875rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(44.44444% - 1.875rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(55.55556% - 1.875rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(61.11111% - 1.875rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(66.66667% - 1.875rem);
  }
  .grid-margin-y > .large-13 {
    height: calc(72.22222% - 1.875rem);
  }
  .grid-margin-y > .large-14 {
    height: calc(77.77778% - 1.875rem);
  }
  .grid-margin-y > .large-15 {
    height: calc(83.33333% - 1.875rem);
  }
  .grid-margin-y > .large-16 {
    height: calc(88.88889% - 1.875rem);
  }
  .grid-margin-y > .large-17 {
    height: calc(94.44444% - 1.875rem);
  }
  .grid-margin-y > .large-18 {
    height: calc(100% - 1.875rem);
  }
}
.grid-frame {
  overflow: hidden;
  position: relative;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100vw;
}

.cell .grid-frame {
  width: 100%;
}

.cell-block {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-stype: -ms-autohiding-scrollbar;
}

.cell-block-y {
  overflow-y: auto;
  max-height: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-stype: -ms-autohiding-scrollbar;
}

.cell-block-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  max-height: 100%;
}

.cell-block-container > .grid-x {
  max-height: 100%;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media print, screen and (min-width: 40.063em) {
  .medium-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100vw;
  }
  .cell .medium-grid-frame {
    width: 100%;
  }
  .medium-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
  .medium-cell-block-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 100%;
  }
  .medium-cell-block-container > .grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .medium-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
}
@media print, screen and (min-width: 64em) {
  .large-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100vw;
  }
  .cell .large-grid-frame {
    width: 100%;
  }
  .large-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
  .large-cell-block-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 100%;
  }
  .large-cell-block-container > .grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .large-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
}
.grid-y.grid-frame {
  width: auto;
  overflow: hidden;
  position: relative;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: 100vh;
}

@media print, screen and (min-width: 40.063em) {
  .grid-y.medium-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100vh;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y.large-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100vh;
  }
}
.cell .grid-y.grid-frame {
  height: 100%;
}

@media print, screen and (min-width: 40.063em) {
  .cell .grid-y.medium-grid-frame {
    height: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .cell .grid-y.large-grid-frame {
    height: 100%;
  }
}
.grid-margin-y {
  margin-top: -0.9375rem;
  margin-bottom: -0.9375rem;
}

.grid-margin-y > .cell {
  height: calc(100% - 1.875rem);
  margin-top: 0.9375rem;
  margin-bottom: 0.9375rem;
}

.grid-margin-y > .auto {
  height: auto;
}

.grid-margin-y > .shrink {
  height: auto;
}

.grid-margin-y > .small-1 {
  height: calc(5.55556% - 1.875rem);
}

.grid-margin-y > .small-2 {
  height: calc(11.11111% - 1.875rem);
}

.grid-margin-y > .small-3 {
  height: calc(16.66667% - 1.875rem);
}

.grid-margin-y > .small-4 {
  height: calc(22.22222% - 1.875rem);
}

.grid-margin-y > .small-5 {
  height: calc(27.77778% - 1.875rem);
}

.grid-margin-y > .small-6 {
  height: calc(33.33333% - 1.875rem);
}

.grid-margin-y > .small-7 {
  height: calc(38.88889% - 1.875rem);
}

.grid-margin-y > .small-8 {
  height: calc(44.44444% - 1.875rem);
}

.grid-margin-y > .small-9 {
  height: calc(50% - 1.875rem);
}

.grid-margin-y > .small-10 {
  height: calc(55.55556% - 1.875rem);
}

.grid-margin-y > .small-11 {
  height: calc(61.11111% - 1.875rem);
}

.grid-margin-y > .small-12 {
  height: calc(66.66667% - 1.875rem);
}

.grid-margin-y > .small-13 {
  height: calc(72.22222% - 1.875rem);
}

.grid-margin-y > .small-14 {
  height: calc(77.77778% - 1.875rem);
}

.grid-margin-y > .small-15 {
  height: calc(83.33333% - 1.875rem);
}

.grid-margin-y > .small-16 {
  height: calc(88.88889% - 1.875rem);
}

.grid-margin-y > .small-17 {
  height: calc(94.44444% - 1.875rem);
}

.grid-margin-y > .small-18 {
  height: calc(100% - 1.875rem);
}

@media print, screen and (min-width: 40.063em) {
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(5.55556% - 1.875rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(11.11111% - 1.875rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(16.66667% - 1.875rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(22.22222% - 1.875rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(27.77778% - 1.875rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(33.33333% - 1.875rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(38.88889% - 1.875rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(44.44444% - 1.875rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(55.55556% - 1.875rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(61.11111% - 1.875rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(66.66667% - 1.875rem);
  }
  .grid-margin-y > .medium-13 {
    height: calc(72.22222% - 1.875rem);
  }
  .grid-margin-y > .medium-14 {
    height: calc(77.77778% - 1.875rem);
  }
  .grid-margin-y > .medium-15 {
    height: calc(83.33333% - 1.875rem);
  }
  .grid-margin-y > .medium-16 {
    height: calc(88.88889% - 1.875rem);
  }
  .grid-margin-y > .medium-17 {
    height: calc(94.44444% - 1.875rem);
  }
  .grid-margin-y > .medium-18 {
    height: calc(100% - 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(5.55556% - 1.875rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(11.11111% - 1.875rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(16.66667% - 1.875rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(22.22222% - 1.875rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(27.77778% - 1.875rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(33.33333% - 1.875rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(38.88889% - 1.875rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(44.44444% - 1.875rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(55.55556% - 1.875rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(61.11111% - 1.875rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(66.66667% - 1.875rem);
  }
  .grid-margin-y > .large-13 {
    height: calc(72.22222% - 1.875rem);
  }
  .grid-margin-y > .large-14 {
    height: calc(77.77778% - 1.875rem);
  }
  .grid-margin-y > .large-15 {
    height: calc(83.33333% - 1.875rem);
  }
  .grid-margin-y > .large-16 {
    height: calc(88.88889% - 1.875rem);
  }
  .grid-margin-y > .large-17 {
    height: calc(94.44444% - 1.875rem);
  }
  .grid-margin-y > .large-18 {
    height: calc(100% - 1.875rem);
  }
}
.grid-frame.grid-margin-y {
  height: calc(100vh + 1.875rem);
}

@media print, screen and (min-width: 40.063em) {
  .grid-margin-y.medium-grid-frame {
    height: calc(100vh + 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y.large-grid-frame {
    height: calc(100vh + 1.875rem);
  }
}
/* =============================================
     ALIGNMENT
  ================================================ */
.align-right {
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.align-center {
  -ms-flex-pack: center;
  justify-content: center;
}

.align-justify {
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.align-spaced {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.align-right.vertical.menu > li > a {
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.align-center.vertical.menu > li > a {
  -ms-flex-pack: center;
  justify-content: center;
}

.align-top {
  -ms-flex-align: start;
  align-items: flex-start;
}

.align-self-top {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.align-bottom {
  -ms-flex-align: end;
  align-items: flex-end;
}

.align-self-bottom {
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.align-middle {
  -ms-flex-align: center;
  align-items: center;
}

.align-self-middle {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.align-stretch {
  -ms-flex-align: stretch;
  align-items: stretch;
}

.align-self-stretch {
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

.align-center-middle {
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

.small-order-1 {
  -ms-flex-order: 1;
  order: 1;
}

.small-order-2 {
  -ms-flex-order: 2;
  order: 2;
}

.small-order-3 {
  -ms-flex-order: 3;
  order: 3;
}

.small-order-4 {
  -ms-flex-order: 4;
  order: 4;
}

.small-order-5 {
  -ms-flex-order: 5;
  order: 5;
}

.small-order-6 {
  -ms-flex-order: 6;
  order: 6;
}

@media print, screen and (min-width: 40.063em) {
  .medium-order-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .medium-order-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .medium-order-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .medium-order-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .medium-order-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .medium-order-6 {
    -ms-flex-order: 6;
    order: 6;
  }
}
@media print, screen and (min-width: 64em) {
  .large-order-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .large-order-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .large-order-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .large-order-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .large-order-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .large-order-6 {
    -ms-flex-order: 6;
    order: 6;
  }
}
.flex-container {
  display: -ms-flexbox;
  display: flex;
}

.flex-child-auto {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.flex-child-grow {
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.flex-child-shrink {
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.flex-dir-row {
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-dir-row-reverse {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-dir-column {
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-dir-column-reverse {
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

@media print, screen and (min-width: 40.063em) {
  .medium-flex-container {
    display: -ms-flexbox;
    display: flex;
  }
  .medium-flex-child-auto {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .medium-flex-child-grow {
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
  .medium-flex-child-shrink {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
  .medium-flex-dir-row {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .medium-flex-dir-row-reverse {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .medium-flex-dir-column {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .medium-flex-dir-column-reverse {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media print, screen and (min-width: 64em) {
  .large-flex-container {
    display: -ms-flexbox;
    display: flex;
  }
  .large-flex-child-auto {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .large-flex-child-grow {
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
  .large-flex-child-shrink {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
  .large-flex-dir-row {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .large-flex-dir-row-reverse {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .large-flex-dir-column {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .large-flex-dir-column-reverse {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
/* =============================================
   COLUMNS > NEWSPAPER STYLE
================================================ */
.columns-list {
  -webkit-columns: 2 150px;
  -moz-columns: 2 150px;
  columns: 2 150px;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  text-align: justify;
}

@media (max-width: 1024px) {
  .columns-list {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
}
@media (max-width: 640px) {
  .columns-list {
    -webkit-column-count: 1; /* Chrome, Safari, Opera */
    -moz-column-count: 1; /* Firefox */
    column-count: 1;
    -webkit-column-gap: 0rem;
    -moz-column-gap: 0rem;
    column-gap: 0rem;
  }
}
/* =============================================
   COLUMNS
================================================ */
/* =============================================
   FULLSCREEN IMAGE
================================================ */
#bg {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: 0 !important;
  overflow: hidden;
}

#bg img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  min-width: 50%;
  min-height: 50%;
}

/* ==========================================================================
   WOW ANIMATE ELEMENTS ON VIEWPORT ENTRY
	 class="wow slideInRight" data-wow-delay="0s" data-wow-duration="1s"
============================================================================= */
.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    visibility: visible;
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    visibility: visible;
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    visibility: visible;
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    visibility: visible;
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    visibility: visible;
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    visibility: visible;
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
    visibility: visible;
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(5%);
    transform: translateY(5%);
    visibility: visible;
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
}

/* =============================================
   VISIBILITY
================================================ */
.invisible {
  visibility: hidden;
}

@media screen and (max-width: 640px) {
  .hide-for-small-only {
    display: none !important;
  }
}
@media screen and (max-width: 0em), screen and (min-width: 40.063em) {
  .show-for-small-only {
    display: none !important;
  }
}
@media screen and (min-width: 40.063em) {
  .hide-for-medium {
    display: none !important;
  }
}
@media screen and (max-width: 39.9375em) {
  .show-for-medium {
    display: none !important;
  }
}
@media screen and (min-width: 40.063em) and (max-width: 63.9375em) {
  .hide-for-medium-only {
    display: none !important;
  }
}
@media screen and (max-width: 39.9375em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important;
  }
}
@media screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important;
  }
}
@media screen and (max-width: 63.9375em) {
  .show-for-large {
    display: none !important;
  }
}
@media screen and (min-width: 64em) and (max-width: 74.9375em) {
  .hide-for-large-only {
    display: none !important;
  }
}
@media screen and (max-width: 63.9375em), screen and (min-width: 75em) {
  .show-for-large-only {
    display: none !important;
  }
}
/* =============================================
   ORIENTATION
================================================ */
.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}

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

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