/*!
Theme Name: Kindness
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.3
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: kindness
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Kindness is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

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

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
 html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  --theme-background: #fff;
  --theme-background-alternate: #f7f5f4;
  --theme-blue: #6fd6ff;
  --theme-dark-blue: #263a91;
  --theme-light-blue: #caf6ff;
  --theme-accent-yellow: #ffe282;
  --theme-accent-red: #ed5f65;
  --theme-grey: #2b2b2b;
}

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

/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
  overflow: hidden;
}

article {
  width: 80%;
  margin: auto;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.6em 0;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: scale(0.7, 0.7);
  }

  to {
    opacity: 1;
  }
}

.fade-in-element {
  animation: fade-in 1.4s;
}

.hidden {
  opacity: 0;
}

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

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

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

/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * 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;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* 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;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in 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.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-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;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-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;
  font: inherit;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  background-color: #fff;
  color: #000;
  width: 100%;
}

/* section */
section {
  /* padding: 20px; */
  width: 100%;

  /* clip-path: polygon(0% 0%, 100% 50px, 100% 100%, 0% calc(100% - 50px)); */

  /* padding:inherit 0; */
  opacity: 1;
}
section > div {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* section:not(:first-child) > div{
  opacity: 0;
} */
section:nth-child(even) {
  background-image: linear-gradient(
    var(--theme-background-alternate),
    var(--theme-background-alternate)
  );
  transform: skewY(2deg);
  transform-origin: top center;
}

section:nth-child(even) > * {
  transform: skewY(-2deg);
}

/* section > div {
  margin: calc(4vw + 40px) 5vw;
} */

/* Parallax
	 ========================================================================== */
.parallax-back {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 90%;
  text-align: center;
}

.parallax-back > img {
  /* top: 30px; */
  position: relative;
  width: 100%;
}

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

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
  color: var(--theme-grey);

  /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; */
  font-family: "Open Sans", sans-serif;

  /* font-size: calc(.48rem + .2vw); */
  line-height: 1.5;
  font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-family: "Abhaya Libre", serif;
}

h1 {
  font-size: calc(31px + 3vw);
  font-weight: normal;
  line-height: 1.12;
  margin: 10px 0;
}

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

h2 {
  font-size: calc(13px + 2vw);
}

h3 {
  font-family: "Open Sans", sans-serif;
  font-size: calc(8px + 1vw);
  text-transform: uppercase;
  font-weight: normal;
  margin: 3vw 0;
}

p {
  margin-bottom: 1.5em;
  font-family: "Oswald", sans-serif;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 2px;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
  background: #fff;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

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

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/* Links
--------------------------------------------- */
a.button {
  display: inline-block;
  color: var(--theme-grey);
  border-radius: 3px;
  background-color: var(--theme-blue);
  font-weight: normal;
  text-decoration: none;
  padding: 5px 10px;
  font-size: calc(6px + 1.3vw);
  padding: 5px 1.2vw;
  margin: 8px;
  border: 1px solid var(--theme-blue);
  transition: background-color 0.3s ease-in-out;
  text-align: center;
}

a.site-header {
  background-color: transparent;
  color: var(--theme-grey);
  border-radius: 0;
  font-weight: bold;
  text-decoration: none;
  font-size: calc(0.48rem + 0.2vw);
  margin: 0;
  padding: 0;
  border: none;
}

.site-footer a {
  background-color: transparent;
  color: var(--theme-grey);
  border-radius: 0;
  font-weight: normal;
  text-decoration: none;
  margin: 0;
  padding: 0;
  border: none;
}

.site-title a {
  font-size: 1rem;
}

a.site-title img {
  padding-right: 10px;
  position: relative;
  top: 3px;
  width: 62px;
}

a.site-title {
  display: block;
}

a:visited {
  color: var(--theme-grey);
}

a:hover,
a:focus,
a:active {
  background-color: transparent;
  transition: background-color 0.3s ease-in-out;
}

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: none;
  border-bottom: 2px solid black;
  border-radius: 0;
  padding: 10px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Header */

header {
  background-color: white;
  position: fixed;

  /* margin: 0 1.65vw; */
  display: block;
  height: calc(60px + 1vw);
  width: 100%;

  /* background-image: url('assets/temp-header.png'); */
  background-position: center;
  background-size: 100%;
  letter-spacing: 0.5px;
  z-index: 1000;
}

header > * {
  float: left;
  font-family: "Open Sans", sans-serif;
  color: black;
}

header a {
  margin: 0;
  padding: 0;
  font-weight: normal;
  text-transform: uppercase;
}

header a {
  font-family: "Open Sans", sans-serif;
  text-decoration: none;
}

header a:visited {
  color: var(--theme-grey);
}

/* Navigation
--------------------------------------------- */
.site-title {
  display: inline-block;
  font-size: 1rem;
  padding: calc(7px + 0.6vw);
  margin: 10px;
}


.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
}

