:root {
  --textColor: #1E1E1C;
  --textColorLight: #FFFFFF;
  --brandOrange: #EF7E23;
  --brandNavy: #18293F;
  --animate-duration: 1s;
}

* {
    -webkt-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


html,
body {
	width: 100%;
	height: 100%;
}

body {
  background-color: #fff;
	color: var(--brandNavy);
	font-size: 18px;
  line-height: 1.4;
	font-family: "Poppins", sans-serif;
  font-weight: 400;
	margin: 0;
  overflow-x: hidden;
  padding: 100px 0 0;
}
body.home {
  padding: 0;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
 
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
::-webkit-scrollbar-thumb {
  background-color: var(--brandOrange);
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1680px) {
  .container {
    max-width: 1440px;
  }
}

.hide {
    opacity: 0;
    visibility: hidden;
}
.show {
    opacity: 1;
    visibility: visible;
}

.lazy {
  border: none !important;
  background: #f5f5f5;
  background: url(../img/loader.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  /*background-size: contain;*/
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #94959B;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #94959B;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #94959B;
}
:-moz-placeholder { /* Firefox 18- */
  color: #94959B;
}

/* Fading entrances  */
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
img {
  display: inline-block;
}

p {
  margin: 0 0 16px;
  line-height: 1.4;
}

a {
  color: var(--textColor);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 24px;
  font-weight: 700;
  line-height: 1.3;
}
h1 {
  font-size: 64px;
}
h2 {
  font-size: 56px;
}
h3 {
  font-size: 48px;
}
h4 {
  font-size: 40px;
}
h5 {
  font-size: 32px;
}
h6 {
  font-size: 24px;
}

.page {
  width: 100%;
  min-height: calc(100vh - 480px);
}

.section__title {
  font-size: 40px;
  line-height: 1;
  margin: 0 0 40px;
  color: var(--brandOrange);
}

.page__intro {
  position: relative;
  width: 100%;
  padding: 64px;
  background: url('../img/pageintro-img.png') no-repeat center center;
  background-size: cover;
  color: var(--brandNavy);
  text-align: center;
} 
.page__intro:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background: rgb(239,126,35);
  background: linear-gradient(180deg, rgba(239,126,35,1) 0%, rgba(239,126,35,0.5018382352941176) 50%, rgba(239,126,35,0) 100%);
}
.page__title {
  font-size: 72px;
  line-height: 1;
  text-transform: uppercase;
}
.page__intro p {
  max-width: 800px;
  margin: 0 auto;
}
.page__breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 16px;
  color: var(--brandNavy);
}
.page__breadcrumbs a {
  text-decoration: none;
  color: var(--brandNavy);
}

.page__subnav {
  width: 100%;
  padding: 24px 40px;
  background-color: #fdf3ec;
}
.page__subnav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}
.page__subnav li {
  position: relative;
  padding: 0 !important;
  border-radius: 0 !important;
}
.page__subnav li.current_page_item:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 24px;
  height: 4px;
  background-color: var(--brandOrange);
}
.page__subnav li.current_page_item a {
  color: var(--brandOrange);
  font-weight: 700;
}
.page__subnav ul li a {
  line-height: 2;
  text-decoration: none;
  text-transform: uppercase;
}

.btn {
  min-width: 120px;
  padding: 16px 24px;
  background-color: var(--brandOrange);
  color: var(--textColorLight);
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  border: none;
  outline: none;
}

