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

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

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

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

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* IMAGE LIGHTBOX SELECTOR */
#imagelightbox {
  cursor: pointer;
  position: fixed;
  z-index: 10000;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-box-shadow: 0 0 3.125em rgba(0, 0, 0, 0.75);
  /* 50 */
  box-shadow: 0 0 3.125em rgba(0, 0, 0, 0.75);
  /* 50 */
}

/* ACTIVITY INDICATION */
#imagelightbox-loading,
#imagelightbox-loading div {
  border-radius: 50%;
}

#imagelightbox-loading {
  width: 2.5em;
  /* 40 */
  height: 2.5em;
  /* 40 */
  background-color: #444;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 10003;
  top: 50%;
  left: 50%;
  padding: 0.625em;
  /* 10 */
  margin: -1.25em 0 0 -1.25em;
  /* 20 */
  -webkit-box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.75);
  /* 40 */
  box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.75);
  /* 40 */
}

#imagelightbox-loading div {
  width: 1.25em;
  /* 20 */
  height: 1.25em;
  /* 20 */
  background-color: #fff;
  -webkit-animation: imagelightbox-loading .5s ease infinite;
  animation: imagelightbox-loading .5s ease infinite;
}

@-webkit-keyframes imagelightbox-loading {
  from {
    opacity: .5;
    -webkit-transform: scale(0.75);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
  to {
    opacity: .5;
    -webkit-transform: scale(0.75);
  }
}
@keyframes imagelightbox-loading {
  from {
    opacity: .5;
    transform: scale(0.75);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: .5;
    transform: scale(0.75);
  }
}
/* OVERLAY */
#imagelightbox-overlay {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* "CLOSE" BUTTON */
#imagelightbox-close {
  width: 2.5em;
  /* 40 */
  height: 2.5em;
  /* 40 */
  text-align: left;
  background-color: #666;
  border-radius: 50%;
  position: fixed;
  z-index: 10002;
  top: 2.5em;
  /* 40 */
  right: 2.5em;
  /* 40 */
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
}

#imagelightbox-close:hover,
#imagelightbox-close:focus {
  background-color: #111;
}

#imagelightbox-close:before,
#imagelightbox-close:after {
  width: 2px;
  background-color: #fff;
  content: '';
  position: absolute;
  top: 20%;
  bottom: 20%;
  left: 50%;
  margin-left: -1px;
}

#imagelightbox-close:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#imagelightbox-close:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* CAPTION */
#imagelightbox-caption {
  text-align: center;
  color: #fff;
  background-color: #666;
  position: fixed;
  z-index: 10001;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.625em;
  /* 10 */
}

/* NAVIGATION */
#imagelightbox-nav {
  background-color: #444;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  position: fixed;
  z-index: 10001;
  left: 50%;
  bottom: 3.75em;
  /* 60 */
  padding: 0.313em;
  /* 5 */
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#imagelightbox-nav button {
  width: 1em;
  /* 20 */
  height: 1em;
  /* 20 */
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline-block;
  margin: 0 0.313em;
  /* 5 */
}

#imagelightbox-nav button.active {
  background-color: #fff;
}

/* ARROWS */
.imagelightbox-arrow {
  width: 3.75em;
  /* 60 */
  height: 7.5em;
  /* 120 */
  background-color: #444;
  background-color: rgba(0, 0, 0, 0.5);
  vertical-align: middle;
  display: none;
  position: fixed;
  z-index: 10001;
  top: 50%;
  margin-top: -3.75em;
  /* 60 */
}

.imagelightbox-arrow:hover,
.imagelightbox-arrow:focus {
  background-color: #666;
  background-color: rgba(0, 0, 0, 0.75);
}

.imagelightbox-arrow:active {
  background-color: #111;
}

.imagelightbox-arrow-left {
  left: 2.5em;
  /* 40 */
}

.imagelightbox-arrow-right {
  right: 2.5em;
  /* 40 */
}

.imagelightbox-arrow:before {
  width: 0;
  height: 0;
  border: 1em solid transparent;
  content: '';
  display: inline-block;
  margin-bottom: -0.125em;
  /* 2 */
}

.imagelightbox-arrow-left:before {
  border-left: none;
  border-right-color: #fff;
  margin-left: -0.313em;
  /* 5 */
}

.imagelightbox-arrow-right:before {
  border-right: none;
  border-left-color: #fff;
  margin-right: -0.313em;
  /* 5 */
}

