:root {
  --color-bg: #cbc4a2;
  --color-text: #000;
  --color-link: #000;
  --color-button: #f68712;
}

body {
	background-color: var(--color-bg);
	color: var(--color-text);
	font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-weight: 400;
	font-size: 1rem;
	text-align: center;
}

a {
	color: var(--color-link);
  transition: all ease 250ms;
}
a:hover,
a:focus,
a:active {
	text-decoration: none;
}
a[href^="tel:"],
a[href^="mailto:"] {
	display: inline-flex;
	padding-left: 1.75rem;
	background-size: 1.25rem auto;
	background-position: 0 center;
	background-repeat: no-repeat;
}
a[href^="tel:"] {
	background-image: url("/assets/img/icons/phone.svg");
}
a[href^="mailto:"] {
	background-image: url("/assets/img/icons/envelope.svg");
}

a.button {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 23px;
  background-color: var(--color-button);
  color: var(--color-text);
  font-size: 1.25rem;
  text-decoration: none;
}
a.button:hover,
a.button:focus,
a.button:active {
  background-color: var(--color-text);
  color: var(--color-button);
}
a.button svg {
  margin-right: 0.75rem;
  width: 1.75rem;
  height: 1.75rem;
}
.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 4rem;
}

h1,
h2,
h3,
h4 {
	line-height: 1.125;
}

iframe {
  display: block;
}
.fitVids-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.fitVids-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
header .image {
  width: 100%;
  max-width: 36rem;
  height: auto;
}
header .image img {
  border-radius: 50%;
}
@media only screen and (min-width: 768px) {
  header .image {
    max-width: 44rem;
  }
}
@media only screen and (min-width: 1024px) {
  header .image {
    margin: -4rem 0;
  }
}
@media only screen and (min-width: 1280px) {
  header .image {
    max-width: 48rem;
  }
}
@media only screen and (min-width: 1440px) {
  header .image {
    max-width: 52rem;
  }
}
@media only screen and (min-width: 1600px) {
  header .image {
    max-width: 56rem;
  }
}
@media only screen and (min-width: 1680px) {
  header .image {
    max-width: 60rem;
  }
}


main {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	padding: 0 2rem 2rem;
	max-width: 1200px;
}
main > div {
	padding: 0;
}
@media only screen and (min-width: 768px) {
	main > div {
		padding: 0 1rem;
	}
}
@media only screen and (min-width: 1200px) {
	main > div {
		padding: 0 2rem;
	}
}


footer {
	min-height: 4rem;
}


.flow {
	--flow-space: 1rem;
}
.flow > * + * {
	margin-top: 1rem;
	margin-top: var(--flow-space);
}
p + h2 {
  --flow-space: 2.5rem;
}
h2 + p {
  --flow-space: 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

img.align-left,
img.align-right {
  margin: 1.25rem auto 1.25rem;
}
@media screen and (min-width: 768px) {
  img.align-left,
  img.align-right {
    display: inline-block;
    max-width: calc(50% - 1rem);
  }
  img.align-left {
    float: left;
    margin: 1.25rem 1rem 1.25rem 0;
  }
  img.align-right {
    float: right;
    margin: 1.25rem 0 1.25rem 1rem;
  }
}
@media screen and (min-width: 1200px) {
  img.align-left,
  img.align-right {
    max-width: calc(33% - 1rem);
  }
}