.btn__readmore {
  position: relative;
  min-width: 120px;
  padding: 16px 24px;
  border: 1px solid var(--brandOrange);
  color: var(--brandOrange);
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
}
.btn__readmore:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--brandOrange);
  transition: all .3s ease-in-out;
  z-index: -1;
}
.btn__readmore:hover:after {
  width: 100%;
}
.btn__readmore:hover {
  color: var(--textColorLight);
}
/*header*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  z-index: 99999;
}
.home header {
  background: none;
}
header.scrolled {
  background-color: #fff;
}
.logo {
  z-index: 1;
}
.logo img,
.logo svg {
  width: auto;
  height: 40px;
}
.home .logo .st1 {
  fill: #fff !important;
}
header.scrolled .logo .st1 {
  fill: #1E1F1C !important;
}
.nav__wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}

.main__nav {
  display: flex;
  gap: 16px;
}
.main__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.menu > li {
  position: relative;
  padding: 8px 16px;
  transition: all .2s ease-in-out;
}
.main__nav li:hover {
  background: var(--brandOrange);  
}
.main__nav li:hover a {
  color: var(--textColorLight) !important;
}
.main__nav li a {
  position: relative;
  text-transform: uppercase;
  color: var(--textColor);
  text-decoration: none;
}
.home .main__nav li a {
  color: var(--textColorLight);
}
header.scrolled .main__nav li a {
  color: var(--textColor);
}
.main__nav .current_page_item > a:before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 24px;
  height: 4px;
  background-color: rgb(239 126 35 / 90%);
}
.main__nav .sub-menu {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  width: 240px;
  padding: 24px;
  transition: all .2s ease-in-out;
  transform: translateY(10px);
  z-index: 1;
}
.main__nav .sub-menu:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(239 126 35 / 80%);
  box-shadow: 0 4px 8px rgb(85 85 85 / 30%);
}
.menu .sub-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main__nav .sub-menu li {
  position: relative;
  display: block;
  width: 100%;
}
.main__nav .sub-menu li:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: all .3s ease-in-out;
}
.main__nav .sub-menu li:hover {
  background-color: unset;
}
.main__nav .sub-menu li:hover:after {
  width: 100%;
}
.main__nav .sub-menu li a {
  color: var(--textColorLight);
}
.lang {
  gap: 8px !important;
}
.current-lang {
  display: none;
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.btn__donate {
  cursor: pointer;
}

.menu__btn {
  position: absolute;
  top: 50%;
  right: 40px;
  display: none;
  width: 40px;
  height: 28px;
  transform: translateY(-50%);
  transition: all .3s ease-in-out;
  cursor: pointer;
}
.menu__btn span {
  display: block;
  position: absolute;
  height: 4px;
  width: 50%;
  background: var(--brandOrange);
  opacity: 1;
  transform: rotate(0deg);
  transition: all .3s ease-in-out;
}
.menu__btn span:nth-child(even) {
  left: 50%;
  border-radius: 0 3px 3px 0;
}
.menu__btn span:nth-child(odd) {
  left: 0px;
  border-radius: 3px 0 0 3px;
}
.menu__btn span:nth-child(1), .menu__btn span:nth-child(2) {
  top: 0px;
}
.menu__btn span:nth-child(3), .menu__btn span:nth-child(4) {
  top: 12px;
}
.menu__btn span:nth-child(5), .menu__btn span:nth-child(6) {
  top: 24px;
}
.menu__btn.active span:nth-child(1),.menu__btn.active span:nth-child(6) {
  transform: rotate(45deg);
}
.menu__btn.active span:nth-child(2),.menu__btn.active span:nth-child(5) {
  transform: rotate(-45deg);
}
.menu__btn.active span:nth-child(1) {
  left: 5px;
  top: 7px;
}
.menu__btn.active span:nth-child(2) {
  left: calc(50% - 5px);
  top: 7px;
}
.menu__btn.active span:nth-child(3) {
  left: -50%;
  opacity: 0;
}
.menu__btn.active span:nth-child(4) {
  left: 100%;
  opacity: 0;
}
.menu__btn.active span:nth-child(5) {
  left: 5px;
  top: 17px;
}
.menu__btn.active span:nth-child(6) {
  left: calc(50% - 5px);
  top: 17px;
}

.lang {
  position: relative;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lang > span {
  display: block;
  text-align: center;
  color: var(--textColor);
}
.page-template-front-page .lang > span {
  color: var(--textColorLight);
}
header.scrolled .lang > span {
  color: var(--textColor);
}
.lang:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang ul {
  opacity: 0;
  visibility: hidden;
  width: 50px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 0;
  position: absolute;
  background-color: var(--brandOrange);
  top: 32px;
  left: 0;
  transition: all .3s ease-in-out;
  transform: translateY(-10px);
  border-radius: 4px;
}

.search__wrapper {
  display: flex;
  align-items: center;
}
.search__btn {
  cursor: pointer;
}
.search__btn img,
.search__btn svg {
  display: block;
  width: auto;
  height: 16px;
}
header.scrolled .search__btn svg path {
  fill: #1E1F1C !important;
}
.search__btn-close {
  position: absolute;
  top: 50%;
  right: -24px;
  color: #fff;
  transform: translateY(-50%);
  cursor: pointer;
}
header.scrolled .search__btn-close path {
  fill: #1E1F1C !important;
}
.page-template-front-page header .search__btn svg path,
.page-template-front-page header .search__btn-close path {
  fill: #fff;
}
.search__form {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  height: 58px;
  transition: all .3s ease-in-out;
  transform: translateY(10px);
  z-index: 1;
}
.search__form.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.search__form form {
  width: 100%;
  height: 100%;
}
.search__form input {
  width: 100%;
  height: 100%;
  padding: 8px 40px 8px 16px;
  font-size: 14px;
  border-radius: 8px;
  border: none;
  background: #f5f5f5;
  outline: none;
}
.search__form button {
  position: absolute;
  top: 50%;
  right: 8px;
  background: none;
  border: none;
  outline: none;
  transform: translateY(-50%);
}

.search__page {
  padding: 80px 0;
}
.search__results {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.search__results-item {
  text-decoration: none;
}
.search__results-item h2 {
  font-size: 24px;
  margin: 0 0 8px;
}
.search__results-item p {
  margin: 0;
}

/*Homepage*/
.home__master {
  width: 100%;
  height: 100vh;
}
.big__slider {
  width: 100%;
  height: 100%;
  position: relative;
}
/*.big__slider:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(24,41,63);
  background: linear-gradient(0deg, rgba(24,41,63,1) 0%, rgba(24,41,63,0) 100%);
  z-index: 1;
}*/
.big__slider > div {
  position: relative;
  width: 100%;
  height: 100%;
}
/*.big__slider > div:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}*/
.big__slider .slick-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.big__slider .slick-slide:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(24,41,63);
  background: linear-gradient(0deg, rgba(24,41,63,1) 0%, rgba(24,41,63,0) 100%);
  z-index: 1;
}
.big__slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.big__slider-info {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--textColorLight);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.big__slider-info h1 {
  font-size: 64px;
  margin: 0;
}
.home__master .prev__btn,
.home__master .next__btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: url('../img/arrow-left.svg'), auto;
}
.home__master .next__btn {
  right: 0;
  left: auto;
  cursor: url('../img/arrow-right.svg'), auto;
}
.home__master .prev__btn {
  border-radius: 12px 0 0 0;
}