#imagelightbox-loading,
#imagelightbox-overlay,
#imagelightbox-close,
#imagelightbox-caption,
#imagelightbox-nav,
.imagelightbox-arrow {
  -webkit-animation: fade-in .25s linear;
  animation: fade-in .25s linear;
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media only screen and (max-width: 41.25em) {
  #container {
    width: 100%;
  }

  #imagelightbox-close {
    top: 1.25em;
    /* 20 */
    right: 1.25em;
    /* 20 */
  }

  #imagelightbox-nav {
    bottom: 1.25em;
    /* 20 */
  }

  .imagelightbox-arrow {
    width: 2.5em;
    /* 40 */
    height: 3.75em;
    /* 60 */
    margin-top: -2.75em;
    /* 30 */
  }

  .imagelightbox-arrow-left {
    left: 1.25em;
    /* 20 */
  }

  .imagelightbox-arrow-right {
    right: 1.25em;
    /* 20 */
  }
}
@media only screen and (max-width: 20em) {
  .imagelightbox-arrow-left {
    left: 0;
  }

  .imagelightbox-arrow-right {
    right: 0;
  }
}
@font-face {
  font-family: Gotham-Book;
  src: url("../fonts/Gotham-Book.eot");
  src: url("../fonts/Gotham-Book.eot?#iefix") format("embedded-opentype"), url("../fonts/Gotham-Book.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: Gotham-Medium;
  src: url("../fonts/Gotham-Medium.eot");
  src: url("../fonts/Gotham-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Gotham-Medium.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
html, body {
  height: 100%;
  background: #fff;
  font-size: 0.825em;
  color: #000;
  padding: 0;
  margin: 0;
  font-family: "Gotham-Book", "Trebuchet MS", Arial, sans-serif;
}

a, button {
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
a:hover, button:hover {
  text-decoration: none;
}
a:focus, button:focus {
  outline-offset: 0;
}

.strong {
  font-weight: 700;
}

h2 {
  text-transform: uppercase;
  margin: 20px 0;
  font-size: 1.5em;
  color: #939393;
}
h2 a {
  color: #939393;
}
h2 .mainTitle {
  color: #343434;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

label {
  font-weight: normal;
}

.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn.focus, .btn:focus, .btn:hover {
  color: #333;
  text-decoration: none;
}

.btn.active, .btn:active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.65;
}

a.btn.disabled, fieldset[disabled] a.btn {
  pointer-events: none;
}

.btn-default {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

@-ms-viewport {
  width: device-width;
}
html.noJS #home .slides {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.main {
  max-width: 1140px;
  height: 100%;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.container {
  position: relative;
  width: 100%;
}

@media screen and (min-width: 1025px) {
  .container {
    width: 1025px;
  }
}
header {
  z-index: 100;
  position: relative;
  height: 4.25em;
}
header #logo h1 {
  margin: 0;
  padding: 0;
}
header #logo a {
  position: absolute;
  display: block;
  width: 120px;
  height: 29px;
  top: 10px;
  left: 10px;
  background: url("../images/hsiarch-logo.svg") no-repeat;
  background-image: url("../images/hsiarch-logo.png"), none;
  background-size: 100% 100%;
  font-size: 0;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  header #logo a {
    background-image: url("../images/hsiarch-logo@3x.png");
  }
}
.content {
  height: auto;
  padding: 0 10px;
}

#home .slick-list {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
#home .slick-slider {
  height: 100%;
}
#home .slick-slider .slick-track {
  width: 100%;
  height: 100%;
}
#home .slides {
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100%;
  position: relative;
}
#home .slides .slideContent {
  max-width: 1140px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
#home .slides .slideTitle {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: absolute;
  top: 90%;
  left: 30px;
  width: auto;
  background-color: #fff;
  color: #939393;
  text-transform: uppercase;
  padding: 5px 7px 2px;
  font-size: 80%;
}
#home .slides .slideTitle a {
  color: #939393;
}
#home .slides .slideTitle a .slideTitleName {
  color: #343434;
  font-family: "Gotham-Medium", "Trebuchet MS", Arial, sans-serif;
}

.hsiarch-landing-slider {
  opacity: 0;
}
.hsiarch-landing-slider .slick-list {
  padding: 0 !important;
}
.hsiarch-landing-slider .slick-slide {
  margin: 0;
  background-color: #000;
}
.hsiarch-landing-slider .centerSlickSlide {
  transition: all 500ms ease;
  opacity: 0.2;
}
.hsiarch-landing-slider .centerSlickSlide a {
  display: block;
}
.hsiarch-landing-slider .slick-center .centerSlickSlide {
  opacity: 1;
}

