/* ------- Landing Page ! ------- */

/* Mobile */
.crop {

  min-width: 100px;
  overflow: hidden;

}

.crop img {

  width: 100%;
  height: auto;

}

.landingtext {

  
 padding: 8px;
 margin-top: -15px;

}

/* Larger than mobile */
@media (min-width: 400px) {
  
  .crop {

    min-width: 100px;
    overflow: hidden;

  }

  .crop img {

    width: 100%;
    height: auto;

  }
  
}
/* Larger than tablet */
@media (min-width: 750px) {
  
  .crop {

    min-width: 100px;
    
    overflow: hidden;

  }

  .crop img {

    width: 100%;
    height: auto;

  }



  .textbackground {

    background-color: rgba(0, 23, 54, 0.85);
    padding: 5px;
    border-radius: 7px;
    padding: 8px;

  }
  .landimg {

  }
  .landing {

    position: relative;
    text-align: left;
    color: white;

  }

  .landingtext {

    position: absolute;
    bottom: 30%;
    right: 20px;
    top: 15%;
    padding-left: 55%;
    text-align: center;
    letter-spacing: 1px;

  }
  
}

/* Larger than desktop */
@media (min-width: 1000px) {
  
  .crop {

    min-width: 100px;
    height: 900px;
    overflow: hidden;

  }

  .crop img {

    width: 100%;
    height: auto;

  }



  .textbackground {

    background-color: rgba(0, 23, 54, 0.85);
    padding: 5px;
    border-radius: 7px;
    padding: 19px;

  }
  .landimg {

  }
  .landing {

    position: relative;
    text-align: left;
    color: white;

  }

  .landingtext {

    position: absolute;
    bottom: 30%;
    right: 80px;
    top: 25%;
    padding-left: 55%;
    text-align: left;
    font-size: 15px;

  }
  
}
/* ------- End Landing Page ! ------- */

.quote {
  
  font-size: 18px;
  
}

/* Larger than mobile */
@media (min-width: 400px) {
  
  .quote {
  font-size: 22px;
  text-align: center;
  }
}

.projbg {

  background-color: rgba(0, 23, 54, 0.13);

}

.projectp {
  
  padding-top:10px;
  text-align: left;
}
.container {

  margin-top: 20px;
  padding-bottom: 20px;
  border-style: solid;
  border-width: 2px;
  border-radius: 10px;
  border-color: #2581ff ;
}

.biocontainer {

  margin-top: 0px;
  padding-bottom: 0px;
  border-style: hidden;
  border-width: 2px;
  border-radius: 10px;
  border-color: #2581ff ;
}

.menubar {
  
  position: fixed;
  height: 70px;
  background-color: black;
  top: 0;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  
}

.menulogo {
  
  max-width: 220px;
  position: sticky;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;

  
}

.newbutton{
  
  display: block;
  text-align: center;
 
}

.newbutton div {
 
  border-style: solid;
  border-width: 1px;
  border-color: #c3c3c3;
  border-radius: 6px;
  max-width: 50%;
  margin: 0 auto;
  padding: px 2px;
  
  
}

.newbutton a{
  
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  color: #727272;
  padding: 2px 5px;
}

.projpics {
  
  
}


* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
  margin-right: 20px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}


