
@font-face {
  font-family: "Roboto-Light";
  src: url("../fonts/Roboto-Light.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Roboto-Regular";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Roboto-Medium-italic";
  src: url("../fonts/Roboto-Medium-italic.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Roboto-Medium";
  src: url("../fonts/Roboto-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Roboto-Bold";
  src: url("../fonts/Roboto-Bold.woff2") format("woff2");
  font-display: swap;
}
h1 {
  font-family: "Roboto-Bold", sans-serif;
  font-size: 50px;
  color: #333333;
}
h2 {
	font-family: "Roboto-Bold", sans-serif;
  font-size: 45px;
	color: #D50000;
}
h3 {
	font-family: "Roboto-Bold", sans-serif;
  font-size: 24px;
	color: #D50000;
}
h4 {
	font-family: "Roboto-Bold", sans-serif;
  font-size: 18px;
	color: #D50000;
}
body {background: #fff;}
body, body p, body a {
  font-family: "Roboto-Regular", sans-serif;
  font-weight: 400;
}
a {
	color: #D50000;
	transition: 0.3s all;
}
b {font-family: "Roboto-Bold", sans-serif;}
.box-padding {
	padding: 0 60px;
	box-sizing: border-box;
  margin: 0 auto;
}
.d-flex-between {
	display: flex;
	justify-content: space-between;
}

.header {
	position: fixed;
  z-index: 999;
  width: 100%;
  transition: 0.5s;
}
.header .header-container {
	height: 150px;
	background: #fff;
	display: flex;
  flex-direction: column;
  justify-content: center;	
}
.header .header-logo img {
  width: 183px;
	height: 120px;
}
.header .header-container-left {width: fit-content;}
.header .header-container-right {
	display: flex;
	align-content: center;
	flex-wrap: wrap;
	width: fit-content;
}
.home-page .home-page-projects-btn-more a,
.single-project-page .project-item-donate-btn a,
.projects-page .project-item-donate-btn a,
.header-container-right-links-lang button,
.header a {
	font-family: "Roboto-Bold", sans-serif;
	font-size: 14px;
	line-height: 18.2px;
	padding: 15px 20px;
	text-transform: uppercase;
	color: #373737;
}
.header .header-mobile .header-container-right-links-lang button,
.header .header-container-right-links-lang button,
.header a {opacity: 0.7;}
.header a.header-logo,
.header .header-container-right-links-donate a {opacity: 1;}
.header .header-container-right-links-lang button {
	border: 1px solid #8E8D8D;
	outline: none;
	background: transparent;
	border-radius: 10px;
}
.header .header-container-right-links-lang button:hover,
.header .header-container-right-links-lang button:focus {
	cursor: pointer;
	border: 1px solid #FF5126;
	color: #FF5126;
	transition: 0.3 all;
}
.page-404 .btn-404-back,
.home-page .home-page-projects-btn-more,
.single-project-page .project-item-donate-btn,
.projects-page .project-item-donate-btn,
.header .header-container-right-links-donate {
	border: 1px solid #D50000;
	background: #D50000;
	align-content: center;
	border-radius: 10px;
	margin-left: 20px;
}
.page-404 .btn-404-back a,
.home-page .home-page-projects-btn-more a,
.single-project-page .project-item-donate-btn a,
.projects-page .project-item-donate-btn a,
.header .header-container-right-links-donate a {
	color: #fff !important;
	padding: 15px 40px;
	box-sizing: border-box;
}
.page-404 .btn-404-back:hover, .page-404 .btn-404-back:focus,
.home-page .home-page-projects-btn-more:hover,
.home-page .home-page-projects-btn-more:focus,
.single-project-page .project-item-donate-btn:hover,
.single-project-page .project-item-donate-btn:focus,
.projects-page .project-item-donate-btn:hover,
.projects-page .project-item-donate-btn:focus,
.header .header-container-right-links-donate:hover,
.header .header-container-right-links-donate:focus {
	border: 1px solid #FF5126;
	background: #FF5126;
}
.header .header-container-right-links-1 {display: inline-flex;}
.header .header-container-right-links-1 a {display: flex; justify-content: center; flex-direction: column;}
.header-fixed .header {
	box-shadow: 0 4px 8px rgba(0, 0, 0, .08);
  background: #fff !important;
}
.header .header-container-right-links-2 {align-content: center;}
.header .header-desktop .header-container-right-links-2 {
	display: flex;
  align-items: center;
}
.header .dropdown-content {
  display: none;
  position: absolute;
	padding-top: 20px;
	padding-bottom: 20px;
  top: 100px;
  width: 450px;
	right: 60px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  border-radius: 4px;
  z-index: 10;
	background: #fff;
	border-radius: 10px;
}
.header .dropdown-content li {padding: 10px 15px;}
.header .dropdown-content li a {padding: 0;}
.header .dropdown-content {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.header .dropdown:hover .dropdown-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
	display: block;
}
.header .header-arrow-down-hover {display: none;}
.header .dropdown:hover .header-arrow-down-hover {display: block;}
.header .dropdown:hover .header-arrow-down-default {display: none;}
.header .dropdown:hover .dropbtn {color: #FF5126;}
.header .header-mobile {display: none;}
.header .header-mobile .header-mobile-btn {
	width: 50px;
  height: 50px;
  background: #D50000;
  border-radius: 10px;
	display: flex;
  flex-direction: column;
  justify-content: center;
}
.header .header-mobile .header-mob-btn {
	width: 22px;
  height: 14px;
  flex-direction: column;
  display: flex;
  justify-content: space-between;
  transition: 0.5s;
	margin: 0 auto;
}
.header .header-mobile .header-mob-btn span {
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  display: block;
  transition: 0.5s all;
}
.header .header-mobile .header-mobile-bottom {
	max-height: 0;
  transition: max-height 0.7s ease-out;
  overflow: hidden;
	width: 100%;
	padding-top: 50px;
}
.header .header-mobile .header-mobile-links {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.header .header-mobile .header-mobile-links-1 {
	display: flex;
	flex-direction: column;
}
.header-mob-menu-active .header {
	background: #fff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.35);
}
.header-mob-menu-active .header .header-mobile .header-mob-btn .header-mob-btn-1 {
	-webkit-transform: rotate(45deg) translate(4.5px, 4px);
  transform: rotate(45deg) translate(4.5px, 4px);
}
.header-mob-menu-active .header .header-mobile .header-mob-btn .header-mob-btn-2 {
  -webkit-transform: rotate(-45deg) translate(4.5px, -4px);
  transform: rotate(-45deg) translate(4.5px, -4px);
}
.header-mob-menu-active .header .header-mobile .header-mobile-bottom {
	max-height: 725px;
	padding-bottom: 50px;
}
.single-page main, .news-page .news-main-page, .home-page main, .team-page .team-main-page, .projects-page .projects-main-page,
.single-news-page .single-news, .single-project-page .single-project, .team-member-page main {padding-top: 150px;}
.projects-page .single-page-img {background: url('../img/Heartredhands_orange.webp');}
.team-page .single-page-img, .single-page .single-page-img {background: url('../img/heartredhands-1-scaled.webp');}
.projects-page .single-page-img, .team-page .single-page-img, .single-page .single-page-img {
	background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
	width: 100%;
	height: 500px;
	margin-bottom: 95px;
}
.projects-page .single-page-img {margin-bottom: 0;}
.single-page .single-page-container {padding: 0px 0px 110px 0px;}
.single-page .single-page-container p {
	font-size: 16px;
	line-height: 28px;
	color: #000;
	margin-bottom: 24px;
}
.single-page .single-page-container h2 {margin-bottom: 14px;}
.single-page .single-page-container h3 {margin-bottom: 14px; margin-top: 50px;}
.single-page .single-page-container h4 {margin-bottom: 8px; margin-top: 40px;}
.single-page .single-page-container p.before-ul {margin-bottom: 12px;}
.single-page .single-page-container p.last {margin-bottom: 0;}
.single-page .single-page-container ul {
	list-style: disc;
	margin-left: 40px;
	margin-bottom: 24px;
}
.single-page .single-page-container ul li {margin-bottom: 10px;}
.single-page .single-page-container ul li:last-child {margin-bottom: 0px;}
.single-page .media-page-item img {
	height: auto;
	width: fit-content;
  margin: 0 auto;
  max-height: 100px;
  max-width: 150px;
}
.single-page .media-page-item .media-page-item-left {
	text-align: center;
	width: 170px !important;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.single-page .media-page-item .media-page-item-right {
	width: calc(100% - 170px) !important;
	justify-content: center;
  flex-direction: column;
	display: flex;
}
.single-page .media-page-item {margin-bottom: 50px;}
.single-page .media-page-item a {
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
}
.single-page .media-page-item b {font-weight: bolder; color: #D50000;}
.single-page .media-page-item p {margin-bottom: 0;}
.single-page .media-page-item .media-page-item-left {padding: 10px;}
.container-top {text-align: center; margin-bottom: 30px;}

.about-page .about-page-container-2-left {width: 66.6%;}
.about-page .about-page-container-2-right {
	width: 33.3%;
	display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-page .about-page-container-2-ul span {
	background-image: url('../img/icon-check.svg');
	width: 14px;
	height: 14.5px;
	margin-right: 7px;
	display: inline-flex;
	vertical-align: middle;
}
.about-page .about-page-container-2 .about-page-container-2-ul {
	list-style: none;
	margin-left: 20px;
}
.about-page .about-page-container-2-ul li {
	font-size: 16px;
	line-height: 28px;
	color: #000;
}
.about-page .about-page-container-2 .about-numbers {
	font-family: "Roboto-Medium", sans-serif;
	font-size: 36px;
	line-height: 100%;
	color: #D50000;
	font-weight: 700;
	margin-bottom: 0;
}
.about-page .about-page-container-2 .about-numbers-descr {
	font-size: 16px;
	line-height: 125%;
	color: #D50000;
	margin-bottom: 0;
}
.about-page .about-2-hr {
	width: 100px;
	height: 1px;
	background: #d7d7d7;
	margin: 35px auto;
}
.about-page .about-page-container-2-item {text-align: center;}
.about-page .about-page-iner-3 {
	background: url('../img/our-mission.webp');
	background-position: 0px 84%;
  background-repeat: no-repeat;
  background-size: cover;
	padding: 105px 0px;
	min-height: 428px;
	display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-page .about-page-container-2 {margin-bottom: 45px;}
.about-page .about-page-3-text-top p {
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	text-transform: uppercase;
  font-family: "Roboto-Medium", sans-serif;
}
.about-page .about-page-3-text-bottom p {
	font-size: 32px;
	line-height: 40px;
	color: #fff;
  font-family: "Roboto-Bold", sans-serif;
	margin-top: 50px;
}
.about-page .about-page-3-box-text {
	max-width: 43%;
  text-align: center;
	margin: 0 auto;
}
@keyframes partnersLogo {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.home-page .partners-box, .about-page .partners-box {
  overflow: hidden;
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}
.home-page .partners-box-slide, .about-page .partners-box-slide {
  display: inline-block;
  animation: 90s partnersLogo infinite linear;
}
@media screen and (min-width: 1200px) {
	.home-page .partners-box:hover .partners-box-slide, .about-page .partners-box:hover .partners-box-slide {animation-play-state: paused;}
}
.home-page .partners-box-slide img, .about-page .partners-box-slide img {
  height: 50px;
  margin: 0 40px;
  vertical-align: middle;
}
.home-page .partners-box-slide img.pl-s, .about-page .partners-box-slide img.pl-s {height: 100px;}
.home-page .partners-box-slide img.pl-m, .about-page .partners-box-slide img.pl-m {width: 150px; height: auto;}
.home-page .partners-box-slide img.pl-l, .about-page .partners-box-slide img.pl-l {width: 200px; height: auto;}
.home-page .partners-box-slide img.pl-xl, .about-page .partners-box-slide img.pl-xl {width: 250px; height: auto;}
.about-page .about-page-container-4 {margin: 75px 0;}
.about-page .container-top h1 a {
	font-family: "Roboto-Bold", sans-serif;
	color: #333333;
	text-transform: uppercase;
}
.projects-page .project-list-container, .news-page .news-list-container {
	padding-top: 96px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 30px;
}
.projects-page .project-list-container {grid-template-columns: 1fr 1fr 1fr; padding-top: 0;}
.projects-page .project-list-pagination-box, .news-page .news-list-pagination-box {
	width: 100%;
	height: 47px;
	margin-top: 64px;
	margin-bottom: 96px;
}
.projects-page .project-list-pagination, .news-page .news-list-pagination {
	width: fit-content;
	height: 100%;
	margin: 0 auto;
}
.news-page .news-item-box, .projects-page .project-item-box {
	width: 100%;
	height: fit-content;
  background: rgba(245, 245, 245, 0.5);
	border-radius: 10px;
	overflow: hidden;
	transition: 0.3s all;
}
.projects-page .project-item-box {border-radius: 0; height: 100%;}
.news-page .news-item-box:hover, .news-page .news-item-box:focus {
	box-shadow: 0 0 40px rgba(0, 0, 0, .2);
  transform: translate3d(0, -5px, 0);
	background: #fff;
}
.news-page .news-item .news-item-img img {
	width: 100%;
	height: 500px; /*440px*/
	max-height: fit-content;
	object-fit: contain; 
	object-position: top;
}
.projects-page .project-item .project-item-img img {
	width: 100%;
	height: 500px;
	object-fit: contain; 
	object-position: top;
	object-position: center;
}
.projects-page .project-item-img {object-position: center;}
.projects-page .project-item-img {
	text-align: center;
	display: flex;
  justify-content: center;
  flex-direction: column;
}
.projects-page .project-item .project-item-content,
.news-page .news-item .news-item-text {
	padding: 24px 32px;
  box-sizing: border-box;
	text-align: center;
}
.news-page .news-item .news-item-text .news-item-text-title {
	font-size: 20px;
	line-height: 30px;
	font-family: "Roboto-Medium", sans-serif;
	color: #373737;
	margin-bottom: 12px;
}
.news-page .news-item .news-item-text .news-item-text-date {
	font-size: 14px;
  line-height: 16px;
	color: #333333;
}
.news-page, .projects-page {background: #fff;}
.projects-page .project-item-text-title {
	color: #333;
	font-size: 20px;
  line-height: 30px;
	font-family: 'Roboto-Bold', sans-serif;
	margin-bottom: 24px;
	display: block;
}
.projects-page .project-item-text-desc {
	color: #8e8d8d;
	font-size: 16px;
  line-height: 175%;
	margin-bottom: 24px;
}
.single-project-page .project-item-res .project-item-goal-done, .projects-page .project-item-res .project-item-goal-done {
	display: none;
	font-size: 16px;
  line-height: 175%;
	color: #8e8d8d;
	margin-bottom: 24px;
}
.single-project-page .project-item-res .project-item-goal-done {text-align: center; margin-bottom: 0;}
.single-project-page .project-item-res .project-item-goal-done p, .projects-page .project-item-res .project-item-goal-done p {font-weight: bold; font-family: 'Roboto-Bold', sans-serif;}
.single-project-page .project-item-res .project-item-donate-btn, .projects-page .project-item-res .project-item-donate-btn {
	display: inline-flex;
	margin-left: 0;
}
.single-project-page .project-item-res.done .project-item-goal-done, .projects-page .project-item-res.done .project-item-goal-done {display: block;}
.single-project-page .project-item-res.done .project-item-donate-btn, .projects-page .project-item-res.done .project-item-donate-btn {display: none;}
.projects-page .project-item-goal-box {
	box-sizing: border-box;
	padding: 24px 24px 0;
}
.single-project-page .project-item-goal-box {margin-bottom: 30px;}
.single-project-page .project-item-goal-box .project-item-goal-now, .projects-page .project-item-goal-box .project-item-goal-now {
	font-size: 30px;
	line-height: 1.2;
	font-family: 'Roboto-Bold', sans-serif;
}
.single-project-page .project-item-goal-box .project-item-goal--box p, .projects-page .project-item-goal-box .project-item-goal--box p {
	color: #8e8d8d;
	font-size: 16px;
	text-align: center;
	margin-bottom: 14px;
}
.single-project-page .project-item-goal-box .project-item-goal--box p {text-align: left; margin-bottom: 25px;}
.single-project-page .project-goal-progress-bar, .projects-page .project-goal-progress-bar {
  width: 100%;
  height: 10px;
  background: rgb(238, 238, 238);
	overflow: hidden;
}
.single-project-page .project-goal-progress-bar {height: 4px;}
.single-project-page .project-goal-progress--bar, .projects-page .project-goal-progress--bar {
  height: 100%;
  width: 0;
  background: #d50000;
  transition: width 0.5s;
}
.projects-page h1 {
	margin: 60px auto 60px;
	font-size: 50px;
	line-height: 60px;
	text-align: center;
	text-transform: uppercase;
	color: #333333;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.projects-page .project-list-pagination .pagination-prev,
.news-page .news-list-pagination .pagination-prev {border-left: 1px solid #E7E5E4;}
.projects-page .project-list-pagination .pagination a,
.projects-page .project-list-pagination .pagination span,
.news-page .news-list-pagination .pagination a,
.news-page .news-list-pagination .pagination span {
	font-family: 'Roboto-Medium', sans-serif;
	font-size: 13px;
  line-height: 100%;
  text-align: center;
  text-decoration: none;
  width: 45px;
  padding: 16px 14px;
  border: 0.5px solid #E7E5E4;
  color: #333333;
  transition: 0.3s all;
	box-sizing: border-box;
}
.projects-page .project-list-pagination .pagination-prev,
.projects-page .project-list-pagination .pagination-next,
.news-page .news-list-pagination .pagination-prev,
.news-page .news-list-pagination .pagination-next {min-width: 45px; width: fit-content !important;}
.news-page .news-list-pagination .pagination a:hover, .news-page .news-list-pagination .pagination a:focus,
.projects-page .project-list-pagination .pagination a:hover, .projects-page .project-list-pagination .pagination a:focus {
  background: #FF5126;
  color: #fff !important;
  border: 0.5px solid #FF5126;
}
.news-page .news-list-pagination .pagination .current, .projects-page .project-list-pagination .pagination .current {
  background: #D50000;
  color: #fff;
  border: 0.5px solid #D50000;
}
.pagination .dots {
  border: 0.5px solid #E7E5E4;
  color: #333333;
}
.single-news-page .single-news-container, .team-member-page .single-team-member-container, .single-project-page .single-project-container {
	padding: 100px 0;
  margin: 0 auto;
}
.single-news-page .single-news-title p, .single-project-page .single-project-title h1 {
	font-family: 'Roboto-Bold', sans-serif;
	font-size: 42px;
	line-height: 125%;
	color: #373737;
}
.single-news-page .single-news-title {margin-bottom: 16px;}
.single-news-page .single-news-img {text-align: center; margin-bottom: 32px;}
.single-news-page .single-news-img img {
	border-radius: 10px;
	width: fit-content;
	height: 100%;
	max-width: 100%;
	max-height: 1000px;
}
.single-project-page .single-project-img img {
	width: 100%;
	height: 100%;
	border-radius: 5px;
	max-height: 1000px;
  object-fit: contain;
	object-position: left;
}
.single-news-page .single-news-content ul li, .single-project-page .single-project-content ul li {
	list-style-type: circle !important;
	margin-left: 40px !important;
	font-size: 16px !important;
  line-height: 175% !important;
}
.single-news-page .single-news-content, .single-project-page .single-project-content {word-wrap: break-word}
.single-news-page .single-news-content ul, .single-project-page .single-project-content ul {margin-top: -12px;}
.single-project-page .single-project-content ul li span,
.single-project-page .single-project-content p span,
.single-project-page .single-project-content p,
.single-news-page .single-news-content ul li span,
.single-news-page .single-news-content p span,
.single-news-page .single-news-content p {
  font-size: 16px !important;
  line-height: 175% !important;
  margin: 24px 0;
}
.single-project-page h1, .single-project-page h2, .single-project-page h3, .single-project-page h4, .single-project-page h5,
.single-news-page h1, .single-news-page h2, .single-news-page h3, .single-news-page h4, .single-news-page h5,
.single-project-page .single-project-content ul li span,
.single-project-page .single-project-content p span,
.single-project-page .single-project-content p,
.single-project-page .single-project-content ul li {color: #373737 !important;}
.single-news-page .single-news-content ul li,
.single-news-page .single-news-content ul li span,
.single-news-page .single-news-content p span,
.single-news-page .single-news-content p {color: #757474 !important;}
.single-news-page .single-news-content p:first-child, .single-project-page .single-project-content p:first-child {
	margin-top: 0 !important;
}
.single-news-page blockquote, .single-project-page blockquote {
	border-left: 2px solid #d50000;
	margin-left: 0;
  padding-left: 40px;
}
.single-news-page .single-news-content blockquote p, .single-project-page .single-project-content blockquote p {font-size: 20px;}
.single-news-page .single-news-content img, .single-project-page .single-project-content img {
	width: fit-content !important;
	height: fit-content !important;
	max-width: 100%;
	max-height: 700px;
	margin-right: 10px;
	border-radius: 5px;
}
.single-project-page .single-project-container-main,
.single-news-page .single-news-container-main {margin-bottom: 48px;}
.single-project-page .single-project-prev-next-container,
.single-project-page .single-project-share-container,
.single-news-page .single-news-prev-next-container,
.single-news-page .single-news-share-container {
	border-radius: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	padding: 24px 0;
}
.single-news-page .single-news-share-container, .single-project-page .single-project-share-container {margin-top: 24px;}
.single-news-page .single-news-prev-next-container, .single-project-page .single-project-prev-next-container {border-bottom: 1px solid rgba(0, 0, 0, 0.1);}
.single-news-page .single-news-share-container .share-buttons, .single-project-page .single-project-share-container .share-buttons {display: flex;}
.single-news-page .single-news-share-container .share-btn, .single-project-page .single-project-share-container .share-btn {
	border-radius: 99%;
	background: #d50000;
	width: 24px;
	height: 24px;
	display: flex;
  justify-content: center;
  flex-direction: column;
	margin-right: 4px;
}
.single-project-page .single-project-share-container .share-buttons span,
.single-news-page .single-news-share-container .share-buttons span {
	font-family: 'Roboto-Bold', sans-serif;
	font-size: 14px;
	color: #757474;
	margin-right: 4px;
	align-content: center;
}
.single-project-page .single-project-share-container .share-buttons span {color: #373737;}
.single-project-page .single-project-share-container .share-btn:hover,
.single-project-page .single-project-share-container .share-btn:focus,
.single-news-page .single-news-share-container .share-btn:hover,
.single-news-page .single-news-share-container .share-btn:focus {background: #FF5126;}
.single-project-page .single-project-share-container .share-btn-facebook img,
.single-news-page .single-news-share-container .share-btn-facebook img {width: 13px; height: 13px; margin: 0 auto;}
.single-project-page .single-project-share-container .share-btn-linkedin img,
.single-news-page .single-news-share-container .share-btn-linkedin img {width: 15px; height: 15px; margin: 0 auto;}
.single-project-page .single-project-share-container .share-btn-email img,
.single-news-page .single-news-share-container .share-btn-email img {width: 15px; height: 15px; margin: 0 auto;}
.single-news-page.news-36 .single-news-content img {width: 30% !important; max-height: fit-content !important;}
.single-news-page .single-news-prev-box, .single-project-page .single-project-prev-box {width: 45%;}
.single-news-page .single-news-next-box, .single-project-page .single-project-next-box {
	text-align: right;
	width: 45%;
}
.single-project-page .single-project-prev-next-iner a, .single-news-page .single-news-prev-next-iner a {
	color: #111;
	font-size: 18px;
  line-height: 150%;
	font-family: 'Roboto-Bold', sans-serif;
	font-weight: 700;
}
.single-project-page .single-project-prev-next-iner a span, .single-news-page .single-news-prev-next-iner a span {
	font-size: 14px;
	font-family: 'Roboto-Regular', sans-serif;
	font-weight: 400;
}
.home-page .home-page-container-title {
	text-align: center;
	line-height: 60px;
	text-transform: uppercase;
	margin-bottom: 50px;
}
.home-page .partners-box {padding: 0px 0 0px;}
.home-page .home-page--container {margin-bottom: 250px;}
.home-page .home-page-container-6 {margin-bottom: 120px;}
.team-page .team-members-box {
	display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
	margin-bottom: 105px;
}
.team-page .team-member {
	width: 370px;
  height: 370px;
  overflow: hidden;
	border-radius: 100%;
  transition: 0.3s all;
	margin: 0 auto;
}
.team-page .team-member-img img {
	width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all .3s;
  transition: all .3s;
	opacity: 0.6;
	filter: brightness( 100% ) contrast( 100% ) saturate( 100% ) blur( 0px ) hue-rotate( 0deg );
	transform: scale(1);
  -webkit-transform: scale(1);
}
.team-page .team-member-img {
	background: #000;
	transition: all .3s;
	-webkit-transition: all .3s;
  width: 100%;
	height: 100%;
}
.team-page .team-member-info {
	position: sticky;
	bottom: 40px;
	max-width: 260px;
  margin: 0 auto;
}
.about-page .team-member-position span img, .team-page .team-member-position span img {width: 14px; height: 14px;}
.about-page .team-member-position span img, .team-page .team-member-position span {vertical-align: middle;}
.team-page .team-member-name {
	font-size: 22px;
	font-family: 'Roboto-Bold', sans-serif;
	color: #fff;
	text-align: center;
	margin-bottom: 5px;
}
.team-page .team-member-position {
	font-size: 14px;
	font-family: 'Roboto-Medium', sans-serif;
  color: #FFFFFF;
  text-transform: uppercase;
	text-align: center;
}
.team-page .team-member.id-1 .team-member-img img {object-position: top;}
.team-page .team-member.id-2 .team-member-img img {object-position: top;}
.team-page .team-member.id-3 .team-member-img img {object-position: center;}
.team-page .team-member:hover .team-member-img, .team-page .team-member:focus .team-member-img {background: #D50000;}
.team-page .team-member:hover .team-member-img img, .team-page .team-member:focus .team-member-img img {
	transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.team-member-page .single-team-member-container-left {width: 40%;}
.team-member-page .single-team-member-container-right {width: 55%;}
.team-member-page .single-team-member-container-left img {
	width: 100%;
	height: 100%;
	max-height: 600px;
	object-fit: contain;
  margin: 0 auto;
	border-radius: 10px;
}
.team-member-page .single-team-member-name {
	font-size: 36px;
  line-height: 1.25;
  text-transform: uppercase;
	font-family: 'Roboto-Bold', sans-serif;
	color: #373737;
	margin-bottom: 10px;
}
.team-member-page .single-team-member-position {
	font-size: 18px;
  line-height: 1.25;
  text-transform: uppercase;
	font-family: 'Roboto-Medium', sans-serif;
	color: #757474;
}
.team-member-page .single-team-member-position img {width: 18px; height: 18px;}
.team-member-page .single-team-member-position span {vertical-align: middle;}
.team-member-page .single-team-member-container-right-1 {margin-bottom: 16px;}
.team-member-page .single-team-member-container-right-2 h4 {
	font-size: 20px;
  line-height: 1.25;
	margin-top: 30px;
	font-family: 'Roboto-Medium', sans-serif;
	color: #373737;
	margin-bottom: 10px;
}
.team-member-page .single-team-member-container-right-2 p {
	font-size: 16px;
	line-height: 175%;
	color: #757474;
}
.team-member-page .single-team-member-container-right-2 a {margin: 0 0 10px 30px;}
.about-page .about-page-container-5-team .team-member {
	width: 32.33%;
	min-width: 32.33%;
	height: fit-content;
	padding-right: 0.5%;
	padding-left: 0.5%;
	overflow: hidden;
	display: block;
}
.about-page .about-page-container-5-team .team-member:last-child {padding-right: 0.5%;}
.about-page .about-page-container-5-content {
	overflow: hidden;
}
.about-page .team-member-img img {
	width: 100%;
  height: 100%;
  object-fit: cover;
	aspect-ratio: 1 / 1.5;
	transition: 0.3s all;
	border-radius: 10px;
}
.about-page .team-member .team-member-name {
	font-size: 22px;
	line-height: 1.25;
	font-family: 'Roboto-Bold', sans-serif;
	color: #D50000;
	margin-top: 15px;
	margin-bottom: 5px;
	transition: 0.3s all;
}
.about-page .team-member .team-member-position {
	font-size: 14px;
	line-height: 1.5;
	color: #757474;
	text-transform: uppercase;
}
.about-page .team-member:hover .team-member-name, .about-page .team-member:focus .team-member-name {color: #FF5126;}
.about-page .team-member:hover .team-member-img img, .about-page .team-member:focus .team-member-img img {filter: brightness(0.6);}
.home-page .home-projects-slider--btn, .home-page .home-news-slider--btn, .about-page .about-team-slider--btn {
	width: 50px;
	height: 50px;
	background: #d50000;
	border-radius: 100%;
	opacity: 0;
	transition: 0.3s all;
	padding: 10px;
  box-sizing: border-box;
	text-align: center;
}
.home-page .home-projects-slider--btn img, .about-page .about-team-slider--btn img, .home-page .home-news-slider--btn img {
	filter: brightness(1);
	width: 30px;
	height: 30px;
}
.home-page .home-page-projects-iner:hover .home-projects-slider--btn, .home-page .home-page-projects-iner:focus .home-projects-slider--btn,
.home-page .home-page-news-iner:hover .home-news-slider--btn, .about-page .about-page-container-5-content:hover .about-team-slider--btn {opacity: 1;}
.home-page .home-page-projects-iner:hover .disabled .home-projects-slider--btn,
.home-page .home-page-news-iner:hover .disabled .home-news-slider--btn, .about-page .about-page-container-5-content:hover .disabled .about-team-slider--btn {opacity: 0.7; cursor: default;}
.home-page .home-news-slider-btn:hover .home-news-slider--btn, .home-page .home-news-slider-btn:focus .home-news-slider--btn,
.home-page .home-projects-slider-btn:hover .home-projects-slider--btn, .home-page .home-projects-slider-btn:focus .home-projects-slider--btn,
.about-page .about-team-slider-btn:hover .about-team-slider--btn, .about-page .about-team-slider-btn:focus .about-team-slider--btn {background: #FF5126; cursor: pointer;}
.home-page .disabled:hover .home-news-slider--btn, .home-page .disabled:focus .home-news-slider--btn,
.about-page .disabled:hover .about-team-slider--btn, .about-page .disabled:focus .about-team-slider--btn {background: #d50000;}
.home-page .home-news-slider-btn, .home-page .home-projects-slider-btn, .about-page .about-team-slider-btn {
	width: 0px;
	display: flex;
	justify-content: center;
	flex-direction: column;	
	position: relative;
	z-index: 99;
}
.about-page .about-page-container-5-team {transition: 0.5s all; width: 100%;}
.home-page .home-news-slider-prev, .home-page .home-projects-slider-prev {left: 20px;}
.about-page .about-team-slider-prev {left: 0.5%;}
.home-page .home-news-slider-next, .home-page .home-projects-slider-next {right: 70px;}
.about-page .about-team-slider-next {right: calc(50px + 0.5%);}
.home-page .home-news-item {
	width: calc(50% - 30px);
  min-width: calc(50% - 30px);
  height: fit-content;
  padding-right: 0.5%;
  padding-left: 0.5%;
  overflow: hidden;
  display: block;
	background: rgba(245, 245, 245, 0.5);
  border-radius: 10px;
  transition: 0.3s all;
  padding-bottom: 32px;
	flex: 0 0 calc((100% - 50px) / 2);
  box-sizing: border-box;
  min-width: 0;
}
.home-page .home-project-item {
	width: calc(33% - 30px);
  min-width: calc(33% - 30px);
  overflow: hidden;
  display: block;
	background: rgba(245, 245, 245, 0.5);
  border-radius: 40px;
  transition: 0.3s all;
  padding-bottom: 0;
	flex: 0 0 calc((100% - 100px) / 3);
  box-sizing: border-box;
  min-width: 0;
}
.home-page .home-news-item:last-child, .home-page .home-project-item:last-child {margin-right: 0;}
.home-page .home-news-item:hover, .home-page .home-news-item:focus,
.home-page .home-project-item:hover, .home-page .home-project-item:focus {
	box-shadow: 0 0 20px rgba(0, 0, 0, .2);
  transform: translate3d(0, -5px, 0);
  background: #fff;
}
.home-page .home-news-item-img {
	text-align: center;
	margin-bottom: 30px;
}
.home-page .home-news-item-img img {
	width: auto;
	height: 100%;
	max-height: 382px;
	transition: 0.7s all;
	transform: scale(1);
}
.home-page .home-project-item-img {text-align: center; overflow: hidden;}
.home-page .home-project-item-img img {
	height: 350px;
	max-height: 350px;
	transition: 0.7s all;
	transform: scale(1);	
	width: 100%;
  object-fit: contain;
	object-position: center;
}
.home-page .home-news-item-content-left {
	background: #D50000;
	text-align: center;
	box-sizing: border-box;
	padding: 15px 10px;
	height: fit-content;
	min-width: 70px;
}
.home-page .home-news-item-content-left p {
	color: #fff;
	font-family: 'Roboto-Medium', sans-serif;
	font-size: 24px;
  line-height: 22px;
	text-transform: uppercase;
}
.home-page .home-news-item-content-left p:last-child {
	font-size: 13px;
}
.home-page .home-news-item-title {
	color: #373737;
	font-family: 'Roboto-Medium', sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.2;
	margin-bottom: 10px;
	transition: 0.5s all;
}
.home-page .home-news-item-text {
	color: #373737;
	opacity: 0.85;
	font-size: 15px;
  line-height: 24px;
}
.home-page .home-news-item-content-left {margin-right: 15px;}
.home-page .home-news-item-img, .home-page .home-news-item-content {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
.home-page .home-project-item:hover .home-project-item-title,
.home-page .home-project-item:focus .home-project-item-title
.home-page .home-news-item:hover .home-news-item-title,
.home-page .home-news-item:focus .home-news-item-title {color: #FF5126;}
.home-page .home-project-item:hover .home-project-item-img img,
.home-page .home-project-item:focus .home-project-item-img img
.home-page .home-news-item:hover .home-news-item-img img,
.home-page .home-news-item:focus .home-news-item-img img {transform: scale(1.1);}
.home-page .home-page-container-3 .home-page-container-title {margin-bottom: 0 !important;}
.home-page .home-page-projects-container .home-page-projects-content,
.home-page .home-page-news-container .home-page-news-content {padding-top: 50px; padding-left: 20px; padding-right: 20px;}
.home-page .home-page-news-container {padding-right: 40px; padding-left: 40px;}
.home-page .home-page-news-container .box-padding {padding: 0;}
.home-page .home-news-item-img img, .home-page .home-news-item-content {
	box-sizing: border-box;
	padding-right: 20px;
	padding-left: 20px;
	max-width: 100%;
}
.home-page-news-iner, .home-page .home-page-projects-iner {overflow: hidden;}
.home-page-news-content, .home-page .home-page-projects-content {
  display: block !important;
  width: 100%;
  position: relative;
  min-width: 0;
	transition: 0.5s all;
  overflow: hidden;
}
.home-news-track, .home-page .home-projects-track {
  display: flex !important;
  flex-wrap: nowrap;
  justify-content: flex-start !important;
  transition: transform 0.4s ease;
  gap: 50px;
}
.home-page-news-btns, .home-page .home-page-projects-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.home-page-news-btns .dot, .home-page .home-page-projects-btns .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #d50000;
  cursor: pointer;
	opacity: 0.4;
}
.home-page-news-btns .dot.active, .home-page .home-page-projects-btns .dot.active {background: #d50000; opacity: 1;}
.home-page .home-page-news-container .home-page-news-content,
.home-page .home-page-projects-container .home-page-projects-content {padding-bottom: 20px;}
.home-page .home-page-projects-container .home-page-projects-content {padding-top: 0;}
.home-page .home-page-projects-container .home-page-container-title {margin-bottom: 30px;}
.home-page .home-page-container-6-item {
	width: 25%;
	text-align: center;
}
.home-page .home-page-container-6-item-nr .target-numbers {
	font-size: 40px;
	color: #333333;
	font-family: "Roboto-Medium", sans-serif;
	font-weight: bold;
}
.home-page .home-page-container-6-item-descr p {
	color: #373737;
	opacity: 0.85;
	font-size: 18px;
  line-height: 28px;
}
.home-page .home-page-container-6-item-point {
	width: 20px;
	height: 20px;
	background: #D50000;
	border-radius: 99px;
	margin: 0 auto;
	margin-bottom: 25px;
	margin-top: 25px;
}
.home-page .home-page-container-6-item--point {
	width: 7px;
	height: 7px;
	background: #fff;
	border-radius: 99px;
	vertical-align: middle;
  display: inline-block;
}
.home-page .home-page-container-6-line-mob,
.home-page .home-page-container-6-line {
	width: 100%;
	height: 1px;
	background: #D50000;
	position: relative;
  top: -63px;
	z-index: -1;
}
.home-page .home-page-container-6-line-mob {display: none;}
.home-page .book-slider-prev img,
.home-page .book-slider-next img {
	filter: brightness(0);
	width: 24px;
	height: 24px;
}
.home-page .book-slider-item-img img {
	width: 188px;
	height: 188px;
	border-radius: 99px;
	margin-right: 50px;
}
.home-page .book-slider-item-img--1 img {
	width: auto;
}
.home-page .book-slider-container {
	width: 100%;
	position: relative;
	max-width: 1200px;
	padding-top: 30px;
}
.home-page .book-slider-carousel {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% / 1)); /*-12*/
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	gap: 16px;
	border-radius: 8px;
	scroll-behavior: smooth;
	scrollbar-width: none;
}
.home-page .book-slider-carousel::-webkit-scrollbar {
	display: none;
}
.home-page .book-slider-carousel.no-transition {
	scroll-behavior: auto;
}
.home-page .book-slider-carousel.dragging {
	scroll-snap-type: none;
	scroll-behavior: auto;
}
.home-page .book-slider-carousel.dragging .book-slider-item {
	cursor: grab;
	user-select: none;
}
.home-page .book-slider-item {
	scroll-snap-align: start;
	margin-right: 10px;
	margin-left: 10px;
	cursor: pointer;
	justify-content: center;
}
.home-page .book-slider-item-content {max-width: 630px;}
.home-page .book-slider-item-quotation-marks-2 img,
.home-page .book-slider-item-quotation-marks-1 img {
	width: 56px;
  height: 56px;
}
.home-page .book-slider-item-quotation-marks-2 img {
	-webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
	margin-left: 15px;
}
.home-page .book-slider-item-quotation-marks-1 img {margin-right: 15px;}
.home-page .book-slider-item-content-top p {
	color: #373737;
	opacity: 0.9;
	font-size: 18px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.home-page .book-slider-item-content-title {
	font-size: 26px;
  font-weight: 700;
  color: #333;
  margin-bottom: 0;
  font-family: "Roboto-Medium", sans-serif;
	max-width: 220px;
}
.home-page .book-slider-item-content-cat {
	font-size: 15px;
	line-height: 1.5;
	color: #D50000;
}
.home-page .book-slider-item-content-bottom {justify-content: flex-start;}
.home-page .book-slider-btn {display: flex; flex-direction: column; justify-content: center;}
.home-page .book-slider-btn:hover, .home-page .book-slider-btn:focus {cursor: pointer;}
.home-page .home-page-projects-btn-more a {display: block;}
.home-page .home-page-projects-btn-more {
	width: fit-content;
  margin: 40px auto 0;
}
.home-page .home-page-projects-content .home-project-goal-left {
	padding: 11px 0px;
	box-sizing: border-box;
	background: #fff;
	font-size: 14px;
  line-height: 26px;
	border-radius: 10px;
	text-transform: uppercase;
	box-shadow: 0px 2px 8px 4px rgba(0, 0, 0, .08);
	max-width: 215px;
	width: 50%;
	height: fit-content;
	text-align: center;
}
.home-page .home-page-projects-content .home-project-goal-box {
	position: relative;
	justify-content: space-between;
	top: -25px;
	margin-left: 40px;
	margin-right: 40px;
}
.home-page .home-page-projects-content .home-project-goal-right {
	border-radius: 100%;
	background: rgb(238, 238, 238);
	width: 66px;
	height: 66px;
	box-shadow: 0px 2px 8px 4px rgba(0, 0, 0, .08);
	margin-top: -12px;
}
.home-page .home-page-projects-content .home-project-goal-right-center {
	height: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.home-page .home-page-projects-content .home-project-goal-right-value {
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	height: 100%;
	background: #fff;
	width: 54px;
	height: 54px;
	border-radius: 100%;
}
.home-page .home-page-projects-content .home-project-goal-right-value p {
  font-size: 16px;
	color: rgb(179, 31, 36);
	font-family: "Roboto-Bold", sans-serif;
}
.home-page .home-page-projects-content .home-project-goal-right.pr-done {background: rgb(179, 31, 36);}
.home-page .home-page-projects-content .home-project-goal-right.pr-done .home-project-goal-right-value {background: rgb(179, 31, 36);}
.home-page .home-page-projects-content .home-project-goal-right.pr-done .home-project-goal-right-value p {color: #fff;}
.home-page .home-project-item:hover .home-project-goal-left p,
.home-page .home-project-item:focus .home-project-goal-left p {color: #d50000 !important;}
.home-page .home-project-text {
	padding: 0px 40px 40px 40px;
	box-sizing: border-box;
}
.home-page .home-project-text-title {
	color: #333333;
	font-size: 22px;
  line-height: 30px;
	font-family: "Roboto-Bold", sans-serif;
	margin-bottom: 5px;
}
.home-page .home-project-text-descr {
	color: #373737;
	opacity: 0.85;
	font-size: 16px;
  line-height: 28px;
	-webkit-line-clamp: 5;
}
.footer {
	width: 100%;
	background: #fff;
	border-radius: 99px 99px 0 0;
}
.footer .footer-container {
	box-shadow: 1px 1px 100px -70px;
  border-radius: 99px 99px 0 0;
  padding: 120px 0px 0px 0px;
}
.footer .footer-left-logo img {width: 221px;}
.footer .footer-left-logo {margin-bottom: 60px;}
.footer .footer-payment-filter {filter: invert(1);}
.footer .footer-left-payments img {
	width: 40px;
	height: auto;
}
.footer .footer-left-payments img.footer-payment-1 {width: 30px;}
.footer .footer-bottom .copyright {padding-bottom: 25px;}
.footer .footer-bottom .copyright p {
  font-family: "Roboto-Medium", sans-serif;
	font-size: 16px;
	line-height: 24px;
	color: #222222;
}
.footer .footer-links {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 20px;
}
.footer .footer-links a {
  font-family: "Roboto-Medium", sans-serif;
	font-size: 16px;
	line-height: 24px;
}
.footer .footer-links a:not(:last-child) {margin-right: 40px;}
.footer .footer-top-right,
.footer .footer-top-left {width: 50%;}
.footer .footer-left-payments {max-width: 230px;}
.footer .footer-right-title p {
	color: #000;
	font-size: 20px;
	text-transform: uppercase;
	font-family: "Roboto-Bold", sans-serif;
	text-align: center;
	margin-bottom: 25px;
}
.footer .footer-right-contact-info-item-img img {
	width: auto;
	height: 21px;
	padding-right: 15px;
	vertical-align: middle;
}
.footer .footer-right-contact-info-item {
	display: flex;
	padding-bottom: 20px;
	margin-top: 20px;
	border-bottom: 1px solid #D50000;
	align-items: anchor-center;
}
.footer .footer-right-contact-info-item p,
.footer .footer-right-contact-info-item a {
  font-family: "Roboto-Medium-italic", sans-serif;
	font-size: 16px;
	line-height: 24px;
	color: #000;
}
.footer .footer-right-social-media img {
	width: 30px;
	height: 30px;
}
.footer .footer-right-social-media a {
	display: inline-flex;
  justify-content: center;
  flex-direction: column;
  height: 30px;
  width: 30px;
}
.footer .footer-right-social-media {margin-bottom: 25px;}
.footer .footer-right-social-media a .social-media-default {display: inline-block;}
.footer .footer-right-contact-info {margin-bottom: 30px;}
.footer .footer-right-social-media .social-media-hover {display: none;}
.footer .footer-right-social-media a:hover svg path,
.footer .footer-right-social-media a:focus svg path {fill: #FF5126 !important;}
.footer .footer-right-social-media a:hover .social-media-hover,
.footer .footer-right-social-media a:focus .social-media-hover {display: inline-block;}
.footer .footer-right-social-media a:hover .social-media-default,
.footer .footer-right-social-media a:focus .social-media-default {display: none;}
.footer .footer-right-social-media a:not(:last-child) {margin-right: 25px;}
.policy-page .single-page-container {padding-top: 95px;}
.policy-page .single-page-container h2 {
	color: #373737;
	font-size: 32px;
	line-height: 125%;
	font-family: "Roboto-Regular", sans-serif;
	font-weight: bold;
	text-align: center;
	margin-bottom: 74px;
}
.policy-page .single-page-container h3 {
	color: #373737;
	font-size: 24px;
	line-height: 125%;
	font-family: "Roboto-Regular", sans-serif;
	font-weight: bold;
	margin-bottom: 24px;
	margin-top: 54px;
}
.policy-page .single-page-container .single-page-iner p, .policy-page .single-page-container .single-page-iner li {
	color: #000;
	font-size: 16px;
  line-height: 175%;
	margin-bottom: 24px;
}
.policy-page .single-page-container h5 {
	color: #373737;
	font-size: 16px;
	line-height: 175%;
	font-family: "Roboto-Regular", sans-serif;
	font-weight: bold;
	margin-bottom: 16px;
	margin-top: 24px;	
}
.policy-page .single-page-container h4 {margin-top: 24px; margin-bottom: 16px; color: #373737;}
.policy-page .single-page-container .single-page-iner ul {margin-bottom: 24px;}
.policy-page .single-page-container .single-page-iner p.policy-before-ul,
.policy-page .single-page-container .single-page-iner li {margin-bottom: 12px;}
.policy-page .single-page-container .single-page-iner p b {font-weight: bold;}
.policy-page .single-page-container .single-page-iner .last {margin-bottom: 0 !important;}
.home-page .book-slider-container-mob, .home-page .home-news-item-title-mob {display: none;}
.home-page .home-page-slider-arrow {display: none;}
.home-page .home-page-slider-arrow--prev { left: 60px; }
.home-page .home-page-slider-arrow--next { right: 60px; }
.home-page .home-page-container-1 {
	width: 100%;
	height: 100vh;
	margin-top: -150px;
	margin-bottom: 115px;
}
.home-page .home-page-slider {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.home-page .home-page-slide .home-page-slide-content h1 {
	font-size: 60px;
	line-height: 1.25em;
	margin-bottom: 10px;
	color: #333333;
	margin-top: 150px;
}
.home-page .home-page-slide .home-page-slide-content p {
	margin-bottom: 30px;
	font-size: 20px;
	line-height: 1.4;
	color: #333333;
}
.home-page .home-page-slide .home-page-slide-content a {
	text-transform: uppercase;
	color: #fff;
	background-color: #D50000;
	border: 2px solid #D50000;
	font-size: 14px;
	box-sizing: border-box;
	padding: 15px 30px;
	text-align: center;
	border-radius: 10px;
	font-family: "Roboto-Medium", sans-serif;
	display: inline-block;
	width: fit-content;
}
.home-page .home-page-slide .home-page-slide-content a:hover, .home-page .home-page-slide .home-page-slide-content a:focus {
  background-color: #FF5126;
	color: #fff !important;
	border: 2px solid #FF5126;
}
.home-page .home-page-slide-1 .home-page-slide-content h1, .home-page .home-page-slide-1 .home-page-slide-content p {color: #fff;}
.home-page .home-page-slide-content {
	text-align: center;
	margin: 0 auto;
	max-width: 630px;
}
.home-page .home-page-slide-3 .home-page-slide-content-box {
	max-width: 1340px;
	width: 100%;
	margin: 0 auto;
}
.home-page .home-page-slide-3 .home-page-slide-content {
  text-align: left;
  margin-left: 60px;
}
.home-page .home-page-slide-1 {
	background: url('../img/home-page-slider-3.webp');
	background-position: top;
}
.home-page .home-page-slide-2 {
	background: url('../img/Children_run_gradientmap_orange.webp');
	background-position: center;
}
.home-page .home-page-slide-3 {
	background: url('../img/Hands_heart.webp');
	background-position: bottom;
}
.home-page .home-page-slide {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 1025px) {
  .home-page .home-page-slider-arrow {
    position: absolute;
    top: calc(50% + 50px);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    z-index: 20;
		transition: 0.5s all;
  }
	.home-page .home-page-slider-arrow img {width: 35px; height: 35px;}
  .home-page .home-page-slider:hover .home-page-slider-arrow {opacity: 1;}
  .home-page .home-page-slider-arrow:hover {filter: contrast(0.7);}
}
@media screen and (max-width: 1024px) {
  .home-page .home-page-slider-arrow {display: none;}
}
.home-page .home-page-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}
.home-page .home-page-slide {
  flex: 0 0 100%;
  height: 100%;
}
.projects-page .project-id-17 .project-item-img img {object-position: top !important;}
.single-project-page .single-project-date img {
	width: 20px;
	height: 20px;
	vertical-align: middle;
	margin-right: 4px;
}
.single-project-page .single-project-date p {
	display: flex;
	justify-content: flex-start;
	font-size: 16px;
	color: #8e8d8d;
	line-height: 175%;
	margin-bottom: 10px;
}
.single-project-page .single-project-title h1 {margin-bottom: 30px;}
.single-project-page .single-project-img-goal {
	display: flex;
	justify-content: space-between;
}
.single-project-page .single-project-img {
	width: 60%;
	margin-top: 30px;
	margin-bottom: 30px;
}
.single-project-page .single-project-goal-box {
	width: 30%;
}
.single-project-page .single-project-goal--box {
	background: #fff;
	margin-bottom: 30px;
	padding: 30px;
  border-radius: 5px;
	box-sizing: border-box;
	box-shadow: 0px 2px 8px 4px rgba(0, 0, 0, .08);
}
.single-project-page .single-project-goal-title p {
	color: #8e8d8d;
	font-size: 16px;
  line-height: 175%;
}
.single-project-page .single-project-goal-title h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
	color: #373737;
}
a:hover,
a:focus {color: #FF5126 !important;}
.single-page .media-page-item a {color: #000;}
.single-page .media-page-item a:hover,
.single-page .media-page-item a:focus {color: #000 !important;}
.single-page .media-page-item a:hover b,
.single-page .media-page-item a:focus b {color: #FF5126 !important;}
#cookies-banner {
  position: fixed;
	bottom: 10px;
	right: 10px;
	left: 10px;
  padding: 24px;
  box-sizing: border-box;
	background-color: #FFFFFF;
  border-color: #f4f4f4;
	border-radius: 10px;
  z-index:9999;
	width: calc(100% - 20px);
  display: flex;
  justify-content: space-between;
	box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
#cookies-banner .cookies-content {
	flex-direction: column;
	width: calc(100% - 350px);
}
#cookies-banner .cookies-content .cookies-title {
	color: #212121;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 12px 0;
	font-family: "Roboto-Medium", sans-serif;
}
#cookies-banner .cookies-content .cookies-text, #cookies-banner a {
	color: #212121;
	font-size: 14px;
	line-height: 24px;
	overflow-wrap: break-word;
}
#cookies-banner .btn-cookies-box {
	align-items: center;
}
#cookies-banner .btn-cookies-box .btn-cookies {
  background-color: #FFFFFF;
	text-decoration: none;
	font-size: 14px;
	line-height: 24px;
	padding: 8px 27px;
	font-family: "Roboto-Medium", sans-serif;
	border-radius: 10px;
	outline: none;
	height: 42px;
	width: 150px;
	cursor: pointer;
	transition: 0.3s;
}
#cookies-banner .btn-cookies-box #cookies-reject {
	color: #D50000;
  border: 2px solid #D50000;
	margin-right: 10px;
}
#cookies-banner .btn-cookies-box #cookies-accept {
  color: #333;
	border: 2px solid #333;
}
#cookies-banner .btn-cookies-box .btn-cookies:hover, #cookies-banner .btn-cookies-box .btn-cookies:focus {
	color: #fff !important;
	background-color: #FF5126 !important;
	border: 2px solid #FF5126 !important;
}
#cookies-banner [hidden]{display:none}
#cookies-banner a {font-family: 'Roboto-Medium', sans-serif; color: #D50000;}
.page-404 .btn-404-back {
	display: inline-flex;
	margin-left: 0;
	justify-content: center;
}
@media screen and (max-width: 1700px) {
	.projects-page .single-page-img, .team-page .single-page-img, .single-page .single-page-img {height: 450px;}
	.about-page .about-page-iner-3 {min-height: 295px;}
	.news-page .news-item .news-item-img img {height: 480px;}
	.team-member-page .single-team-member-container-left {max-width: fit-content;}
	.home-page .home-project-item-img img {object-fit: cover; object-position: top;}
}
@media screen and (max-width: 1600px) {
	.projects-page .single-page-img, .team-page .single-page-img, .single-page .single-page-img {height: 400px;}
	.about-page .about-page-iner-3 {min-height: 250px;}
}
@media screen and (max-width: 1550px) {
	.projects-page .single-page-img, .team-page .single-page-img, .single-page .single-page-img {height: 350px;}
}
@media screen and (max-width: 1500px) {
	.projects-page .single-page-img, .team-page .single-page-img, .single-page .single-page-img {height: 320px;}
	.about-page .about-page-iner-3 {min-height: unset;}
	.projects-page .project-item .project-item-img img {
		height: 350px;
		max-height: none;
	  object-fit: cover;
		object-position: center; 
	}
	.home-page .home-project-item-img img {height: 300px; max-height: 300px;}
}
@media screen and (max-width: 1370px) {
	.news-page .news-item .news-item-img img {height: 450px;}
}
@media screen and (max-width: 1300px) {
	.team-page .team-member {width: 100%; height: 100%; aspect-ratio: 1 / 1;}
	.team-page .team-members-box {grid-gap: 20px;}
	.home-page .book-slider-item {justify-content: space-around;}
	.home-page .book-slider-item-content {max-width: 580px;}
	.home-page .book-slider-item-img img {margin-right: 0;}
	.projects-page .project-item .project-item-img img {height: 277px;}
	.home-page .home-project-item {
		width: calc(50% - 30px);
    min-width: calc(50% - 30px);
		flex: 0 0 calc((100% - 50px) / 2);
	}
}
@media screen and (max-width: 1200px) {
	.news-page .news-item .news-item-img img {height: 380px;}
	.home-page .home-page-slide-3 {background-position: right;}
	.header {
		height: 150px;
		transition: 1s;
		background: #fff;
	}
	.header .header-desktop {display: none;}
	.header .header-mobile {
		display: block;
		height: 150px;
	}
	.header-mob-menu-active .header .header-mobile {height: fit-content;}
	.header-mob-menu-active .header {height: 800px;}
	.header a {padding: 15px 0;}
  .header .header-container {height: fit-content;}
	.header-mob-menu-active {overflow: hidden;}
	.header .header-container-right-links-donate {
	  padding: 15px 0px;
    width: fit-content;
    margin-left: 0;
	}
	.header .header-mobile .header-container-right-links-lang button {padding: 15px 40px;}
	.header .header-mobile .header-container-right-links-lang {margin: 10px 0 20px;}
	.header .header-mobile .header-mobile-donate {margin-bottom: 30px; margin-top: 10px;}
	.header-mob-menu-active .overlay {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(2px);
    display: block;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 1s;
  }
	.home-page .book-slider-item-quotation-marks-2, .home-page .book-slider-item-quotation-marks-1,
	.home-page .book-slider-prev, .home-page .book-slider-next {display: none;}
	.home-page .book-slider-item-content, .home-page .book-slider-item-content-title {max-width: 100%; margin-left: auto; margin-right: auto;}
	.home-page .book-slider-item-img img {margin-right: 0; margin-bottom: 10px; width: 188px; height: 188px;}
	.home-page .book-slider-item-img--1 img {width: auto;}
	.home-page .book-slider-item-img {text-align: center;}
	.home-page .book-slider-container {padding-top: 0;}
	.home-page .book-slider-item-content-bottom {justify-content: center;}
	.home-page .book-slider-container-desktop {display: none;}
	.home-page .book-slider-container-mob {
		display: block;
    overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}
	.home-page .book-slider-container-mob::-webkit-scrollbar {display: none;}
	.home-page .book-slider-container-mob .book-slider-container--mob {
		display: flex;
		justify-content: flex-start;
		width: 400%;
	}
	.home-page .book-slider-item {
		flex-direction: column;
	  height: fit-content;
	  text-align: center;
	  width: 96%;
	  margin: 0 2%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
	}
	.header .header-mobile-btns-box {
		display: flex;
		justify-content: space-between;
		width: 100%;
	}
	.home-page .home-news-item-img img {object-position: center; margin: 0 auto;}
	.single-news-page .single-news-img img {width: auto;}
	.single-project-page .single-project-content img,
	.single-news-page .single-news-content img {width: auto !important; height: 100% !important;}
	.about-page .team-member-img img {height: 500px;}
	.home-page .home-projects-slider--btn, .home-page .home-news-slider--btn, .about-page .about-team-slider--btn {opacity: 1;}
	.home-page .disabled .home-news-slider--btn, .about-page .about-page-container-5-content .disabled .about-team-slider--btn {opacity: 0.7; cursor: default;}
	.single-page .media-page-item img {width: auto;}
	.header .header-mobile .header-mobile-bottom {padding-top: 30px;}
	.header a {padding: 12px 0;}
	.header-mob-menu-active .header .header-mobile .header-mobile-bottom {max-height: calc(100vh - 200px);}
	.header-mob-menu-active .header {height: 100vh;}
	.header .header-mobile .header-container-right-links-lang,
	.header .header-mobile .header-mobile-donate {margin-top: 12px;}
	.home-page .home-page-slide {min-height: 100vh;}
	.home-page .home-page-container-1 {height: 100%; min-height: 100vh;}
	.projects-page .project-list-container {grid-template-columns: 1fr 1fr;}
	.projects-page .project-item .project-item-img img {
		height: 400px;
		object-position: top;
	}
	.single-project-page .single-project-goal-box {width: 34%;}
	.single-project-page .single-project-img {width: 61%;}
	.home-page .home-project-item-img img {height: 270px; max-height: 270px;}
}
@media screen and (max-width: 1100px) {
	.news-page .news-item .news-item-img img {height: 350px;}
}
@media screen and (max-width: 1024px) {
	.box-padding {padding: 0 40px;}
  .single-page .single-page-container {padding: 0 0 100px 0;}
	.policy-page .single-page-container {padding-top: 95px;}
	.single-page .media-page-item img {padding-right: 10px;}
	.footer .footer-container {padding-top: 90px;}
	.footer .footer-container {
		box-shadow:
		0 10px 30px rgba(0, 0, 0, 0.05),
		0 20px 60px rgba(0, 0, 0, 0.15);
		will-change: transform, box-shadow;
	}
	.news-page .news-item .news-item-img img {height: 340px;}
	.single-project-page .single-project-img img,
	.single-news-page .single-news-img img {max-height: 700px;}
	.single-project-page .single-project-content img,
	.single-news-page .single-news-content img {max-height: 500px;}
	.single-news-page .single-news-title p {font-size: 32px;}
	.team-page .team-members-box {grid-template-columns: 1fr 1fr; grid-gap: 30px;}
	.team-member-page .single-team-member-container {flex-direction: column;}
	.team-member-page .single-team-member-container-left {margin: 0 auto 30px;}
	.team-member-page .single-team-member-container-right, .team-member-page .single-team-member-container-left {width: 100%;}
	.home-page .home-page--container {margin-bottom: 150px;}
	.home-page .home-projects-slider--btn, .home-page .home-news-slider--btn, .about-page .about-team-slider--btn {opacity: 1;}
	.home-page .disabled .home-news-slider--btn, .about-page .about-page-container-5-content .disabled .about-team-slider--btn {opacity: 0.7; cursor: default;}
	.home-page .home-page-news-container {padding-right: 20px; padding-left: 20px;}
	.home-page .home-news-item-img img {width: 100%; object-fit: contain; height: 350px; max-height: 350px;}
	.home-page .home-page-slide .home-page-slide-content h1 {font-size: 50px;}
	.home-page .home-page-slide .home-page-slide-content p {font-size: 18px;}
	.home-page .home-page-slide {min-height: 100vh;}
	.home-page .home-page-container-1 {height: 100%; min-height: 100vh; margin-bottom: 105px;}
	.home-page .home-page-slide .home-page-slide-content h1 {margin-top: 200px;}
	.home-page .home-page-slide .home-page-slide-content a {margin-bottom: 50px;}
	.home-page .home-page-slide {background-position-y: 70px;}
	.home-page .home-page-slide-3 .home-page-slide-content {margin-left: 0;}
	.home-page .home-project-item-img img {
		object-fit: contain;
		object-position: center;
	}
	#cookies-banner .btn-cookies-box {flex-direction: column-reverse; align-items: unset; justify-content: center;}
	#cookies-banner .btn-cookies-box #cookies-reject {margin-right: 0; margin-top: 10px;}
	#cookies-banner .cookies-content {width: calc(100% - 200px);}
}
@media screen and (max-width: 1000px) {
	.single-page .single-page-container h2 {
		font-size: 30px;
		font-family: "Roboto-Medium", sans-serif;
	}
	h1, h2, h3, h4, b {font-family: "Roboto-Medium", sans-serif;}
	.home-page .home-page-container-title h1 {font-size: 30px; line-height: 40px;}
	.home-page .home-page-container-2 .home-page-container-title h1 {font-size: 45px; line-height: 55px;}
	.about-page .about-page-3-box-text {max-width: 70%;}
	.home-page .partners-box-slide img.pl-s, .about-page .partners-box-slide img.pl-s {height: 150px;}
	.home-page .partners-box-slide img.pl-m, .about-page .partners-box-slide img.pl-m {width: 200px;}
	.home-page .partners-box-slide img.pl-l, .about-page .partners-box-slide img.pl-l {width: 300px;}
	.home-page .partners-box-slide img.pl-xl, .about-page .partners-box-slide img.pl-xl {width: 350px;}
	.about-page .about-page-container-2 {flex-direction: column;}
	.footer .footer-container .footer-top {flex-direction: column;}
	.about-page .about-page-container-2-left, .about-page  .about-page-container-2-right,
	.footer .footer-top-right, .footer .footer-top-left {width: 100%;}
	.about-page .about-page-container-2-left, .footer .footer-top-left {margin-bottom: 30px;}
	.team-member-page .single-team-member-name {font-size: 30px;}
	.team-member-page .single-team-member-position {font-size: 16px;}
	.about-page .about-page-container-5-team .team-member {width: 49%; min-width: 49%;}
	.footer .footer-right-social-media svg {
		width: 35px;
		height: 35px;
	}
	.footer .footer-right-social-media a,
	.footer .footer-right-social-media img {
    width: 40px;
    height: 40px;
	}
	.footer .footer-links {justify-content: center;}
	.footer .footer-bottom .copyright {text-align: center;}
}

@media screen and (max-width: 900px) {
	.news-page .news-item .news-item-img img {height: 290px;}
	.home-news-track, .home-page .home-projects-track {gap: 20px;}
  .home-page .home-news-item, .home-page .home-project-item {flex: 0 0 100%;}
	.home-page .home-project-item-img img,
	.home-page .home-news-item-img img, .home-page .home-news-item-content {
		max-width: 100%;
		box-sizing: border-box;
		padding-left: 0px;
		padding-right: 0px;
	}
	.home-page .home-news-slider-btn, .home-page .home-projects-slider-btn {display: none !important;}
	.home-page .home-page-slide-1 {
		background-position: center;
    background-position-y: 70px;
    background-position-x: -570px;
	}
	.projects-page .project-item .project-item-img img {height: 300px;}
	.single-project-page .single-project-img-goal {flex-direction: column-reverse;}
	.single-project-page .single-project-img,
	.single-project-page .single-project-goal-box {width: 100%;}
}
@media screen and (max-width: 800px) {
	.home-page .home-news-item-title-mob {display: block;}
	.home-page .home-news-item-title {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		overflow: hidden;
		-webkit-line-clamp: 2;
	}
	.home-page .home-news-item-text {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		overflow: hidden;
		-webkit-line-clamp: 3;
	}
	.home-page .home-news-item-title-desktop {display: none !important;}
}
@media screen and (max-width: 768px) {
	.box-padding {padding: 0 20px;}
  .single-page .single-page-container {padding: 0 0 80px 0;}
	.single-page .single-page-container h3 {font-size: 18px;}
	.single-page .single-page-container h4 {font-size: 14px;}
	.single-page .single-page-container p, .single-page .single-page-container ul {margin-bottom: 16px;}
	.single-page .single-page-container p.before-ul {margin-bottom: 8px;}
  .single-page .single-page-container p.last {margin-bottom: 0;}
	.news-page .news-item .news-item-img img {height: 255px;}
	.single-project-page .single-project-img img,
	.single-news-page .single-news-img img {max-height: 500px;}
	.single-project-page .single-project-content img,
	.single-news-page .single-news-content img {max-height: 400px;}
	.single-project-page .single-project-share-container .share-buttons span,
	.single-news-page .single-news-share-container .share-buttons span {font-size: 16px; margin-right: 8px;}
	.single-project-page .single-project-share-container .share-btn,
	.single-news-page .single-news-share-container .share-btn {width: 35px; height: 35px;}
	.single-project-page .single-project-share-container .share-btn-facebook img,
	.single-project-page .single-project-share-container .share-btn-linkedin img,
	.single-project-page .single-project-share-container .share-btn-email img,
	.single-news-page .single-news-share-container .share-btn-facebook img,
	.single-news-page .single-news-share-container .share-btn-linkedin img,
	.single-news-page .single-news-share-container .share-btn-email img {width: 20px; height: 20px;}
	.home-page .home-page-slide .home-page-slide-content h1 {font-size: 40px;}
	.home-page .home-page-projects-content .home-project-goal-box {margin-right: 20px; margin-left: 20px;}
	.home-page .home-project-text {padding: 0 20px 20px 20px;}
	.home-page .home-page-projects-content .home-project-goal-left {padding: 11px 20px; font-size: 16px;}
	.footer .footer-left-payments {
		max-width: 100%;
		width: 100%;
		justify-content: flex-end;
	}
	.footer .footer-left-payments img:not(:last-child) {margin-right: 25px;}
	.footer .footer-left-payments img {width: 60px;}
	.footer .footer-left-payments img.footer-payment-1 {width: 35px;}
	.footer .footer-bottom .copyright,
	.footer .footer-right-title p {text-align: left;}
	.footer .footer-right-social-media {text-align: right;}
	.footer .footer-links {justify-content: flex-end;}
	.footer .footer-container {padding-top: 60px; border-radius: 30px 30px 0 0;}
	.policy-page .single-page-container h2 {font-size: 24px; font-weight: 500; margin-bottom: 40px;}
	.policy-page .single-page-container {padding-top: 95px;}
	.policy-page .single-page-container .single-page-iner p, .policy-page .single-page-container .single-page-iner li {margin-bottom: 16px;}
	.policy-page .single-page-container h3 {margin-bottom: 18px; margin-top: 46px;}
	.policy-page .single-page-container .single-page-iner ul {margin-left: 24px;}
  .policy-page .single-page-container h4 {margin-top: 18px; margin-bottom: 12px;}
	.policy-page .single-page-container h5 {margin-top: 16px; margin-bottom: 10px;}
	.home-page .book-slider-item-content-top p {font-size: 16px;}
	.home-page .book-slider-item-content-title {font-size: 22px;}
	.about-page .team-member .team-member-position {margin-bottom: 0;}
	.home-page .home-page-projects-container, .home-page .home-page-projects-container .box-padding,
	.home-page .home-page-news-container, .home-page .home-page-news-container .box-padding {padding: 0;}
	.single-project-page .project-goal-progress-bar {height: 10px;}
	.single-project-page .single-project-title h1 {font-size: 32px;}
	.single-project-page .project-item-donate-btn a {font-size: 13px;}
	.single-project-page .project-item-goal-box .project-item-goal--box p {font-size: 14px;}
}
@media screen and (max-width: 750px) {
	.about-page .team-member-img img {height: 100%;}
}
@media screen and (max-width: 650px) {
	.header .header-mobile .header-mobile-bottom {padding-top: 30px;}
	.header a {padding: 12px 0;}
	.header-mob-menu-active .header .header-mobile .header-mobile-bottom {max-height: calc(100vh - 200px);}
	.header-mob-menu-active .header {height: 100vh;}
	.header .header-mobile .header-container-right-links-lang,
	.header .header-mobile .header-mobile-donate {margin-top: 12px;}	
	.header .header-mobile .header-mobile-donate {margin-left: 20px; width: 100%; text-align: center}
	.header .header-mobile .header-container-right-links-lang button {width: fit-content; text-align: center}
	.news-page .news-list-container {grid-template-columns: 1fr;}
	.news-page .news-item .news-item-img img {height: 100%;}
	.single-project-page .single-project-img img,
	.single-news-page .single-news-img img {max-height: 100%; height: 100%;}
	.single-project-page .single-project-content img,
	.single-news-page .single-news-content img {max-height: 100%; margin-right: 0; height: 100% !important;}
	.single-news-page .single-news-prev-box, .single-news-page .single-news-next-box,
	.single-project-page .single-project-prev-box, .single-project-page .single-project-next-box,
	.single-news-page.news-36 .single-news-content img {width: 100% !important;}
	.single-project-page .single-project-prev-box a, .single-news-page .single-news-prev-box a {margin-bottom: 30px; display: block;}
	.single-project-page .single-project-next-box, .single-news-page .single-news-next-box {text-align: left;}
	.single-project-page .single-project-prev-next-iner,
	.single-news-page .single-news-prev-next-iner {flex-direction: column;}
	.team-page .team-members-box {grid-template-columns: 1fr; grid-gap: 40px;}
	.about-page .about-page-container-5-team .team-member {width: 99%; min-width: 99%;}
	.home-page .home-page-container-6-item {width: 100%; margin-bottom: 50px;}
	.home-page .home-page-container-6-item:last-child {margin-bottom: 0;}
	.home-page .home-page-container-6-line-mob {
		display: inline-block;
		top: -18px;
		width: 100%;
	}
	.home-page .home-page-container-6-line {display: none;}
	.home-page .home-page-container-6-items {flex-direction: column;}
	.home-page .home-page-container-6-item-point {
		margin-top: 10px;
		margin-bottom: -5px;
	}
	.home-page .home-page-container-title {margin-bottom: 30px;}
	.home-page .home-news-item-title-mob {-webkit-line-clamp: 3;}
	.home-page .home-news-item-text {-webkit-line-clamp: 3;}
	.home-page .home-page-projects-container .home-page-projects-content,
	.home-page .home-page-news-container .home-page-news-content {padding-top: 30px;}
	.single-project-page .single-project-img img {object-position: center;}
	.single-news-page .single-news-img img {width: fit-content;}
	.single-project-page .single-project-content img,
	.single-news-page .single-news-content img {width: fit-content !important;}
	.projects-page .project-list-container {grid-template-columns: 1fr;}
	.projects-page .project-item .project-item-img img {
		height: 100%;
		max-height: 500px;
		object-position: center;
	}
	.projects-page .project-id-17 .project-item-img img {object-position: top;}
	.home-page .home-page-projects-btn-more a, .single-project-page .project-item-donate-btn a {width: 100%;}
	.home-page .home-page-projects-btn-more, .single-project-page .project-item-res .project-item-donate-btn {width: 100%; text-align: center;}
	.home-page .home-page-projects-content .home-project-goal-left {width: calc(100% - 100px);}
	#cookies-banner {flex-direction: column;}
	#cookies-banner .cookies-content {width: 100%; margin-bottom: 20px;}
	#cookies-banner .btn-cookies-box {flex-direction: row-reverse;}
	#cookies-banner .btn-cookies-box #cookies-reject {margin-top: 0; margin-left: 10px;}
	#cookies-banner .btn-cookies-box .btn-cookies {width: calc(50% - 5px);}
	.page-404 .btn-404-back {width: 100%;}
}
@media screen and (max-width: 600px) {
	.single-page .media-page-item .media-page-item-left {width: 120px !important;}
	.single-page .media-page-item img {padding: 0 10px; max-width: 130px;}
	.about-page .about-page-iner-3 {background-position: center;}
	.about-page .about-page-3-box-text {max-width: 85%;}
	.home-page .home-page-slide-1 {background-position: right; background-position-y: 70px;}
	.home-page .home-page-slide {min-height: 100svh;}
	.home-page .home-page-container-1 {height: 100%; min-height: 100svh;}
}
@media screen and (max-width: 550px) {
	.footer .footer-left-logo {text-align: center; margin-bottom: 30px;}
	.footer .footer-right-title p {margin-bottom: 30px;}
	.footer .footer-left-payments {justify-content: center; margin-bottom: 20px;}
	.footer .footer-links {
		flex-direction: column;
		text-align: right;
	}
	.footer .footer-links a {margin-right: 0 !important; margin-bottom: 10px;}
	.footer .footer-bottom .copyright p {
		width: 250px;
		font-size: 12px;
	}
	#cookies-banner .btn-cookies-box {flex-direction: column-reverse;}
	#cookies-banner .btn-cookies-box #cookies-reject {margin-left: 0; margin-top: 10px;}
	#cookies-banner .btn-cookies-box .btn-cookies {width: 100%;}
}
@media screen and (max-width: 450px) {
	.single-page .media-page-item a {flex-direction: column;}
	.single-page .media-page-item .media-page-item-right {width: 100% !important;}
	.single-page .media-page-item .media-page-item-left {
		width: 100% !important;
    padding: 0;
    margin-bottom: 20px;
	}
	.single-page .media-page-item img {
		padding: 0;
		width: 100%;
		max-width: 200px;
		height: auto;
		object-fit: contain;
	}
	.about-page .about-page-3-box-text {max-width: 90%;}
	.home-page .home-news-item-title-mob {-webkit-line-clamp: 3;}
	.home-page .home-news-item-text {-webkit-line-clamp: 5;}
	.home-page .home-project-item-img img,
	.home-page .home-news-item-img img {padding: 0;}
	.home-page .home-project-item-img img,
	.home-page .home-news-item-img img {object-fit: cover; object-position: top;}
	.home-page .home-page-slide .home-page-slide-content h1 {font-size: 35px;}
	.home-page .home-page-slide-1 {
		background-position: center;
    background-position-y: 70px;
    background-position-x: -570px;
	}
	.home-page .home-page-slide-3 {
		background-position: center;
    background-position-y: 70px;
    background-position-x: -900px;
	}
}
@media screen and (max-width: 410px) {
	.home-page .home-page-slide-1 {
		background-position: center;
    background-position-y: 70px;
    background-position-x: -470px;
	}
}
@media screen and (max-width: 382px) {
	.single-page main, .projects-page .projects-main-page, .news-page .news-main-page, .home-page main, .team-page .team-main-page,
	.single-news-page .single-news, .single-project-page .single-project, .team-member-page main {padding-top: 130px;}
	.header .header-logo img {width: 152px; height: 100px;}
	.header .header-mobile,
	.header {height: 130px;}
	.home-page .home-page-container-1 {margin-top: -130px;}
}
@media screen and (max-width: 370px) {
	.home-page .partners-box-slide img.pl-m, .about-page .partners-box-slide img.pl-m {width: 250px;}
	.home-page .partners-box-slide img.pl-l, .about-page .partners-box-slide img.pl-l {width: 300px;}
	.home-page .partners-box-slide img.pl-xl, .about-page .partners-box-slide img.pl-xl {width: 300px;}
	.home-page .home-news-item-text {-webkit-line-clamp: 6;}
}
@media screen and (max-width: 345px) {
	.footer .footer-left-payments img {width: 40px;}
	.footer .footer-left-payments img.footer-payment-1 {width: 30px;}
	.home-page .book-slider-item:nth-child(4) .book-slider-item-content-title {max-width: 100%;}
	
}
@media screen and (max-width: 320px) {
	.home-page .partners-box-slide img.pl-s, .about-page .partners-box-slide img.pl-s {height: 100px;}
	.home-page .partners-box-slide img.pl-m, .about-page .partners-box-slide img.pl-m {width: 200px;}
	.home-page .partners-box-slide img.pl-l, .about-page .partners-box-slide img.pl-l {width: 250px;}
	.home-page .partners-box-slide img.pl-xl, .about-page .partners-box-slide img.pl-xl {width: 250px;}
}
.single-news-page a, .single-project-page a, .policy-page a, .single-page .single-page-iner a {font-family: "Roboto-Bold", sans-serif !important;}
[data-aos^="fade"][data-aos^="fade"].aos-animate {
  opacity: 1;
  transform: translateZ(0);
}
[data-aos][data-aos][data-aos-easing="ease"],
body[data-aos-easing="ease"] [data-aos] {
  transition-timing-function: ease;
}
[data-aos][data-aos][data-aos-duration="500"],
body[data-aos-duration="500"] [data-aos] {
  transition-duration: 0.5s;
}
[data-aos^="fade"][data-aos^="fade"] {
  opacity: 0;
  transition-property: opacity, transform;
}
[data-aos="fade-right"] {
  transform: translate3d(-50px, 0, 0);
  transition: 0.5s;
}
[data-aos="fade-up"] {
  transform: translate3d(0, 50px, 0);
  transition: 0.7s;
}
[data-aos][data-aos][data-aos-delay="100"], body[data-aos-delay="100"] [data-aos],
[data-aos][data-aos][data-aos-delay="200"], body[data-aos-delay="200"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="100"].aos-animate, body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: .1s;
}
[data-aos][data-aos][data-aos-delay="100"].aos-animate, body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: .2s;
}
@media screen and (max-width: 1200px) {
  [data-aos="fade-right"] {
    transition: 0.3s;
  }
	[data-aos="fade-up"] {
		transition: 0.5s;
	}
}

