@-webkit-keyframes read-more-arrow {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(5px, 0);
    transform: translate(5px, 0);
  }
}

@-o-keyframes read-more-arrow {
  0%,
  100% {
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -o-transform: translate(5px, 0);
    transform: translate(5px, 0);
  }
}

@keyframes read-more-arrow {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(5px, 0);
    -o-transform: translate(5px, 0);
    transform: translate(5px, 0);
  }
}

@-webkit-keyframes download-hover {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 5px);
    transform: translate(0, 5px);
  }
}

@-o-keyframes download-hover {
  0%,
  100% {
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -o-transform: translate(0, 5px);
    transform: translate(0, 5px);
  }
}

@keyframes download-hover {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 5px);
    -o-transform: translate(0, 5px);
    transform: translate(0, 5px);
  }
}

.node__content {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

.path-error .media-header-wrapper {
  visibility: hidden;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-60 {
  margin-bottom: 60px;
}

@media (max-width: 991.98px) {
  .mb-60 {
    margin-bottom: 30px;
  }
}

.py-50 {
  padding: 50px 0;
}

.social-media-menu ul.nav li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin-right: 15px;
}

.social-media-menu ul.nav li:last-child {
  margin: 0;
}

.social-media-menu ul.nav li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  padding: 0;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  -o-transition: -o-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out, -o-transform 0.2s ease-out;
  border-radius: 50%;
  background: #00b4ac;
  font-size: 0;
}

.social-media-menu ul.nav li a:before {
  margin-top: 1px;
  color: #fff;
  font-size: 0.75rem;
}

.social-media-menu ul.nav li a:before:not(.fa-facebook-f) {
  margin-left: 1px;
}

.social-media-menu ul.nav li a:hover,
.social-media-menu ul.nav li a:focus {
  -webkit-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  background: #fa7828;
}

.mailchimp-signup-subscribe-form form .form-actions {
  margin-top: 30px;
}

.mailchimp-signup-subscribe-form form .form-actions > button {
  padding: 10px 22px;
  letter-spacing: 0.3px;
  font-size: 18px;
  font-weight: 500;
}

.mailchimp-signup-subscribe-form form .mailchimp-newsletter-mergefields {
  margin-right: -15px;
  margin-left: -15px;
}

.mailchimp-signup-subscribe-form form .mailchimp-newsletter-mergefields > fieldset {
  padding: 0 15px;
}

