    .lightbox {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      z-index: 999;
      text-align: center;
    }
	
	

    .lightbox img {
      max-width: 90%;
      max-height: 90%;
      margin-top: 5%;
      transition: transform 0.3s ease;
    }
    .lightbox img:hover {
      transform: scale(1.1);
    }
    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      cursor: pointer;
      color: white;
      font-size: 2em;
    }
    .lightbox-nav.left {
      left: 10px;
    }
    .lightbox-nav.right {
      right: 10px;
    }
	
	
.fadein img{
opacity:0.75;
transition: 1s ease;
}

.fadein img:hover{
opacity:1;
transition: 1s ease;
}


    .floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
	  color: white;
      background-color: #2F6D99;
    box-shadow: 0 0.1875rem 0.1875rem 0 rgba(0, 0, 0, 0.1) !important;
    padding: 1.25rem 2rem;
    font-family: Montserrat, Helvetica, Arial, Lucida, sans-serif;
    font-size: 80%;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    border: 0;
	border-radius: 0.375rem;
    }
	
	    .floating-button:hover {
      position: fixed;
      bottom: 20px;
      right: 20px;
    color: #fff;
    background-color: #6d98b7;
    border-color: #6d98b7;
    }
	
	
	
.downarrow{
	color: #fff;
}