/* ********************************************* */
/* modern-normalize */
/* ********************************************* */


/*! modern-normalize v2.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

*,
::before,
::after {
	box-sizing: border-box;
}

html {
	/* Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
	font-family:
		system-ui,
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
	line-height: 1.15; /* 1. Correct the line height in all browsers. */
	-webkit-text-size-adjust: 100%; /* 2. Prevent adjustments of font size after orientation changes in iOS. */
	-moz-tab-size: 4; /* 3. Use a more readable tab size (opinionated). */
	tab-size: 4; /* 3 */
}

/*
Sections
========
*/

body {
	margin: 0; /* Remove the margin in all browsers. */
}

/*
Grouping content
================
*/

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

hr {
	height: 0; /* 1 */
	color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr[title] {
	text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/

b,
strong {
	font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
	font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/

small {
	font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
	text-indent: 0; /* 1 */
	border-color: inherit; /* 2 */
}

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
	text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
	-webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/

::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
Restore the focus styles unset by the previous rule.
*/

:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

:-moz-ui-invalid {
	box-shadow: none;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

legend {
	padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
	vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
	height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/*
Interactive
===========
*/

/*
Add the correct display in Chrome and Safari.
*/

summary {
	display: list-item;
}

/* ********************************************* */
/* Local Styles */
/* ********************************************* */

:root {
  --mobile-break: 768px; /* more documentation than anything else, until media queries allowed the use of var() or something equivalent */
  --content-width: 800px;
  --course-item-width: 240px;
  --vibrant-green: #006b01;

  /* colors from previous design which I may want to use */
  --light-green: #019E15;
  --dark-green: #1B603E;
  --black: #131B1E;
  --white: #ffffff;
  --bg-grey: #F5F5F5;  
}

@font-face {
  font-family: 'Aileron';
  src: url('https://powerfulpython.com/static/home2/fonts/Aileron-Bold.eot');
  src: url('https://powerfulpython.com/static/home2/fonts/Aileron-Bold.eot?#iefix') format('embedded-opentype'),
       url('https://powerfulpython.com/static/home2/fonts/Aileron-Bold.woff2') format('woff2'),
       url('https://powerfulpython.com/static/home2/fonts/Aileron-Bold.woff') format('woff'),
       url('https://powerfulpython.com/static/home2/fonts/Aileron-Bold.ttf') format('truetype'),
       url('https://powerfulpython.com/static/home2/fonts/Aileron-Bold.svg#Aileron-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aileron';
  src: url('https://powerfulpython.com/static/home2/fonts/Aileron-SemiBold.eot');
  src: url('https://powerfulpython.com/static/home2/fonts/Aileron-SemiBold.eot?#iefix') format('embedded-opentype'),
       url('https://powerfulpython.com/static/home2/fonts/Aileron-SemiBold.woff2') format('woff2'),
       url('https://powerfulpython.com/static/home2/fonts/Aileron-SemiBold.woff') format('woff'),
       url('https://powerfulpython.com/static/home2/fonts/Aileron-SemiBold.ttf') format('truetype'),
       url('https://powerfulpython.com/static/home2/fonts/Aileron-SemiBold.svg#Aileron-SemiBold') format('svg');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aileron';
  src: url('https://powerfulpython.com/static/home2/fonts/Aileron-Regular.eot');
  src: url('https://powerfulpython.com/static/home2/fonts/Aileron-Regular.eot?#iefix') format('embedded-opentype'),
       url('https://powerfulpython.com/static/home2/fonts/Aileron-Regular.woff2') format('woff2'),
       url('https://powerfulpython.com/static/home2/fonts/Aileron-Regular.woff') format('woff'),
       url('https://powerfulpython.com/static/home2/fonts/Aileron-Regular.ttf') format('truetype'),
       url('https://powerfulpython.com/static/home2/fonts/Aileron-Regular.svg#Aileron-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Aileron';
}

p, li {
  line-height: 140%;
}

h3 {
  line-height: 140%;
}

li {
  margin-bottom: .5em;
}

.ss {
  text-decoration: line-through;
}

section#main {
  padding: 0 10px;
  max-width: var(--content-width);
  margin: 0 auto;
}

@media (min-width: 640px) {
  section#main {
    padding: 0 20px;
  }
}

section#main a, section#main a:visited {
  color: var(--vibrant-green);
}

section#main a:hover {
  text-decoration-style: dotted;
}

header {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  header {
    flex-direction: row;
  }
}

header > div.student {
  font-weight: bold;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}

header > nav ul {
  list-style-type: none;
  padding-left: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  header > nav ul {
    font-size: 18px;
  }
}

header > nav li {
  padding-right: 20px;
}
header > nav li:first-child {
  padding-right: 20px;
}

header a, footer a {
  text-decoration-color: silver;
  color: var(--black);
}

header a:hover, footer a:hover {
  color: var(--vibrant-green);
  text-decoration-color: var(--vibrant-green);
}

div.courses {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 768px) {
  div.courses {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

a.course-item {
  width: calc(2px + var(--course-item-width));
  display: block;
  border: 1px solid silver;
  box-shadow: 5px 5px 2px silver;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  text-decoration: none;
  padding-top: 5px;
}

a.course-item-unboxed {
  border: none;
  box-shadow: none;
}

section#main a.course-item:hover {
  border-color: #888;
  text-decoration-style: solid;
  text-decoration: underline;
}

@media (min-width: 768px) {
  section#main a.course-item {
    margin-left: 0;
    margin-right: 0;
  }
}

a.course-item > img {
  width: var(--course-item-width);
}

div.course-name {
  color: var(--vibrant-green);
  font-size: 24px;
  margin-bottom: 12px;
  text-align: center;
}

div.course-item .course-name {
  min-height: 54px;
}

h1 {
  color: var(--vibrant-green);
  font-weight: bold;
  font-size: 36px;
  text-align: center;
  margin-bottom: 24px;
  margin-top: 0;
  line-height: 120%;
}

h2 {
  color: var(--vibrant-green);
  line-height: 140%;
}

footer {
  margin: 100px 0;
}

@media (min-width: 768px) {
  footer {
    width: var(--content-width);
    margin-left: auto;
    margin-right: auto;
  }
}

footer section.footer-links-boxes {
  padding-left:  35%;
}

@media (min-width: 768px) {
  footer section.footer-links-boxes {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 0;
  }
}

footer section.footer-links-box {
  margin-bottom: 24px;
}

footer section.footer-head img {
  max-width: 80%;
  display: block;
  margin: 0 auto;
}

footer ul {
  padding-left: 0;
}

footer li {
  list-style-type: none;
  margin-bottom: .5em;
}

footer section.footer-tail p {
  font-size: 14px;
}

footer section.footer-tail {
  text-align: center;
  margin: 48px 0;
  color: #777;
}

a.button {
  display: inline-block;
  color: white !important;
  background-color: green;
  border: 1px solid green;
  padding: 20px 40px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  transition: .1s all linear;
  text-align: center;
  line-height: 120%;
  box-shadow: 1px 1px 1px silver;
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {
  a.button {
    font-size: 18px;
    padding: 10px 20px;
  }
}

a.button:hover {
  color: green !important;
  background-color: white;
}

a.button2 {
  display: inline-block;
  color: white !important;
  background-color: #e05900;
  border: 1px solid #ccc;
  text-decoration: none;
  font-size: 48px;
  padding: 10px 20px;
  font-weight: 600;
  transition: .1s all linear;
  text-align: center;
  line-height: 120%;
  box-shadow: 1px 1px 1px silver;
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {
  a.button2 {
  }
}

a.button2:hover {
  color: #e05900 !important;
  background-color: white;
}

a.button3 {
  display: inline-block;
  color: white !important;
  background-color: #e05900;
  border: 1px solid #e05900;
  padding: 20px 40px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  transition: .1s all linear;
  text-align: center;
  line-height: 120%;
  box-shadow: 1px 1px 1px silver;
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {
  a.button3 {
    font-size: 18px;
    padding: 10px 20px;
  }
}

a.button3:hover {
  color: #e05900 !important;
  background-color: white;
}


.cta-multiple {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
}

.cta-multiple a {
  width: 300px;
  margin: .5em;
}

@media (min-width: 640px) {
  .cta-multiple {
    flex-direction: row;
  }
}

/* BEGIN django_pygments customization */
div.highlight pre {
  padding: 0;
  padding-left: 10px;
  margin-bottom: 12px;
  border-left: none;
}
div.highlight {
  margin-bottom: 12px;
  border-left: 1px solid #cbd8e1;
  min-width: 100%;
}

div.highlight pre ol {
  list-style-type: none;
  padding-left: 0;
}

ol {
  list-style-type: decimal;
  padding-left: 20px;
  margin-bottom: 10px;
}

div.highlight pre li {
  line-height: 100%;
}
/* END django_pygments customization */

/* BEGIN aweber embedded email signup styles */
a.join-newsletter {
  display: inline-block;
  text-align: center;
  color: white;
  background-color: rgb(34, 120, 99);
  border-radius: 2px;
  width: 100%;
  padding: 1em;
  font-size: 18pt;
  text-decoration: none;
}

a.join-newsletter:hover {
  color: white;
  background-color: rgb(20, 69, 57);
}

div.newsletter-headline {
  text-align: center;
  color: rgb(34, 120, 99);
  font-size: 24pt;
  font-weight: bold;
  font-family: Helvetica;
  line-height: 120%;
  margin-bottom: 1em;
}

div.newsletter-subheadline {
  text-align: center;
  color: rgb(37, 50, 55);
  font-size: 16pt;
  line-height: 140%;
  margin-bottom: 1em;
}

div.newsletter-container1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 1em;
}

@media (min-width: 640px) {
  div.newsletter-container1 {
    flex-direction: row;
  }
}

div.newsletter-container1-form {
  margin: 0;
  padding: 0 2em;
}

div.form-label-clear-hack {
  clear: both;
  margin-bottom: 1em;
}

@media (min-width: 640px) {
  div.form-label-clear-hack {
    display: none;
    margin-bottom: 0;
  }
}

div.newsletter-testimonials-headline {
  font: Arial;
  font-size: 18pt;
  font-weight: bold;
  margin-bottom: 1em;
  text-align: center;
  line-height: 130%;
}

div.newsletter-testimonials {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-weight: bold;
}

@media (min-width: 640px) {
  div.newsletter-testimonials {
    flex-direction: row;
    justify-content: space-between;
  }
}

div.newsletter-testimonials > div {
  align-axis: center;
  margin-bottom: 1em;
}

@media (min-width: 640px) {
  div.newsletter-testimonials > div {
    width: 30%;
  }
}

div.newsletter-container1 div.hidden-fields {
  display: none;
}

div.newsletter-container1 input.text,
div.newsletter-container1 input[type=text],
div.newsletter-container1 input[type=email] {
  border: 1px solid rgb(143, 165, 171);
  border-radius: 3px;
  padding: 5px 10px;
  font-size: 20px;
  min-width: 260px;
  width: 94%;
}

@media (min-width: 640px) {
  div.newsletter-container1 input.text {
    width: inherit;
  }
}


div.newsletter-container1 input[name=email] {
  display: block;
  margin: .5em auto;
  padding: .5em;
  max-width: 400px;
}

div.newsletter-container1 input.submit,
div.newsletter-container1 input[type=submit] {
  color: white;
  background-color: #006b01;
  border-radius: 2px;
  width: 40%;
  min-width: 260px;
  padding: 1em;
  font-size: 14pt;
  display: block;
  margin: .5em auto;
}

@media (min-width: 640px) {
  div.newsletter-container1 input.submit,
  div.newsletter-container1 input[type=submit] {
    margin: .5em 30%;
  }
}
div.newsletter-container1 input.submit:hover {
  color: white;
  background-color: rgb(20, 69, 57);
}

div.newsletter-container1 div.privacyPolicy {
  display: none;
}

.checkbox-error {
  border-top: 2px solid red;
  border-left: 2px solid red;
  border-right: 2px solid red;
  padding-bottom: .3em;
}

/* END aweber embedded email signup styles */

/* styles for testimonials */

ul.testimonials {
  font-size: 12pt;
  padding-left: 0;
  margin-left: 0 !important;
  margin-bottom: 1em;
}

ul.testimonials li {
  margin-bottom: 1.5em;
  list-style-type: none;
}

ul.testimonials div.testimonial-body {
  font-weight: 600;
  margin-bottom: .5em;
  line-height: 140%;
}

ul.testimonials div.testimonial-body::before {
  content: open-quote;
}

ul.testimonials div.testimonial-body::after {
  content: close-quote;
}

ul.testimonials div.testimonial-attrib {
  font-style: italic;
  margin-bottom: .5em;
}

ul.testimonials img.testimonial-img {
  width: 100%;
  max-width: 400px;
}

ul.testimonials div.testimonial-attrib::before {
  content: "- ";
}

h3.testimonials {
  font-style: italic;
}

/* END styles for testimonials */


div.logobox-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

div.logobox-items img {
  width: 60px;
  padding: 0;
  margin: 8px;
}

@media (min-width: 640px) {
  div.logobox-items img {
    width: 120px;
  }
}
/* BEGIN bootcamp page styles */

section.bootcamp {
  font-size: 14px;
}

@media (min-width: 640px) {
  section.bootcamp {
    font-size: 18px;
  }
}

section.bootcamp p {
  text-align: center;
  line-height: 140%;
}

section.bootcamp h2,
section.bootcamp h3
{
  text-align: center;
}

section.bootcamp ul {
  line-height: 140%;
}

@media (min-width: 640px) {
  section.bootcamp ul {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}

ul.alt-bold > li:nth-child(even) {
  font-weight: 600;
}

ul.checkmarks li {
  list-style-type: '✓ '
}

ul.checkmarks li::marker {
  color: var(--vibrant-green);
}

table.bootcamp {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #006b01;
  font-size: 12px;
}

@media (min-width: 640px) {
  table.bootcamp {
    font-size: inherit;
  }
}

table.bootcamp thead {
  color: white;
  background-color: #006b01;
}

table.bootcamp thead th {
  border: 1px solid silver;
}


table.bootcamp th,
table.bootcamp td {
  text-align: center;
  padding: 5px;
  border: 1px solid #006b01;

}

@media (min-width: 640px) {
  table.bootcamp th,
  table.bootcamp td {
    padding: 20px;
  }
}

table.bootcamp caption {
  /* todo: make it like h2 */
  color: #006b01;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 18px;
}

table.bootcamp tbody td:nth-child(1) {
  font-weight: normal;
  text-align: left;
}

table.bootcamp tbody tr:nth-child(even) {
  background-color: #eee;
}

table.bootcamp-manual-columns colgroup col:first-child {
  width: 25%;
}

table.bootcamp-manual-columns colgroup col {
  width: 18.75%;
}

.checkbox {
  font-weight: bold;
  color: var(--vibrant-green);
}

.course-module-name {
  color: var(--vibrant-green);
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 12px;
}

.course-module-description {
  text-align: center;
  font-style: italic;
}

dl {
  margin-bottom: 24px;
}

dt {
  font-weight: bold;
  margin-bottom: 12px;
}

dd {
  margin-bottom: 18px;
}

.bootcamp dd p {
  text-align: left;
}

/* END bootcamp page styles */


.video {
  border: #1b603e solid 1px;
  margin-bottom: 1em;
}

/* BEGIN sales letter styles */

.sl {
  margin-top: 1em;
}

.sl h2,
.sl h3 {
  text-align: center;
}

.sl p {
  font-size: 18px;
}

.sl li {
  font-size: 18px;
  margin-bottom: 18px;
}

.sl-block {
  margin-bottom: 24px;
  border: 1px black solid;
  box-shadow: 1px 1px 1px 1px silver;
  padding: 24px;
}

.sl-testimonial {
  /* background-color: #ffe300; */
  background-color: #c1e1c1;
  margin-bottom: 24px;
  padding: 24px;
  font-weight: 600;
  border: 1px solid gray;
  box-shadow: 5px 3px 3px silver;
  border-radius: 2px;
}

.sl-testimonial-attribution {
  font-style: italic;
}

.sl-subheadline {
  font-size: 24px;
  font-weight: 700;
  line-height: 115%;
  text-align: center;
  color: var(--vibrant-green);
}

.sl-button-box {
  text-align: center;
  margin-bottom: 24px;
}

.sl-standout,
.sl p.sl-standout {
  color: var(--vibrant-green);
  font-weight: bold;
  text-align: center;
  font-size: 150%;
}

.sl dl {
  margin-bottom: 24px;
  font-size: 18px;
}

.sl dt {
  font-weight: bold;
  margin-bottom: 12px;
}

.sl dd {
  margin-bottom: 24px;
}

h1.courses-discount-announcement {
  margin-bottom: 12px;
}

h2.courses-discount-announcement {
  text-align: center;
  color: #ee0000;
  font-style: italic;
  margin-bottom: 24px;
}

div.sl-image-with-caption {
  border: 1px solid gray;
  padding: 5px;
  border-radius: 2px;
  box-shadow: 5px 3px 3px silver;
}

div.sl-image-with-caption img {
  max-width: 100%;
  padding: 20px;
  background-color: black;
  margin-bottom: 0;
  border-radius: 2px;
}

div.sl-image-with-caption p {
  font-style: italic;
  text-align: center;
}

.sl pre {
  line-height: 150%;
  overflow-x: auto;
  white-space: pre;
  border: 1px solid gray;
  padding: 8px;
  border-radius: 2px;
  box-shadow: 2px 1px 1px silver;
  font-size: 14px;
}

ul.green-checkmarks {
  margin: 0 auto 1.5em auto;
  list-style: none;
}

ul.green-checkmarks li::marker {
  content: "✓  ";
  font-weight: bold;
  color: #006b01;
}

ul.small-centered {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

/* Safari fallback until it fully supports ::marker
   https://caniuse.com/css-marker-pseudo
 */
@supports (hanging-punctuation: first) and (font: -apple-system-body) and (-webkit-appearance: none) {
  ul.green-checkmarks li {
    list-style-type: disc;
  }
}

.sl blockquote {
  font-size: 100%;
  font-weight: 600;
  max-width: 70%;
  font-style: italic;
  text-align: justify;
  margin: 0 auto 1em auto;
  color: #333;
  line-height: 150%;
}
  
/* END sales letter styles */

/* BEGIN coderdreamjob styles */

h1.cdj, h2.cdj {
  color: #0111C7
}

a.cdj {
  background-color: #0111C7;
}
a.cdj:hover {
  color: #0111C7 !important;
  background-color: white;
  border-color: #0111C7;
}

/* END coderdreamjob styles */

input[type=text],
input[type=password],
input[type=email]
{
  border: 2px solid silver;
  padding: 12px;
  border-radius: 4px;
}

input[type=submit] {
  background-color: var(--vibrant-green);
  color: white;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid green;
}

input[type=submit]:hover {
  color: var(--vibrant-green);
  background-color: white;
  transition: .1s all linear;
}

.highlight-image {
  text-align: center;
  margin-bottom: 18px;
}

.highlight-image img {
  max-width: 240px;
}

.fs-120p {
  font-size: 120%;
  line-height: 140%;
}

.fs-140p {
  font-size: 140%;
  line-height: 150%;
}

.youtube-playlist-headline {
  font-style: italic;
  text-align: center;
  font-size: 80%;
  margin-bottom: .5em;
}

.featured-quote {
  max-width: 640px;
  margin: 0 auto 1em auto;
  text-align: center;
  margin-bottom: 1em;
}

.featured-quote-body {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}

.featured-quote-attrib {
  font-style: italic
}

.video-max-size div.video {
  max-width: 320px;
}

.center {
  text-align: center;
}

/* newsletter-inline */

div.newsletter-inline {
  text-align: center;
}

div.newsletter-inline-prefix {
  font-size: 20px;
  margin-bottom: 6px;
  font-weight: 600;
}

@media (min-width: 640px) {
  div.newsletter-inline-prefix {
    display: inline;
  }
}

div.newsletter-inline input {
  border: 2px solid silver;
  padding: 8px;
}

div.newsletter-inline input[type=submit] {
  border: 1px solid green;
  padding: 9px;
  font-weight: 600;
}


div.newsletter-inline2 {
  text-align: center;
  margin-bottom: 2em;
}

div.newsletter-inline2 input[type=email],
div.newsletter-inline2 input[type=submit]
{
  width: 80%;
  text-align: center;
}

div.newsletter-stack-yessno {
  width: 80%;
  margin: 0 auto 1em auto;
}

div.newsletter-stack-yessno p {
  font-size: 12pt;
}

div.newsletter-stack-yessno label {
  border: 1px solid silver;
  padding: 2px 12px;
  border-radius: 2px;
}

@media (min-width: 640px) {
  div.newsletter-inline2 input[type=submit],
  div.newsletter-inline2 input[type=email]
  {
    max-width: 320px;
  }
}


.lifted {
  font-weight: 600;
  margin-bottom: .5em;
    font-size: 20px;
}

@media (min-width: 640px) {
  .lifted {
    font-size: 24px;
  }
}

.top-cta {
  text-align: center;
  background-color: #006b01;
  color: white;
  top: 0;
  position: sticky;
  width: 100%;
  z-index: 100;
  font-size: 24px;
}

.top-cta-content {
  max-width: 768px;
  padding: 1em 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 640px) {
  .top-cta-content {
    flex-direction: row;
  }
}
a.cta-button {
  display: inline-block;
  color: green !important;
  background-color: white;
  border: 1px solid white;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  transition: .1s all linear;
  text-align: center;
  line-height: 120%;
  box-shadow: 1px 1px 1px silver;
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {
  a.cta-button {
    padding: 5px 10px;
  }
}

a.cta-button:hover {
  color: white !important;
  background-color: green;
}
