/* Amytis */
html {
 height:100%;
}
body {
 font-family: 'Roboto Condensed', Tahoma, Arial, sans-serif;
 font-size:medium;
 color:#333333;
 background-color:white;
 margin:0px;
 padding:0;
 height:100%;
}
h1 {
 text-decoration:none;
}
.vspacer {
 height:0.5em;
}
.hspacer {
 display:table-cell;
 width:1em;
}

a {
 text-decoration:none;
}
a:hover {
 text-decoration:underline;
}
img {
 border:none;
}

#header {
 background:#ffffff;
 width: 100%;
 height:70px;
 margin:0;
 padding:0;
 position:fixed;
 top:0;
 left:0;
 z-index:10;
 box-shadow: 1px 1px 1px #CCCCCC;
}
#logo {
  margin:0;
  padding:0.2em;
  width: 120px
}

ul {
	padding-bottom: 0.5em;
}
li {
	padding-top:0.5em;
}

#mobile-menu {display: none}
#menu {
 margin:0px;
 font-size:small;
 text-align:right;
 position:absolute;
 bottom:10px;
 right:5px;
}
#menu ul {
}
#menu ul li {
 border:1px solid #999999;
 margin:0 0 0 1em;
 padding:0.5em 1em;
 list-style-type:none;
 float:left;
}
#menu ul li:hover, #menu ul li.hover {
  background-color:#DDDDDD;
}
#menu ul li.active {
  background-color:#CCCCCC;
}
#menu a {
 color:#333333;
}
#menu a:hover {
 text-decoration:none;
}

#main {
 background:#EEEEEE;
 margin:0 auto 0;
 width:100%;
 height:100%;
}
.panel {
 clear:both;
 min-height: 100%;
 padding:80px 5% 5%;
 text-align:left;
}
.panelOdd {
 background: #eee;
}
.panelEven {
 background: #fff;
}
.panel#panel-home {
 height: 100%;
 padding:0;
 /*background: url('images/background.jpg') no-repeat center left;
 background-size: cover;*/
}
.panel p {
 margin-left: 1em;
 margin-right: 1em;
}
img.float {
 float:right;
 margin:5px;
}
td.label_field {
 vertical-align:top;
 text-align:right;
}

#footnote {
 clear:both;
 margin-top:10em;
 padding-top:1em;
 font-size:xx-small;
}

/* Mobile */
@media only screen and (max-width: 800px) {
 img.float {display:none}
 #mobile-menu {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
 }
 #menu {
  display: none;
  top: 3.5em;
  right: 0;
  bottom: auto;
 }
 #menu ul li {
  float:none;
  background: #fff;
  padding:1em 1.5em;
  text-align: center;
 }
 #header {height:60px}
 #logo {width:100px;height:50px}
 .slide-content {padding-top:60px}
}


/* Main Slider*/
* {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}
.wrapper {
  max-width: 50rem;
  margin: 0 auto;
}
#mainSlider {
  width: 100%;
  height:100%;
  position: relative;
  margin: 0;
  overflow: hidden;
}
.slider::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  content: '';
  display: block;
  background: #34495e;
  opacity: 0.5;
  height: 3rem;
}
.slide-switch {
  display: none;
}
.slide-label {
  position: absolute;
  bottom: 1rem;
  display: block;
  z-index: 5;
  height: 1rem;
  width: 1rem;
  text-indent: 1rem;
  overflow: hidden;
  background: #5dbbf9;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s;
}
.slide-label:nth-of-type(1) {
  left: 1.5rem;
}
.slide-label:nth-of-type(2) {
  left: 4rem;
}
.slide-label:nth-of-type(3) {
  left: 6.5rem;
}
.slide-label:nth-of-type(4) {
  left: 9rem;
}
.slide-label:nth-of-type(5) {
  left: 11.5rem;
}
.slide-label:nth-of-type(6) {
  left: 14rem;
}
.padded {
  padding: 1rem 2rem;
}
.slide-content {
  width: 100%;
  height:100%;
  padding-top:100px;
  float: left;
  margin-right: -100%;
  font-size: x-large;
}
.slide-content-ai {
  background: url('images/background-ai.jpg') no-repeat center center;
  background-size: cover;
}
.slide-content-mobile {
  background: url('images/background-mobile.jpg') no-repeat center center;
  background-size: cover;
}
.slide-content-web {
  background: url('images/background-web.jpg') no-repeat center left;
  background-size: cover;
}
.slide-content-wordpress {
  background: url('images/background-wordpress.png') no-repeat center center;
  background-size: cover;
}
.slide-content-lms {
  background: url('images/background-lms.png') no-repeat center center;
  background-size: cover;
}
.slide-content-usability {
  background: url('images/background-usability.jpg') no-repeat center center;
  background-size: cover;
}
.slide-content-kiosks {
  background: url('images/background-kiosks.jpg') no-repeat center left;
  background-size: cover;
}
.slide-content h1 {
  text-decoration: none;
}
.slide-switch:checked + .slide-label {
  background: #afdfff;
}
.slide-switch:not(:checked) + .slide-label + .slide-content {
  opacity: 0;
  transition: opacity 1s;
  pointer-events: none;
  /*animation: slideOut 1s;*/
}
.slide-switch:checked + .slide-label + .slide-content {
  transition: opacity 1s;
  /*animation: slideIn 1s;*/
}
@keyframes slideIn {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideOut {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-110%);
  }
}
#arrow-down {
  position: absolute;
  bottom: 0.5rem;
  right: 1rem;
  z-index: 2;
  width:3rem;
  height:2rem;
}

/* image slider */
.image-slider.screenshot-slider {
  position: relative;
  display: block;
  width:288px;
  height:512px;
  margin:0 0 1em;
}
.image-slide {
  position: absolute;
  top:0;
  left:0;
  opacity: 0;
  transition: 1s opacity;
}
.image-slide.selected {
  opacity: 1;
  transition: 1s opacity;
}
@media only screen and (min-width: 600px) {
  .image-slider.screenshot-slider.float {
    margin:0 1em 1em;
    float:right;
  }
}