.singleSlide .centerSlickSlide {
  opacity: 1;
}

.hsiarch-landing-slider.slick-initialized, .hsiarch-landing-slider.singleSlide {
  opacity: 1;
}

.singleSlide .centerSlickSlide {
  text-align: center;
}

.slick-button {
  position: absolute;
  font-family: "Gotham-Book", "Trebuchet MS", Arial, sans-serif;
  z-index: 3;
  width: 37px;
  height: 37px;
  background: #343434;
  color: #fff;
  border: none;
  opacity: 0.6;
  padding: 0;
  margin: 0;
  padding: 0;
}

#home .slick-button {
  background: #fff;
  color: #343434;
}

.slick-next {
  right: 10px;
  top: 49%;
}

.slick-prev {
  left: 10px;
  top: 49%;
}

.siteOverlay {
  background-color: rgba(255, 255, 255, 0.6);
  top: 0;
  bottom: 0;
  left: 0;
  right: 100%;
  position: fixed;
  z-index: 99;
  -webkit-transition: right 0.8s ease;
  -moz-transition: right 0.8s ease;
  -ms-transition: right 0.8s ease;
  -o-transition: right 0.8s ease;
  transition: right 0.8s ease;
}

.siteOverlayActive {
  right: -100%;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.currentImage {
  position: fixed;
  width: calc(675px/2.10);
  height: calc(886px/2.10);
  top: calc(50% - 588px/2);
  left: calc(50% - 450px/2);
  display: none;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 100;
  background-size: cover;
}

.activeCurrentImage {
  display: block;
}

.menu-btn {
  position: absolute;
  top: 7px;
  right: 4px;
  z-index: 17;
  font-size: 1.9em;
  display: block;
}
.menu-btn a {
  color: #343434;
  text-shadow: 1px 1px 1px #ddd;
  font-weight: bold;
  padding: 2px 10px;
}
.menu-btn #closeMenu {
  display: none;
}
.menu-btn.mainNavBtnActive #openMenu {
  display: none;
}
.menu-btn.mainNavBtnActive #closeMenu {
  display: block;
  color: #fff;
  text-shadow: none;
}

.mainNavigation {
  position: fixed;
  z-index: 8;
  background-color: rgba(80, 80, 80, 0.9);
  width: 75%;
  right: -75%;
  top: 0;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  display: none;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: right 0.7s ease;
  -moz-transition: right 0.7s ease;
  -ms-transition: right 0.7s ease;
  -o-transition: right 0.7s ease;
  transition: right 0.7s ease;
  font-size: 1.4em;
}
.mainNavigation ul {
  margin: 40px 0 0 0;
  padding: 0;
}
.mainNavigation ul li {
  padding: 0;
}
.mainNavigation ul li a.active {
  color: #fd9800;
}
.mainNavigation ul li ul {
  background-color: transparent;
  display: none;
  margin-top: 0;
}
.mainNavigation ul li ul li {
  margin-left: 10px;
  border-bottom: 1px solid rgba(132, 132, 132, 0.8);
}
.mainNavigation a {
  display: block;
  padding: 10px;
  color: #e4e4e4;
  text-decoration: none;
}
.mainNavigation a:hover {
  color: #fff;
  text-decoration: none;
}
.mainNavigation a:focus {
  text-decoration: none;
}

body.lightAtmos #logo a {
  outline: 1px solid #fff;
}
body.lightAtmos .mainNavigation a {
  color: #fff;
}
body.lightAtmos .mainNavigation li ul li a {
  color: #fff;
}
body.lightAtmos #home .slick-button {
  background: #343434;
  color: #fff;
}
body.lightAtmos #home .slides .slideTitle {
  background-color: #343434;
}
body.lightAtmos #home .slides .slideTitle a {
  color: #939393;
}
body.lightAtmos #home .slides .slideTitle a .slideTitleName {
  color: #fff;
}
body.lightAtmos .menu-btn a {
  color: #fff;
  text-shadow: 1px 1px 1px #ddd;
}

