.sme-content img {
  display: block;
}
.sme-content a {
  cursor: pointer;
}

.sme-center-image {
  text-align: center;
}
.sme-center-image img {
  display: inline;
}

.anchor {
  position: relative;
  top: -120px;
}

.sticky-navigation {
  position: relative;
  z-index: 200;
}
.sticky-navigation a {
  position: absolute;
  z-index: 5;
  display: block;
  width: 25%;
  height: 117px;
  top: 0;
  background: #76BBD6;
  opacity: 0;
}
.sticky-navigation a:nth-of-type(1) {
  left: 0;
  width: 243px;
}
.sticky-navigation a:nth-of-type(2) {
  left: 245px;
  width: 230px;
}
.sticky-navigation a:nth-of-type(3) {
  left: 476px;
  width: 230px;
}
.sticky-navigation a:nth-of-type(4) {
  left: 708px;
  width: 212px;
}

.sme-bukken-list a {
  display: block;
  float: left;
}
.sme-bukken-list a:nth-child(3n), .sme-bukken-list a:nth-child(4n) {
  margin-top: 5px;
}
.sme-bukken-list a:nth-child(5n), .sme-bukken-list a:nth-child(6n) {
  margin-top: 9px;
}
.sme-bukken-list:after {
  content: "";
  display: block;
  clear: both;
  float: none;
}

.sme-bukken-list-l {
  padding-left: 15px;
}

.sme-bukken-list-s {
  padding-left: 5px;
}
.sme-bukken-list-s img {
  width: 349px;
}

.sme-float-link1 div {
  float: left;
  width: 50%;
}

.spacer {
  clear: both;
  float: none;
}

.sme-hov2 {
  opacity: 0;
}

.is-laptop .sme-hov1 {
  transition: all 0.3s ease 0s;
}
.is-laptop .sme-hov1:hover {
  opacity: 0.6;
}
.is-laptop .sme-hov2 {
  transition: all 0.3s ease 0s;
}
.is-laptop .sme-hov2:hover {
  opacity: 0.4;
}

.sme-map {
  position: relative;
}
.sme-map a {
  position: absolute;
  display: block;
}

.sme-link-map1 a {
  height: 66px;
  border-radius: 12px;
  background: #fff;
}

.sme-link-map2 a {
  border-radius: 6px;
  background: #157ABE;
  /* background: red; opacity: .7 !important; */
}

.sme-link-map3 a {
  background: red;
  width: 20px;
  height: 20px;
}

.sme-modal-body {
  padding: 40px 45px;
  box-sizing: border-box;
}

.sme-modal-close {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

.sme-modal {
  overflow: hidden;
  height: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 500;
}
.sme-modal-hidden-title {
  display: none;
}
.sme-modal-bg {
  position: relative;
  background: #000;
  opacity: 0.9;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.sme-modal-body {
  position: absolute;
  background: #fff;
  z-index: 110;
  top: 0;
  left: 0;
  width: 800px;
}
.sme-modal-hidden {
  animation: sme-modal-hidden 0.3s ease 0s 1 normal forwards running;
}
.sme-modal-visible {
  animation: sme-modal-visible 0.3s ease 0s 1 normal forwards running;
}
.sme-modal-close {
  border: none;
  background: none;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
.sme-modal-close:hover {
  opacity: 0.6;
}

@keyframes sme-modal-visible {
  0% {
    opacity: 0;
    height: 100%;
  }
  100% {
    opacity: 1;
    height: 100%;
  }
}
@keyframes sme-modal-hidden {
  0% {
    opacity: 1;
    height: 100%;
  }
  99% {
    opacity: 0;
    height: 100%;
  }
  100% {
    visibility: hidden;
    opacity: 0;
    height: 0;
  }
}