.site-main {
  padding-top: calc(60px + 1vw);
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: end;
  flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
  display: block;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 1.5em;
}

.widget select {
  max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;

  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;

  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

/* MODAL */

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1001; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  text-align: center;
}

/* Modal Content/Box */
.modal-content {
  position: relative;
  background-color: var(--theme-dark-blue);
  margin: 5vw auto; /* 15% from the top and centered */
  padding: 20px 60px;

  /* border: 1px solid #888; */
  border-radius: 30px;
  width: 80%; /* Could be more or less, depending on screen size */
  color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  animation-name: animatetop;
  animation-duration: 0.7s;
}

.modal h1 {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  background-image: url("assets/Resources_Underline.png");
  background-position: center bottom;
  background-size: calc(238px + 4vw);
  background-repeat: no-repeat;
  padding-bottom: 10px;
}

.modal p {
  font-size: 1rem;
  margin-top: 40px;
}

.modal a {
  text-decoration: none;
  color: white;
  border: 1px solid white;
  display: inline-block;
  padding: 5px 10px;
  margin: 20px;
  border-radius: 3px;
}

.modal ul li{
  text-align: left;
}

.modal ul a{
  border: none;
  text-decoration: underline;
  margin: 0;
}

@media screen and (max-width: 37.5em) {
  .modal-content {
    padding: 5vw;
  }
  #modal-signUp .modal-content {
    padding: 0;
  }
}

/* Add Animation */
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  
  to {
    top: 0;
    opacity: 1;
  }
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: relative;
  left: 20px;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (max-width: 37.5em) {
  .close {
    left: 0px;
  }
}
/* END MODAL */

/* FOOTER */

footer.site-footer {
  background-color: var(--theme-dark-blue);
  color: white;
  text-transform: uppercase;
}

footer.site-footer > * {
  padding: 2vw 2vw;
}

footer .footer-top {
  display: grid;
  grid-template-columns: 5fr 3fr 1fr;
  grid-gap: 4vw;
  border-bottom: 2px solid white;
}

ul.footer-social {
  list-style-type: none;
  display: flex;
  padding: 0;
  margin: 0;
}

ul.footer-social li {
  margin-left: 5px;
  /* float: right; */
}

ul.footer-social li img {
  width: 34px;
  /* margin-left: 16px; */
}

form br {
  display: none;
}

/* footer menu */
.menu-footer-menu-container ul {
  list-style-type: none;
  font-size: calc(10px + 0.6vw);
  float: right;
}

.menu-footer-menu-container ul a {
  color: white;
  text-decoration: none;
}

footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 3vw;
  /* display: grid;
	grid-template-columns: 2fr 1fr;
	grid-gap: 2vw; */
}

footer .footer-bottom span {
  font-size: calc(0.6rem + 0.2vw);
}

footer .footer-left-top span {
  font-size: calc(0.6rem + 0.2vw);
}

/* END FOOTER */

/* HOME PAGE */

/* section 1 */
.front-sec-1 > div{
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-content: center;
  height: calc(100vh - calc(60px + 1vw));
  gap: 10vw;
}
/* 
.front-sec-1 > div > div {
  width: 50%;
} */

.home-page a.button {
  /* width: calc(36px + 9vw); */
  padding: 6px 30px;
  margin: 0 0 40px 0;
}

/* .front-sec-1 > div > div:nth-child(1) {
  margin: 0 5vw;
} */

.front-sec-1 > div > div:nth-child(2) {
  background-color: white;
}

@media screen and (max-width: 800px) {
  .front-sec-1 > div{
    grid-template-columns: 1fr;
  }
  /* .front-sec-1 > div > div{
    width: 100%;
  } */
}

/* section 2 */
section.homePageSection2 {
  display: grid;
  grid-template-columns: 5fr 1fr 4fr;
}

section.homePageSection2 li {
  font-size: calc(8px + 1vw);
}

section.homePageSection2 > div {
  margin: 5vw;
}

section.homePageSection2 > div:nth-child(1) {
  grid-column: 1 / span 2;
}

section.homePageSection2 > div:nth-child(2) {
  grid-column: 3 / 4;
  margin-bottom: 0;
}

section.homePageSection2 > div:nth-child(3) {
  grid-column: 1 / 4;
  margin-top: 0;
  margin-bottom: 0;
}

section.homePageSection2 > div:nth-child(4) {
  grid-column: 1 / 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: calc(2vw + 5px);
  grid-column-gap: calc(4vw + 5px);
  margin: calc(4vw + 40px) 14vw;
}

section.homePageSection2 > div:nth-child(4) h3 {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  color: var(--theme-accent-red);
  margin-top: 0;
}

section.homePageSection2 > div:nth-child(4) p {
  font-size: calc(7px + 0.6vw);
}

section.homePageSection2 > div:nth-child(4) > div {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-column-gap: calc(2vw + 5px);
}

