@charset "UTF-8";
* {
	margin: 0;
	padding: 0;
    box-sizing: border-box;
}

      @font-face {
		font-family: 'Montserrat';
		src: url('../font/Montserrat-Regular.ttf') format("truetype");
		font-weight: normal;
		font-style: normal;
	}

    

      @font-face {
		font-family: 'Montserrat';
		src: url('../font/Montserrat-Bold.ttf') format("truetype");
		font-weight: 700;
		font-style: normal;
	}


body {
    font-family: 'Montserrat';
    background-color: #4a524a;
}

h1 a {
    background-image: url("../img/logo.svg");
    background-size: 200px;
    position: relative;
    width: 100%;
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    text-indent: -9999px;
    background-position: left top;
    display: block;
    
}

p, li {
    font-size: 14px;
    line-height: 22px;
}

p {
    margin: 0 0 20px 0;
}

p a, li a {
    text-decoration: none;
    color: #fff;
}

#content {
    width: 280px;
    padding: 40px;
    background-color: #4a524a;
    position: absolute;
    bottom: 0;
    right: 0;
    box-sizing: border-box;
    top: 0;
    overflow: hidden;
}

#content * {
    color: #fff;
}

#page {
    padding: 40px;
    color: #fff;
}

.wrapper {
    padding: 40px 0;
    width: 960px;
}

.highlight {
    color: #f39100!important;
}

#background_images {
    width: 100%;
    height: 100%;
    position: absolute;
}

#background_images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.spacer {
    width: 100%;
    height: 40px;
}

.uppercase {
    text-transform: uppercase;
}

.list {
    position: absolute;
    bottom: 80px;
    left: 40px;
}

ul li {
    list-style: none;
    margin: 0 0 20px 0;

}

#submenu {
    position: absolute;
    bottom: 20px;
}


.slide {
  overflow: hidden;
    background-color: #000;
}
.slide > div {
  width: 100%;
  height: 100%;
  background-size: cover;
  position: absolute;
  animation: slide 30s infinite;
  opacity: 0;
    background-position: left top;
}
.slide > div:nth-child(2) {
  animation-delay: 5s;
}
.slide > div:nth-child(3) {
  animation-delay: 10s;
}
.slide > div:nth-child(4) {
  animation-delay: 15s;
}

.slide > div:nth-child(5) {
  animation-delay: 20s;
}

.slide > div:nth-child(6) {
  animation-delay: 25s;
}

.mobile {
    display: none;
}



@keyframes slide {
  10% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  40% {
    transform: scale(1.1);
  }
}



@media screen and (max-width: 1000px)  and (orientation: portrait) {
    
   #content {
    width: 100%;
    padding: 40px;
    position: relative;
    top: 0px;
    right: inherit;
    left: 0%;
    overflow: inherit;
    }
    
    
    .list {
        position: relative;
        bottom: inherit;
        margin-top: 40px;
        left: 0;
    }
    
       p, li {
        font-size: 12px;
        line-height: 16px;
        margin: 0 0 10px 0!important;
    }
    .mobile {
    display: inline;
}

    
.wrapper {
    width: 100%;
    margin:0px auto;
}    
    
#container {
        position: absolute;
        height: 100%;
        width: 100%;
}
    
#submenu {
    position: relative;
    bottom: inherit;
        margin-top: 40px;
    
}

#background_images {
  width: 100%;
  height: 60%;
  position: relative;
}    
    
    h1 a {
        height: 120px;
    }
    
}

@media screen and (max-width: 1080px) and (orientation: landscape)   {
  
        .mobile {
    display: inline;
}

    
    p, li {
        font-size: 12px;
        line-height: 16px;
        margin: 0 0 10px 0!important;
    }

    
}