
:root{
	--textColor: 	#1E1D1D;
	--colorWhite:	#ffffff;
	--colorBlue: 	#2761FF;
	--colorYellow: 	#FECE00;
	--colorDark: 	#04151D;
	--colorBlue2:	#072883;
}

/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
	font-family:'Roboto';
	src:url('../fonts/Roboto-Regular.ttf');
    font-weight:normal;
    font-style:normal;
}
@font-face {
	font-family:'Roboto';
	src:url('../fonts/Roboto-Light.ttf');
    font-weight:300;
    font-style:normal;
}
@font-face {
	font-family:'Roboto';
	src:url('../fonts/Roboto-Medium.ttf');
    font-weight:600;
    font-style:normal;
}
@font-face {
	font-family:'Roboto';
	src:url('../fonts/Roboto-Bold.ttf');
    font-weight:700;
    font-style:normal;
}
/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	color:var(--textColor);
	font-size: 24px;
	line-height: 1.2;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:inherit;
	text-decoration:none;
}
a:hover {
	color:var(--colorBlue);
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
.hidden{
	display: none;
}
/* wrapper */
.container{
	width: 1200px;
	max-width: 100%;
	padding: 0 14px;
	margin-right: auto;
	margin-left: auto;
}
.wrapper {

}
.d-flex{
	display:flex;
}
.a-center{
	align-items: center;
}
.j-between{
	justify-content: space-between;
}
.j-center{
	justify-content: flex-end;
}
.f-wrap{
	flex-wrap: wrap;
}
body.no-scroll{
	overflow-y: hidden;
}
/* header */
.header {
	position: relative;
	z-index: 10;
}
.header-flex{
	display: flex;
	align-items: center;
	height: 120px;
	font-size: 20px;
}
.toggle-mob-menu{
	display: none;
}
.mob-menu{
	display: none;
}
.header-flex .menu{
	display: flex;
	align-items: center;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.header-flex .menu>li{
	/*margin-right: 60px;*/
	margin-right: 30px;
	position: relative;
}
.header-flex .menu>li>ul{
	position: absolute;
	top: 100%;
	left: -24px;
	list-style-type: none;
	margin: 0;
	padding: 20px 24px;
	opacity: 0;
	visibility: hidden;
	background-color: #fff;
	transition: opacity .5s ease;
	white-space: nowrap;
}
.header-flex .menu>li:hover>ul{
	opacity: 1;
	visibility: visible;
}
.header-flex .menu>li>ul li+li{
	margin-top: 20px;
}
.menu-item-has-children>a{
	padding-right: 20px;
}
.menu-item-has-children>a:after{
	content: '';
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 14px;
	background-image: url(../img/arrow-down.svg);
	background-repeat: no-repeat;
	background-position: center;
}

.lang-sw{
	margin-right: 60px;
}
/* logo */
.logo {
	margin-right: auto;
}
.logo-white{
	display: none;
}
.text-center{
	text-align: center;
}
.btn{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	text-transform: uppercase;
	height: 50px;
	padding: 0 30px;
	text-decoration: none;
	font-size: 20px;
	font-weight: 600;
	background: none;
	border: 1px solid transparent;
	transition: all .3s ease;
	max-width: 100%;
}
.btn.large{
	height: 68px;
}
.btn-blue{
	color: var(--colorWhite);
	background-color: var(--colorBlue);
	border-color: var(--colorBlue);
}
.btn-blue:hover{
	background-color: var(--colorWhite);
	color: var(--colorBlue);
}
.btn-border{
	background-color: var(--colorWhite);
	border: 3px solid var(--colorBlue);
	color: var(--colorBlue);
}
.btn-border:hover{
	background-color: var(--colorBlue);
	color: var(--colorWhite);
}
.dark-bg{
	background-color: var(--colorDark);
	color:var(--colorWhite);
}
.footer{
	
}
.footer .social-share{
	border-top: 1px solid var(--colorWhite);
	border-bottom: 1px solid var(--colorWhite);
}
.footer .social-share .d-flex{
	height: 114px;
}
.social-share .title{
	font-size: 16px;
}
.social-share .title span{
	display: block;
	font-weight: bold;
	font-size: 24px;
}
.social-share a{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border: 1px solid var(--colorWhite);
	height: 50px;
	width: 155px;
	margin-left: 64px;
	font-size: 20px;
	transition: all .3s ease;
}
.social-share a:hover{
	background-color: var(--colorBlue);
	color: var(--colorWhite);
	border-color: var(--colorBlue);
}
.footer-main{
	padding-top: 30px;
	padding-bottom: 64px;
}
.footer-main .logo{
	margin-right: 0;
}
.copyright{
	margin-top: 64px;
}
.footer-main .menu{
	list-style-type: none;
	columns: 2;
	margin: 0;
	padding: 0;
	column-gap: 100px;
}
.footer-main .menu ul{
	list-style-type: none;
	margin: 12px 0 0;
	padding: 0;

}
.footer-main .menu li{
	font-size: 20px;
	margin-bottom: 12px;
	-webkit-column-break-inside: avoid;
          page-break-inside: avoid;
               break-inside: avoid;
}
.footer-main .menu li.menu-item-has-children>a:after{
	display: none;
}
.footer-main .social p{
	margin: 0 0 18px;
	text-align: right;
}
.footer-main .social ul{
	margin: 0;
	list-style-type: none;
	padding: 0;
	display: flex;
	justify-content: flex-end;
}
.footer-main .social ul li{
	font-size: 0;
	margin-left: 18px;
}
/*------------------------------------*\
    PAGES
\*------------------------------------*/
section{
	margin-bottom: 72px;
}
.section-title{
	position: relative;
	padding-top: 35px;
	margin: 0 0 32px;
	font-size: 48px;
	font-weight: 700;
}
.section-title:before{
	content: '';
	display: block;
	position: absolute;
	height: 3px;
	width: 80px;
	left: 0;
	top: 10px;
	border-radius: 3px;
	background-color: #000;
}
.dark-bg .section-title:before{
	background-color: var(--colorWhite);
}
.section-first{
	position: relative;
	z-index: 1;
	padding: 50px 0;
	display: flex;
	align-items: center;
	min-height: calc(100vh - 120px);
	color: var(--colorWhite);
}
.section-first:before{
	content:'';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	opacity: 0.7;
	background: linear-gradient(83deg, #000 19.66%, rgba(0, 0, 0, 0.85) 63.72%, rgba(0, 0, 0, 0.00) 92.71%);
}
.section-first img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2
}
.section-first .main-title{
	font-size: 64px;
	font-weight: 700;
	line-height: 96%;
	letter-spacing: -2.56px;
	text-transform: uppercase;
	margin: 0 0 32px;
}
.section-first p{
	font-size: 24px;
	font-style: normal;
	font-weight: 300;
	margin: 0 0 50px;
	width: 570px;
	max-width: 100%;
}
.section-first .btn svg{
	margin-right: 12px;
}
.section-first .btn:hover rect{
	fill: var(--colorBlue)
}
.section-first .btn:hover path{
	stroke: var(--colorBlue)
}

.section-about .col:first-child{
	width: 100%;
	display: flex;
	flex-direction: column;
}
.section-about .col:last-child{
	min-width: 484px;
	margin-left: 36px;
}
.section-about .about-items{
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-gap: 1px;
}
.section-about .about-items .item:nth-child(1){
	background-color: var(--colorBlue2);
	color: var(--colorWhite)
}
.section-about .about-items .item:nth-child(3),
.section-about .about-items .item:nth-child(5){
	grid-column: span 4;
}
.section-about .about-items .item:nth-child(4){
	grid-row: span 2;
	grid-column: span 2;
}
.section-about .about-items .item{
	grid-column: span 3;
	box-shadow: 0 0 0 1px var(--textColor);
	padding: 20px 24px
}
.section-about .about-items .item .title{
	font-size: 48px;
	font-style: normal;
	font-weight: 600;
	margin: 0 0 4px;
}
.section-about .about-items .item p{
	font-size: 14px;
	font-weight: 600;
	margin: 0;
}
.section-about .col:first-child p{
	margin: 0;
}
.section-about .col:first-child a{
	display: inline-flex;
	align-items: center;
	margin-top: auto;
	font-weight: 700;
	color: var(--colorBlue);
	text-decoration: underline;
}
.section-about .col:first-child a svg{
	margin-left: 24px;
}
.section-partners .section-title{
	padding-top: 0;
}
.section-partners .section-title:before{
	display: none;
}
.section-partners .item{
	width: calc(33.333% - 4px);
}
.section-donatenow{
	background-color: var(--colorYellow);
	padding: 64px 0;
}
.section-donatenow .section-title{
	padding-top: 0;
}
.section-donatenow .section-title:before{
	display: none;
}
.section-donatenow p{
	margin: 0 0 32px; 
}
.section-donatenow .btn{width: 480px;}

.sd-list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 38px;
}
.sd-list .item{
	border: 1px solid var(--textColor);
	min-height:278px;
	padding: 24px 8px;
	text-align: center;
}
.sd-list .item p{
	font-size: 20px;
	margin: 30px 0 0;
}
.section-gallery{

}
.gradient-bg{
	padding-top: 72px;
	background: linear-gradient(180deg, #072883 17.69%, #1F42A1 31.61%, rgba(254, 254, 255, 0.82) 62.90%, rgba(255, 255, 255, 0.74) 100%);
}
.section-gallery.gradient-bg .section-title{
	color:var(--colorWhite);
}
.section-gallery.gradient-bg .section-title:before{
	background-color: var(--colorYellow);
}
.section-gallery .section-title+a{
	align-self: center;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
}
.section-gallery.gradient-bg .section-title+a{
	color:var(--colorWhite);
}
.section-gallery .section-title+a svg{
	margin-left: 24px;
}
.section-gallery.gradient-bg .section-title+a svg path{
	stroke: var(--colorWhite)
}
.posts-list{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 32px;
	margin-bottom: 32px;
}
.post{
	background-color: var(--colorWhite);
	border: 1px solid var(--textColor);
	display: flex;
	flex-direction: column;
	padding-bottom: 24px;
}
.post .thumb{
	width: 100%;
	height: 254px;
	margin-bottom: 24px;
}
.post .thumb img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.post .title{
	font-size: 28px;
	font-weight: 600;
	margin: 0 24px 24px;
}
.post p{
	margin: 0 24px 32px;
	display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}

.post .d-flex{
	margin: auto 24px 0;
}
.post .d-flex a{
	font-weight: bold;
	display: inline-flex;
	align-items: center;
}
.post .d-flex a svg{
	margin-left: 8px;
}
.post .d-flex a:hover path{
	stroke: var(--colorBlue)
}
.post .d-flex .date{
	font-size: 20px;
}

.section-support{
	position: relative;
	padding-top: 70px;
	overflow: hidden;
}
.section-support img{
	position: absolute;
	top: 0;
	left: calc(50% + 24px);
}
.section-support .col{
	width: calc(50% - 24px);
}
.section-support .col .btn{
	width: 480px;
	max-width: 100%;
}
.section-support .col p{
	margin: 0 0 32px;
}
.section-inst{
	padding: 72px 0;
	margin-bottom: 0;
}

.section-about-first{
	position: relative;
	color:var(--colorWhite);
	text-align: center;
	padding: 100px 0;
	margin-bottom: 0;
}
.section-about-first img{
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
}
.section-about-first:before{
	content:'';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: #000;
	opacity: 0.4;
}
.section-about-first h1{
	margin: 0 0 24px;
	font-size: 100px;
	font-weight: 700;
}
.section-about-first p{
	max-width: 860px;
	margin: 24px auto;
}
#breadcrumbs{
	padding: 32px 0;
	font-size: 16px;
}

.section-what .section-content{
	columns:2;
}
.section-what .section-content p{
	margin: 0 0 32px;
	-webkit-column-break-inside: avoid;
          page-break-inside: avoid;
               break-inside: avoid;

}

.video-links{
	position: relative;
	margin-bottom: 140px;
}
.video-links img{
	width: 100%;
	height: auto;
}
.video-links a{
	display: block;
	position: relative;
	font-size: 0;
	position: absolute;
	top: 50%;
	left: 50%;
}
.video-links a:nth-child(1){
	transform: translate(-580px,-33px);
}
.video-links a:nth-child(2){
	transform: translate(-50px,30px);
}
.video-links a:nth-child(3){
	transform: translate(500px,-80px);
}
.video-links a:before  {
	content:'';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba( 255, 164, 21, 0.6);
    -o-box-shadow: 0 0 0 0 rgba(255, 164, 21, 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba( 255, 164, 21, 0.6);
    box-shadow: 0 0 0 0 rgba( 255, 164, 21, 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    border-radius: 50%;
}
.video-links a:nth-child(2):before{
	animation: ripple 3s infinite .5s;
}
.video-links a:nth-child(3):before{
	animation: ripple 3s infinite 1s;
}
.video-links a img{
	width: 137px;
}

@-webkit-keyframes ripple {
	70% {
		box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
	}
}

@keyframes ripple {
	70% {
		box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
	}
}

.section-team .section-title{
	padding-top: 0;
}
.section-team .section-title:before{
	display: none;
}
.section-subtitle{
	margin-top: -8px;
	margin-bottom: 48px;
	font-size: 18px;
}

.team-list{
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-row-gap: 48px;
	grid-column-gap: 32px;
	margin-bottom: 48px;
}
.team-list .item img{
	display: block;
	width: 100%;
	height: 450px;
	object-fit: cover;
	border: 1px solid var(--textColor);
	margin-bottom:33px;
}
.team-list .item .title{
	font-size: 32px;
	font-weight: 700;
}
.team-list .item p{
	margin: 8px 0 0;
}
.posts-slider{
	margin-right: -16px;
	margin-left: -16px;
}
.posts-slider .post{
	margin-right: 16px;
	margin-left: 16px;
	margin-bottom: 1px;
}
.posts-slider .slick-track{
    display: flex !important;
}
.posts-slider .slick-slide{
    height: inherit !important;
}
.posts-slider.slick-initialized .slick-slide{
	display: flex;
}
.slick-dots{
	display: flex;
	list-style-type: none;
	margin: 23px 0 0;
	padding: 0;
	justify-content: center;
}
.slick-dots li{
	margin: 0 20px;
}
.slick-dots button{
	background: none;
	padding: 0;
	border: none;
	font-size: 20px;
	text-decoration: underline;
}
.page-about .section-gallery .section-title:before{
	background-color: var(--colorYellow);
}
.section-activities{
	padding: 72px 0;
	background-color: var(--colorBlue2);
	color: var(--colorWhite);
	margin-bottom: 0;
}
.section-activities .section-title:before{
	background-color: var(--colorYellow);
}
.section-activities a{
	display: inline-flex;
	align-items: center;
	text-decoration: underline;
	margin-top: 64px;
}
.section-activities a svg{
	margin-left: 24px;
}


.single-programm .section-donatenow,
.page-report .section-donatenow{
	margin-bottom: 0;
}
.acc-container>.item{
	padding-bottom: 72px;
	margin-bottom: 72px;
	border-bottom: 1px solid var(--textColor);
}
.acc-container>.item .acc-btn{
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	font-weight: bold;
}
.acc-container>.item .acc-btn span:first-child{
	font-size: 32px;
}
.acc-container>.item .acc-btn span:last-child{
	color:var(--colorBlue);
	text-decoration: underline;
	display: inline-flex;
	align-items: center;
}
.acc-container>.item .acc-btn span:last-child svg{
	margin-left: 22px;
}
.acc-container>.item .acc-btn.active span:last-child svg{
	transform: rotate(90deg);
}
.acc-container>.item .acc-content{
	display: none;
}
.acc-container>.item .acc-content .inner{
	padding-top: 72px;
}
.report-item-list{
	margin-right: -15px;
	margin-left: -15px;
}
.report-item-list .item{
	position: relative;
	display: flex;	
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 167px;	
	height: 167px;	
	border: 1px solid var(--colorBlue);
	border-radius: 15px;
	margin-left: 15px;
	margin-right: 15px;
	margin-bottom: 50px;
}
.report-item-list .item .icon{
	position: absolute;
	font-size: 0;
	background: var(--colorWhite);
	top: 0;
	left: 50%;
	transform: translate(-50%,-50%);
	padding: 3px;
}
.report-item-list .item .num{
	font-size: 28px;
	font-weight: 700;
}
.report-item-list .item .text{
	font-size: 20px;
	line-height: 1;
	font-weight: 500;
}
.report-item-list .item .text span{
	font-size: 20px;
}

.section-report-main .col{
	width: calc(50% - 20px);
}
.section-report-content .col:first-child{
	width: calc(41% - 12px);
}
.section-report-content .col:last-child{
	width: calc(59% - 12px);
}
.section-report-content .section-title{
	padding-top: 0;
}
.section-report-content .section-title:before{
	display: none;
}
.visible-mob{
	display: none;
}

.page-header{
	position: relative;
	display: flex;
	align-items: center;
	min-height:476px;
	text-align: center;
	color:var(--colorWhite);
}
.page-header img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
}
.page-header h1{
	font-size: 64px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0;
}
.page-header p{
	margin: 24px 0 0;
}
.page-header:before{
	content:'';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: linear-gradient(91deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.54) 28.59%, rgba(0, 0, 0, 0.00) 92.71%);
}

.section-programms-desc ul{
	columns: 2;
	margin: 0 0 72px;
}
.section-programms-desc .post{
	border: none;
	align-items: flex-start;
	padding-bottom: 0;
	min-height:300px;
}
.section-programms-desc .post .thumb{
	border: 1px solid var(--textColor);
	height: 260px;
}
.section-programms-desc .post .title{
	margin-left: 0;
	margin-right: 0;
}
.section-programms-desc .post .btn{
	border-width: 1px;
	text-transform: none;
	margin-top: auto;
}
.page-programms .section-donatenow{
	margin-bottom: 0;
}
.values-blocks{
	padding-top: 20px;
}
.values-blocks .item{
	width: calc(50% - 10px);
	margin-bottom: 90px;
	position: relative;
	border: 1px solid var(--colorBlue);
	padding: 48px;
}
.values-blocks .item.large{
	width: 100%;
	margin-bottom: 0;
}

.values-blocks .item .title{
	color:var(--colorBlue);
	font-size: 32px;
	font-weight: 500;
	background: var(--colorWhite);
	padding: 0 40px;
	width: 320px;
	margin-bottom: 48px;
	margin-top: -70px;
}
.values-blocks .item p{
	margin: 0 0 24px;
}

.section-programm-content .content{
	columns: 2;
}
.section-programm-content .content p{
	margin: 0 0 32px;
	-webkit-column-break-inside: avoid;
          page-break-inside: avoid;
               break-inside: avoid;
}

.section-contacts{
	padding-top: 72px;
}
.section-contacts .col{
	width: calc(50% - 10px);
}
.input-wrap{
	position: relative;
	width: 100%;
	margin-bottom: 24px;
}
.input-wrap.half{
	width: calc(50% - 10px);
}
.input-wrap input{
	display: block;
	width: 100%;
	border: 1px solid var(--textColor);
	padding: 17px 24px;
	font-size: 20px;
}
.input-wrap textarea{
	display: block;
	width: 100%;
	border: 1px solid var(--textColor);
	padding: 17px 24px;
	font-size: 20px;
	resize: none;
	height: 182px;
}
.social-items{
	list-style-type: none;
	padding: 0;
	margin: 44px 0 0;
	display: flex;
}
.social-items a{
	width: 55px;
	height: 55px;
	border-radius: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--colorBlue);
	margin-right: 14px;
}
.section-contact-blocks .col{
	width: calc(50% - 10px);
	color:var(--colorWhite);
	background-color: var(--colorBlue2);
	padding: 72px 98px;
}
.section-contact-blocks .title{
	font-weight: bold;
	font-size: 30px;
	margin: 0 0 42px;
}
.section-contact-blocks p{
	margin: 0;
}
.section-contact-blocks p a img{
	margin-right: 11px;
} 