@media screen and (max-width: 800px) {
  section.homePageSection2 {
    grid-template-columns: 1fr;
  }

  section.homePageSection2 > div:nth-child(1) {
    grid-column: 1;
  }

  section.homePageSection2 > div:nth-child(2) {
    grid-column: 1;
    text-align: center;
  }

  section.homePageSection2 > div:nth-child(3) {
    grid-column: 1;
  }

  section.homePageSection2 > div:nth-child(4) {
    grid-column: 1;
  }

  section.homePageSection2 > div:nth-child(4) {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, calc(150px + 1vw));
  }
}

.homePageSection3 h1 span {
  background-image: url("assets/MainPage_KindCollection_Underline.png");
  background-position: center 1.06em;
  background-size: calc(179px + 14vw);
  background-repeat: no-repeat;
  padding-bottom: 32px;
}

.homePageSection3 > div {
  margin: calc(4vw + 40px) 5vw;
  text-align: center;
}

.homePageSection3 h3 {
  margin-top: calc(3vw + 20px);
}

.homePageSection3 .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 3vw;
}

.homePageSection3 .grid > div {
  padding: 1vw 4vw;
}

.homePageSection3 .grid > div:nth-child(2) {
  padding: 1vw 1vw;
}

.homePageSection4 > div {
  margin: calc(4vw + 40px) 5vw;
}

.homePageSection4 .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 5vw;
  align-items: center;
  margin-top: calc(4vw + 40px);
}

@media screen and (max-width: 800px) {
  .front-sec-1 > div{
    height: auto;
  }
  .homePageSection3 .grid {
    grid-template-columns: 1fr;
  }

  .homePageSection4 .grid {
    grid-template-columns: 1fr 1fr;
  }

  .homePageSection3 .grid div:nth-child(1) {
    grid-row: 1/2;
  }

  .homePageSection3 .grid div:nth-child(4) {
    grid-row: 2/3;
  }

  .homePageSection3 .grid div:nth-child(2) {
    grid-row: 3/4;
  }

  .homePageSection3 .grid div:nth-child(5) {
    grid-row: 4/5;
  }

  .homePageSection3 .grid div:nth-child(3) {
    grid-row: 5/6;
  }

  .homePageSection3 .grid div:nth-child(6) {
    grid-row: 6/7;
  }

  .homePageSection3 .grid a {
    margin-bottom: 40px;
  }
}

/* HOME PAGE SECTION4.5  */
.homePageSection45 {
  text-align: center;
}
.homePageSection45 > div > div {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  flex-wrap: wrap;
  gap: 3vw;
}
.homePageSection45 img {
  width: 300px;
}
.homePageSection45 h1 {
  margin-top: 5vw;
}
/* END HOME PAGE SECTION4.5  */

/* END HOME PAGE */

/* MISSION PAGE */
.missionSec1 > div{
  display: flex;
  /* grid-template-columns: 1fr 1fr; */
  gap: 5vw;
  padding-top: 5vw;
  padding-bottom: 10vw;
  align-items: center;
}

.missionSec1 > div > div{
  width: 50%;
}

.missionSec1-img-wrapper{
  background-position: center;
  text-align: center;
}

/* .missionSec1 img {
  position: relative;
  top: 30px;
} */

.missionSec1-5 > div{
  /* margin: 40px; */
  padding: 10vw;
}

/* .mission-page section > div > div {
  margin: calc(4vw + 40px) 5vw;
} */

.missionSec2 div:nth-child(2) {
  text-align: center;
}

.missionSec2 > div{
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 10vw;
  padding-top: 10vw;
  padding-bottom: 5vw;
}

.missionSec2 h1 {
  padding-bottom: 3vw;
}

.missionSec2 li {
  margin: 0;
  padding: 0 0 36px 84px;
  list-style: none;
  background-image: url("assets/Mission_Whatweknow_Arrow.png");
  background-repeat: no-repeat;
  background-position: left 8px;
  background-size: 40px;
}

.missionSec2 li h3 {
  margin: 0;
}

.missionSec2 a {
  text-decoration: none;
  color: var(--theme-grey);
}

.underlined{
  background-image: url("assets/Mission_Underline.png");
  background-position: center 1.26em;
  background-size: calc(400px + 4vw);
  background-repeat: no-repeat;
  padding-bottom: 100px;
}
.problem-underlined{
  background-image: url("assets/Resources_Underline.png");
  background-position: center 1.26em;
  background-size: calc(400px + 4vw);
  background-repeat: no-repeat;
  padding-bottom: 100px;
}

@media screen and (max-width: 800px) {
  .missionSec2 > div{
    grid-template-columns: 1fr;
  }

  .missionSec2 > div:nth-child(2) {
    text-align: center;
    margin-top: 0;
  }
}

/* section 3 */
.missionSec3 .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin: 0 5vw;
  grid-gap: 5vw;
  text-align: center;
}

.missionSec3 > div {
  padding-top: 10vw;
  padding-bottom: 10vw;
}

