html {
	font-size: 28px;
	letter-spacing: 0.0475em;
	line-height: .875em;
	font-family: neue-haas-grotesk-display, sans-serif;
	font-style: normal;
	background-color: whitesmoke;
	color: #383838;
}

footer {
	color: #888888
}

* {
	box-sizing: border-box;
}

body {
	margin: 4vw;
}




h2, h3, h5, b {
    font-family: neue-haas-grotesk-text, sans-serif;
	font-weight: 500;
	font-style: normal;
	letter-spacing: 0.01em;
}

h5 {
	margin-bottom: 2vw;
}

.brand, h1, h3, h2 {	
	font-size: 1em;
	font-weight: 600;
	line-height: 1.1;
}

h3 {
	font-size: clamp(2rem, 5vw, 3rem)  !important;
}



.brand.white {
    color: white;
}

.brand, .red {
	margin-bottom: 16vh;
	color: rgb(236,0,0);
}


h1 {
	line-height:1.25em;
    font-size: 1.65em
}

.copyright {
	margin-top: 4vw;
	color: black
}

hr {
	margin: 0 0 10vw 0;
	border-bottom: none;
}

button {
	padding: .8em 1em;
	margin: 1em 0;
	font-size: .7em;
	background-color: red;
	border: none;
	border-radius: 4px;
	color: white;
}

button:active {
	background-color: #3A3A3A;
}

.serif {
    font-family: dolly-new, sans-serif;
	font-weight: 400;
	font-style: normal;
}
p, li {
	font-weight: 500;
	font-size: .675em;
	line-height: 1.45;
	letter-spacing: 0.01em;
	margin: 0;
	padding-bottom: 0.525em;
}

p.indent {
	text-indent: 1.2em;
}

p.serif, li.serif {
	font-size: .775em;
}
p.lead {
    font-weight: 300;
    color: black;
	font-size: 1em;
}

ul {
    padding-left: 1em;
}

li {
    padding-bottom: 0;
}

figure {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: .6em;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
}

figure img {
	width: 100%;
    margin: 0; padding: 0;
    vertical-align: top;
}

article p {
	word-wrap: break-word;
	overflow-wrap: break-word;

	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}

small {
	font-size: .75em;
	line-height: 1.3;
	display: block
}

small.imgSrc {
	display: inline-block;
	font-size: .3em;
	transform: translateY(100%);
	transform-origin: right;
	position: absolute;
    left: 0;
	right: 0;
    bottom: 0;
    color: black;
    background-color: whitesmoke;
    padding: 20px;
    text-align: right;
}

small.imgSrc:after, 
small.imgSrc:before  {
     content: '';
    position: absolute;
    left: 80vw;
    top: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid whitesmoke;
    clear: both;
    transform: rotate(180deg)
}

small.imgSrc:after {
    left: 60vw;
}


div.landingIMG {
	position: sticky;
	top:0;
	height: 100vh;
    height: 100svh;
	background: url("../img/20230323-digitalhistory-014_web.jpg") no-repeat center center; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center bottom
}

section {
	height: 100vh;
	position: relative;
}

article, .row, section{
	margin:0 0 12vw 0;
}

footer, .row, .container {
	max-width: 900px
}

.container {
	margin: 0 auto
}

.fixed-container {
    height: 200vh;
    margin: -4vw -4vw 20vh -4vw;
}

section.img {
    margin: 4vw;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.row {
  	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between
}

.col-6 {
	flex: 50%;
	margin-right: 4vw;
}

.col-6[last-of-type] {
	margin-right: 0vw;
}


a.socialMedia {
    color: rgba(29, 161, 242, 1.00);
    padding: 3px 12px 2px 12px;
    margin-left: -12px;
    display: block;
    width: 56px; height: 56px;
}

a.socialMedia:hover {
    background-color: rgba(29, 161, 242, 0.1);
    border-radius: 26px;
}

a.socialMedia svg {
    position: relative;
    display: inline-block;
    top: 10px;
}


/*Effects*/
.blur {
	font-size: 2.2em;
	color: white;
	position: absolute;
	max-width: 1400px;
    text-shadow: 0 0 50px rgba(56,21,10,1);
}

.blur-out {
  	animation: blur 20s ease-in-out 0s forwards;
  	-webkit-animation: blur 20s ease-in-out 0s forwards;
  	-moz-animation: blur 20s ease-in-out 0s forwards;
  	opacity: 1;
	transform-origin: left;
}

.blur-in {
  	animation: blurIn 20s ease-in-out 0s forwards;
  	-webkit-animation: blurIn 20s ease-in-out 0s forwards;
  	-moz-animation: blurIn 20s ease-in-out 0s forwards;
  	opacity: 0;
}

.hoverZoom:hover {
    transform:scale(2);
}

.phoneNumber-reset a[href^=tel] {
    color: #383838;
    text-decoration: none;
}

@keyframes blur {
  0%, 10% {
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -o-filter: blur(0px);
    -ms-filter: blur(0px);
  }
  100% {
    -webkit-filter: blur(100px);
    -moz-filter: blur(100px);
    -o-filter: blur(100px);
    -ms-filter: blur(100px);
	opacity: 0;
  }
}

@keyframes blurIn {
  0%, 10% {
    -webkit-filter: blur(100px);
    -moz-filter: blur(100px);
    -o-filter: blur(100px);
    -ms-filter: blur(100px);
	opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -o-filter: blur(0px);
    -ms-filter: blur(0px);
	opacity: 1;
  }
}


@media only screen and (max-width: 600px) {
  	html {
		font-size: 22px;
	}
	
	body {
		margin: 8vw;
	}
    
    .fixed-container {
        margin: -8vw -8vw 20vh -8vw;
    }

    section.img {
        margin: 8vw;
    }
    
	.col-6 {
		margin-right: 0
	}
	p, h5 {
		font-size: .8em;
	}
	
	p.serif, li.serif {
		font-size: .95em;
	}
	
    p.bold {
        font-size: 1.1em;
    }
    
	p {
		padding-bottom: 1.825em; 
	}
	
	a { text-decoration:none; color:inherit; }
	
	.blur {
		font-size: 2.05em;
	}
	
	small {
		font-size: 0.8em;
	}

	.row {
	  flex-direction: column;
  	}
	article, .row, section{
		margin:0 0 16vw 0;
	}
    figure img {
        width: 100%;
    }
}

@media only screen and (min-width: 2000px) {
  	html {
		font-size: 40px;
	}
    
    .container, footer, .row, .blur {
        max-width: 1500px
    }
}