@charset "utf-8";
/* CSS Document */
 

h1,
.h1 {
	font-size: clamp(48px, 5vw, 55px);
	line-height: 120%;
	letter-spacing: -0.03em;
}
h1.lrg {
	font-size: clamp(48px, 5vw, 80px);
	letter-spacing: -0.05em;
	line-height: 110%;
}
h1.xl {
	font-size: clamp(48px, 6vw, 92px);
	letter-spacing: -0.05em;
	line-height: 110%;
}

h2,
.h2 {
	font-size: clamp(32px, 5vw, 48px);
	letter-spacing: -0.02em;
}

h3,
.h3 {
	font-size: clamp(24px, 5vw, 36px);
	letter-spacing: -0.02em;
}

h4,
.h4 {
	font-size: clamp(20px, 5vw, 24px);
	letter-spacing: -0.02em;
}

h5,
.h5 {
	font-size: clamp(19px, 5vw, 20px);
	letter-spacing: -0.02em;
}

h6,
.h6 {
	font-size: clamp(16px, 5vw, 16px);
	letter-spacing: -0.02em;
}

th {
	font-weight: $font-weight-bolder;
}

p {
	line-height: 1.5;
	font-size: 15px;
	font-weight: 300;
}
p.lrg {
	font-size: clamp(16px, 5vw, 18px);
	line-height: 1.4;
	color:$color-dark-gray;
}

.pre-title {
	&:after {
		content: "";
		width: 100px;
		display: inline-block;
		height: 1px;
		position: relative;
		top: -6px;
		left: 10px;
		background: #000;
	}
}

.paragraph,
figure,
p,
table,
address {
	margin: 0 0 19px;
}

span {
	font-size: inherit;
	font-weight: inherit;
	font-style: inherit;
	line-height: inherit;
}

small,
.small {
	font-size: clamp(12px, 5vw, 12px);
}

a {
	color: inherit;
	transition: color $transition;
	cursor: pointer;

	a:hover,
	a:focus {
		color: darken($color-black, 10%);
	}
}

b,
strong {
	font-weight: $font-weight-bold;
}

em {
	font-style: italic;
}

hr {
	background-color: $color-gray;
	border: 0;
	display: block;
	height: 1px;
	margin: 35px 0;
}

code,
pre {
	font-family: monospace, monospace;
	background-color: rgba(0, 0, 0, 0.09);
	display: inline-block;
	padding: 0 8px;
	font-size: 15px;
	margin: 0 0 19px;
}

blockquote,
.blockquote {
	background-color: $color-white;
	border-left: 4px solid $color-black;
	font-size: 16px;
	font-style: italic;
	font-weight: $font-weight-light;
	letter-spacing: 0.16px;
	line-height: 1.55;
	margin: 35px 0 35px 35px;
	max-width: 500px;
	padding: 15px 25px;
	box-shadow: $box-shadow;

	@include bp(tablet) {
		font-size: 18px;
	}

	p {
		font-size: 16px;

		@include bp(tablet) {
			font-size: 18px;
		}
	}

	p:last-child {
		margin-bottom: 0;
	}
}

figcaption {
	font-size: 16px;
	margin-top: 20px;
}

// ALT COLORS
.color-theme--dark h1,
.color-theme--dark h2,
.color-theme--dark h3,
.color-theme--dark h4,
.color-theme--dark h5 {
	color: #fff;
}

.color-theme--dark p {
	color: #fff;
}