@media (min-width: 992px) {
  .mailchimp-signup-subscribe-form form .mailchimp-newsletter-mergefields {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .mailchimp-signup-subscribe-form form .mailchimp-newsletter-mergefields > fieldset {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .mailchimp-signup-subscribe-form form .mailchimp-newsletter-mergefields > fieldset:last-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.read-more-arrow a {
  position: relative;
  display: inline-block;
  padding-top: 4px;
  padding-right: 35px;
  text-transform: uppercase;
  color: #fa7828;
  font-size: 16px;
  font-weight: 500;
}

.read-more-arrow a::after {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: 25px;
  height: 25px;
  content: "";
  background-image: url(../../images/orange-readmore.svg);
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
}

.read-more-arrow a:hover {
  text-decoration: none;
  color: #00bdaf;
}

.read-more-arrow a:hover::after {
  -webkit-animation: read-more-arrow 1s ease-in-out;
  -o-animation: read-more-arrow 1s ease-in-out;
  animation: read-more-arrow 1s ease-in-out;
  background-image: url(../../images/blue-readmore.svg);
}

.read-more-arrow.white-arrow a {
  color: #fff;
}

.read-more-arrow.white-arrow a::after {
  background-image: url(../../images/white-readmore.svg);
}

.read-more-arrow.white-arrow a:hover {
  text-decoration: none;
}

.read-more-arrow.white-arrow a:hover::after {
  -webkit-animation: read-more-arrow 1s ease-in-out;
  -o-animation: read-more-arrow 1s ease-in-out;
  animation: read-more-arrow 1s ease-in-out;
}

a.read-more-arrow {
  position: relative;
  display: inline-block;
  padding-top: 4px;
  padding-right: 35px;
  text-transform: uppercase;
  color: #fa7828;
  font-size: 16px;
  font-weight: 500;
}

a.read-more-arrow::after {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: 25px;
  height: 25px;
  content: "";
  background-image: url(../../images/orange-readmore.svg);
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
}

a.read-more-arrow:hover {
  text-decoration: none;
  color: #00bdaf;
}

a.read-more-arrow:hover::after {
  -webkit-animation: read-more-arrow 1s ease-in-out;
  -o-animation: read-more-arrow 1s ease-in-out;
  animation: read-more-arrow 1s ease-in-out;
  background-image: url(../../images/blue-readmore.svg);
}

.external-read-more-arrow a {
  position: relative;
  display: inline-block;
  padding-right: 25px;
  text-transform: uppercase;
  color: #fa7828;
  font-size: 16px;
  font-weight: 500;
}

.external-read-more-arrow a::after {
  position: absolute;
  top: 1px;
  right: 0;
  display: inline-block;
  width: 15px;
  height: 15px;
  content: "";
  background-image: url(../../images/orange-external-readmore.svg);
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
}

.external-read-more-arrow a:hover {
  text-decoration: none;
  color: #00bdaf;
}

.external-read-more-arrow a:hover::after {
  -webkit-animation: read-more-arrow 1s ease-in-out;
  -o-animation: read-more-arrow 1s ease-in-out;
  animation: read-more-arrow 1s ease-in-out;
  background-image: url(../../images/blue-external-readmore.svg);
}

.file-download a {
  position: relative;
  display: inline-block;
  padding-top: 4px;
  padding-right: 35px;
  text-transform: uppercase;
  color: #fa7828;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.38;
}

.file-download a::after {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: 25px;
  height: 25px;
  content: "";
  background-image: url(../../images/download-icon-orange-bg.svg);
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
}

.file-download a:hover {
  text-decoration: none;
  color: #00bdaf;
}

.file-download a:hover::after {
  -webkit-transform-origin: bottom;
  -o-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-animation: download-hover 1s ease-in-out;
  -o-animation: download-hover 1s ease-in-out;
  animation: download-hover 1s ease-in-out;
  background-image: url(../../images/download-icon-blue-bg.svg);
}

@media (min-width: 992px) {
  #block-ecw-page-title,
  .block-ecw-page-title {
    max-width: 77%;
  }
}

#block-ecw-page-title h1,
.block-ecw-page-title h1 {
  display: inline-block;
  margin-bottom: 28px;
  border-bottom: 1px solid #000;
  font-size: calc(1.3625rem + 1.35vw);
  font-weight: 500;
  line-height: 1.18421052632;
}

@media (min-width: 1200px) {
  #block-ecw-page-title h1,
  .block-ecw-page-title h1 {
    font-size: 2.375rem;
  }
}

.block-twitter-block {
  border: 1px solid #e4e4e4;
}

.block-twitter-block .block-title {
  padding: 13px 0 0 17px;
  text-transform: capitalize;
  font-size: 1rem;
}

.block-twitter-block .block-title::before {
  margin-right: 10px;
  padding: 5px;
  content: "\e61b";
  color: #fff;
  border-radius: 50%;
  background-color: #00b4ac;
  font-family: "Font Awesome 6 Brands" !important;
  font-size: 10px;
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
}

@media (max-width: 767.98px) {
  .block-twitter-block iframe {
    width: 100% !important;
  }
}

.node.node--view-mode-full .field--name-dynamic-block-fieldnode-language-switcher {
  display: inline-block;
  font-size: 14px;
  line-height: 1.43;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .node.node--view-mode-full .field--name-dynamic-block-fieldnode-language-switcher {
    display: block;
  }
}

.node.node--view-mode-full .field--name-dynamic-block-fieldnode-language-switcher span {
  padding-left: 0;
  text-decoration: underline;
}

.pagination {
  margin-top: 30px !important;
  margin-bottom: 0;
}

.intro-text {
  font-size: 23px;
  font-weight: 400;
  line-height: 1.26086956522;
}

.block-quote {
  padding-left: 15px;
  border-left: 1px solid #fa7828;
}

.yellow-block-quote {
  position: relative;
  padding: 50px;
  background-color: #ffce01;
}

@media (max-width: 767.98px) {
  .yellow-block-quote {
    padding: 30px;
  }
}

.yellow-block-quote:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 164px;
  height: 117px;
  content: "";
  background-image: url(/themes/custom/ecw/images/quote-1.svg);
  -webkit-background-size: contain;
  background-size: contain;
}

.yellow-block-quote:after {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 164px;
  height: 117px;
  content: "";
  background-image: url(/themes/custom/ecw/images/quote-2.svg);
  -webkit-background-size: contain;
  background-size: contain;
}

#selectionSharerPopover .selectionSharerPopover-arrow {
  border: 2px solid #e9e9e9;
  background-color: #fff;
}

#selectionSharerPopover:after {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#selectionSharerPopover-inner {
  padding: 5px 15px 5px 15px;
  border-color: #e9e9e9;
  border-radius: 0;
  background: 0 0;
  background-color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#selectionSharerPopover-inner li {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  border-radius: 50%;
  background-color: #00b4ac;
}

#selectionSharerPopover-inner li:last-of-type {
  margin-right: 0;
}

#selectionSharerPopover-inner li:nth-child(2) {
  display: none;
}

#selectionSharerPopover-inner li a {
  margin: 0;
  background-position: 4px 5px;
  -webkit-background-size: 12px 12px;
  background-size: 12px;
}

#selectionSharerPopover-inner li a svg {
  display: none;
}

#selectionSharerPopover-inner li a.email {
  text-indent: unset;
  background: url(../../images/icons/mail.svg);
  background-repeat: no-repeat;
  background-position: 3px 5px;
  -webkit-background-size: 17px 17px;
  background-size: 17px;
}