.gallery-images{
	margin-top: 24px;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-row-gap: 24px;
	grid-column-gap: 20px;
}
.gallery-images img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.section-gallery-content .descriprion{
	columns: 2;
}
.section-gallery-content .descriprion>*{
	margin: 0 0 32px;
}

.year-nav{
	list-style-type: none;
	margin: 32px 0 0;
	padding: 0;
	display: flex;
}
.year-nav a{
	display: inline-flex;
	border: 1px solid var(--colorBlue);
	padding: 14px;
	font-size: 20px;
	margin-right: 20px;
}
.year-nav a.active{
	background-color: var(--colorBlue);
	color:var(--colorWhite);
}

.map-w-links-wrap{
/*	padding-top: 72px;*/
	width: 100%;
	overflow-x: auto;
}
.map-w-links{
	position: relative;
	width: 915px;
	margin-left: auto;
	margin-right: auto;
}
.map-w-links .item{
	position: absolute;
	top: 0;
	left: 0;
}
.map-w-links .item a{
	display: block;
	background-color: rgba(255,255,255,.5);
	background-image: url(../img/flag.png);
	background-repeat: no-repeat;
	background-position: 75% 50%;
	width: 44px;
	height: 44px;
	border-radius: 22px;
	border: 1px solid var(--colorWhite)
}
.map-w-links .item a:before{
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) scale(0.95);
	width: 60px;
	height: 60px;
	border-radius: 30px;
	animation: pulse 2s infinite;
	border: 1px solid var(--colorWhite);
}
@keyframes pulse {
	0% {
		transform:translate(-50%,-50%) scale(0.9);
	}

	70% {
		transform:translate(-50%,-50%) scale(1);
	}

	100% {
		transform:translate(-50%,-50%) scale(0.9);
	}
}
.map-w-links .item .text{
	position: absolute;
	z-index: 2;
	width: 180px;
	padding: 16px 24px;
	font-size: 20px;
	background-color: var(--colorWhite);
	border:1px solid var(--colorBlue);
	left: 50%;
	margin-left: -90px;
	bottom: 70px;
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease;
	filter:drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.10)) drop-shadow(1px 2px 5px rgba(0, 0, 0, 0.10)) drop-shadow(5px 8px 10px rgba(0, 0, 0, 0.09)) drop-shadow(11px 19px 13px rgba(0, 0, 0, 0.05)) drop-shadow(20px 33px 16px rgba(0, 0, 0, 0.01)) drop-shadow(31px 52px 17px rgba(0, 0, 0, 0.00));
}
.map-w-links .item:hover .text{
	opacity: 1;
	visibility: visible;
}
.map-w-links .item .text:before{
	content:'';
	display: block;
	position: absolute;
	top: 100%;
	left: 50%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 14px 7px 0 7px;
	border-color: var(--colorBlue) transparent transparent transparent;
	margin-left: -7px;
}