/*home news*/
.home__news {
  padding: 64px;
/*  background-color: #F8F8FA;*/
}
.home__news .container {

}
.home__news-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.home__news-item {
  width: calc(33.333% - 16px);
  border: 1px solid #ddd;
  border-radius: 20px;
}
.home__news-item:first-child,
.home__news-item:nth-child(2) {
  width: calc(50% - 12px);
}
.home__news-inner {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.home__news-inner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--brandNavy);
  z-index: -1;
}
.home__news-inner:hover {
  box-shadow: 0 2px 24px rgb(239 126 35 / 15%);
}
.home__news-img {
  width: 100%;
  height: 400px;
  opacity: 0.7;
  overflow: hidden;
  border-radius: 20px;
}
.home__news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease-in-out;
}
.home__news-inner:hover .home__news-img img {
  transform: scale(1.1) rotate(2deg);
}
.home__news-info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px;
}
.home__news-info > span {
  display: inline-block;
  color: #fff;
  padding: 4px 8px;
  background-color: var(--brandOrange);
  border-radius: 4px 4px 0 0;
}
.home__news-info h3 {
  margin: 0;
  font-size: 24px;
  padding: 0px 12px;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home__news-info h3 span {
  background-color: var(--brandOrange);
  -webkit-box-decoration-break: clone;
  box-shadow: -12px 0 0 0 var(--brandOrange), 12px 0 0 0 var(--brandOrange);
  border-radius: 4px;
}

/*support*/
.support {
  position: relative;
  padding: 120px;
}
.support:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/support-bg.png) no-repeat center center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.4;
  z-index: -1;
}
.support .container {
  display: flex;
  align-items: center;
  gap: 80px;
}
.support__info {
  max-width: 640px;
}
.support__info h3 {

}
.support__info p {

}
.support__info a {
  display: inline-block;
  margin-top: 24px;
}
.support__img {
  position: relative;
  margin: 0 auto;
}
.support__img-main {
  display: block;
  width: 480px;
  height: 580px;
  border-radius: 20px;
  border: 2px solid rgb(239 126 35 / 50%);
  object-fit: cover;
}
.support__img-shape {
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 150%;
  z-index: -1;
}