#selectionSharerPopover-inner li a.email:hover {
  text-decoration: none;
}

#selectionSharerPopunder {
  display: none;
}

@media (max-width: 991.98px) {
  #donor-board {
    height: 350px !important;
  }
}

.orange-text {
  text-transform: uppercase;
  color: #fa7828;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.orange-text a:hover {
  text-decoration: none;
}

.pipe-before:before {
  display: inline-block;
  width: 1px;
  height: 12px;
  margin-right: 10px;
  margin-left: 10px;
  content: "";
  background-color: #000;
}

.pipe-after:after {
  display: inline-block;
  width: 1px;
  height: 12px;
  margin-right: 10px;
  margin-left: 10px;
  content: "";
  background-color: #000;
}

.field--name-field-more-info-block {
  padding: 30px;
  word-wrap: break-word;
  background-color: #f2f2f2;
}

.views-row:nth-child(odd) .row-striped {
  background: #ffce01;
}

.views-row:nth-child(even) .row-striped {
  background: #00b4ac;
}

.caption {
  margin-top: 15px;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.38;
}

.eu-cookie-compliance-banner {
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .eu-cookie-compliance-banner {
    max-width: 1051px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .eu-cookie-compliance-banner {
    max-width: 960px;
  }
}

.eu-cookie-compliance-banner .popup-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-align-items: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  max-width: 100%;
  padding: 15px;
}

@media (min-width: 992px) {
  .eu-cookie-compliance-banner .popup-content {
    padding: 30px 0;
  }
}

@media (max-width: 991.98px) {
  .eu-cookie-compliance-banner .popup-content {
    -webkit-flex-flow: column;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.eu-cookie-compliance-banner .popup-content .eu-cookie-compliance-message {
  float: none;
  max-width: 75%;
  margin: 0;
}

@media (max-width: 1199.98px) {
  .eu-cookie-compliance-banner .popup-content .eu-cookie-compliance-message {
    max-width: 65%;
  }
}

@media (max-width: 991.98px) {
  .eu-cookie-compliance-banner .popup-content .eu-cookie-compliance-message {
    max-width: 100%;
  }
}

.eu-cookie-compliance-banner .popup-content .eu-cookie-compliance-message p,
.eu-cookie-compliance-banner .popup-content .eu-cookie-compliance-message a {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.26;
}

@media (max-width: 991.98px) {
  .eu-cookie-compliance-banner .popup-content .eu-cookie-compliance-message p,
  .eu-cookie-compliance-banner .popup-content .eu-cookie-compliance-message a {
    font-size: 1rem;
  }
}

.eu-cookie-compliance-banner .popup-content .eu-cookie-compliance-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  float: none;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  justify-content: center;
  max-width: 40%;
  margin: 0;
}

@media (max-width: 991.98px) {
  .eu-cookie-compliance-banner .popup-content .eu-cookie-compliance-buttons {
    max-width: 100%;
    margin-top: 15px;
  }
}

.eu-cookie-compliance-banner .popup-content .eu-cookie-compliance-buttons button {
  margin: 0;
  margin-right: 20px;
  padding: 11px 22px 7px 22px;
  -webkit-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  transition: all 350ms ease;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 0;
  background: #fa7828;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
  font-family: "Dinpro", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.11;
}

.eu-cookie-compliance-banner .popup-content .eu-cookie-compliance-buttons button:last-of-type {
  margin-right: 0;
}

.eu-cookie-compliance-banner .popup-content .eu-cookie-compliance-buttons button:hover {
  background: #ff914d;
}

article[dir="rtl"] .block-entity-viewnode,
article[dir="rtl"] .block-field-blocknodepress-releasefield-more-info-block {
  text-align: right;
}

@media (min-width: 1200px) {
  article[dir="rtl"] .sharethis-wrapper {
    right: -60px;
    left: auto;
  }
}

article .view,
article .block-inline-blockvertical-block {
  direction: ltr;
}

@media (max-width: 767.98px) {
  .flip-cols-mobile .layout-builder__layout {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
  }
  .flip-cols-mobile .layout-builder__layout > div:first-child {
    -ms-flex-order: 2;
    -webkit-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2;
  }
  .flip-cols-mobile .layout-builder__layout > div:last-child {
    -ms-flex-order: 1;
    -webkit-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
    margin-bottom: 30px !important;
  }
}

.block.block-jquery-countdown-timer .countdownHolder .digit {
  color: #fa7828;
  background: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-weight: 500;
}

.block.block-jquery-countdown-timer .countdownHolder .countDiv::before,
.block.block-jquery-countdown-timer .countdownHolder .countDiv::after {
  display: none;
}

.block.block-jquery-countdown-timer .countdownHolder .position {
  overflow: visible;
  height: 1.2em;
}

@media (max-width: 1199.98px) {
  .block.block-jquery-countdown-timer .countdownHolder .position {
    height: 1em;
    font-size: 12px;
  }
}

.block.block-jquery-countdown-timer .countdownHolder .identifier {
  vertical-align: text-bottom;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
}