.missionSec3 .grid img {
  padding: 40px 40px 0 40px;
}

.missionSec3 .grid h3 {
  color: var(--theme-accent-red);
}

@media screen and (max-width: 800px) {
  .missionSec3 .grid {
    grid-template-columns: 1fr 1fr;
  }
  .missionSec1 > div{
    flex-wrap: wrap;

  }

  .missionSec1 > div > div{
    width: 100%;
  }
}

/* section 4 */
.missionSec4 > div{
  text-align: center;
  padding-top: 10vw;
  padding-bottom: 10vw;
}

/* section 5 */
.missionSec5 .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 3vw;
  text-align: center;
  margin: 3vw;
}
.missionSec5 h3{
  font-size: calc(8px + .6vw);
  margin-bottom: 0.2em;
  /* line-height: 1; */
}

.missionSec5 p{
  font-size: calc(8px + .3vw);
  margin: 0.5em;
}
.missionSec5 button{
  padding: 0.4em 1em 0.4em;
}

.missionSec5 h1 {
  background-image: url("assets/Mission_MeetYourTeam_Underline.png");
  background-position: center bottom;
  background-size: calc(179px + 14vw);
  background-repeat: no-repeat;
  padding-bottom: 27px;
  margin-bottom: 7vw;
}

.missionSec4-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5vw;
}

/* Container needed to position the button. Adjust the width as needed */
.vid-container {
  position: relative;

  /* width: 50%; */
}

/* Make the image responsive */
.vid-container img {
  width: 100%;
  height: auto;
}

/* Style the button and place it in the middle of the container/image */
.vid-container .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);

  /* background-color: #555; */
  color: white;
  width: calc(82px + 2vw);
  font-size: 16px;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.bios a button{
  cursor: pointer;
}

/* END MISSION PAGE */

/* GET INVOLVED */
.get-involved-sec-1 > div{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  min-height: calc(100vh - calc(60px + 1vw));
  place-content: center;
}

.get-involved-sec-1 h1{
  margin-left: 20px;
  margin-bottom: 80px;
}

.take-action-buttons > div{
  display: flex;
  gap: 5vw;
  margin: 2vw 0;
}

.take-action-buttons .button{
  width: 100%;
  /* background-color: transparent; */
  padding: calc(.4vw + 10px);
  font-size: calc(0.5vw + 0.6em);
}

.get-involved-sec-1 div img {
  width: 100%;
}

.get-involved-sec-3 {
  display: grid;
  grid-template-columns: 5fr 4fr;
}

.get-involved-sec-3 > div:nth-child(1) {
  padding-left: 4vw;
}

.get-involved-sec-3 > div:nth-child(2) {
  text-align: center;
}

.get-involved-sec-3 a {
  display: inline-block;
}

.get-involved-sec-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
}

.get-involved-sec-4 div:first-child {
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 800px) {
  .get-involved-sec-1 > div{
    display: grid;
    grid-template-columns: 1fr;
  }

  .get-involved-sec-3 {
    display: grid;
    grid-template-columns: 1fr;
  }

  .get-involved-sec-4 {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.get-involved-form {
  border-radius: 30px;
  padding: 5vw 7vw;
  /* width: calc(200px + 35vw); */
  margin: auto;
  text-align: left;
  background-color: white;
  box-shadow: 2px 2px 10px rgba(237, 95, 101, 0.2);
  color: black;
}

.get-involved-form br {
  display: contents;
}

.get-involved-form p {
  margin: 0;
}

.get-involved-form input[type="email"],
.get-involved-form input[type="text"],
.get-involved-form input[type="tel"] {
  border: 2px solid #555;
  border-radius: 10px;
  font-size: calc(10px + 1vw);
}

.get-involved-form .your-name,
.get-involved-form .your-email,
.get-involved-form .phone {
  padding-top: 40px;
}

.get-involved-form [type="checkbox"] {
  margin-top: 1vw;
  margin-left: -18px;
}

.get-involved-form .wpcf7-list-item-label {
  margin-top: 3vw;
  margin-left: 18px;
  display: -webkit-inline-box;
}

.get-involved-form .wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-list-item-label {
  width: 80%;
}

/* .get-involved-form .form-drawer {
  display: none;
} */

.get-involved-form input[type="checkbox"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  outline: none;
  font-size: inherit;
  cursor: pointer;
  width: 2em;
  height: 2em;
  background: white;
  border-radius: 0.25em;
  border: 0.125em solid #555;
  position: relative;
}

.get-involved-form input[type="checkbox"]:checked {
  background: #adf;
}

.get-involved-form input[type="checkbox"]:checked::after {
  content: "✔";
  position: absolute;
  font-size: 180%;
  left: 0.0625em;
  top: -0.25em;
}

.get-involved-form input[type="submit"] {
  background-color: white;
  border-radius: 5px;
  margin-top: 3vw;
  padding: 10px 20px;
}

/* END GET INVOLVED */

/* CURRICULUM */

.curriculum-sec-1 > div{
  background-size: 100%;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 5vw;
  padding-bottom: 10vw;
  place-items: center;
}

.curriculum-sec-1 > div h1 {
  font-size: calc(-4px + 3vw);
}

.curriculum-sec-1 > div p {
  font-size: 1rem;
  padding-right: 7vw;
}

.curriculum-sec-2 > div h1 {
  background-image: url("assets/Resources_Underline.png");
  background-position: center 1.06em;
  background-size: calc(179px + 14vw);
  background-repeat: no-repeat;
  padding-bottom: 27px;
}

.curriculum-sec-2 > div p {
  width: 70%;
  margin: auto;
}

.curriculum-sec-2 .bordered {
  border: 1px solid black;
  border-radius: 8px;
  width: calc(100px + 45vw);
  margin: 7vw auto;
  padding: 0 4vw 4vw 4vw;
}
.curriculum-sec-3 > div{
  padding-top: 10vw;
  padding-bottom: 10vw;
}
.curriculum-sec-3 .kit-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
}

.curriculum-sec-4 > div{
  display: grid;
  grid-gap: 7vw;
  grid-template-columns: 1fr 1fr;
  padding-top: 10vw;
  padding-bottom: 10vw;
}
.curriculum-button{
  display: inline-block;
  color: black;
  text-decoration: none;
  border-radius: 3px;
  padding: 10px 140px;
  border: 1px solid black;
}
.loop-underline{
  background-image: url("assets/Mission_Underline.png");
  background-position: center bottom;
  background-size: calc(300px + 4vw);
  background-repeat: no-repeat;
  padding-bottom: 10px;
}

@media screen and (max-width: 800px) {
  .curriculum-sec-1 > div{
    grid-template-columns: 1fr;
    grid-gap: 5vw;
  }

  /* .curriculum-sec-1 > div {
    margin: calc(26vw + 40px) 2vw calc(15vw + 40px) 2vw !important;
  } */

  .curriculum-sec-1 > div h1 {
    font-size: calc(-3px + 4vw);
  }

  /* .curriculum-sec-1 > div p {
    font-size: calc(-4px + 3vw);
  } */
  .curriculum-sec-3 .kit-grid{
    grid-template-columns: 1fr;
    grid-gap: 5vw;
  }
  .curriculum-button{
    display: block;
    color: black;
    text-decoration: none;
    border-radius: 3px;
    border: 1px solid black;
    padding: 10px;
    text-align: center;
  }
  .curriculum-sec-4 > div{
    display: grid;
    grid-gap: 7vw;
    grid-template-columns: 1fr;
  }
}

/* END CURRICULUM */

/* PROGRAMS */

.programs-sec-1 h1{
  font-family: "Abhaya Libre", serif;
  font-weight: 800;
  background-image: url("assets/Resources_Underline.png");
  background-position: center 1.06em;
  background-size: calc(238px + 4vw);
  background-repeat: no-repeat;
  padding-bottom: 10px;
}

.programs-sec-1 .program-links{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 60px 30px;
}

.programs-sec-1 .program-links a.button{
  font-size: calc(18px + .1vw);
}

.programs-sec-1 .program-links > div{
  border: 1px solid var(--theme-blue);
  border-radius: 5px;
  padding: 30px;
}

.programs-sec-1 .program-links > div img{
  display: block;
  margin: 40px auto;
}

@media screen and (max-width: 1000px) {
  .programs-sec-1 .program-links{
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 500px) {
  .programs-sec-1 .program-links{
    grid-template-columns: 1fr;
  }
}

/* .programs-sec-1 > div {
  width: calc(100px + 30vw);
  margin: 14vw auto 4vw auto !important;
  background-color: #393939;
  border-radius: 20px;
  padding: 40px 20px 20px 20px;
} */

/* END PROGRAMS */

/* SPONSORS */

.sponsors .homePageSection45 img{
  box-shadow:5px 5px 8px #999;
  width: 230px;
}

/* END SPONSORS */

/* CONTACT */

.contact-sec-1 > div{
  display: grid;
  grid-template-columns: 3fr 2fr;
  margin-top: 4vw;
  row-gap: 5vw;
  column-gap: 10vw;
}

.contact-sec-1 > div > h1 {
  grid-column: 1 / span 2;
}

.contact-sec-1 form p {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 3vw;
}

.contact-sec-1 form span.your-message {
  grid-column: 1 / span 2;
}

.contact-sec-1 form .wpcf7-submit {
  grid-column: 2 / 3;
}

.contact-sec-1 form .reason {
  grid-column: 1 / span 2;
}

.contact-sec-1 form select {
  width: 100%;
  border: none;
  border-bottom: 2px solid black;
  font-size: 100%;
  padding: 10px 6px;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("assets/iconfinder_icon-chevron-down_211645.png") 96% / 5%
    no-repeat white;
}

.contact-sec-1 form select option {
  padding: 10px 0;
}

.contact-sec-1 .contact-social {
  color: white;
}

.contact-sec-1 .contact-social > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4vw;
  padding: calc(64px) 96px;
  background-color: black;
}

.contact-sec-1 .contact-social > div p {
  grid-column: 1 / span 2;
  margin: 0;
}

@media screen and (max-width: 800px) {
  .contact-page-form {
    grid-column: 1 / span 2;
  }

  .contact-sec-1 .contact-social {
    grid-column: 1 / span 2;
  }
}

/* END CONTACT */

.start-button {
  background-color: #0136c3;
  background-color: var(--theme-accent-red);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 9000;
  transition: -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
    -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  width: 110px;
  height: 110px;
  bottom: 20px;
  left: 20px;
  text-decoration: none;
}

.start-button:hover,
.start-button:active,
.start-button:focus {
  transform: scale(1.15);
  transition: -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
    background-color 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: var(--theme-accent-red);
}

.start-button__text {
  font-family: vinyl, Arial, Helvetica, Verdana, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.8em;
  color: #fff;
  font-weight: 400;
  font-style: italic;
  -webkit-transform: rotate(-10deg);
  transform: rotate(-10deg);
  display: inline-block;
  padding: 9px 0 0 0;
  position: relative;
  z-index: 2;
  text-decoration: none;
}

/* END CONTACT */

/* DONATE */
main.donate .donate-sec-1 {
  background-color: var(--theme-dark-blue);
  color: white;
}

main.donate .donate-sec-1 a {
  color: white;
}

main.donate .donate-wrapper-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  grid-gap: 10vw;
}

@media screen and (max-width: 37.5em) {
  main.donate .donate-wrapper-grid {
    grid-template-columns: 1fr;
  }
}

main.donate .donate-sec-1 > div {
  text-align: left;
}

main.donate .donate-sec-1 button {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

main.donate .donate-sec-1 button.active {
  background-color: white;
  color: var(--theme-dark-blue);
}

main.donate .donate-sec-1 #openExtras {
  display: block;
}

main.donate .donate-sec-1 #openExtras.active {
  display: none;
}

main.donate .donate-sec-1 #inMemory {
  display: none;
}

main.donate .donate-sec-1 #inMemory.active {
  display: block;
}

main.donate .donate-sec-1 .amount-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

main.donate .donate-sec-1 .amount-buttons > button {
  width: calc(70px + 1vw);
}

main.donate .donate-sec-1 .frequency-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

main.donate .donate-sec-1 .frequency-buttons > button {
  margin-right: calc(10px + 1vw);
}

main.donate .donate-sec-1 input.error {
  border: 3px solid red;
  background-color: #fcbfc6;
}

main.donate .donate-sec-1 .right a {
  font-size: calc(8px + 0.4vw);
  text-decoration: none;
}

main.donate .donate-sec-1 .right p {
  font-size: calc(8px + 0.4vw);
  margin-bottom: 5px;
}

main.donate .donate-sec-1 .right button {
  margin-bottom: calc(8px + 1vw);
  padding: 10px 20px;
}

main.donate .donate-sec-1 .right input {
  width: 100%;
}

main.donate .donate-sec-1 button {
  cursor: pointer;
}

main.donate .donate-sec-1 #donate-submit {
  background-color: var(--theme-blue);
  border-color: var(--theme-blue);
  margin-top: calc(8px + 1vw);
  cursor: pointer;
}

main.donate .donate-sec-2 {
  padding: 0;
  background-image: linear-gradient(
    var(--theme-background-alternate),
    var(--theme-background-alternate)
  );
  transform: skewY(0deg);
  transform-origin: top center;
}

main.donate .donate-sec-2 img {
  transform: skewY(0deg);
}

main.donate .donate-sec-3 {
  text-align: left;
}

main.donate .donate-sec-3 h3 {
  margin: 1.5vw 0;
}

main.donate .donate-sec-3 > div.accordion > div:nth-child(2n + 1) svg {
  margin-top: 2.3vw;
  margin-left: 10px;
}

main.donate .donate-sec-3 > div.accordion > div:nth-child(2n + 1) {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid lightgrey;
  cursor: pointer;
}

main.donate .donate-sec-3 > div.accordion > div:nth-child(2n) {
  display: none;
  overflow: hidden;
}

/* END DONATE */

/* START ARCHIVE/BLOG */

.blog-page .section-1 {
  padding: 0px;
}

.blog-page .section-1 h2 {
  display: inline-block;
  background-color: #5EB7E0;
  padding: 4px 28px 4px 28px;
}

.blog-page .section-1 .hero {
  height: 50vw;
  margin: auto 0 auto 0;
  padding: 0;
  position: relative;
  background-size: contain;
  background-position: top center;
  background-attachment: fixed;
  overflow: hidden;
  max-width: none;
}
.blog-page .section-1 .hero .back-el {
  width: 100vw;
  height: 50vw;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
}