/*home about*/
.home__about {
  padding: 80px 40px 40px;
}
.home__about .container {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
.home__about-item {
  width: 400px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}
.home__about-item img {
  display: inline-block;
  height: auto;
  width: auto;
  max-width: 120px;
  max-height: 160px;
}
.home__about-item span {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: var(--brandOrange);
}
.home__about-item p {
  
}

.home__activism-hub {
  display: flex;
  width: 100%;
  height: 800px;
}
.home__activism-img {
  width: 50%;
  height: 100%;
  flex-shrink: 0;
}
.home__activism-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.home__activism-info {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home__activism-info-wrapper {
  width: 640px;
  max-width: 100%;
}
.home__activism-title {

}
.home__activism-desc {

}


/*subscribe*/
.subscribe {
  position: relative;
  padding: 80px;
  color: #fff;
}
.subscribe:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 480px;
  background: rgb(24,41,63);
  background: linear-gradient(0deg, rgba(24,41,63,0) 0%, rgba(24,41,63,0.2497373949579832) 15%, rgba(24,41,63,0.5046393557422969) 30%, rgba(24,41,63,0.7455357142857143) 45%, rgba(24,41,63,1) 75%);
}
.subscribe .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  height: 100%;
}
.subscribe__img {
  width: 320px;
}
.subscribe__img img {
  width: 100%;
  height: auto;
}
.subscribe__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.subscribe__info h2 {
  font-size: 52px;
  margin: 0;
}
.subscribe__info input[type="text"] {
  width: 720px;
  height: 64px;
  padding: 10px 16px;
  border-radius: 12px;
  background-color: #f6f6f6;
  border: none;
  outline: none;
}
.subscribe__info .btn {
  width: 240px;
  outline: none;
  border: none;
}

/*about page*/
.about__page {

}
.about__page .container {
  
}
.about__page-info {
  display: flex;
  align-items: center;
  gap: 80px;
  margin: 24px 0 80px;
}
.about__page-desc {
  width: 50%;
}
.about__page-desc p {

}
.about__page-img {
  width: 50%;
  display: block;
  border-radius: 20px;
  border: 2px solid rgb(239 126 35 / 50%);
  overflow: hidden;
}
.about__page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__page-items {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  /*background: rgb(251,251,255);
  background: linear-gradient(180deg, rgba(251,251,255,0.5) 0%, rgba(251,251,255,1) 50%, rgba(251,251,255,0.5) 100%);*/
  margin-bottom: 160px;
}
.about__item {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding: 32px 16px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 40px rgb(40 89 255 / 8%);
}
.about__item:first-child,
.about__item:nth-child(2) {
  width: calc(50% - 12px);
}
.about__item img {
  width: auto;
  height: 120px;
}
.about__item-info {

}
.about__item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.about__item p {
  margin: 0;
}

