@media (max-width:1000px) {
  .mobhide {
    display: none;
  }
}

@media (min-width:1001px) {
  .deskhide {
    display:none;
  }
}

body {
  margin:0px;
  padding:0px;
  background-image:url("/images/lake7.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.bline {
  background-color: navy;
  width: 70%;
  height: 1px;
  margin-bottom: 4px;
  margin: auto;
}

.tech-slideshow {
  height: 150px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.tech-slideshow > div {
  height: 150px;
  width: 3645px;
  background: url(/assets/img/sliderlong.jpg);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transform: translate3d(0, 0, 0);
}
.tech-slideshow .mover-1 {
  animation: moveSlideshow 45s linear infinite;
}
.tech-slideshow .mover-2 {
  opacity: 0;
  transition: opacity 0.5s ease-out;
  background-position: 0 -200px;
  animation: moveSlideshow 15s linear infinite;
}

@keyframes moveSlideshow {
  100% {
    transform: translateX(-66.6666%);
  }
}

.bdivide {
  width: 90%;
  height: 1px;
  background-color: black;
}

.dropbtn {
    background-color: #ff000000;
    color: black;
    font-size: 16px;
    border-style: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {background-color: #ddd}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #ff000000;
}
