@charset "utf-8";
/* CSS Document */

:root {
	/* Color Variables */
	--text-light-1: #ffffff;
	--dark-1: #000000;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	transition: 0.2s linear;
	font-family: 'Work Sans';
	font-weight: 500;
}

code {
  background-color: #eeeeee;
  border-radius: 3px;
  font-family: "Courier New", monospace;
  padding: 0 3px;
}

dark-mode {
	color: white;
}

/*Nav Bar*/
nav {
	background-color: var(--dark-1);
	margin-bottom: 20px;
}

nav ul {
	width: 100%;
	list-style: none;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

nav li {
	height: 60px;
}

nav a {
	height: 100%;
	padding: 0 17px;
	text-decoration: none;
	display: flex;
	align-items: center;
	color: var(--text-light-1);
	font-size: 16px;
}

nav li:first-child {
	margin-right: auto;
}

nav li:first-child a {
	font-family: 'Outfit';
	font-weight: 600;
	font-size: 25px;
}

nav li:nth-child(6) {
	padding-right: 22px;
}

.sidebar {
	position: fixed;
	top: 0;
	right: 0;
	height: 100vh;
	width: 250px;
	z-index: 999;
	background-color: var(--dark-1);
	display: none;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.sidebar li {
	width: 100%;
}

.sidebar a {
	width: 100%
}

.menu-button {
	display: none;
}

.container {
	padding-left: calc(20% + .525in);
	padding-right: calc(20% + .525in);
}

.container-wide {
	padding-left: 10%;
	padding-right: 10%;
}

.published-date {
	font-weight: 400;
}

* {

	padding: 0;
	box-sizing: border-box;
	transition: 0.1s ease-in-out;
	font-family: 'Work Sans';
	font-weight: 500;
/*	max-width: 1300px;*/
	font-size: 11pt;
	line-height: 1.25;
	color: var(--text-dark-1);
}

.image-container {
    display: grid;
	grid-template-rows: repeat(auto-fit,minmax(30%,1fr));
	grid-template-columns: repeat(auto-fit,minmax(30%,1fr));
	grid-gap: 5px 10px;
	padding-top: .25in;
	padding-bottom: .25in;
}

.image-container img {
	width: 100%;
	padding-top: 0;
	padding-bottom: 0;
	
	
    display: inline;
 
}

img {
	padding-top: .25in;
	padding-bottom: .25in;
	
	/*make the image height fit */
	
    object-fit: contain;
    display: block;
    margin-left: 0;
	margin-right: auto;
	max-height: 100vh;
	max-width: 100%;
		
}

h1 {
	font-weight: 700;
	font-size: 30pt;
	line-height: 1;
	padding-bottom: 0.5em;
}

h2 {
	font-weight: 600;
	font-size: 14pt;
	line-height: 2;
}

.h2-alt {
	font-weight: 500;
	font-size: 14pt;
	line-height: 1.4;
}

p {
	padding-bottom: 1em;
}

ul.bullets {
	list-style-type: "-";
	padding-left: 2em;
}

ul.bullets li {
	padding-left: 1.25em;

}

.captioned {
	max-height: 110vh;
	display: flex;
	flex-direction: column;
	
}

.captioned p {
	font-style: italic;
	padding-bottom: 1.5em;
}

.captioned img {
	padding-bottom: 0;
	
}

.captioned .image-container img {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-height: none;
}

.captioned .image-container {
	padding-bottom: 0;
	max-height: none;
	
}


.captioned-gallery p {
	font-style: italic;
	padding-bottom: 1.5em;
}

.captioned-gallery img {
	padding-bottom: 0;
	
}

/*.captioned-gallery .image-container img {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-height: none;
}*/

.captioned-gallery .image-container {
	padding-bottom: 0;	
}


.sidebar .navbar-close {
	font-weight: 400;
	font-size: 10px;
}


.image-with-text-overlay {
	position: relative;
  text-align: center;
}

.text-overlay-title {
	position: absolute;
	bottom: 60px;
  left: 30px;
	color: white;
	text-align:justify;
	font-size: 80pt;
	
}


@media(max-width: 900px) {
	.hideOnMobile{
		display: none;
	}
	.menu-button{
		display: block;
	}
	.container {
		padding-left: .25in;
		padding-right: .25in;
	}
	
	.text-overlay-title {
		font-size: 40pt;
	}
	
}

@media(min-width: 901px) and (max-width: 990px) {
	.container {
	padding-left: .25in;
	padding-right: .25in;
	}
}
	
	

.breakline {
	background-color: #e6e6e6;
	height: 4px;
	margin-bottom: 1em;
}


.slider-container-2 {
  display: grid;
  place-items: center;
  /*min-height: 100vh;*/
	
	/*background-color: green;*/
}


.slider-container {
  display: grid;
  place-content: center;
  position: relative;
  overflow: hidden;
  /*border-radius: 1rem;*/
  --position: 50%;
	/*background-color: orange;*/
}

.slider-image-container {
  /*max-width: 800px;
  max-height: 90vh;
  aspect-ratio: 1/1;*/
	
	/*background-color:yellow;*/
}

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.image-before {
  position: absolute;
  inset: 0;
  width: var(--position);
  /*filter: grayscale(100%);*/
}

.slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
  width: 100%;
  height: 100%;
}

.slider:focus-visible ~ .slider-button {
  outline: 5px solid black;
  outline-offset: 3px;
}

.slider-line {
  position: absolute;
  inset: 0;
  width: 0.07rem;
  height: 100%;
  background-color: #fff;
  left: var(--position);
  transform: translateX(-50%);
  pointer-events: none;
}

.slider-button {
  position: absolute;
  background-color: rgba(255,255,255,0.66);
  color: black;
  padding: 0.5rem;
  border-radius: 100vw;
  display: grid;
  place-items: center;
  top: 88%;
  left: var(--position);
  transform: translate(-50%, -50%);
  pointer-events: none;
  box-shadow: 1px 1px 1px hsl(0, 50%, 2%, 0.5);
}