.imageGroup {
  overflow: hidden;
}
.imageGroup .imageBox {
  float: left;
  position: relative;
  width: 50%;
  padding-bottom: 50%;
  overflow: hidden;
}
.imageGroup .imageBox a {
  display: table;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.imageGroup .imageBox .imageboxInner {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  overflow: hidden;
}
.imageGroup .imageBox .imageboxInner img {
  width: 100%;
}
.imageGroup .imageBox .titleBox {
  position: absolute;
  top: 80%;
  left: 0;
  right: 0;
  margin-bottom: 0px;
  height: 100%;
  background: #000;
  background: rgba(0, 0, 0, 0.5);
  color: #FFF;
  padding: 10px;
  text-align: center;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.imageGroup .imageBox .titleBox span {
  display: block;
  position: absolute;
  text-align: center;
  width: auto;
}
.imageGroup .imageBox:hover .titleBox {
  top: 0;
}
.imageGroup .imageBox:hover .titleBox span {
  top: 25%;
  left: 0;
  padding: 20px;
}

.personalCont .aboutPicture {
  float: left;
  margin: 0 20px 10px 0;
}
.personalCont img {
  max-width: 100%;
  max-height: 100%;
}
.personalCont h3 {
  margin-top: 50px;
  margin-bottom: 20px;
  font-weight: bold;
}
.personalCont h4 {
  margin-bottom: 0px;
  font-weight: bold;
}
.personalCont ul {
  margin-top: 10px;
  padding: 0 0 0 5px;
  list-style: none;
}
.personalCont li {
  padding-left: 1em;
  text-indent: -1.1em;
}
.personalCont li:before {
  content: "■";
  padding-right: 10px;
  color: #fd9800;
}

.contactInfo {
  margin: 20px 0 20px 0;
}
.contactInfo a {
  color: #fd9800;
}

.companyName span {
  font-family: "Gotham-Medium", "Trebuchet MS", Arial, sans-serif;
}

.mapImage {
  margin-bottom: 30px;
}
.mapImage img {
  width: 100%;
}

form {
  margin: 3em 0;
  font-family: "Gotham-Book", "Trebuchet MS", Arial, sans-serif;
}

.form-control {
  font-size: 1em;
  height: 3.3em;
  background-color: #fafafa;
}

footer {
  position: fixed;
  right: 10px;
  bottom: 5px;
  font-size: 0.5em;
  color: #fff;
  z-index: 10;
}

.contactTel {
  text-align: right;
}

@media screen and (min-width: 1025px) {
  html,
  body {
    font-size: 1em;
  }

  h2 {
    font-size: 1.5em;
  }

  header {
    position: relative;
    height: 7.25em;
  }
  header #logo a {
    position: absolute;
    display: block;
    width: 150px;
    height: 36px;
    top: 42px;
    left: 15px;
    background-size: 100% 100%;
    font-size: 0;
  }

  .mainNavigation {
    position: absolute;
    z-index: 8;
    background-color: transparent;
    width: auto;
    height: auto;
    right: 0 !important;
    top: 25px;
    overflow-y: visible;
    overflow-x: visible;
    display: block !important;
    font-size: .90em;
    -webkit-transition: right 0.4s ease;
    -moz-transition: right 0.4s ease;
    -ms-transition: right 0.4s ease;
    -o-transition: right 0.4s ease;
    transition: right 0.4s ease;
  }
  .mainNavigation ul {
    margin: 0;
    padding: 0;
  }
  .mainNavigation ul li:nth-last-child(-n+2) {
    width: 70px;
  }
  .mainNavigation ul li {
    display: inline-block;
    margin-left: 20px;
    width: 110px;
    border-bottom: none;
    position: relative;
    text-align: center;
  }
  .mainNavigation ul li a {
    color: #343434;
    padding: 16px 0 4px;
  }
  .mainNavigation ul li a:hover, .mainNavigation ul li a.active {
    color: #fd9800;
  }
  .mainNavigation ul li ul {
    position: absolute;
    display: none;
    padding: 11px 0;
    left: -50%;
    margin-top: -8px;
    background: url("../images/hsiarch-sprite.png") center top no-repeat;
  }
  .mainNavigation ul li ul li:nth-last-child(-n+2) {
    width: auto;
  }
  .mainNavigation ul li ul li {
    display: block;
    width: auto;
    background-color: #000;
    margin: 0;
    padding: 0;
    text-align: left;
    border-bottom: none;
  }
  .mainNavigation ul li ul li a {
    font-size: 0.85em;
    width: 220px;
    display: block;
    color: #fff !important;
    padding: 8px 0 8px 20px;
    margin: 0;
  }

  .content {
    margin: 0;
  }

  .main {
    padding: 0 30px;
  }

  .menu-btn,
  .siteOverlay,
  .siteOverlayActive {
    display: none;
  }

  .slick-button {
    opacity: 1;
    font-size: 1.6em;
  }

  .slick-next {
    right: 30px;
  }

  .slick-prev {
    left: 30px;
  }

  .slides .slideTitle {
    padding: 10px 15px 6px;
    font-size: 100%;
    left: 30px;
  }

  footer {
    right: 30px;
  }

  .imageGroup .imageBox {
    width: 33%;
    padding-bottom: 33%;
  }
  .imageGroup .imageBox .titleBox {
    top: 100%;
  }
  .imageGroup .imageBox .titleBox span {
    display: block;
    position: absolute;
    top: 45%;
    text-align: center;
    width: 100%;
  }
  .imageGroup .imageBox:hover .titleBox {
    top: 0;
  }

  .rightCont {
    padding-left: 155px;
    clear: both;
    position: relative;
    overflow: hidden;
  }

  .hsiarch-landing-slider .centerSlickSlide a {
    height: 540px;
    display: block;
  }
  .hsiarch-landing-slider .centerSlickSlide a img {
    max-width: 100%;
    max-height: 100%;
  }

  a.telephone, a.telephone:hover, a.telephone:visited {
    color: #333;
  }

  body.lightAtmos .mainNavigation a {
    color: #fff;
  }
  body.lightAtmos .mainNavigation li ul li a {
    color: #fff;
  }

  .featherlight .featherlight-content {
    background: transparent;
  }

  .featherlight .featherlight-close-icon {
    display: block;
    width: auto;
    font-size: 1.5em;
    padding: 8px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    border: 1px solid #fff;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  html, body {
    font-size: 1em;
  }

  header #logo a {
    width: 120px;
    height: 29px;
    left: 15px;
    top: 20px;
    background-size: 100% 100%;
  }

  .mainNavigation {
    position: absolute;
    z-index: 8;
    background-color: transparent;
    width: auto;
    height: auto;
    right: 0;
    top: 5px;
    overflow-y: visible;
    overflow-x: visible;
    display: block;
    font-size: 0.85em;
    -webkit-transition: right 0.4s ease;
    -moz-transition: right 0.4s ease;
    -ms-transition: right 0.4s ease;
    -o-transition: right 0.4s ease;
    transition: right 0.4s ease;
  }
  .mainNavigation ul {
    margin: 0;
    padding: 0;
  }
  .mainNavigation ul li:nth-last-child(-n+2) {
    width: 70px;
  }
  .mainNavigation ul li {
    display: inline-block;
    margin-left: 5px;
    width: 90px;
    border-bottom: none;
    position: relative;
    text-align: center;
  }
  .mainNavigation ul li a {
    color: #343434;
    padding: 16px 0 4px;
    font-size: 0.8em;
  }
  .mainNavigation ul li a:hover {
    color: #343434;
  }
  .mainNavigation ul li ul {
    position: absolute;
    display: none;
    padding: 11px 0;
    left: -50%;
    margin-top: -8px;
    background: url("../images/hsiarch-sprite.png") center top no-repeat;
  }
  .mainNavigation ul li ul li:nth-last-child(-n+2) {
    width: auto;
  }
  .mainNavigation ul li ul li {
    display: block;
    width: auto;
    background-color: #000;
    margin: 0;
    padding: 0;
    text-align: left;
    border-bottom: none;
  }
  .mainNavigation ul li ul li a {
    font-size: 0.75em;
    width: 220px;
    display: block;
    color: #fff !important;
    padding: 8px 0 8px 20px;
    margin: 0;
  }

  .slick-button {
    width: 30px;
    height: 30px;
    font-size: 1.25em;
    padding: 0;
  }

  .slick-next {
    right: 20px;
  }

  .slick-prev {
    left: 20px;
  }

  .slides .slideTitle {
    left: 20px;
  }

  .hsiarch-landing-slider .centerSlickSlide a {
    height: 480px;
    display: block;
  }
  .hsiarch-landing-slider .centerSlickSlide a img {
    max-width: 100%;
    max-height: 100%;
  }

  .menu-btn, .siteOverlay, .siteOverlayActive {
    display: none;
  }

  .main {
    max-width: 1160px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }

  .imageGroup .imageBox {
    width: 33.3%;
    padding-bottom: 33.3%;
  }

  .contactTel {
    text-align: right;
  }

  .rightCont {
    padding-left: 0px;
  }

  .featherlight .featherlight-content {
    background: transparent;
  }

  .featherlight .featherlight-close-icon {
    display: block;
    width: auto;
    font-size: 1.5em;
    padding: 8px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    border: 1px solid #fff;
  }
}