.donors {
  margin: 160px 0;
}
.donors__wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.donors__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(25% - 18px);
  height: 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 24px rgb(239 126 35 / 15%);
  overflow: hidden;
}
.donors__item img {
  display: block;
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

/*programs*/
.media__page {
  position: relative;
  margin: 40px 0;
}
.news__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0;
}
.news__item {
  width: calc(50% - 16px);
  text-decoration: none;
}
.news__item-inner {
  width: 100%;
  background-color: #fff;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid #CDD7DD;
  transition: all .2s ease-in-out;
}
.news__item-inner:hover {
  box-shadow: 0 2px 24px rgb(239 126 35 / 15%);
}
.news__item-img {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 12px;
}
.news__item-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: all 1s ease-in-out;
}
.news__item-inner:hover img {
  transform: scale(1.1) rotate(2deg);
}
.news__item-info {
  padding: 24px;
}
.news__item h2 {
  font-size: 24px;
}
.news__item-info .btn__readmore-link {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--brandOrange);
  text-decoration: none;
}
.news__item-info .btn__readmore-link img {
  width: 24px;
  height: auto;
}

.news__item--big {
  width: calc(33.333% - 22px);
}
.news__item--big .news__item-inner {
  padding: 0;
}
.news__item--big .news__item-img {
  height: 420px;
}
.news__item--big {
  
}

/*staff*/
.staff__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 0 0 40px;
}
.staff__item {
  width: calc(25% - 30px);
}
.staff__item:hover > img {
  box-shadow: 0 2px 24px rgb(239 126 35 / 0.3);
}
.staff__item > img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  transition: all .2s ease-in-out;
}
.staff__item-info {
  padding: 40px;
  text-align: center;
  border: 1px solid #f4f4f4;
  border-radius: 20px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.staff__item-info h3 {
  font-size: 24px;
  margin-bottom: 0;
}
.staff__item-info h3 a {
  text-decoration: none;
}
.staff__item-info span {
  text-transform: uppercase;
  color: var(--brandOrange);
}
.staff__item-social {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-top: auto;
}
.staff__item-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eaeaea;
  border-radius: 100px;
}
.staff__item-social img {
  width: 16px;
  height: 16px;
  display: block;
}

/*single team*/
.single__team {
  margin: 80px 0;
}
.team__info {
  display: flex;
  gap: 80px;
}
.team__img {
  width: 400px;
  flex-shrink: 0;
}
.team__img img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  border-radius: 20px;
}
.team__name {

}
.team__name h1 {
  font-size: 40px;
  margin-bottom: 16px;
}
.team__name span {
  text-transform: uppercase;
  color: var(--brandOrange);
}
.team__name .staff__item-social {
  justify-content: flex-start;
}
.team__desc {
  margin-top: 40px;
}

.next__posts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 160px;
}
.next__posts a {
  text-decoration: none;
}
.next__posts a:hover {
  color: var(--brandOrange);
}
.next__posts span {
  display: block;
}

