.clear, .clearfix {
  clear: both;
}

* {
  outline: 0;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
}

.nowrap {
  white-space: nowrap;
}

a{
  color:inherit;
  text-decoration: none;
}

.hidden {
  visibility: hidden;
}

.inside {
  position: relative;
  width: calc(100% - 30px);
  max-width: 1170px;
  margin: auto;
}

.mobileonly{
  display: none;
}


html {
  padding: 0px;
  margin: 0px;
  min-height: 100%;
  height: 100%;
  text-rendering: auto;
  text-rendering: optimizeLegibility;
  text-rendering: geometricPrecision;
  font-smooth: always;

  font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  padding: 0px;
  margin: 0px;
  min-height: 100%;
  width: 100%;
  height: 100%;
  max-width: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-family: 'SuisseIntl';
	font-size: 15px;
  line-height: 1.438em;
  color: #000;
  background-color: #fff;
}

#header{
  position: fixed;
  top:0px;
  left:0px;
  width:100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 30px;
  z-index: 30000;
}

body.page #header{
  background-color: #fff;
}

#logo{
  background-image: url(../img/logo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  width:190px;
  height:30px;
}

#mainnav{
  display: flex;
  align-items: center;
  margin: 0px;
  padding: 0px;
  list-style: none;
  font-size: 41px;
}

#mainnav li{
  margin-left: 20px;
}

#mainnav li a{
  text-decoration: none;
  color: inherit;
}

.page{
  padding:30px;
  padding-top: 100px;
  box-sizing: border-box;
}

.page .social{
  font-size:2em;
  text-align: left;
}

.page .social a{
  margin-right: 20px;
}



.page_image_1, .page_image_2 {
  width:100vw;
  height:100vh;
}

.page_image_2 {
  display: flex;
}

.imageleft, .imageright{
  width:50%;
  height:100%;
}

.slideshowimage{
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}

.page_image_1 .slideshowimage{
  background-position: center center;
}

.imageleft .slideshowimage{
  background-position: left center;
}

.imageright .slideshowimage{
  background-position: right center;
}

.slideshowimage.panoramafull{
  background-size: cover;
  
}
.slideshowimage.panoramafullw{
  background-size: 100% auto;
}

.slideshowimage.panoramafullh{
  background-size: auto 100%;
}

h1 {
	font-size: 1em;
	font-weight: normal;
	text-transform: uppercase;
}

.owl-dots{
  display: none;
  position: absolute;
  bottom:0px;
  left:0px;
  width:100%;
  height:40px;
  text-align: center;
}

.owl-dot span{
  display: inline-block;
  width:10px;
  height:10px;
  background-color: #000;
  margin:5px;
  border-radius: 50%;
}


@media (orientation: portrait) {
  .page_image_2 {
    flex-direction: column;
  }
  .imageleft, .imageright{
    width:100%;
    height:50%;
  }

  .noportrait{
    display: none;
  }

  .fullportrait{
    width:100%;
    height:100%;
    background-size: cover;
    background-position: center center;
  }
}

@media (max-width:768px){
  #mainnav{
    font-size: 25px;
  }
  #logo{
    width:140px;
    height:21px;
  }
  .mobileonly{
    display: block;
  }
  .nomobile{
    display: none;
  }
  .page .col{
    width:calc(100% - 30px);
    margin-top: 0px;
    margin-bottom: 0px;
  }
}