* {
	 box-sizing: border-box;
}
 header {
	 height: 50px;
	 background: whitesmoke;
}
 .container {
	 display: flex;
	 max-width: 1024px;
	 margin: 0 auto;
	 justify-content: space-between;
}
 @media (max-width: 800px) {
	 .container {
		 width: 100%;
		 padding: 30px;
		 flex-direction: column;
		 align-items: center;
		 justify-content: flex-start;
	}
}

 .sidebar {
	/* Sticky */
	 position: sticky;
	 top: 0;
	 height: 100vh;
	 /* padding-top: 0px; */
     /* change from base */
     padding-top: 10vh;
	padding-right: 100px;
    /* end change */
	 flex-basis: calc(100% - 400px - 60px);
	 flex-grow: 1;
	/* Mobile: Unstick it and move it up */
}
 @media (max-width: 800px) {
	 .sidebar {
		 order: -1;
		 position: static;
		 height: auto;
		 width: 100%;
         padding: 0;
	}
    
}
 

/* Layout and Media Breakpoints code above */
/* Adjustments below */

.logo {
	width: 70vmin;
	height: 70vmin;
	max-width: 250px;
	max-height: 250px;
	display: block;
	margin: auto;
}
.contact {
	list-style-type: none;
	font-size: 0.9em;
	text-align: center;
    color: #545454;
    font-family: 'Raleway', sans-serif;
    letter-spacing: -0.075rem;
    width: 95%;
    line-height: 1.75;
    font-weight: 400;
    text-align: center;
    
}
.contact a {
	text-decoration: none;
    color: #0F989E;
}

p.text a {
    text-decoration: none;
    color: #0F989E;
}


p.text {
	color: #545454;
    font-family: 'Raleway', sans-serif;
    letter-spacing: -0.075rem;
    width: 95%;
    font-size: 1.1em;
    line-height: 1.75;
    font-weight: 400;
    text-align: center;
}

.main section {
    padding-top: 10vh;
    
}

 .main section img {
    width: 100%;
    height: auto;
    max-height: 17.5rem;
}



/* gallery */
.gallery {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
  }
  .img-holder {
    flex-grow:1;
    padding: .2rem;
    
  } 
  
  .img-holder img {
    display: block;
    min-width: 100%;
    height: 16rem;
    object-fit: cover; 
  }

  .social-links-container {
    align-items: center;
    display: flex;
    justify-content: center;
    
  }
  
  .social-link {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 50px;
    width: 65px;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 20px;
  }
  .social-link:hover {
    transform: scale(1.2);
    transition: all 0.5s;
  }
  


/* Start Lightbox CSS */
  /* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: transparent
  }
  
  /* Modal Content */
  .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 50vw;
    max-height: 50vh;
    

    
  }

  .modal-content img {
    background-size: contain; /* scales the image */
    background-position: center; /* centers the image */
    object-fit: contain;
  }

  /* The Close Button */
  .close {
    color: black;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 50px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* Hide the slides by default */
  .mySlides {
    display: none;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* 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);
  }
  
  
  
  img.demo {
    opacity: 0.6;
  }
  
  .active,
  .demo:hover {
    opacity: 1;
  }
  
  img.hover-shadow {
    transition: 0.3s;
  }
  
  .hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }