@import url('https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300;700&family=Open+Sans:ital,wght@0,400;0,700;1,400&family=Pacifico&display=swap');

html, body {
  font-family: 'Open Sans', sans-serif;
}

body {
  font-size: 1rem;
  color: #252422;
  background-color: #FFFFFF;
}

h1, h2 {
  font-size: 2.6rem;
}

h3, h4 {
  font-size: 1.8rem;
}

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

/* Flex the main site container to allow for pages is little content (like 404) */
.site-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.site-inner {
  flex-grow: 1;
}

/*** Dudek Press Utilities ***/
.dp-section {
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.dp-section > div {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .dp-two-col > div {
    display: flex;
  }
  .dp-two-col > div > div {
    width: 50%;
  }
  .dp-two-col > div > div:first-child {
    margin-right: 1rem;
  }
  .dp-two-col > div > div:last-child {
    margin-left: 1rem;
  }
  .dp-two-col.dp-reverse > div {
    flex-direction: row-reverse;
  }
  .dp-two-col.dp-reverse > div > div:first-child {
    margin-left: 1rem;
    margin-right: 0;
  }
  .dp-two-col.dp-reverse > div > div:last-child {
    margin-right: 1rem;
    margin-left: 0;
  }
  .dp-two-col.dp-30-70 > div > div:first-child {
    width: 30%;
  }
  .dp-two-col.dp-30-70 > div > div:last-child {
    width: 70%;
  }
  .dp-two-col.dp-70-30 > div > div:first-child {
    width: 70%;
  }
  .dp-two-col.dp-70-30 > div > div:last-child {
    width: 30%;
  }
  .dp-two-col.dp-60-40 > div > div:first-child {
    width: 60%;
  }
  .dp-two-col.dp-60-40 > div > div:last-child {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .dp-two-col > div > div {
    margin: 0 0 1.5rem 0;
  }
}

/*** SITE WIDE ***/

.wp-block-image > img {
  object-fit: cover;
  width: 100%;
}

a {
  color: #3d79a5;
}
a:hover {
  text-decoration: underline;
}
a[href$=".pdf"]:after {
    content: ' ';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-left: 0.75rem;
    margin-top: -4px;
    vertical-align: middle;
    background-image: url(/wp-content/uploads/2020/09/file-pdf-regular.svg);
    background-repeat: no-repeat;
}
/*fixes an update in wp 5.8 that breaks mx-auto on wp-block-image*/
.wp-block-image.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
/*For accessibility, show links in upper right only when user tabs to focus*/

.genesis-skip-link a {
  position: fixed;
  left: 0;
  background-color: #305064;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #FFFFFF;
  text-decoration: underline;
  z-index: 100;
  top: -50px;
}

.genesis-skip-link a:focus {
  top: 0;
}
/*** UTILS ***/

.c-blue {
  color: #5B759F;
}
.bg-blue {
  background-color: #5B759F;
}
.font-pacifico {
  font-family: 'Pacifico', 'Open Sans Condensed', sans-serif;
}
.font-condensed {
  font-family: 'Open Sans Condensed', 'Open Sans', sans-serif;
  font-weight: 600;
}


/*** LOGO AND HEADER***/
.title-area {
  height: 100%;
  display: flex;
  align-items: flex-end;
  max-width: 12rem;
}

.custom-logo-link {
  width: 25px;
  height: auto;
  display: block;
  flex-shrink: 0;
  flex-grow: 0;
  margin-right: 0.75rem;
  margin-left: -40px;
  align-self: center;
}

@media (max-width: 767px) {
  .custom-logo-link {
    width: 25px;
  }
}

/*** TITLE ***/
.site-title {
  font-weight: 400;
  line-height: 1.25;
  font-size: 1.2rem;
  align-self: center;
}
.site-title a {
  color: white;
  text-decoration: none;
}
.site-title::first-line {
  font-weight: 700;
}

.site-description {
  display: none;
}

@media (max-width: 1024px) {
  .site-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .title-area {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
  .site-title {
    max-width: 18rem;
    margin: 0;
  }
}

/*** SITE HEADER ***/
.site-header {
  font-family: 'Open Sans Condensed', sans-serif;
  text-transform: uppercase;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  height: 4rem;
  z-index: 50;
  position: fixed;
  top: 0;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background-color: rgba(0,0,0,0.7);
  color: white;
}
.site-header a:hover {
  text-decoration: none;
}

@media (max-width: 767px) {
  .site-header {
    height: auto;
    min-height: 6rem;
    border-width: 0px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .site-header > .wrap {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0.5rem;
    align-items: center;
    height: 100%;
  }
}
.sub-menu {
  display: none;
  position: absolute;
  background-color: #FFFFFF;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-width: 1px;
  border-color: #274f66;
}
.sub-menu > .menu-item {
  transition-property: none;
  text-transform: none;
  margin: 0;
  text-align: center;
  line-height: 2;
}
.sub-menu > .menu-item a {
  color: #333333;
}
@media (max-width: 767px) {
  /* Set font size to calculate REMs, thinking mobile first */

  html {
    font-size: 95%;
  }

  h1, h2 {
    font-size: 2rem;
  }

  h3, h4 {
    font-size: 1.2rem;
  }



  .nav-primary {
    display: none;
    background-color: #FFFFFF;
    padding: 1rem;
    width: 100vw;
    border-bottom: solid 3px #5B759F;
  }

  .menu-item{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom-width: 1px;
    border-color: rgba(0, 0, 0, 0.1);
  }
  .menu-item a, button {
    color: #305064;
  }
  .menu-item:last-child {
    border-bottom: none;
  }
  .menu-primary > .menu-item:first-child {
    padding-bottom: 0.5rem;
    padding-top: 0;
  }

  .menu-primary > .menu-item:last-child {
    padding-top: 0.5rem;
    padding-bottom: 0;
    border-width: 0;
  }

  .current-menu-item {
    font-weight: 700;
    color: #305064;
  }

  .sub-menu {
    display: none;
    position: static;
    width: 100%;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-style: none;
  }

  .sub-menu > .menu-item {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: left;
  }

  .menu-toggle.dashicons-menu {
    display: block;
    line-height: 2rem;
    width: 100vw;
    vertical-align: middle;
    background-color: #5B759F;
    margin-top: 0.5rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #FFFFFF;
  }

  .menu-toggle.dashicons-menu:before {
    line-height: inherit;
    margin-right: 0.5rem;
  }

  .menu-toggle {
    display: block;
  }

  .dashicons-menu.activated:before {
    content: '\F335';
  }
}

@media (min-width: 768px) {
  html {
    font-size: 100%;
  }

  .menu-toggle {
    display: none;
  }

  .nav-primary {
    display: block;
  }

  .menu-primary {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .site-header > .wrap {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    align-items: flex-end;
    height: 100%;
    max-width: 1024px;
  }
  .menu-item {
    border-bottom: 2px solid rgba(0, 0, 0, 0);
  }
  .menu-item a {
    font-size: 1rem;
    color: white;
  }
  .menu-item:hover {
    border-bottom-color: #465D25;
  }
  .sub-menu > .menu-item {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .sub-menu > .menu-item:hover {
    color: #FFFFFF;
    background-color: #e9a017;
  }

  .menu-primary > .menu-item {
    margin-left: 0.5rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 0.25rem;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    font-size: 0.9rem;
  }
  .menu-primary > .current-menu-item, .menu-primary > .menu-item:hover {
    background-color: rgba(255,255,255,0.3);
  }
}



/*** Atomic Block Modifications ***/
.gb-button.gb-button-size-medium {
  font-size: 1rem;
  padding: 0.7rem 1.2rem;
}
.gb-button.gb-button-size-medium:hover {
  text-decoration: none;
}

/*** HOME ***/
#home.dp-section {
  background-image: url('/wp-content/uploads/2022/01/hero-oblique.jpg');
  background-position: center;
  background-size: cover;
  min-height: 60vh;
  display: flex;
  height: 100%;
  align-items: center;
  padding-top: 6rem;
}
#home .smp-home-wrap {
  max-width: 52rem;
  background-color: rgb(255,255,255,0.9);
  margin: auto;
}
#home .smp-home-wrap > div {
  display: flex;
  padding: 2rem;
}
#home .smp-home-text {
  margin-right: 1rem;
}
#home .smp-home-logo {
  margin-left: 1rem;
  display: flex;
  align-items: center;
  min-width: 18rem;
}
@media (max-width: 767px) {
  #home .smp-home-wrap > div {
  flex-direction: column;
  padding: 1.5rem;
  }
  #home .smp-home-text {
    margin-right: 0;
  }
  #home .smp-home-logo {
    justify-content: center;
    margin-left: 0;
    width: 100%;
    min-width: none;
  }
}

/*** FEEDBACK ***/
#feedback.dp-section {
  background-color: #C9D5E2;
}
#feedback.dp-section > div {
  background-color: white;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  border: 1px solid silver;
}
.wpforms-container {
  margin: 1rem !important;
}
@media (max-width: 767px) {
  .wpforms-container {
    margin: 1rem 0 !important;
  }
}

/*** MAILCHIMP AND WP FORMS ***/

.wpforms-field {
  margin-bottom: 1rem !important;
  color: #5B759F !important;
  padding: 0 !important;
}

.wpforms-field label {
  display: block !important;
  font-size: .875rem !important;
  font-weight: 700 !important;
  margin-bottom: .5rem !important;
}
.wpforms-field input, .wpforms-field select {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  border-width: 1px !important;
  border-radius: 0.25rem !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: .5rem .75rem !important;
  line-height: 1.25 !important;
}

.wpforms-field-row.wpforms-field-medium {
  max-width: 100% !important;
}

.mc-field-group input:focus, .mc-field-group select:focus, .wpforms-field input:focus, .wpforms-field select:focus {
  outline: 0 !important;
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5) !important;
}

.indicates-required {
  text-align: right;
  font-size: .8rem;
}

input#mc-embedded-subscribe, .wpforms-submit {
  color: white !important;
  background-color: #5B759F !important;
  margin-top: 1rem !important;
  padding: .5rem 1rem !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
}

div.wpforms-confirmation-container-full, div.wpforms-confirmation-scroll {
  background: none !important;
  border: 0 !important;
}

div#mc-responses, div.wpforms-confirmation-container-full {
  font-size: 1.25rem !important;
  font-weight: 600;
  text-align: center;
}

div#mc-error-response {
  color: #f56565;
}

div#mc-successs-response{
  color: #305064 !important;
}

div.wpforms-recaptcha-container {
  padding: 0 !important;
}

.grecaptcha-badge {
  opacity: 0% !important;
}

div.wpforms-confirmation-container-full {
    height: 12rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
div.wpforms-confirmation-container-full p {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  color: #5b759f;
}

/*** MAP ***/
div#map {
  background-image: url('https://sunsetmemorialparkhonolulu.org/wp-content/uploads/2022/01/cloud-back-grey.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #FAFAFA;
}
div#map-container {
  height: 45rem;
  border: 6px solid white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
}
.esri-legend {
  width: 12rem !important;
}

@media (max-width: 767px){
  div#map-container{
    height: 35rem;
  }
}


/*** PARTNERSHIPS ***/
.partnerships {
  padding-top: 4rem;
  padding-bottom: 8rem;
}
.partnerships > div {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.partner-text {
  display: block;
  max-width: 32rem;
  font-size: 18px;
  margin-bottom: 3rem;
}
.partnerships figure {
  max-width: 20rem;
  margin: 0 2rem;
  height: auto;
}
@media (max-width: 767px){
  .partnerships > div {
    flex-direction: column-reverse;
  }
  .partner-text {
    text-align: center;
  }
}
/*** SITE FOOTER ***/

.site-footer .widget-title {
  display: none;
}

.site-footer {
  width: 100%;
  color: white;
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
  background-color: #3c4043;
  background-size: 100% 3rem;

}
.site-footer > .wrap {
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  z-index: 10;
  position: relative;
}

.site-footer p {
  font-size: 1.125rem;
}

a.tccp-footer-contact {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 1rem;
  display: block;
}

.site-footer a {
  color: white;
  text-decoration: underline;
}
.site-footer a:hover {
  color: #E16900;
}

.tccp-footer-center img {
  display: block;
  padding: 1.5rem;
  margin-top: -4rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 300px;
  height: auto;
  background-color: #3c4043;
  outline: 2px solid white;
  outline-offset: -8px;
}

p.tccp-footer-byline {
  font-size: .85rem;
  text-align: center;
}

@media (max-width: 999px) {

  .tccp-footer-wrapper {
    display: flex;
    flex-direction: column;
  }

  .tccp-footer-left {
    order: 3;
  }

  .tccp-footer-right {
    order: 2;
  }

  .tccp-footer-center {
    order: 1;
  }

  .tccp-footer-left, .tccp-footer-right {
    padding: 2rem 1.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1000px) {
  .tccp-footer-wrapper {
    display: flex;
  }

  .tccp-footer-center {
    flex-grow: 1;
  }

  .tccp-footer-left, .tccp-footer-right {
    width: 60%;
    align-self: center;
    padding: 4rem 2rem;

  }

}







