@charset "UTF-8";
html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  word-wrap: break-word;
}

* {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.8em;
  font-family: "Merriweather", "Georgia", serif;
  color: #241d20;
}

h1, h2 {
  font-family: "Comfortaa", sans-serif;
}

h1 {
  font-size: 2em;
  line-height: 1.25em;
  color: #bb5515;
}

h3 {
  margin-top: 1.618em;
  margin-bottom: 0.618em;
  color: #3d567c;
}

strong {
  font-weight: 700;
}

img, iframe {
  max-width: 100%;
  height: auto;
}

ul, ol {
  margin-left: 0;
  padding-left: 0;
}

li {
  margin-left: 1em;
  padding-left: 0.25em;
}

.text-right{
  text-align: right;
}

.container, .container-fluid {
  max-width: 100%;
  padding-left: 1em;
  padding-right: 1em;
  margin: 0 auto;
}

.container {
  width: 45em;
}

.container-fluid {
  width: 1680px;
}

.grid{
  display:grid;
  gap:3em 1.5em;
}


@media(min-width: 768px){
  .sm-grid-cols-2{
    grid-template-columns: 1fr 1fr;    
  }
}
@media(min-width:1024px){
  .lg-grid-cols-4{
    grid-template-columns: repeat(4, 1fr);
  }
}
.card{
  box-shadow:0 .25em .25em rgba(0,0,20,.5);
  border: 1px solid #e8ecf4;
}
.card img{
  border-bottom:1px solid #a0b3d0;
}
.card .card-content{
  padding:1em 1.5em 2.5em;
}
.card h2{
  color:#3d567c;
}

.card a{
  color:#bb5515;
}
.card a:after{
  content:"\2192";
  transform: translateX(3px);
  text-decoration: none;
  display: inline-block;
  transition: transform .5s ease-out;
}
.card a:hover:after{
  transform: translateX(9px);
}

.intro {
  margin-top: 2em;
  margin-bottom: 2em;
  padding-top: 1em;
}

.outro {
  margin-top: 2em;
  margin-bottom: 2em;
}

.signup-form {
  padding: 1em;
  width: 42em;
  max-width: 96%;
  border: 3px dashed #ccc;
}
.signup-form h2 {
  margin-bottom: 0.25em;
}

.indicates-required {
  font-size: 0.8em;
  font-style: italic;
  margin-bottom: 2em;
}

.asterisk {
  color: #fd1010;
}

.mc-field-group {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1em;
}

label {
  flex: 0 1 120px;
}
label:after {
  content: ":";
}

input, textarea {
  flex: 1 0 450px;
  max-width: 100%;
}

textarea {
  height: 9em;
}

input[type=text], input[type=email] {
  height: 2em;
}

.button {
  background-color: #fd1010;
  color: #fff;
  font-size: 1.25em;
  padding: 0.5em 1.25em;
  text-decoration:none;
}
.button:hover, .button:focus {
  box-shadow: inset 0 12px 12px rgba(50, 10, 10, 0.5);
}

.banner {
  position: relative;
  text-align: center;
  font-weight: 300;
  padding-top: 1em;
}
.banner .container-fluid{
  padding-left: 0;
  padding-right:0;
}
.banner h1 {
  border-bottom: 1px solid #9f8890;
  box-shadow: 0 6px 6px -6px rgba(36, 29, 32, 0.25), 0 4px 4px -4px rgba(36, 29, 32, 0.5), 0 2px 2px -2px rgba(36, 29, 32, 0.75), 0 1px 1px -1px rgba(36, 29, 32, 0.9), inset 0 -1px 1px -1px #241d20;
  padding-bottom: 0.5em;
  position: relative;
  color: #241d20;
}
.banner p {
  font-size: 1.25em;
  opacity: 0.5;
  text-shadow: 0px -1px 0 rgba(36, 29, 32, 0.9);
}
.banner a {
  text-decoration: none;
  color: inherit;
}

.love-stream-signup .banner h1:after {
  content: "❤️";
  position: absolute;
  padding: 0.25em;
  bottom: -0.75em;
  font-size: 0.5em;
  text-align: center;
  width: 1em;
  color: #fd1010;
  left: calc(50% - .5em);
  background-color: #fff;
  height: 1em;
  line-height: 1.25em;
  border-radius: 50%;
}

.site-nav + .banner {
  margin-top: 22.5px;
}

.site-nav {
  border-top: 1px solid #000710;
  border-bottom: 1px solid #000710;
  padding: 0.5em 0;
  width: 100%;
  position: sticky;
  top: -2px;
  z-index: 11;
  background-color: #fff;
  box-shadow: 0 3px 3px rgba(160, 179, 208, 0.375), 0 6px 6px rgba(160, 179, 208, 0.25), 0 9px 9px rgba(160, 179, 208, 0.125);
}
.site-nav ul {
  list-style: none;
  padding: 0 0 0 0;
  margin: 0 0 0 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 1em;
}
.site-nav li {
  margin-left: 0;
  padding-left: 0;
}
.site-nav li.coming-soon {
  display: none;
}
.site-nav a {
  display: block;
  padding: 0.5em 1em;
  text-decoration: none;
  color: #bb5515;
}
.site-nav a:hover {
  color: #fd1010;
}
.site-nav a:focus, .site-nav a:active {
  outline: 1px dotted;
}

footer .site-nav {
  border-top-color: #a0b3d0;
}

.homepage {
  background: #3d567c;
  color: whitesmoke;
}
.homepage .intro {
  padding: 3em 1em 5em;
  margin-bottom: 0;
}
.homepage .intro h1 {
  color: whitesmoke;
}
.homepage .intro p {
  font-size: 1.5em;
  color: #e8ecf4;
  font-family: "Comfortaa", sans-serif;
}
.homepage .banner {
  text-align: left;
  background-color: transparent;
}
.homepage .banner h1 {
  color: white;
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
  box-shadow: none;
}
.homepage .banner p {
  margin-top: 0;
}
.homepage .site-nav {
  background-color: rgba(255, 255, 255, 0.75);
}

.donate section {
  border-bottom: 1px dotted #a0b3d0;
  padding-bottom: 1.618em;
  margin-bottom: 1.618em;
}
.donate li {
  margin-bottom: 0.75em;
}

.portfolio .banner p{
  color:#bb5515;
  font-size:2em;
  opacity:1;
}

.portfolio .next-step{
  margin-top:3em;
  border-top: 1px dotted #bb5515;
  padding: 2em 0;
}

.portfolio footer{
  font-family: "Comfortaa", sans;
}