/*single page*/
.single {
  background-color: #F8F8F8;
}
.single__page {
  max-width: 960px;
  margin: 40px auto; 
}
.single__page .page__breadcrumbs {
  margin: 0 0 40px;
  color: var(--brandNavy);
  justify-content: flex-start;
}
.single__page .page__breadcrumbs a {
  color: var(--brandNavy);
}
.single__page-wrapper {
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
}
.single__page-img {
  width: 100%;
  height: 480px;
}
.single__page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgb(24 41 63 / 15%);
}
.single__page-video {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.single__page-slider {
  position: relative;
  width: 100%;
  height: 640px;
}
.single__page-slider .slick-list,
.single__page-slider .slick-track {
  height: 100%;
}
.single__page-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single__page-slider .slider__counter {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 16px;
  background: #fff;
  font-size: 14px;
}
.single__page-slider .slick-arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: var(--textColor);
  z-index: 1;
  cursor: pointer;
  transition: all .2s ease-in-out;
}
.single__page-slider .slick-arrow:hover {
  color: var(--brandOrange);
}
.single__page-slider .prev__btn {
  right: 40px;
}
.single__page-slider .prev__btn:after {
  content: '<';
}
.single__page-slider .next__btn:after {
  content: '>';
}
.single__page-info {
  padding: 40px;
}
.single__page-info h1 {
  font-size: 48px;
}
.single__page-desc {

}
.single__page .donors {
  margin: 40px 0;
}
.single__page .donors .section__title {
  font-size: 24px;
  margin: 0 0 24px;
}
.single__page .donors .donors__item {
  width: calc(33.333% - 16px);
}

/*transparency*/
.transparency__wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.transparency__item {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 24px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 20px;
  transition: all .2s ease-in-out;
  text-decoration: none;
  box-shadow: 0 4px 40px rgb(40 89 255 / 8%);
}
.transparency__item:hover {
  border: 1px solid var(--brandOrange);
}
.transparency__item > img {
  height: 80px;
  width: auto;
}
.transparency__item h4 {
  font-size: 24px;
  margin: 0;
  width: 240px;
  flex-grow: 1;
  text-transform: capitalize;
}
.transparency__item p {
  margin: 0;
  width: 640px;
}
.transparency__item .readmore__btn-link {
  color: var(--brandOrange);
  margin-left: auto;
}

/*platforms*/
.platforms__wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.platforms__item {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 24px;
  border: 1px solid transparent;
  background: #fff;
  border-radius: 20px;
  transition: all .2s ease-in-out;
  text-decoration: none;
  box-shadow: 0 4px 40px rgb(40 89 255 / 8%);
}
.platforms__item:hover {
  border: 1px solid var(--brandOrange);
}
.platforms__item > img {
  max-height: 80px;
  max-width: 120px;
  width: auto;
  height: auto;
}
.platforms__item h4 {
  font-size: 24px;
  margin: 0;
  text-transform: capitalize;
}
.platforms__item .readmore__btn-link {
  color: var(--brandOrange);
  margin-left: auto;
}