.blog-page .section-1 .hero .fore-el {
  width: 100vw;
  height: 55vw;
  position: absolute;
  padding-left: 68%;
  padding-top: 13%;
}
.blog-page .section-1 .hero .fore-el h2 {
  color: #ffffff;
}
.blog-page .blog-content {
  padding: 4vw 5vw;
  background-color: #1f2023;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 4vw;
}
@media screen and (max-width: 950px) {
  .blog-page .blog-content {
    grid-template-columns: 1fr 1fr;
	padding: 4vw 4vw;
  }
}
@media screen and (max-width: 500px) {
  .blog-page .blog-content {
	grid-template-columns: 1fr;
	grid-gap: 7vw;
  }

  .blog-page .blog-content:last-child {
	  padding-bottom: 10vw;
  }
}

.blog-page article {
  background-color: #27292d;
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 53em) {
	.blog-page article {
		margin: 0;
	}
  }
.blog-page article .image-wrapper {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}
.blog-page article .image-wrapper img {
  opacity: 1;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.blog-page article .image-wrapper img:hover {
  opacity: 0.6;
  transform: scale(1.05);
}
.blog-page article a {
  display: block;
}
.blog-page article .under-image {
  background-color: #27292d;
  overflow: hidden;
  /* transform: translate(10px, 10px); */
}
.blog-page article .under-image h2 {
  margin: 0;
  padding-left: 5px;
}
.blog-page article .under-image h2 a {
  display: block;
  text-decoration: none;
  font-family: helvetica;
  text-decoration: none;
  color: #ffffff;
  font-size: calc(1rem + 0.4vw);
  margin: 15px 15px 30px 15px;
  font-weight: bold;
  transition: color 0.2s ease-in-out;
}
.blog-page article .under-image h2 a:hover {
  color: #f7a4ac;
}
.blog-page article .under-image .entry-meta {
  margin: 15px;
  padding: 15px 15px 0px 5px;
  color: #ffffff;
  font-size: 1rem;
}
.blog-page article .under-image .entry-meta .byline {
  text-transform: capitalize;
}
.blog-page article .under-image .entry-meta a {
  display: inline;
  color: #ffffff;
  font-family: helvetica;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease-in-out;
}
.blog-page article .under-image .entry-meta a:hover {
  color: #f7a4ac;
}
@media screen and (max-width: 53em) {
  .under-image {
	transform: translate(0, 0);
  }
}
.page-title .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
@media screen and (max-width: 53em) {
  .page-title .screen-reader-text {
    display: none;
  }
}

/* END BLOG FRONT PAGE */

/* START BLOG SINGLE PAGE */

.single-post-template {
  max-width: calc(100vw);
  margin: 0 auto;
  padding: 0 10vw;
}

.single-post-template article {
  position: relative;
  top: 70px;
  width: 100%;
}

.single-post-template article .entry-header {
    position: relative;
    z-index: 0;
    height: auto;
}

.single-post-template article .entry-title {
    padding-top: 3vw;
    font-size: 3rem;
    font-family: "Abhaya Libre", serif;
}

.single-post-template article .entry-header>* {
  text-align: center;
  float: none;
}

.post-thumbnail {
  margin: 0 auto;
  text-align: center;
  padding: 4vw;
}

.single-post-template article .entry-content {
  overflow: hidden;
  font-family: "Open Sans", sans-serif;
}

.single-post-template article .entry-content p{
  font-family: "Open Sans", sans-serif;
}

.single-post-template article p {
  overflow: hidden;
}
/* 
.single-post-template article .site-social {
} */

.single-post-template article .site-social ul {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.single-post-template article .site-social .social li {
  list-style: none;
  max-width: 50px;
  margin: 5px;
}

.single-post-template article .site-social .social li a {
  color: var(--theme-blue);
  font-size: 2rem;
}

.single-post-template article .nav-links {
  overflow: hidden;
}

/* .single-post-template article .nav-links .post-navigation .nav-previous {
  float: left;
} */

/* .single-post-template #comments #respond{
  margin-top: 12vw;
} */

.single-post-template #comments #commentform > p > input,
.single-post-template #comments #commentform > p > textarea{
  border: 1px solid black;
}

.single-post-template #comments #commentform > p > input:focus-visible, 
.single-post-template #comments #commentform > p > textarea:focus-visible {
  outline: none;
  border: #6FD6FF 2px solid;
}


.single-post-template #comments p {
  font-size: .75rem;
}

.single-post-template article figure.aligncenter .wp-block-embed__wrapper {
  text-align: center;
}

/* Donate button */
.page-donate .donate-floater{
  display: none;
}
.donate-floater{
  position: fixed;
  right: 40px;
  bottom: -100px;
  display: inline-block;
  color: var(--theme-grey);
  border-radius: 30px;
  background-color: var(--theme-blue);
  font-weight: normal;
  text-decoration: none;
  font-size: calc(6px + 1.3vw);
  padding: 10px 3.2vw 100px 3.2vw;
  margin:0px;
  border: 1px solid var(--theme-blue);
  transition: bottom 0.3s ease-in-out;
  text-align: center;
}
.donate-floater:hover{
  background-color: var(--theme-blue);
  bottom: -80px;
  transition: bottom 0.3s ease-in-out;
}