.map-w-links .item .text:after{
	content:'';
	display: block;
	position: absolute;
	top: 100%;
	left: 50%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 12px 5px 0 5px;
	border-color: var(--colorWhite) transparent transparent transparent;
	margin-left: -5px;
}

.map-w-links .item-1{
	top: 123px;
	left: 394px;
}
.map-w-links .item-2{
	top: 49px;
    left: 481px;
}
.map-w-links .item-3{
	top: 89px;
    left: 565px;
}
.map-w-links .item-4{
	top: 114px;
    left: 301px;
}
.map-w-links .item-5{
	top: 79px;
    left: 200px;
}
.map-w-links .item-6{
	top: 73px;
    left: 118px;
}

.map-w-links .item-7{
	top: 180px;
    left: 74px;
}
.map-w-links .item-8{
	top: 221px;
    left: 150px;
}
.map-w-links .item-9{
	top: 220px;
    left: 222px;
}
.map-w-links .item-10{
	top: 280px;
    left: 30px;
}
.map-w-links .item-11{
	top: 258px;
    left: 300px;
}
.map-w-links .item-12{
	top: 267px;
    left: 100px;
}
.map-w-links .item-13{
	top: 300px;
    left: 170px;
}
.map-w-links .item-14{
	top: 235px;
    left: 436px;
}
.map-w-links .item-15{
    top: 186px;
    left: 551px;
}
.map-w-links .item-16{
	top: 204px;
    left: 708px;
}
.map-w-links .item-17{
	top: 285px;
    left: 493px;
}
.map-w-links .item-18{
  top: 377px;
  left: 386px;
}
.map-w-links .item-19{
  top: 375px;
  left: 470px;
}
.map-w-links .item-20{
top: 410px;
  left: 565px;
}
.map-w-links .item-21{
  top: 280px;
  left: 622px;
}
.map-w-links .item-22{
   top: 375px;
  left: 670px;
}
.map-w-links .item-23{
	top: 323px;
    left: 759px;
}
.map-w-links .item-24{
	top: 253px;
    left: 828px;
}
.map-w-links .item-25{
	top: 526px;
  left: 589px;
}





