html, body {
    margin:0; padding: 0;
  }
  * { 
    font-family: 'pt sans';
    box-sizing: border-box;
    font-size: 14pt;
  }
  a {
    color: rgb(255, 174, 0);
    font-weight: 500;
    text-decoration: none;
  }
  .orange {
    color: rgb(255, 174, 0);
    font-weight: bold;
  }
  p {
    font-size: 14pt;
  }
  body {
    background: url('assets/photos/sasse01.jpg') center center fixed;
    background-size: 100% !important;
    width: 100%;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
  }
  body.isannointi            { background: url('assets/photos/sasse02.jpg') center center fixed; }
  body.projektijohtaminen    { background: url('assets/photos/sasse08.jpg') center center fixed; }
  body.yhteystiedot          { background: url('assets/photos/dial.jpg')    center center fixed; }
  body.tilasuunnittelu       { background: url('assets/photos/sasse03.jpg') center center fixed; }
  body.hallitusammattilainen { background: url('assets/photos/sasse04b.jpg') center center fixed; }
  body.info                  { background: url('assets/photos/sasse06.jpg') center center fixed; }
  body.tarjouspyynto         { background: url('assets/photos/dial.jpg')    center center fixed; }
.container {
 padding: 40px;
 padding-top: 50px;
 }
.menu {
 float: right;
}
.menu li {
 display: inline-block;
 background: rgb(101,86,11,0.9);
 background: #333;
 color: #fff;
 border-radius: 4px;
 opacity: 0.8;
 border: 2px solid rgb(101,86,11);
 border: 2px solid #222;
 transition: background-color 0.25s ease;
 margin-right: 4px;
 margin-bottom: 4px;
 }
.menu li:hover{
  opacity: 1;
  cursor:pointer;
  background:rgb(255,255,255,0.8);
  border: 2px solid rgb(49, 42, 34);
}
.menu li a {
    padding: 14px 28px;  
    font-size: 12pt; 
    font-weight: 700;
    display: block;
}
.menu li:hover a {
  color: #333;
 }
.menu li.selected {
opacity: 1;
color: #00ff00;
background:rgb(0,0,0,0.85);
}
.menu li a { 
color: #fff;
text-decoration: none;
}
.bottom {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
  align-content: space-between;    
  width: 100%;
  height: 100px;
  line-height: 40px;
  letter-spacing: 0.3em;
  background: #000;
  position: fixed;
  color: #fff;
  text-align:center;
  bottom: 0;
  opacity: 0.7;
}
.bottom-item-left, .bottom-item-right {
  flex: 1;
  text-align: left;
}
.bottom-item-right {
  text-align: right;
  line-height: 100px;
  letter-spacing: 0;
  padding-right: 40px;
}
.bottom-item-center {
  line-height: 100px;
  flex: 2;
}
.content {
  margin-top: 10px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #fff;
  border-radius: 6px;
  padding: 20px;
}
.content-dark {
  background: rgba(0,0,0,0.6);
}
.content-light {
  background: rgba(255,255,255,0.85);
  color: #000;
}

.holder-6 {
    width: calc( 50% - 10px );
    margin-right: 10px;
    display: inline-block;
}

.sasse-logo-bottom {
  height: 50px;margin-top: 25px;margin-left:25px;
}

.sasse-logo {
  max-width: 50vw;
  max-height: 200px;
}

@media (max-width: 1200px) {
  .menu li a {
    padding: 7px 7px;
  }
}
@media (min-width: 900px) {

  body.tilasuunnittelu .content,
  body.projektijohtaminen .content {
    float:right;
  }
  
  body.hallitusammattilainen .content,
  body.info .content {
    float: left;
  }

  .sasse-logo {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .holder-6 {
    float:left;
  }
  .mobile-show {
    display: none !important;
  }
  .mobile-menu {
    display: none;
  }
  .mobile-menu-toggle {
    display: none;
  }
}
@media (max-width: 900px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .container h3 {
    letter-spacing: -0.05em !important;
  }
  .mobile-hide {
    display: none !important;
  }
  .holder-6 {
      width: 100%;
  }
  .menu {
    display: none;
  }
  .mobile-menu {
    position: fixed;
    background: rgba(1,37,65,0.97);
    width: 60vw;
    height: 100%;
    z-index: 100;
    min-width: 300px;
    -webkit-transition: width 0.2s ease-in-out;
    transition: width 0.2s ease-in-out;
  }
  .mobile-menu ul {
   list-style-type:none;
   padding: 0;
   margin: 0;
   margin-top: 80px;   
   }
  .mobile-menu ul li a {
    display: block;
    overflow: hidden;
    width: calc(100% - 20px);
    font-size: 14pt;
    color: #fff;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    margin: 0px 10px 6px 10px ;
    box-sizing: border-box;
    padding: 10px 20px;
  }
  .mobile-menu ul li a:hover {
    background: rgba(255,255,255,0.3);
  }
  .mobile-menu-toggle,
  .mobile-menu-hide-button {
    display: block;
    background: #000;
    text-align:center;
    line-height:40px;
    cursor: pointer;
    width: 50px;
    opacity: 0.5;
    font-size:18pt;
    height: 40px;
    color: #fff;
    border-radius: 8px;
    position: fixed;
    left: 20px;
    top: 20px;
    z-index: 101;
  }
  .mobile-menu-toggle:hover {
    opacity: 0.8;
  }
}


h3 {
    padding: 20px 40px;
    font-size: 24pt;
    display: inline-block;
    padding: 0;
    width: 100%;
    opacity: 0.8;
    clear: both;
    border-radius: 6px;
}

h4 {
  font-size: 16pt;
  font-style: italic;
  color: #333;
  text-transform: uppercase;
}

.content ul {
padding: 0;
font-size: 14pt;
list-style-type: none;
}

ul {
    
}

.mobile-menu.hided {
  width: 1px;
  min-width: 1px;
  left: -1px;
  overflow: hidden;
}

.extend-bottom {
  height: 50px;
  background: #face00;
}

.content-light a {
  color: #000;
}

.info-list li a {
  background: #2879a4;
  color: #fff;
  font-weight: bold;
  display: block;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 4px;
}
.info-list li a:hover {
  background: #2f7448;
  color: #fff;
}

.clear-bottom {
 display: block;
 clear: both;
 
 height: 1px;
 width: 100%;
}

.bottom-item-right a {
  font-size: 16pt;
}