/* End donate button */

/* BIO TEMPLATE */

.bio-template-article{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;
  column-gap: 4vw;
  grid-template-areas: 
            "image title"
            "image subtitle"
            "image firstparagraph"
            "link firstparagraph"
            "content1 content1"
            "content2 content2"
            "content3 content3"
            "content4 content4"
            "content5 content5"
            "content6 content6";
  margin: 40px auto;
}


.bio-template-article .post-thumbnail{
  grid-area: image;
  padding: 0;
  margin-bottom: 30px;
}

.bio-template-article .entry-header{
  grid-area: title;
}

.bio-template-article .entry-header h1{
  margin: 0;
  text-transform: uppercase;
  font-size: calc(31px + 2vw);
  color: #6FD6FF;
}

.bio-template-article p{
  font-size: calc(8px + 0.6vw);
}

.bio-template-article p:first-of-type{
  grid-area: subtitle;
  /* margin: 0; */
}

.bio-template-article p:nth-of-type(2){
  grid-area: firstparagraph;
}

.bio-template-article p:nth-of-type(3){
  grid-area: content1;
}
.bio-template-article p:nth-of-type(4){
  grid-area: content2;
}
.bio-template-article p:nth-of-type(5){
  grid-area: content3;
}
.bio-template-article p:nth-of-type(6){
  grid-area: content4;
}
.bio-template-article p:nth-of-type(7){
  grid-area: content5;
}
.bio-template-article p:nth-of-type(8){
  grid-area: content6;
}

@media only screen and (max-width: 800px) {
  .bio-template-article{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: 
              "image"
              "title"
              "subtitle"
              "firstparagraph"
              "content1"
              "content2"
              "content3"
              "content4"
              "content5"
              "content6";
  }
}



/* END BIO TEMPLATE */

/* VOLUNTEER PAGE */
.site-main.volunteer{
  display: grid;
  place-items: center;
  grid-gap: 5vw;
  min-height: 100vh;
  padding-top: 0;
}
.volunteer-sec-1{
  max-width: 90vw;
  display: grid;
  grid-gap: 5vw;
  grid-template-columns: 4fr 2fr;
}
.image-title{
  display: grid;
  grid-template-columns: 1.5fr 5fr;
  align-items: center;
  grid-gap: 5vw;
}
.volunteer-sec-1 .block-2{
  display: grid;
  place-items: center;
  grid-template-columns: 1fr;
  grid-gap: 1vw;
  /* padding: 5vw 5vw 0 5vw; */
}
.volunteer-sec-1 .block-2 > a{
  display: grid;
  grid-template-columns: 1fr 4fr;
  align-items: center;
  justify-content: left;
  grid-gap: 2vw;
  text-decoration: none;
  color: var(--theme-grey);
  border: 2px solid transparent;
  padding: 10px 20px;
  border-radius: 15px;
  transition: border 0.5s ease-in-out;
}
.volunteer-sec-1 .block-2 > a:hover{
  border: 2px solid var(--theme-blue)
}
.volunteer-sec-1 .block-2 h2{
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0;
}
.volunteer-sec-1 .block-2 p{
  font-family: "Open Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 200;
  letter-spacing: 0.6px;
  line-height: 1.6;
}
.volunteer-sec-1 .block-1 a{
  display: inline-block;
  background-color: #242424;
  color: #7ed957;
  text-decoration: none;
  font-size: 1.6rem;
  padding: 10px 20px 12px 20px;
  border-radius: 10px;
  border: 2px solid #242424;
  transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out;
}
.volunteer-sec-1 .block-1 a:hover{
  color: black;
  background-color: white;
}
@media screen and (max-width: 800px) {
  .site-main.volunteer{
    padding-top: calc(60px + 1vw);
  }
  .volunteer-sec-1{
    grid-template-columns: 1fr;
  }
  .volunteer-sec-1 .block-2 h2 {
    font-size: 1.2rem;
  }
}

/* END VOLUNTEER PAGE */

/* WHO WE SERVE PAGE */

.who-we-serve .grid{
  display: grid;
  grid-template-columns: repeat( auto-fit, minmax(99px, 1fr) );
  grid-gap: 5vw;
  place-items: center;
  margin-bottom: 40px;
}
.who-we-serve .grid img{
  width: 100%;
}
.who-we-serveSec1 h1 {
  background-image: url("assets/Mission_MeetYourTeam_Underline.png");
  background-position: center bottom;
  background-size: calc(179px + 14vw);
  background-repeat: no-repeat;
  padding-bottom: 16px;
  margin-bottom: 5vw;
}

/* END WHO WE SERVE PAGE */