.section-page-donation{
	margin-bottom: 72px;
}
.section-page-donation h1{
	text-transform: uppercase;
	font-size: 64px;
	font-weight: 700;
	line-height: 96%; /* 61.44px */
	letter-spacing: -2.56px;
	margin: 72px 0 72px;
}
.section-page-donation .col{
	width: calc(50% - 10px);
}
.by-card,
.col-block{
	padding: 24px;
	border: 1px solid var(--textColor);
	margin-bottom: 24px;
}
.toggler{
	display: inline-flex;
	align-items: center;
	padding: 24px;
	border: 1px solid var(--textColor);
	margin-bottom: 24px;
	cursor: pointer;
}
.toggler span{
	position: relative;
	display: block;
	width: 70px;
	height: 34px;
	border-radius: 20px;
	background-color: #F6F8FF;
	margin-right: 24px;
}
.toggler span:before{
	content: '';
	display: block;
	width: 32px;
	height: 32px;
	border-radius: 16px;
	position: absolute;
	background-color: var(--colorBlue);
	top: 1px;
	left: 1px;
}
.toggler.active span{
	background-color: var(--colorBlue);
}
.toggler.active span:before{
	left: auto;
	right: 1px;
	background-color: var(--colorWhite);
}

.col-block .title{
	text-transform: uppercase;
	font-size: 34px;
	font-weight: bold;
	margin: 0 0;
}
.col-block p{

}
.col-block .blue-text{
	font-size: 34px;
	color:var(--colorBlue2);
	font-weight: bold;
}
.col-block .copy-block{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px;
	border: 1px solid var(--textColor);
	font-size: 20px;
	margin-top: 24px;
}
.col-block .copy-block .copy-this{
	cursor: pointer;
	font-weight: bold;
	white-space: nowrap;
	margin-left: 30px;
	min-width: 60px;
}
.col-block .copy-block .val{
	word-break: break-all;
}
.acf-map {
    width: 100%;
    height: 450px;
    margin: -40px 0 0;
}