/*contact*/
.contact__page {
  margin: 40px 0;
}
.contact__wrapper {
  display: flex;
  gap: 40px;
}
.contact__form {
  flex-grow: 1;
}
.contact__form form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.contact__form .form__item {
  width: calc(50% - 10px);
}
.contact__form .form__item input[type="text"],
.contact__form .form__item input[type="email"],
.contact__form .form__item select {
  width: 100%;
  height: 55px;
  padding: 8px 16px;
  font-size: 14px;
  background-color: rgb(245 248 255);
  border: none;
  outline: none;
  border-radius: 5px;
}
.form__item input[type="text"]:focus,
.form__item input[type="email"]:focus {
  color: var(--brandOrange);
  border: 1px solid var(--brandOrange);
}
.contact__form .form__item-textarea {
  width: 100%;
}
.form__item-textarea textarea {
  width: 100%;
  height: 200px;
  padding: 16px;
  font-size: 14px;
  background-color: rgb(245 248 255);
  border: none;
  outline: none;
  border-radius: 5px;
  resize: vertical;
}
.form__item-textarea textarea:focus {
  color: var(--brandOrange);
  border: 1px solid var(--brandOrange);
}
.form__item-submit {
  width: 100% !important;
}
.form__item-submit input[type="submit"] {
  min-width: 220px;
  padding: 16px 24px;
  background-color: var(--brandOrange);
  color: var(--textColorLight);
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  border: none;
  outline: none;
}
.contact__details {
  flex-shrink: 0;
  width: 400px;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 40px rgb(40 89 255 / 8%);
}
.contact__details-title {
  width: 100%;
  padding: 24px 40px;
  background-color: var(--brandOrange);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.contact__details-info {
  display: flex;
  flex-direction: column;
  padding: 40px;
}
.contact__details-item {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  flex-direction: column;
  border-bottom: 1px solid #ddd;
}
.contact__details-item:last-child {
  margin: 0;
  padding: 0;
  border: none;
}
.contact__details-item div {
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.contact__details-item p {
  margin: 0;
  font-weight: 700;
}
.contact__details-item span {

}
.contact__details-item img {

}

.contact__regions {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 80px;
} 
.contact__region-item {
  width: calc(50% - 20px);
  background-color: #fff;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 4px 40px rgb(40 89 255 / 8%);
  text-decoration: none;
  border: 1px solid transparent;
  transition: all .2s ease-in-out;
}
.contact__region-item:hover {
  border: 1px solid var(--brandOrange);
}
.contact__region-item p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  color: var(--brandOrange);
}
.contact__region-item img {
  width: 32px;
  height: 32px;
}
.contact__region-item span {
  font-size: 14px;
}
.contact__region-item:hover span {
  color: var(--brandOrange);
}

/*newsletter signup*/
.tnp .tnp-subscription {
  max-width: 640px;
}
.tnp-field{
  width: 100%;
}
.tnp-field input {
  width: 100% !important;
  height: 55px !important;
  padding: 8px 16px !important;
  font-size: 14px !important;
  background-color: rgb(245 248 255) !important;
  border: none !important;
  outline: none !important;
  border-radius: 5px !important;
}
.tnp-field .tnp-submit {
  width: auto  !important;
  min-width: 220px !important;
  padding: 16px 24px !important;
  background-color: var(--brandOrange) !important;
  color: var(--textColorLight) !important;
  text-align: center !important;
  text-decoration: none !important;
  border-radius: 12px !important;
  border: none !important;
  outline: none !important;
  font-size: 16px !important;
}

/*footer*/
footer {
  font-size: 15px;
  padding-top: 240px;
  position: relative;
  background: rgb(239,126,35);
  background: linear-gradient(0deg, rgba(239,126,35,1) 0%, rgba(239,126,35,0.5018382352941176) 50%, rgba(239,126,35,0) 100%);
  color: var(--brandNavy);
  z-index: 9999;
}
footer a {
  color: var(--brandNavy);
}
.footer__content .container {
  display: flex;
  padding: 80px 0;
}
.footer__title {
  display: block;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}
.footer__item {
  width: 25%;
  padding: 0 20px;
}
.footer__item-icon {
  width: 32px;
  height: 32px;
  background: var(--brandNavy);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}

.footer__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 80px;
}
.footer__social {

}
.social__links {
  display: flex;
  gap: 16px;
}
.social__links a {
  width: 32px;
  height: 32px;
  background: var(--brandNavy);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.social__links img {
  width: 16px;
}

.footer__logo {
  width: 120px;
  height: auto;
  display: block;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__contact a,
.footer__contact > div {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.footer__contact > div {
  align-items: unset;
}
.footer__contact a img {
  width: 16px;
  height: 16px;
  display: block; 
}

.footer__links {
  
}
.footer__links ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 640px;
  max-width: 100%;
  margin-left: auto;
  justify-content: flex-end;
}
.footer__links li {
  padding: 0;
}
.footer__links a {
  text-decoration: none;
  text-transform: uppercase;
}

.footer__form {

}
.footer__form label {
  display: block;
  margin-bottom: 16px;
}
.footer__form input[type="text"] {
  display: block;
  width: 100%;
  height: 64px;
  padding: 10px 16px;
  font-size: 14px;
  border: none;
  color: var(--brandNavy);
  outline: none;
  background-color: rgb(246 246 246 / 31%);
  border-radius: 12px;
  margin-bottom: 24px;
}
.footer__form .btn {
  width: 200px;
}

.copyright {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brandNavy);
  height: 64px;
}
.copyright p {
  margin: 0;
  font-size: 14px;
}