.acf-map img {
   max-width: inherit !important;
}
.section-contact-blocks{
	margin-bottom: 0;
	position: relative;
	z-index: 2;
}
.input-wrap .wpcf7-not-valid{
	border-color: red;
}
.wpcf7-not-valid-tip{
	display: none;
}

#post-404{
	padding: 100px 0;
	text-align: center;
}
#post-404 .section-title:before{
	left: 50%;
	transform:translateX(-50%);
}
.page-gallery .section-content{
	margin-bottom: 72px;
}
.page-gallery .section-content a{
	text-decoration: underline;
}
/*------------------------------------*\
    MODAL
\*------------------------------------*/
.modal,
.modal-box {
  z-index: 900;
}

.modal-sandbox {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: transparent;
}

.modal {
  display: none; 
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgb(0,0,0);
  background: rgba(0,0,0,.7);
  overflow: auto;
}

.modal-box {
  position: relative;
  width: 936px;
  max-width: 95%;
  margin: 100px auto;
  animation-name: modalbox;
  animation-duration: .4s;
  animation-timing-function: cubic-bezier(0,0,.3,1.6);
}
.modal-body {
  background: var(--colorBlue2);
  color: var(--colorWhite);
  padding: 146px 65px 72px;
  position: relative;
}
.modal-body .title{
	font-size: 40px;
	font-weight: bold;
	margin-bottom: 44px;
	text-align: center;
}
.modal-body .text{
	font-size: 40px;
	font-weight: bold;
	text-align: center;

}
.modal-body:before{
	content: '';
	width: 292px;
	height: 180px;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	background-image: url(../img/mt1.svg);
	background-repeat: no-repeat;
	background-size: contain;
}
.modal-body:after{
	content: '';
	width: 209px;
	height: 226px;
	display: block;
	position: absolute;
	top: 20px;
	left: 0;
	background-image: url(../img/mt2.svg);
	background-repeat: no-repeat;
	background-size: contain;
}

/* Close Button */
.close-modal {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0;
  transform: translate(50%,-50%);
  cursor: pointer;
}

/* Animation */
@-webkit-keyframes modalbox {
  0% {
    top: -250px; 
    opacity: 0;
  }
  100% {
    top: 0; 
    opacity: 1;
  }
}

@keyframes modalbox {
  0% {
    top: -250px; 
    opacity: 0;
  }
  100% {
    top: 0; 
    opacity: 1;
  }
}



/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}
/*------------------------------------*\
    Костыли
\*------------------------------------*/
.header-flex #menu-item-499{
	display: none;
}
.header-flex #menu-item-451{
	display: none;
}
.header-flex #menu-item-452{
	display: none;
}
.header-flex #menu-item-498{
	display: none;
}
/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
