/*Thank you gift*/
.dnt-gift-thx {
	margin: 180px 0 0 0;
	color: #fff;
}

h1 {
	font-size: 55px;
	font-weight: 600;
	margin: 0 0 20px 0;
}

.dnt-gift-thx-box {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	background-image: url(/wp-content/uploads/2025/12/hearts.svg);
	background-repeat: no-repeat;
	background-size: 190px;
	background-position: 60% 0%;
}

.dnt-gift-thx-box .left {
	max-width: 620px;
}

.dnt-gift-thx-box .left .info {
	margin-bottom: 50px;
	font-size: 20px;
}

.dnt-gift-thx-box .left .dark-yellow-brd {
	padding: 20px;
}

.dnt-gift-thx-box .left .btns {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	background: none;
}

.dnt-gift-thx-box .left .btns a {
	white-space: nowrap;
	font-weight: 800;
}

.dnt-gift-card {
	width: 360px;
	height: 100%;
	background-color: #fff;
	color: #00151E;
}

.dnt-gift-card .text {
	font-size: 10px;
	padding: 30px;
}

.dnt-gift-card .top .text img {
	width: auto;
}

.dnt-gift-card .top .text .heart {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.dnt-simple-gift-card {
	padding: 15px 15px;
}

.dnt-simple-gift-card .text {
	padding: 30px 20px;
}

.dnt-gift-card-inner {
	border: 2px solid #003575;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	height: 600px;
}

.dnt-gift-card-inner .top {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

.dnt-gift-card-inner .top img {
	width: 33%;
	margin: 20px 0;
}

.dnt-gift-card-inner .bottom {
	display: flex;
	justify-content: flex-end;
	width: 100%;
}

.dnt-gift-card-inner .bottom img {
	width: 80%;
	margin: 0 20px 20px 0;
}

.dnt-gift-card-twoo .dnt-gift-card-inner {
	position: relative;
	border: none;
}

.dnt-gift-card-twoo .dnt-gift-card-inner:after {
	content: '';
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	width: calc(100% + 20px);
	height: 100%;
	object-fit: contain;
	background-repeat: no-repeat;
	background-size: 100%;
	background-image: url("/wp-content/uploads/2026/02/line-decor.svg");
}

.dnt-gift-card-twoo .dnt-gift-card-inner .top {
	align-items: flex-start;
}

.dnt-gift-card-twoo .dnt-gift-card-inner .top>img {
	width: 30px;
	height: 30px;
	margin: 10px 0 40px 10px;
	object-fit: contain;
}

.dnt-gift-card-twoo .text img {
	margin-left: 5px;
}

.dnt-gift-card--twoo .top>img {
	width: 50px;
	height: 50px;
	margin: 20px auto 0 15px;
}

.dnt-gift-card--twoo .dnt-gift-card-inner .bottom img {
	width: 165px;
	margin: 0 20px 0 0;
}

@media (max-width: 767px) {
	.dnt-gift-card {
		width: 100%;
	}

	.dnt-gift-thx {
		margin: 100px 0 0 0;
	}

	.dnt-gift-thx-box {
		flex-direction: column;
		background-image: none;
	}

	.dnt-gift-thx-box .left {
		max-width: 100%;
	}

	.dnt-gift-thx-box .left .btns {
		flex-direction: column;
	}

	.dnt-gift-thx-box .left .btns a {
		width: 100%;
	}

	.dnt-gift-thx-box .left .info {
		margin-bottom: 20px;
		font-size: 16px;
	}

	.dnt-gift-thx-box h1 {
		font-size: 36px;
	}
}













#breadcrumbs {
	color: #fff;
}


.vac-all input[type="radio"] {
	height: 25px;
	width: 25px;
	margin: 0 10px 0 0;
}

.vac-all .wpcf7-radio {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: row;
	gap: 40px;
}

.vac-all .wpcf7-radio .first,
.vac-all .wpcf7-radio .last {
	margin-left: 0;
}

.vac-all .wpcf7-radio label {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

@media (max-width: 767px) {
	.vac-all .wpcf7-radio {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
}


/*Minute silence timer*/
.current-time-wrap {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999999999;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	width: 100vw;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 1s ease, transform 1s ease;
	text-align: center;
	backdrop-filter: blur(20px);
	background: rgba(0, 23, 51, 0.8);
}

.current-time-wrap p {
	max-width: 715px;
	width: 100%;
	margin: 0 auto;
	color: #fff;
	font-size: 55px;
	font-weight: 800;
	line-height: 120%;
	text-align: center;
}

.countdown {
	font-size: 40px;
	font-weight: 700;
	margin-top: 20px;
	color: #fff;
}

.current-time-wrap.visible {
	opacity: 1;
	transform: translateY(0);
}

.current-time-wrap.hidden {
	opacity: 0;
	transform: translateY(-10px);
}

.evac-fundrais {
	padding: 50px 0 85px;
}

.evac-fundrais__box {
	margin: 0 0 50px;
}

.evac-fundrais__box-top {
	display: flex;
	justify-content: space-between;
	margin: 0 0 25px;
}

.evac-fundrais__box-col {
	font-size: 24px;
	font-weight: 800;
	color: #fff;
}

.evac-fundrais__box-col span {
	font-weight: 400;
}

.evac-fundrais__progres-line {
	height: 21px;
	background-color: #fff;
	border-radius: 15px;
	overflow: hidden;
}

.evac-fundrais__progres-line span {
	height: 100%;
	width: 16%;
	background-color: #003575;
	border-radius: 15px;
	display: block;
}

.evac-fundrais__inner {
	display: flex;
	justify-content: space-between;
	background-color: #001733;
	border: 1px solid #003575;
	border-radius: 30px;
	overflow: hidden;
}

.evac-fundrais__left {
	padding: 50px;
}

.evac-fundrais__title {
	margin: 0 0 20px 0;
	font-weight: 600 !important;
}

.evac-fundrais__text {
	color: #fff;
	font-size: 18px;
	max-width: 625px;
	margin: 0 0 50px 0;
}

.evac-fundrais__right {
	max-width: 475px;
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
}

.evac-fundrais__right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.evac-fundrais .container .evac-fundrais__btns {
	display: flex;
	gap: 20px;
}

.evac-fundrais__btns .y-btn-i {
	display: flex;
	width: fit-content;
	color: #00151E;
	font-weight: 800;
	font-size: 20px;
	transition: linear .2s;
	text-align: center;
}


@media (max-width: 767px) {
	.current-time-wrap p {
		max-width: 375px;
		font-size: 26px;
	}
}

/*Support saves*/
.s-saves .form-report-thanks-bg {
	padding: 0;
}

.s-saves h1 {
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 60px;
	font-size: 55px;
	font-weight: 600;
}

.s-save-fbox {
	background-color: var(--blue);
	border-radius: 20px;
	padding: 20px 50px 50px 50px;
}

.s-saves .hf-box {
	margin-bottom: 0;
}

.s-saves .form-title {
	text-align: center;
	font-size: 28px;
	margin-bottom: 20px;
	color: #fff;
}

.s-saves .hf-box-add-1 span,
.s-saves .hf-box-add-2 span {
	font-size: 10px;
	font-weight: 400;
}

.s-saves .hf-box-add-1,
.s-saves .hf-box-add-2 {
	padding: 12px;
	line-height: 1;
}

.s-saves .dnt-form-box .hf-box-btn {
	text-transform: uppercase;
}

.button-section {
	text-align: center;
	padding: 80px 0;
}

.button-section a {
	text-transform: uppercase;
	width: 100%;
	min-width: 300px;
	display: block;
	margin: 0 auto;
}

.nh-projects .btn-box a {
	display: block;
}

.nh-projects .btn-box {
	display: flex;
	justify-content: flex-end;
}



@media (max-width: 767px) {
	.s-saves h1 {
		font-size: 36px;
	}

	.s-save-fbox {
		padding: 20px 10px 50px 10px;
	}

	.s-saves .form-title {
		text-align: center;
		font-size: 20px;
	}

	.s-saves .hf-box-add-1,
	.s-saves .hf-box-add-2 {
		padding: 12px;
		font-size: 14px;
	}

	.nh-projects .btn-box {
		margin-bottom: 20px;
	}
}

.donate-faq__inner {
	display: flex;
	justify-content: space-between;
}

.donate-faq__title {
	color: #9AC5FC;
	font-weight: 800;
	font-size: 55px;
	max-width: 400px;
	width: 100%;
	margin: 0 20px 0 0;
}

.donate-faq__inner .acc-cont {
	max-width: 650px;
	width: 100%;
}


.donate-other-info {
	background-color: #fec301;
	border-radius: 5px;
	padding: 10px 5px;
	color: #000;
	font-weight: 600;
}

.donate-other-info p:last-child {
	margin-bottom: 0;
}

.donate-other-info a {
	color: #003575;
	font-weight: 600;
	text-decoration: underline;
}

/*Not last bell*/
.pst-intro {
	padding: 30px 0 40px 0;
	overflow: hidden
}

.pst-intro__inner {
	position: relative
}

.pst-intro__inner>img {
	width: 100%;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain
}

.pst-intro__box {
	position: absolute;
	top: 80px;
	right: 60px;
	width: 67%
}

.pst-intro .dark-yellow {
	margin: 30px 0 0 17%;
	background-color: #FFC301;
}

.pst-intro .dark-yellow:hover {
	background-color: #fff
}

.pst-intro__img {
	width: 100%;
	margin: 0 0 40px 0;
}

.pst-intro__img img {
	width: 100%;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain
}

.pst-intro__decor {
	position: absolute;
	width: 34%;
	top: 95px;
	left: -25px;
	-webkit-animation: bell-swing 2s ease-in-out infinite;
	animation: bell-swing 2s ease-in-out infinite
}

.pst-intro__decor img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-webkit-transform-origin: top center;
	-ms-transform-origin: top center;
	transform-origin: top center
}

@-webkit-keyframes bell-swing {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	20% {
		-webkit-transform: rotate(2deg);
		transform: rotate(2deg)
	}

	40% {
		-webkit-transform: rotate(-1.5deg);
		transform: rotate(-1.5deg)
	}

	60% {
		-webkit-transform: rotate(1deg);
		transform: rotate(1deg)
	}

	80% {
		-webkit-transform: rotate(-0.5deg);
		transform: rotate(-0.5deg)
	}

	100% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}
}

@keyframes bell-swing {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	20% {
		-webkit-transform: rotate(2deg);
		transform: rotate(2deg)
	}

	40% {
		-webkit-transform: rotate(-1.5deg);
		transform: rotate(-1.5deg)
	}

	60% {
		-webkit-transform: rotate(1deg);
		transform: rotate(1deg)
	}

	80% {
		-webkit-transform: rotate(-0.5deg);
		transform: rotate(-0.5deg)
	}

	100% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}
}

.s-info--twoo .s-info__left p {
	margin: 0 15px 0 0;
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	line-height: 150%
}

.s-info--twoo .s-info__left {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin: 0 40px 0 0;
	position: relative;
}

.s-info--twoo .s-info__left p {
	max-width: 505px
}

.s-info--twoo .s-info__left img {
	width: 200px;
	height: 200px;
	display: block;
	margin: 20px 0 0 auto;
}

.s-info--twoo .s-info__right p {
	font-size: 18px
}

.s-box--twoo .s-box__item {
	border-color: #03633c
}

.s-box--twoo .s-box__item-top h6 {
	font-size: 32px
}

.s-box--twoo .input-wrap {
	width: 117px;
	height: 70px
}

.s-box--twoo .dark-yellow {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 250px;
	text-align: center;
	font-size: 18px;
	font-weight: 800;
	height: 70px
}

.s-box--twoo .s-box__item ::-webkit-scrollbar-thumb {
	background-color: #03633c
}

.s-box__decor {
	max-height: 465px
}

.s-box__decor img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain
}

.r_btn_link_date {
	color: #FFC301;
	font-size: 16px;
	font-size: 400;
	line-height: 150%;
}

@media(max-width: 1200px) {
	.s-box--twoo .s-box__info-close {
		top: 15px;
	}

	.s-box--twoo .s-box__info h5 {
		margin: 0 0 20px 0;
	}

	.pst-intro__box {
		position: absolute;
		top: 70px;
		right: 60px;
		width: 60%
	}

	.pst-intro .dark-yellow {
		margin: 25px 0 0 17%
	}

	.pst-intro__decor {
		top: 60px;
		left: 0
	}

	.s-box--twoo .s-box__item-top h6 {
		font-size: 18px
	}
}

@media(max-width: 768px) {

	.pst-intro__inner {
		height: 550px !important;
		padding: 0 15px;
		width: calc(100% + 40px);
		margin: 0 0 0 -20px;
	}

	.pst-intro__inner>img {
		position: absolute;
		height: 550px !important;
		width: 1215px !important;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		object-fit: cover;
	}

	.pst-intro__box {
		padding: 0 15px;
		top: 80px;
		right: 0;
		width: 100%
	}

	.pst-intro .dark-yellow {
		margin: 40px 0 0 0;
		width: 100%;
		display: block;
	}

	.pst-intro__decor {
		top: auto;
		left: 25%;
		width: 180px;
		bottom: -40px
	}

	.pst-intro {
		padding: 30px 0 75px 0
	}

	.s-info--twoo .s-info__left {
		margin: 0 0 30px 0;
	}

	.s-info--twoo .s-info__left img {
		display: none;
	}

	.s-info--twoo .s-info__left p {
		font-size: 24px
	}

	.s-box--twoo .dark-yellow {
		max-width: 100%
	}
}



/*End Not last bell*/

.r-sticky-btn-2 {
	margin-top: 40px;
}

@media (max-width: 767px) {
	.r-sticky-btn-2 {
		margin-top: 20px;
	}
}


/*How to support 2*/
.how-to-support-2 {
	color: #fff;
}

.how-to-support-2 h2 {
	font-weight: 600;
	font-size: 55px;
	margin-bottom: 50px;
	text-align: center;
}

.how-to-support-2 .main-image {
	display: flex;
}

.how-to-support-2 .main-image img {
	border-radius: 20px;
	margin: 0 auto;
	max-width: calc(100% - 70px);
}

.hts-row {
	margin-top: -120px;
	z-index: 9999;
}


.blue-blk-arrow {
	background-color: #001733;
	border-radius: 20px;
	border: 1px solid #003575;
	padding: 20px 20px 35px 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	transition: all 1s;
}

.blue-blk-arrow:hover {
	background-color: #003575;
	transition: all 1s;
}

.blue-blk-arrow img {
	width: 30px;
	margin-bottom: 40px;
}

.blue-blk-arrow p {
	margin-bottom: 0;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 800;
	text-align: left;
	width: 100%;
	min-height: 52px;
}

@media screen and (max-width: 992px) {
	.how-to-support-2 h2 {
		font-size: 36px;
	}

	.hts-row {
		margin-top: -80px;
	}

	.blue-blk-arrow {
		padding: 10px;
		border-radius: 10px;
	}

	.blue-blk-arrow img {
		width: 15px;
		margin-bottom: 30px;
	}

	.blue-blk-arrow p {
		font-size: 18px;
	}
}

@media screen and (max-width: 767px) {
	.how-to-support-2 h2 {
		font-size: 26px;
		margin-bottom: 30px;
	}

	.hts-row {
		margin-top: 20px;
		row-gap: 20px;
	}

	.how-to-support-2 .main-image img {
		max-width: calc(100% - 20px);
	}
}

/*Discover elements*/
.discover-more {
	color: #fff;
	margin-bottom: 50px;
}

.discover-more h2 {
	font-weight: 600;
	font-size: 55px;
	margin-bottom: 50px;
	text-align: center;
}

.discover-elements {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	row-gap: 10px;
	column-gap: 60px;
}

.discover-elements a {
	display: flex;
	font-size: 32px;
	font-weight: 500;
	padding: 0 10px 20px 0;
	border-bottom: 1px solid #003575;
	align-items: center;
	justify-content: space-between;
}

.discover-elements a img {
	margin-top: 3px;
	transition: linear .2s;
}

.discover-elements a:hover img {
	transform: rotate(45deg);
}

@media screen and (max-width: 1199px) {
	.discover-elements {
		grid-template-columns: repeat(1, 1fr);
	}

	.discover-more h2 {
		font-size: 36px;
	}

	.discover-elements a {
		font-size: 21px;
	}

	.discover-elements a img {
		width: 20px;
	}
}


/*Help more*/
.how-to-help-more {
	color: #fff;
	margin-bottom: 50px;
}

.how-to-help-more h2 {
	font-weight: 600;
	font-size: 55px;
	margin-bottom: 50px;
	text-align: center;
}

.hthm-box {
	display: flex;
	flex-direction: column;
	border-radius: 20px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 160px 20px 30px 20px;
	border: 1px solid #003575;
	height: 400px;
}

.hthm-box .subtitle {
	flex: 1 1 auto;
}

.hthm-box .title {
	font-weight: 800;
	font-size: 22px;
	margin-bottom: 10px;
}

.hthm-box .subtitle {
	margin-bottom: 20px;
}

.hthm-box a {
	color: var(--yellow);
	font-weight: 800;
}

.hthm-box a img {
	margin-left: 10px;
}

.hts-sterilization {
	margin-bottom: 50px;
}


@media screen and (max-width: 1199px) {
	.how-to-help-more h2 {
		font-size: 36px;
	}

	.hthm-box .title {
		font-size: 18px;
	}

	.hthm-box .subtitle {
		font-size: 14px;
	}
}










.r-full-text ol li,
.r-full-text ul li {
	margin-bottom: 10px;
}


/*New Zvitnist*/
.rep-blk1 {
	padding: 170px 0 0 0;
	color: #fff;
	margin-bottom: 100px;
}

.rep-blk1 .title-box {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}

.rep-blk1 .title-box h1 {
	font-size: 55px;
	font-weight: 600;
	margin: 0 0 15px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rep-blk1 .title-box h1 img {
	margin-left: 20px;
	width: 60px;
	transform: rotate(0deg);
	transition: all .5s;
}

.rep-blk1 .title-box h1:hover img {
	transform: rotate(15deg);
	transition: all .5s;
}

.rep-blk1 .title-box .subtitle {
	font-size: 20px;
}

.list-rep {
	max-width: 930px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.list-rep-item {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	background-color: #001733;
	border: 1px solid #003575;
	border-radius: 20px;
	padding: 20px;
	width: calc(33.333% - 14px);
	transition: all 1s;
}

.list-rep-item:hover {
	background-color: #003575;
	transition: all 1s;
}

.list-rep-item span {
	font-size: 22px;
	font-weight: 900;
	width: 100%;
	text-align: left;
	line-height: 1.2;
	min-height: 55px;
}

.list-rep-item img {
	width: 30px;
	margin-bottom: 40px;
	transform: rotate(0deg);
	transition: all .5s;
}

.list-rep-item:hover img {
	transform: rotate(45deg);
	transition: all .5s;
}




.rep-blk2 {
	background-color: #001733;
	padding: 50px 0 70px 0;
	border-radius: 70px;
	color: #fff;
	margin-bottom: 50px;
}

.rep-blk2 .title {
	font-size: 55px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 30px;
}

.list-help {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.list-help-item {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 20px;
	/* за бажанням */
	width: calc(33% - 14px);
	padding: 200px 20px 20px 20px;
	transition: all .5s;
}

.list-help-item::before {
	content: "";
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.5s ease;
	z-index: 0;
}

.list-help-item:hover::before {
	transform: scale(1.05);
	/* зум на 5% */
}

.list-help-item-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 20px;
	/* відступи всередині */
	color: #fff;
	/* колір тексту, якщо треба */
}

.list-help-item-inner {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	background-color: #003575;
	border-radius: 20px;
	padding: 20px;
	transition: all 1s;
}

.list-help-item-inner span {
	font-size: 22px;
	font-weight: 900;
	width: 100%;
	text-align: left;
	line-height: 1.2;
	min-height: 55px;
}

.list-help-item-inner img {
	width: 30px;
	transform: rotate(0deg);
	transition: all .5s;
}

.list-help-item:hover img {
	transform: rotate(45deg);
	transition: all .5s;
}

.se-news.hum-news {
	padding: 100px 0;
}

.hum-blk5 {
	padding: 100px 0 0 0;
}

@media (max-width: 1199px) {
	.list-help-item-inner span {
		font-size: 18px;
	}
}

@media (max-width: 991px) {

	.donate-faq__inner {
		flex-direction: column;
	}

	.donate-faq__title {
		margin: 0 0 30px 0;
		font-size: 42px;
	}

	.donate-faq__inner .acc-cont {
		max-width: 100%;
	}

	.evac-fundrais__inner {
		flex-direction: column;
	}

	.evac-fundrais__right {
		max-width: 100%;
	}

	.rep-blk1 {
		padding: 120px 0 0 0;
		margin-bottom: 70px;
	}

	.rep-blk1 .title-box h1 {
		font-size: 40px;
	}

	.rep-blk1 .title-box h1 img {
		width: 40px;
	}

	.list-rep-item span {
		font-size: 18px;
		min-height: 45px;
	}

	.list-rep-item img {
		width: 20px;
		margin-bottom: 30px;
	}

	.rep-blk2 {
		padding: 30px 0 50px 0;
		border-radius: 40px;
	}

	.rep-blk2 .title {
		font-size: 40px;
	}

	.list-help-item {
		padding: 150px 10px 10px 10px;
	}

	.list-help-item-inner {
		padding: 15px;
	}

	.list-help-item-inner img {
		width: 20px;
	}

	.list-help-item-inner span {
		font-size: 15px;
		min-height: 45px;
	}
}

@media (max-width: 767px) {
	.donate-faq__title {
		font-size: 24px;
	}

	.evac-fundrais__left {
		padding: 50px 20px;
	}

	.evac-fundrais__box-col {
		font-size: 16px;
	}

	.evac-fundrais__btns {
		flex-wrap: wrap;
	}

	.evac-fundrais__btns .y-btn-i {
		width: 100%;
		text-align: center;
		justify-content: center;
	}

	.hthm-box {
		height: auto;
	}

	.rep-blk1 {
		padding: 100px 0 0 0;
		margin-bottom: 70px;
	}

	.rep-blk1 .title-box h1 {
		font-size: 30px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.rep-blk1 .title-box h1 img {
		width: 32px;
		margin-left: 10px;
	}

	.rep-blk1 .title-box .subtitle {
		font-size: 16px;
		text-align: left;
	}

	.list-rep {
		flex-direction: column;
	}

	.list-rep-item {
		width: 100%;
	}

	.list-rep-item img {
		width: 15px;
	}

	.list-rep-item span {
		font-size: 20px;
		min-height: 34px;
	}

	.rep-blk2 {
		padding: 30px 0 30px 0;
		border-radius: 35px;
	}

	.rep-blk2 .title {
		font-size: 30px;
	}

	.list-help {
		flex-direction: column;
	}

	.list-help-item {
		padding: 150px 10px 20px 10px;
		width: 100%;
	}

	.list-help-item-inner {
		padding: 20px 10px;
	}

	.list-help-item-inner span {
		font-size: 20px;
		min-height: 34px;
	}

	.list-help-item-inner span br {
		display: none;
	}

	.list-help-item-inner img {
		width: 15px;
		margin-bottom: 20px;
	}
}

/*Звітність Головний блок*/

.rep-key-blk {
	padding: 170px 0 0 0;
	color: #fff;
	margin-bottom: 50px;
}

.rep-key-inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.rep-key-inner .left {
	font-size: 18px;
}

.rep-key-inner h1 {
	font-size: 55px;
	font-weight: 600;
	margin: 0 0 20px 0;
}

.rep-key-inner .right {
	min-width: 315px;
	margin-left: 75px;
}

.rep-nav-box {
	background-color: #001733;
	border: 1px solid #003575;
	border-radius: 25px;
	padding: 30px 20px 20px 20px;
	display: flex;
	flex-direction: column;
}

.rep-nav-box .rep-nav-item {
	height: 50px;
	font-size: 16px;
	line-height: 1.2;
	font-weight: 900;
	align-items: center;
	display: flex;
	justify-content: center;
	text-align: center;
	background-color: #001733;
	border: 1px solid #003575;
	border-radius: 20px;
	margin-bottom: 10px;
	padding: 0 20px;
	transition: all .5s;
}

.rep-nav-box .rep-nav-item:hover,
.rep-nav-item.active {
	background-color: #003575;
	transition: all .5s;
}

.rep-nav-box .rep-nav-item:last-child {
	margin-bottom: 0;
}

.rep-nav-dropdown {
	position: relative;
	width: 100%;
}

.rep-dropdown-toggle {
	background-color: #003575;
	color: white;
	border: none;
	border-radius: 20px;
	padding: 16px 20px;
	font-size: 18px;
	font-weight: bold;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	margin: 10px 0;
}

.rep-dropdown-icon {
	color: #ffc800;
	font-size: 28px;
}

.rep-dropdown-menu {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, opacity 0.4s ease;
	flex-direction: column;
	background-color: #003575;
	border-radius: 16px;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 20px 0;
}

/* Коли меню активне */
.rep-nav-dropdown.open .rep-dropdown-menu {
	max-height: 500px;
	/* або більше, якщо потрібно */
	opacity: 1;
	padding: 10px 0;
}

.rep-dropdown-menu a {
	padding: 12px 20px;
	text-decoration: none;
	color: white;
	display: block;
	font-weight: bold;
}

.rep-dropdown-menu a:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.rep-dropdown-menu a.active {
	background-color: rgba(255, 255, 255, 0.1);
}

/* Відображення меню при відкритті */
.rep-nav-dropdown.open .rep-dropdown-menu {
	display: flex;
}

/* Десктоп — показуємо звичайне горизонтальне меню */
@media(min-width: 768px) {
	.rep-nav-dropdown {
		display: none;
	}

	.rep-nav-box {
		display: flex;
	}
}




@media (max-width: 1199px) {
	.rep-key-inner .left {
		font-size: 16px;
	}
}


@media (max-width: 991px) {
	.rep-key-blk {
		padding: 120px 0 0 0;
	}

	.rep-key-inner h1 {
		font-size: 40px;
	}

	.rep-nav-box .rep-nav-item {
		font-size: 14px;
	}

	.rep-nav-box {
		padding: 20px 10px 20px 10px;
	}

	.rep-key-inner .right {
		min-width: 280px;
		margin-left: 20px;
	}
}


@media (max-width: 767px) {
	.rep-key-blk {
		padding: 100px 0 0 0;
		margin-bottom: 10px;
	}

	.rep-key-inner h1 {
		font-size: 30px;
	}

	.rep-key-inner {
		flex-direction: column;
	}

	.rep-nav-box {
		display: none;
	}

	.rep-key-inner .right {
		min-width: 100%;
		margin-left: 0;
	}

	.rep-dropdown-menu {
		padding: 0;
	}
}


/*Річна звітність*/
.rep-years {
	margin: 100px 0;
	color: #fff;
}

.rep-years:nth-child(2n) .info {
	order: 2;
}

.rep-years:nth-child(2n) .rep-gallery {
	order: 1;
}

.rep-years-inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.rep-years-inner .info,
.rep-years-inner .rep-gallery {
	width: 50%;
}

.rep-years-inner .info .year {
	font-size: 120px;
	line-height: 1;
	margin-bottom: 20px;
}

.rep-years-inner .info .subtitle {
	font-size: 55px;
	text-transform: uppercase;
	line-height: 1;
	margin-bottom: 20px;
}

.rep-years-inner .info .text {
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 50px;
}

.rep-years .rep-gallery {
	padding-left: 80px;
	padding-right: 0;
}

.rep-years:nth-child(2n) .rep-gallery {
	padding-right: 80px;
	padding-left: 0;
}

@media (max-width: 1199px) {
	.rep-years-inner .info .year {
		font-size: 80px;
	}

	.rep-years-inner .info .subtitle {
		font-size: 40px;
	}

	.rep-years-inner .info .text {
		font-size: 16px;
	}

	.rep-years .rep-gallery {
		padding-left: 40px;
		padding-right: 0;
	}

	.rep-years:nth-child(2n) .rep-gallery {
		padding-right: 40px;
		padding-left: 0;
	}
}

@media (max-width: 992px) {
	.rep-years-inner .info .year {
		font-size: 60px;
	}

	.rep-years-inner .info .subtitle {
		font-size: 32px;
	}

	.rep-years-inner .info .text {
		margin-bottom: 20px;
	}

	.rep-years .rep-gallery {
		padding-left: 30px;
		padding-right: 0;
	}

	.rep-years:nth-child(2n) .rep-gallery {
		padding-right: 30px;
		padding-left: 0;
	}

	.rep-gallery .au-swiper-1 .swiper-slide {
		height: 340px;
	}

	.rep-years-inner .y-btn a {
		font-size: 18px;
	}
}

@media (max-width: 767px) {
	.rep-years {
		margin: 50px 0;
	}

	.rep-years-inner {
		flex-direction: column;
	}

	.rep-years-inner .info,
	.rep-years-inner .rep-gallery {
		width: 100%;
	}

	.rep-years-inner .info .text {
		max-width: 100%;
	}

	.rep-years-inner .info .year {
		margin-bottom: 10px;
	}

	.rep-years-inner .info .subtitle {
		margin-bottom: 10px;
	}

	.rep-years-inner .y-btn {
		margin-bottom: 30px;
	}

	.rep-years-inner .y-btn a {
		width: 100%;
		text-align: center;
	}

	.rep-years-inner .rep-gallery {
		padding: 0;
	}

	.rep-years:nth-child(2n) .rep-gallery {
		padding: 0;
	}

	.rep-years:nth-child(2n) .info {
		order: 1;
	}

	.rep-years:nth-child(2n) .rep-gallery {
		order: 2;
	}
}

/*Щоденна звітність*/
.rep-se-news {
	margin: 30px 0 100px 0;
}

.rep-se-news .text-center {
	justify-content: center;
	margin-top: 50px;
}

.rep-se-news .text-center #load-more-news {
	border: 1px solid #FFC301;
	font-weight: 900;
	font-family: "ZonaPro";
}

@media (max-width: 1199px) {
	.more {
		font-size: 14px;
	}

	.rep-se-news .text-center {
		margin-top: 30px;
	}

	.rep-se-news .text-center #load-more-news {
		width: 100%;
	}
}

/*Щомісячна звітність*/
.search-list-rep {
	padding: 50px 0 100px 0;
	color: #fff;
	background-image: url(/wp-content/uploads/2025/03/rep-bg-paw.svg), url(/wp-content/uploads/2025/03/rep-bg-paw.svg), url(/wp-content/uploads/2025/03/rep-bg-paw.svg);
	background-size: 80px, 80px, 80px;
	background-position: 7% 40%, 93% 0%, 93% 90%;
	background-repeat: no-repeat, no-repeat, no-repeat;
}

.search-list-rep-inner {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column;
	gap: 20px;
}

.search-list-rep-inner.font-size-55 {
	font-size: 55px;
}

.search-list-rep-inner.font-size-28 {
	font-size: 26px;
}

.search-list-rep-item {
	position: relative;
	width: 100%;
	font-weight: 600;
	padding: 15px 200px 15px 30px;
	border: 1px solid #013575;
	background-color: #03151e;
	border-radius: 20px;
	gap: 20px;
	transition: all .5s;
}

.r_btn_link_inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.search-list-rep-item:hover {
	background-color: #013575;
	transition: all .5s;
}

.search-list-rep-item .name {
	line-height: 1.2;
}

.search-list-rep-item .rep-more {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 30px;
	font-size: 18px;
	font-weight: 800;
	color: #FFC301;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-shrink: 0;
	margin: 0 0 0 15px;
}

.search-list-rep-item .rep-more img {
	margin-left: 20px;
	width: 8px;
}

.hidden-report {
	display: none;
}

.search-list-rep .btn-show-more {
	display: block;
	margin: 0 auto;
	margin-top: 50px;
	padding: 15px;
	font-weight: 900;
	min-width: 320px;
	background-color: #FFC301;
	color: #000;
	border: none;
	cursor: pointer;
	border-radius: 20px;
	font-family: "ZonaPro";
}

.rep-search-form {
	margin-bottom: 50px;
}

.rep-search-form form {
	display: flex;
	align-items: center;
	justify-content: center;
}

.rep-search-form form input {
	background-image: url(/wp-content/uploads/2025/03/rep-search.svg);
	background-size: 20px;
	background-position: 95% center;
	background-repeat: no-repeat;
	border-radius: 20px;
	font-weight: 900;
	height: 60px;
	min-width: 350px;
}

.rep-search-form form .rep-filter-btn {
	background-color: #003575;
	color: #fff;
	height: 60px;
	min-width: 275px;
	text-align: center;
	font-weight: 900;
	border: none;
	border-radius: 20px;
	padding: 12px;
}

@media (max-width: 1199px) {
	.search-list-rep-inner.font-size-55 {
		font-size: 36px;
	}
}

@media (max-width: 991px) {
	.search-list-rep-inner.font-size-55 {
		font-size: 28px;
	}

	.search-list-rep-inner.font-size-28 {
		font-size: 21px;
	}

	.search-list-rep-item .rep-more {
		font-size: 16px;
	}

	.search-list-rep {
		background-position: 0% 40%, 100% 0%, 100% 93%;
	}
}

@media (max-width: 767px) {
	.search-list-rep {
		padding: 0 0 50px 0;
		margin-top: -10px;
	}

	.rep-search-form form {
		flex-direction: column;
	}

	.rep-search-form form input {
		width: 100%;
		margin-bottom: 10px;
	}

	.rep-search-form form .rep-filter-btn {
		width: 100%;
	}

	.search-list-rep {
		background-position: -15% 40%, 100% 5%, 100% 94%;
	}

	.search-list-rep-item {
		padding: 15px 150px 15px 15px;
		gap: 10px;
	}

	.search-list-rep-inner.font-size-55 {
		font-size: 20px;
	}

	.search-list-rep-inner.font-size-28 {
		font-size: 18px;
	}

	.search-list-rep-item .rep-more {
		font-size: 14px;
		font-weight: 400;
	}

	.font-size-28 .rep-more span {
		display: none;
	}

	.search-list-rep-item .rep-more img {
		margin-left: 8px;
		margin-top: 4px;
		width: 8px;
	}

	.font-size-28 .search-list-rep-item .rep-more img {
		margin-top: 0;
		width: 20px;
		min-width: 20px;
	}

	.search-list-rep .btn-show-more {
		margin-top: 40px;
	}
}
























/*Biography*/
.bio-blk-1 {
	padding: 160px 0 50px 0;
	color: #fff;
}

.bio-blk-1 h1 {
	font-size: 55px;
	line-height: 1;
}

.bio-blk-1 .left {
	position: absolute;
	z-index: 9;
}

.bio-blk-1 h1 span {
	font-size: 160px;
}

.bio-blk-1 .subtitle {
	font-size: 22px;
	max-width: 60%;
}

.bio-blk-1 .bio-photo {
	position: sticky;
	top: 50px;
	max-width: 90%;
	margin-left: 10%;
	border-radius: 10px;
}

.bio-blk2 {
	color: #fff;
	margin-bottom: 100px;
}

.bio-blk2 h3 {
	font-size: 36px;
	margin-bottom: 30px;
	margin-top: 100px;
}

.bio-blk2 p {
	margin-bottom: 20px;
}






.paypal-copy {
	max-width: 20px;
	margin-left: 10px;
}

.copy-text {
	cursor: pointer;
}

/*Donate gift*/
.valentine-intro {
	padding: 170px 0 0
}

.valentine-intro .container {
	max-width: 1470px
}

.valentine-intro__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	padding: 300px 20px 100px;
	border-radius: 50px;
	background-image: url("/wp-content/uploads/2025/02/valentine-intro-1.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	height: 780px
}

.valentine-intro--twoo .valentine-intro__inner {
	background-image: url("/wp-content/uploads/2025/12/donate-introbg.svg");
	display: flex;
	align-items: flex-end;
}

.valentine-intro--twoo .valentine-intro__btn {
	background-color: #fff;
	color: #000 !important;
}

.valentine-intro__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 1px solid #000;
	border-radius: 40px;
	background: #75add3;
	color: #282818;
	font-size: 18px;
	font-weight: 800;
	line-height: 120%;
	text-align: center;
	text-transform: uppercase;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: 60px;
	padding: 19px 55px;
	-webkit-transition: linear .2s;
	-o-transition: linear .2s;
	transition: linear .2s
}

.valentine-intro__btn:hover {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1)
}

.valentine-steps {
	padding: 40px 0 50px
}

.valentine-steps h1 {
	font-size: 28px;
	font-weight: 800;
	line-height: 150%;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	max-width: 900px;
	width: 100%;
	margin: 0 auto 50px
}

.valentine-steps h1 span {
	color: #ff8ca1
}

.valentine-steps .container>p {
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	line-height: 150%;
	text-align: center;
	max-width: 750px;
	width: 100%;
	margin: 0 auto 85px
}

.valentine-steps__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.valentine-steps__left {
	max-width: 495px;
	width: 100%;
	margin: 0 40px 0 0
}

.valentine-steps h2 {
	font-size: 28px;
	font-weight: 800;
	line-height: 150%;
	text-transform: uppercase;
	color: #fff
}

.valentine-steps h2 span {
	color: #ff8ca1
}

.valentine-steps__right {
	max-width: 590px;
	width: 100%
}

.valentine-steps__right ol {
	list-style-type: decimal;
	padding-left: 20px;
	padding: 0;
	margin: 0
}

.valentine-steps__right ol li {
	margin-bottom: 15px;
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	line-height: 150%
}

.valentine-steps__right ol li::marker {
	content: counter(list-item) ". ";
	color: #ff8ca1;
	font-size: 22px;
	font-weight: 800;
	line-height: 120%;
	text-transform: uppercase
}

.valentine-gallery {
	padding: 0 0 200px 0;
	background-image: url("/wp-content/themes/uanimals/images/dest/icons/valentine-gallerybg.svg");
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: top center
}

.valentine-gallery__inner {
	position: relative
}

.valentine-gallery__inner img {
	width: 100%;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
	margin: 0 auto
}

.valentine-gallery__inner img:nth-child(2) {
	display: none;
}

.valentine-gallery__box {
	position: absolute;
	right: 0;
	bottom: -105px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 400px;
	height: 300px;
	background-image: url("/wp-content/uploads/2025/02/cloud-2.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center
}

.valentine-gallery__box span {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 70px 0 0 0;
	color: #fff;
	font-size: 45px;
	font-weight: 800;
	line-height: 150%
}

.vlnt-steps {
	color: #fff;
}



.vlnt-steps__title {
	max-width: 1050px;
	width: 100%;
	text-align: center;
	margin: 0 auto 20px;
	color: #9AC5FC;
	font-weight: 800;
	font-size: 55px;
	text-transform: uppercase;
}

.vlnt-steps__subitle {
	font-size: 18px;
	text-align: center;
	color: #fff;
	margin: 0 0 70px 0;
}

.vlnt-steps__list-title {
	font-size: 28px;
	color: #fff;
	font-weight: 800;
	margin: 0 0 30px 0;
	text-transform: uppercase;
}

.vlnt-steps__inner {
	margin: 0 0 30px 0;
	padding-bottom: 50px;
	position: relative;
	display: flex;
	justify-content: space-between;
}

.vlnt-steps__left {
	max-width: 920px;
	width: 100%;
}

.vlnt-steps__list {
	display: flex;
	flex-wrap: wrap;
}

.vlnt-steps__item {
	position: relative;
	z-index: 1;
	margin: 0 0 30px 0;
	width: calc(33.33333%);
}

.vlnt-steps__item:nth-child(3) .vlnt-steps__num::after,
.vlnt-steps__item:last-child .vlnt-steps__num::after {
	display: none;
}

.vlnt-steps__num {
	position: relative;
	width: 128px;
}

.vlnt-steps__num img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

.vlnt-steps__num::after {
	width: 123%;
	height: 30px;
	content: "";
	position: absolute;
	right: -163px;
	top: 25px;
	background-image: url(/wp-content/uploads/2025/12/arrow.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;

}

.vlnt-steps__item .vlnt-steps__text {
	margin: -30px 0 0 50px;
}

.vlnt-steps__text {
	font-size: 20px;
}

.vlnt-steps__right {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 42%;
}

.vlnt-steps__right img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

.vlnt-line__slider {
	padding: 60px 20px !important;
}

.vlnt-line .container {
	max-width: 1360px;
	position: relative;
}


.vlnt-line .valentine-gallery__box {
	background-image: url("/wp-content/uploads/2025/12/cloud-2-1.svg");
	position: absolute;
	right: 80px;
	bottom: -125px;
}

.vlnt-line .valentine-gallery__box span {
	color: #001733 !important;
}

.donate-quest__inner {
	padding: 250px 0 100px;
	position: relative;
}

.donate-quest--twoo {
	overflow: hidden;
}

.donate-quest--twoo .btn-next {
	background-color: #FA8096 !important;
	color: #fff !important;
}

.donate-quest__imgs {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.donate-quest__img-one {
	position: absolute;
	width: 55%;
	top: 0;
	left: 0;

}

.donate-quest__img-twoo {
	position: absolute;
	width: 20%;
	right: 122px;
	top: 80px;
}

.donate-quest__img-three {
	position: absolute;
	width: 28%;
	bottom: 234px;
	left: -45px;
}

.donate-quest__img-four {
	position: absolute;
	width: 25%;
	top: 150px;
	right: 0;
}

.donate-quest__img-four {
	position: absolute;
	z-index: 1;
	width: 18%;
	top: 400px;
	right: 56px;
}

.donate-quest__img-five {
	position: absolute;
	width: 20%;
	bottom: 60px;
	right: -26px;
}

.donate-quest__img-one img,
.donate-quest__img-twoo img,
.donate-quest__img-three img,
.donate-quest__img-four img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}


.donate-quest--twoo .donate-quest__form {
	max-width: 700px;
	width: 100%;
	margin: 0 auto;
}

.donate-img-mob {
	display: none;
}


.vlnt-box {
	max-width: 1340px;
	width: 100%;
	margin: 70px auto 90px;
	background-color: #001733;
	border-radius: 50px;
	padding: 45px;
}

.valentine-gallery__box {
	z-index: 1;
	pointer-events: none;
}

.vlnt-line__slider .swiper-slide {
	border-radius: 20px;
	overflow: hidden;
}

.vlnt-line__slider .swiper-slide:nth-child(2) {
	transform: rotate(-5deg);
}

.vlnt-line__slider .swiper-slide:nth-child(4) {
	transform: rotate(5deg);
}

.vlnt-line__slider .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	border: none;
}

.vlnt-line__slider .swiper-button-next,
.vlnt-line__slider .swiper-button-prev {
	width: calc(var(--swiper-navigation-size) / 50 * 50);
	background-color: var(--yellow);
	border-radius: 50px;
}

.vlnt-line__slider .swiper-button-next:after,
.vlnt-line__slider .swiper-button-prev:after {
	font-size: 10px;
	color: #00151E;
}






.donate-quest {
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: 100%;
	padding: 0 0 100px 0
}

.donate-quest__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.donate-quest__left {
	margin: 0 40px 0 0;
	max-width: 700px;
	width: 100%;
	overflow: hidden
}

.donate-quest__form {
	padding: 50px;
	border-radius: 50px;
	background: #003679
}

.donate-quest__form.open .donate-quest__info {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1
}

.donate-quest__title {
	margin: 0 0 30px 0;
	font-size: 24px;
	font-weight: 800;
	line-height: 150%;
	text-transform: uppercase;
	color: #fff
}

.donate-quest__title span {
	color: #ff8ca1;
}

.donate-quest__input-wrap {
	margin: 0 0 10px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.donate-quest label {
	max-width: 585px;
	width: 100%;
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	line-height: 150%
}

.donate-quest__select-wrap {
	margin: 0 0 10px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.donate-quest__textare-wrap {
	margin: 0 0 10px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.donate-quest input,
.donate-quest select {
	padding: 5px 20px;
	width: 100%;
	height: 50px;
	border: 1px solid #fff;
	border-radius: 15px;
	background: #fff;
	outline: none;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%
}

.donate-quest input::-webkit-input-placeholder,
.donate-quest select::-webkit-input-placeholder {
	color: #58606d
}

.donate-quest input::-moz-placeholder,
.donate-quest select::-moz-placeholder {
	color: #58606d
}

.donate-quest input:-ms-input-placeholder,
.donate-quest select:-ms-input-placeholder {
	color: #58606d
}

.donate-quest input::-ms-input-placeholder,
.donate-quest select::-ms-input-placeholder {
	color: #58606d
}

.donate-quest input::placeholder,
.donate-quest select::placeholder {
	color: #58606d
}

.donate-quest__textare-wrap {
	margin: 30px 0 0 0
}

.donate-quest textarea {
	resize: none;
	padding: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #fff;
	border-radius: 15px;
	background: #fff;
	height: 150px
}

.donate-quest .btn-next {
	margin: 20px 0 0 0;
	text-align: center;
	color: #00151e;
	text-decoration: none;
	font-weight: 600;
	white-space: nowrap;
	cursor: pointer;
	border: none;
	width: 100%;
	border: 1px solid #000;
	border-radius: 40px;
	background: #75add3;
	color: #282818;
	font-size: 16px;
	font-weight: 800;
	line-height: 120%;
	text-transform: uppercase;
	padding: 20px 15px;
	white-space: normal;
	text-wrap: wrap;
	overflow-wrap: break-word;
}

.donate-quest__right {
	padding: 45px 0 0 0;
	max-width: 585px;
	width: 100%;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content
}

.donate-quest__right img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain
}

.donate-quest__form {
	position: relative
}

.donate-quest ::-webkit-scrollbar {
	display: block;
	width: 6px
}

.donate-quest ::-webkit-scrollbar-thumb {
	background-color: #838383;
	border-radius: 5px
}

.donate-quest ::-webkit-scrollbar-track {
	background-color: rgba(0, 0, 0, 0);
	border: 1px solid #838383;
	border-radius: 5px;
	max-height: 80px;
	background-clip: content-box;
	margin-top: 5px !important;
	margin-bottom: 30px !important
}

.donate-quest__info {
	border-radius: 50px;
	padding: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #003679;
	overflow: auto;
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-transition: linear .2s;
	-o-transition: linear .2s;
	transition: linear .2s;
	opacity: 0
}

.donate-quest__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto
}

.donate-quest__img img {
	display: block;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
	height: 230px
}

.donate-quest__back {
	margin: 15px 0 15px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 135%;
	cursor: pointer;
	width: 100%;
	padding: 18px 30px;
	border: 2px solid #75add3;
	border-radius: 40px;
	font-weight: 700;
}

.donate-quest__back img {
	width: 10px;
	height: 10px;
	margin: 0 10px 0 0
}

.donate-quest__text p {
	margin: 0 0 10px 0;
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	line-height: 150%
}

.donate-quest__text span {
	color: #ff8ca1;
	font-weight: 800
}



.m-articles__check-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	cursor: pointer;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 0 10px 0
}

.m-articles__check-box span {
	display: block;
	position: relative;
	width: 25px;
	height: 25px;
	background-color: #fff
}

.m-articles__check-box span::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 5px;
	height: 10px;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
	-webkit-transition: linear .2s;
	-o-transition: linear .2s;
	transition: linear .2s;
	opacity: 0
}

.m-articles__check-box p {
	color: #fff;
	font-size: 11px;
	font-weight: 400;
	line-height: 120%;
	margin: 0 0 0 10px
}

.m-articles__check-box.active span::after {
	opacity: 1
}



@media(max-width: 1200px) {
	.s-box--twoo .s-box__item-bottom {
		flex-wrap: wrap;
	}

	.s-box--twoo .dark-yellow {
		max-width: 100%;
		width: 100%;
		margin: 15px 0 0 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.s-box--twoo .s-box__info {
		bottom: 99px;
	}

	.valentine-intro {
		padding: 0
	}

	.valentine-intro__inner {
		padding: 40% 20px 100px
	}

	.donate-quest__right {
		max-width: 385px;
		position: -webkit-sticky;
		position: sticky;
		top: 100px
	}

	.valentine-gallery__box {
		width: 260px;
		height: 195px;
		bottom: auto;
		top: -128px;
		right: 19%
	}

	.valentine-gallery__box span {
		font-size: 26px
	}

	.valentine-gallery {
		padding: 100px 0 30px 0
	}
}

@media(max-width: 992px) {
	.valentine-intro__inner h1 {
		font-size: 42px
	}

	.donate-quest__inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}

	.donate-quest__right {
		position: static
	}

	.donate-quest__left {
		margin: 40px 0 0 0
	}

	.donate-quest {
		padding: 0 0 85px 0
	}

	.donate-quest .btn-next {
		white-space: wrap
	}

	.valentine-intro__inner {
		background-image: url("/wp-content/uploads/2025/02/valentine-intro-mob.svg")
	}

	.valentine-intro__inner {
		padding: 27% 20px 100px
	}

	.valentine-intro {
		padding: 70px 0 0 0
	}
}

@media(max-width: 768px) {
	.valentine-intro__inner {
		height: 560px
	}

	.donate-quest__form {
		border-radius: 25px
	}

	.valentine-steps__inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}

	.valentine-steps__left {
		max-width: 100%;
		margin: 0 0 40px 0
	}

	.valentine-steps__right {
		padding: 0 0 0 20px
	}

	.valentine-steps {
		padding: 40px 0 70px
	}

	.valentine-gallery__box {
		width: 55%;
		top: -159px;
		right: 19%
	}

	.valentine-gallery__box span {
		font-size: 125%
	}

	.donate-quest__form,
	.donate-quest__info {
		padding: 50px 15px
	}

	.donate-quest__title {
		font-size: 22px
	}

	.donate-quest input,
	.donate-quest select {
		padding: 10px;
		border-radius: 10px
	}

	.donate-quest textarea {
		border-radius: 10px
	}

	.donate-quest__back {
		margin: 15px 0 0 0px
	}

	.donate-quest__img img {
		height: 200px;
	}

	.valentine-intro__btn {
		height: 50px;
		font-size: 18px;
		padding: 10px 30px
	}

	.valentine-intro__inner {
		position: relative;
		padding: 150px 20px 50px
	}

	.donate-quest input,
	.donate-quest select {
		height: 50px
	}

	.valentine-steps h1,
	.valentine-steps .container>p {
		text-align: left
	}

	.valentine-steps .container>p {
		margin: 0 0 20px 0
	}

	.valentine-intro__inner {
		border-radius: 0
	}
}

/*Гуманітарна допомога*/
.humanitarian {
	color: #fff;
}

.humanitarian .info a {
	color: var(--yellow);
	text-decoration: underline;
}

.humanitarian h2 {
	font-size: 48px;
	margin-bottom: 20px;

}

.page-template-humanitarian-help-tpl h1,
.page-template-humanitarian-help-tpl h2,
.page-template-humanitarian-help-tpl h3,
.page-template-humanitarian-help-tpl h4,
.page-template-humanitarian-help-tpl h5,
.page-template-humanitarian-help-tpl h6 {
	font-weight: 600 !important;
}


.hum-blk1 {
	padding-top: 50px;
	color: #fff;
}

.hum-blk1-inner {
	padding: 110px 0 170px 0;
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
}

.hum-blk1_text {
	max-width: 650px;
	width: 100%;
	margin: 0 0 50px 0;
	font-size: 18px;
}

.hum-blk1 h1 {
	font-size: 100px;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 50px;
}

h1.evac-title {
	margin-bottom: 20px;
}

.evac-subtitle {
	font-size: 18px;
	max-width: 650px;
	margin-bottom: 50px;
}

.hd-btns {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	column-gap: 20px;
}

.hd-btns a,
.hum-blk5 .hum-btns a {
	font-weight: 700;
}

.hum-blk5 .hum-btns a {
	padding: 20px;
}

.hd-btns .dark-yellow,
.hd-btns .dark-blue {
	max-width: 100%;
	padding: 15px 30px;
	font-weight: 700;
	white-space: normal;
}

.hum-blk2 {
	margin: 40px 0 100px 0;
}

.hum-blk2 .img-box img {
	border-radius: 20px;
}

.humanitarian .se-news h2 {
	font-size: 48px;
	margin-bottom: 20px;
	font-weight: 400;
}

.hum-blk4 {
	margin: 100px 0;
}

.hum-blk4 .row {
	padding-top: 50px;
	padding-bottom: 50px;
	border-bottom: 1px solid var(--blue);
	display: flex;
	align-items: center;
}

.hum-blk4 p {
	margin-bottom: 0;
}

.hum-blk4 .hum-blk4-name {
	font-size: 18px;
}

.hum-blk4 .hum-blk4-number {
	font-size: 74px;
	color: var(--yellow);
	text-align: right;
	line-height: 1;
	font-weight: 600;
}

.hum-blk4 .hum-blk4-subtext {
	font-size: 18px;
	color: var(--yellow);
	text-align: right;
}

.hum-blk5 {
	margin-bottom: 100px;
}

.hum-blk5-inner {
	position: relative;
	background-color: #001733;
	border: 1px solid #003575;
	border-radius: 20px;
	margin: 0 -70px;
	padding: 70px 70px;
	background-size: 35%;
	background-position: 100% 0%;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.hum-blk5-inner .info {
	max-width: 650px;
	margin-bottom: 50px;
}

.hum-btns {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	column-gap: 20px;
}

.hum-btns .dark-yellow {
	max-width: 100%;
	text-align: center;
}

.dark-yellow-brd {
	background-color: transparent;
	border: 1px solid var(--yellow);
	border-radius: 20px;
	padding: 15px;
	color: var(--yellow);
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	transition: all .5s;
}

.dark-yellow-brd:hover {
	background-color: var(--yellow);
	color: #00151E;
	transition: all .5s;
}

.hum-blk6 {
	margin-bottom: 70px;
	color: #fff;
}

.hum-blk6 .row {
	padding: 50px 0;
	border-bottom: 1px solid var(--blue);
}

.hum-blk6 .number {
	font-size: 90px;
	font-weight: 600;
	margin-bottom: 20px;
	line-height: 1;
}

.hum-blk6 .el-title {
	font-size: 28px;
	font-weight: 600;
	color: var(--yellow);
	margin-bottom: 20px;
}

.hum-blk6 .el-title a {
	color: var(--yellow);
	text-decoration: underline;
}

.hum-blk-8 {
	margin-top: 100px;
}

.hum-blk-8 .info {
	margin: 50px 0;
}

.hum-blk-8 .dark-yellow {
	display: block;
	text-align: center;
	margin: 0 auto;
}

.humanitarian .hum-blk-8 .n-help-box .info {
	min-height: 120px;
	margin-top: 0;
}

.hum-blk-8 .n-help-box {
	padding: 50px 30px 30px 30px;
}


.hum-progects .subtitle {
	font-size: 22px;
}

.hum-beneficiaries .subtitle strong {
	color: #FFC301;
}

.hum-beneficiaries .subtitle {
	font-size: 18px;
}

.hum-progects {
	padding: 0 0 50px 0;
}

.hum-progects__list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 0 -20px;
}

.hum-progects__item {
	display: flex;
	flex-direction: column;
	width: calc(50% - 20px);
	margin: 0 0 20px 20px;
	border-radius: 20px;
	padding: 20px;
	background-color: #013575;
}

.hum-progects__item-title {
	flex: 1 1 auto;
	font-size: 22px;
	font-weight: 600;
	margin: 0 0 20px 0;
	text-transform: uppercase;
}

.hum-progects__item-title strong {
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 6px;
}

.hum-progects__item-text {
	flex: 1 1 auto;
	font-size: 16px;
	height: 0;
	overflow: hidden;
	transition: height 0.4s ease, opacity 0.3s ease;
	opacity: 0;
	margin: 0;

}

.hum-progects__item-text.is-open {
	opacity: 1;
	margin: 0 0 40px 0;
}

.hum-progects__item-btn {
	display: flex;
	align-items: center;
	background-color: transparent;
	cursor: pointer;
	padding: 0;
	border: none;
	color: #FFC301;
	font-weight: 600;
	transition: linear .2s;
	font-family: "ZonaPro";
}

.hum-progects__item-btn div:nth-child(2) {
	display: none;
}

.hum-progects__item-btn.is-open div:nth-child(2) {
	display: block;
}

.hum-progects__item-btn.is-open div:nth-child(1) {
	display: none;
}

.hum-progects__item-btn span {
	position: relative;
	margin: 0 0 0 13px;
	display: block;
	width: 18px;
	height: 18px;
	border-radius: 3px;
	background-color: #FFC301;
	transition: linear .2s;

}

.hum-progects__item-btn:hover,
.hum-progects__item-btn.is-open {
	color: #fff;
}

.hum-progects__item-btn:hover span,
.hum-progects__item-btn.is-open span {
	background-color: #fff;
}

.hum-progects__item-btn span::after,
.hum-progects__item-btn span::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #013575;
	width: 70%;
	height: 2px;
}

.hum-progects__item-btn span::before {
	transform: translate(-50%, -50%) rotate(90deg);
}

.hum-progects__item-btn.is-open span::before {
	transform: translate(-50%, -50%) rotate(0);
}

.hum-beneficiaries {
	padding: 50px 0 0;
}

.hum-beneficiaries__list {
	margin: 0 0 0 -20px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	counter-reset: item;
	list-style: none;
}

.hum-beneficiaries__item {
	padding: 140px 20px 20px 20px;
	counter-increment: item;
	position: relative;
	margin: 0 0 20px 20px;
	width: calc(25% - 20px);
	background-color: #001733;
	border: 1px solid #003575;
	border-radius: 20px;
}

.hum-beneficiaries__item:nth-child(1),
.hum-beneficiaries__item:nth-child(2) {
	width: calc(50% - 20px);
}


.hum-beneficiaries__item::before {
	content: counter(item, decimal-leading-zero);
	position: absolute;
	left: 20px;
	top: 20px;
	font-weight: 600;
	font-size: 90px;
	line-height: 1;
	color: #FFC301;
}

.hum-beneficiaries__text {
	font-size: 16px;
}

.hum-beneficiaries__text span {
	display: block;
	font-size: 14px;
	margin: 10px 0 0 0;
	font-style: italic;
}

.hum-beneficiaries__bot {
	padding: 30px 25px;
	border-radius: 30px;
	background-color: #fff;
	color: #000;
	font-size: 22px;
	font-weight: 500;
}

.hum-beneficiaries__bot a {
	color: #000;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 6px;
}

.hum-verification {
	padding: 120px 0 0;
}

.hum-verification__top {
	display: flex;
	column-gap: 30px;
	font-size: 18px;
}

.hum-verification__top strong {
	color: #FFC301;
}

.hum-verification .dark-yellow-brd {
	display: flex;
	align-items: center;
	max-width: 400px;
	width: 100%;
	margin: 40px auto 70px;
	font-size: 20px;
	min-height: 60px;
	justify-content: center;
	border-color: #FFC301;
}

.hum-verification-show div:nth-child(2) {
	display: none;
}

.hum-verification-show.is-open div:nth-child(2) {
	display: block;
}

.hum-verification-show.is-open div:nth-child(1) {
	display: none;
}

.hum-verification__box {
	height: 0;
	overflow: hidden;
	transition: height 0.5s ease;
}

.hum-verification__box-inner {
	overflow: hidden;
}

.hum-verification__list {
	display: flex;
	flex-wrap: wrap;
	margin: 80px 0 0 -20px;
}

.hum-verification__item {
	position: relative;
	margin: 0 0 0 20px;
	width: calc(33.33333% - 20px);
}

.hum-verification__item::after {
	content: "";
	position: absolute;
	top: -1px;
	left: -55px;
	width: calc(100% + 20px);
	height: 1px;
	z-index: -1;
	background-color: #FFC301;
}

.hum-verification__item:nth-child(3) {
	border-top: 1px solid #FFC301;
	border-right: 1px solid #FFC301;
	border-bottom: 1px solid #FFC301;
	border-radius: 0 30px 30px 0;
}

.hum-verification__item:nth-child(4),
.hum-verification__item:nth-child(5) {
	margin: 0 0 0 20px;
	width: calc(50% - 20px);
}

.hum-verification__item:nth-child(4) .hum-verification__item-inner,
.hum-verification__item:nth-child(5) .hum-verification__item-inner {
	max-width: 100%;
}

.hum-verification__item:last-child {
	border: none;
}

.hum-verification__item-inner {
	position: relative;
	padding: 80px 0;
	max-width: 350px;
}

.hum-verification__step-sticker {
	position: absolute;
	top: -40px;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	font-weight: 600;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: #FFC301;
	color: #00151E;
}

.hum-verification__step-sticker span {
	margin: 0 0 -12px 3px;
	font-size: 16px;
	font-weight: 600;
}

.hum-verification__item-title {
	font-size: 32px;
	line-height: 120%;
	color: #fff;
	font-weight: 600;
	margin: 0 0 10px 0;
}

.hum-verification__item-text {
	font-size: 16px;
}

.hum-verification__bot {
	padding: 40px 40px 25px 40px;
	background-color: #fff;
	border-radius: 30px;

}

.hum-verification__bot-title {
	display: flex;
	align-items: center;
	margin: 0 0 20px 0;
	color: #00151E;
	font-size: 32px;
	font-weight: 600;
}

.hum-verification__bot-title span {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	padding: 8px 10px;
	margin: 0 10px 0 0;
	border-radius: 10px;
	background-color: #FFC301;
}

.hum-verification__bot ul {
	list-style: none;
	margin: 0;
	padding: 0;
	column-count: 2;
}

.hum-verification__bot li {
	position: relative;
	color: #00151E;
	font-size: 18px;
	padding: 0 0 15px 25px;
}

.hum-verification__bot li::after {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 12px;
	height: 12px;
	background-image: url("/wp-content/uploads/2026/01/check-2.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.hum-verification__info {
	margin: 100px 0 0 0;
}

.hum-verification__info a,
.hum-verification__info strong {
	color: #FFC301;
	font-weight: 700;
}

.hum-verification__info strong {
	display: block;
	margin: 0 0 10px 0;
}

.hum-verification__inner {
	display: flex;
	flex-wrap: wrap;
	margin: 40px 0 0 -20px;
	font-size: 18px;
}

.hum-verification__col {
	width: calc(50% - 20px);
	margin: 0 0 0 20px;
}

.hum-faq {
	padding: 50px 0 100px;
}

.hum-faq__acordeon {
	margin: 50px 0 0 0;
}

.hum-faq__item {
	border-radius: 20px;
	background-color: #013575;
	margin: 0 0 20px 0;
}

.hum-faq__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 30px;
	font-size: 32px;
	font-weight: 600;
	color: #FFC301;
	cursor: pointer;
	text-transform: uppercase;
}

.hum-faq__title span {
	position: relative;
	margin: 0 0 0 13px;
	display: block;
	width: 18px;
	height: 18px;
	border-radius: 3px;
	background-color: #FFC301;
	transition: linear .2s;
	flex-shrink: 0;
}

.hum-faq__title span::after,
.hum-faq__title span::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #013575;
	width: 70%;
	height: 2px;
}

.hum-faq__title span::before {
	transform: translate(-50%, -50%) rotate(90deg);
}

.hum-faq__content {
	padding: 0 30px 30px 30px;
}

.hum-faq__content p {
	font-size: 16px;
}

.hum-faq__content p:last-child {
	margin: 0;
}

.hum-faq__content strong {
	display: block;
	margin: 0 0 10px 0;
	font-size: 16px;
	font-weight: 800;
}

.hum-faq__content a {
	color: #FFC301;
	font-weight: 800;
	font-size: 16px;
	transition: linear .2s;
}

.hum-faq__content a:hover {
	color: #fff;
}

.hum-faq__list {
	margin: 0 0 0 -20px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	counter-reset: item;
	list-style: none;
}

.hum-faq__list li {
	padding: 20px 20px 20px 130px;
	counter-increment: item;
	position: relative;
	margin: 0 0 20px 20px;
	width: calc(50% - 20px);
	background-color: #001733;
	border: 1px solid #003575;
	border-radius: 20px;
}

.hum-faq__list li::before {
	content: counter(item, decimal-leading-zero);
	position: absolute;
	left: 13px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 75px;
	line-height: 1;
	color: #FFC301;
}

.hum-faq__content-wrap {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: max-height .35s ease, opacity .25s ease;
	will-change: max-height;
}

.hum-faq__item.is-open .hum-faq__content-wrap {
	opacity: 1;
}

.hum-faq__item.is-open .hum-faq__title span {
	background-color: #fff;
}


.hum-faq__item.is-open .hum-faq__title span::before {
	transform: translate(-50%, -50%) rotate(0);
}


@media (max-width: 1199px) {
	.hum-blk1 h1 {
		font-size: 80px;
	}

	.hum-blk4 .hum-blk4-number {
		font-size: 70px;
	}
}

@media (max-width: 991px) {
	.vlnt-steps__item {
		width: 50%;
	}

	.vlnt-steps__item:nth-child(3) .vlnt-steps__num::after {
		display: block;
	}

	.vlnt-steps__list-title {
		font-size: 26px;
	}

	.vlnt-steps__title {
		font-size: 42px;
	}

	.humanitarian h2 {
		font-size: 36px;
	}

	.hum-blk5-inner {
		background-size: 55%;
		background-position: 120% 0%;
		padding: 50px 70px;
	}

	.hum-blk5-inner .info {
		max-width: 550px;
	}

	.vlnt-line__slider .swiper-slide:nth-child(2) {
		transform: rotate(-2deg);
	}

	.vlnt-line__slider .swiper-slide:nth-child(4) {
		transform: rotate(2deg);
	}
}

@media (max-width: 767px) {
	.donate-img-mob {
		display: block;
		width: 100%;
		height: auto;
		margin: 30px 0 10px;
		object-fit: contain;
	}

	.donate-quest__imgs {
		display: none;
	}

	.vlnt-line__slider {
		padding: 160px 20px 20px !important;
	}

	.valentine-gallery__box span {
		margin: 40px 0 0 0;
	}

	.vlnt-line .valentine-gallery__box {
		bottom: auto;
		top: 1px;
	}

	.valentine-gallery {
		background-image: none;
	}

	.valentine-gallery__inner img:nth-child(1) {
		display: none;
	}

	.valentine-gallery__inner img:nth-child(2) {
		display: block;
	}

	.humanitarian h2 {
		font-size: 26px;
	}

	.hum-blk1 h1 {
		font-size: 42px;
	}

	.hd-btns {
		flex-direction: column;
	}

	.hd-btns .dark-yellow {
		margin-bottom: 10px;
		padding: 15px;
	}

	.hd-btns .dark-blue {
		margin-bottom: 0;
		padding: 15px;
	}

	.hum-blk1 {
		padding-top: 0;
	}

	.hum-blk4 .row {
		padding-top: 25px;
		padding-bottom: 25px;
	}

	.hum-blk4 .hum-blk4-number {
		font-size: 48px;
		text-align: left;
	}

	.hum-blk4 .hum-blk4-name {
		font-size: 16px;
		margin-bottom: 20px;
	}

	.hum-blk4 .hum-blk4-subtext {
		font-size: 16px;
		text-align: left;
	}

	.hum-blk5-inner {
		margin: 0;
		padding: 30px 20px;
		justify-content: flex-start;
		background-size: 45%;
		background-position: 125% 5%;
	}

	.hum-btns {
		flex-direction: column;
		row-gap: 20px;
	}

	.hum-blk6 .number {
		font-size: 48px;
	}

	.hum-blk6 .el-title {
		font-size: 21px;
	}

	.hum-blk6 .row {
		padding: 25px 0;
	}

	.hum-blk-8 .n-help-box {
		padding: 30px 30px 80px 30px;
	}

	.humanitarian .hum-blk-8 .n-help-box .info {
		min-height: 10px;
	}

	.valentine-steps h1,
	.valentine-steps h2 {
		font-size: 22px;
	}
}


/*Марш 2024*/
.march {
	color: #fff;
}

.march h2 {
	font-size: 48px;
	margin-bottom: 20px;
}

.march-blk1 {
	padding-top: 50px;
	color: #fff;
}

.march-blk1-inner {
	padding: 200px 0;
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
}

.march-blk1 .title-box {
	position: relative;
}

.march-blk1 .title-box h1 {
	font-size: 95px;
	margin: 0;
}

.march-blk1 .title-box h1 .top {
	display: block;
}

.march-blk1 .title-box h1 .bottom {
	display: block;
	text-align: right;
}

.march-blk1 .subtitle {
	max-width: 400px;
	position: absolute;
	bottom: 15px;
	font-size: 20px;
	margin-bottom: 0;
}

.march .info a {
	color: var(--yellow);
	text-decoration: underline;
}

.march-blk2 .img-box img {
	width: 100%;
	border-radius: 20px;
}

.blk-blue-inner {
	padding: 60px 30px;
	background-color: #001733;
	border: 1px solid #003575;
	border-radius: 20px;
}

.blk-blue-inner .title {
	font-size: 36px;
	margin-bottom: 0;
}

.goal {
	padding: 20px;
	border: 1px solid #003575;
	background-color: #001733;
	border-radius: 20px;
	transition: all .5s;
}

.goal:hover {
	background-color: #003575;
	transition: all .5s;
}

.goal-inner {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	column-gap: 30px;
}

.goal-inner .number {
	color: var(--yellow);
	font-size: 36px;
}

.goal-inner p {
	margin-bottom: 10px;
}

.blk-blue-inner .img-bg-box {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 20px;
}

.march-blk3 {
	margin: 100px 0;
}

.march-blk4-images {
	margin-top: 60px;
}

.march-blk4-images img {
	border-radius: 20px;
	width: 100%;
}

.march-blk4-images .col-md-4:nth-child(1) .img-box {
	margin-top: 35px;
}

.march-blk4-images .col-md-4:nth-child(3) .img-box {
	margin-top: 100px;
}

.march-blk5 {
	margin: 100px 0;
}

.march-blk5 .item {
	padding: 30px 20px;
	border: 1px solid #003575;
	background-color: #001733;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.march-blk5 .item .info {
	margin-bottom: 50px;
}

.march-blk5 .item .img-box {
	text-align: right;
}

.march-blk5 .item .img-box img {
	width: 30px;
	border-radius: 0;
}

.march-blk5 .author {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	column-gap: 10px;
}

.march-blk5 .author img {
	width: 70px;
	height: 70px;
	border-radius: 10px;
}

.march-blk5 .author .author-info {
	display: block;
}

.march-blk5 .author .author-info .name {
	color: var(--yellow);
	font-weight: 600;
	margin-bottom: 5px;
	font-size: 18px;
}

.march-blk6 {
	margin-bottom: 100px;
}

.march .year-title {
	font-size: 90px;
}

.march .full-carousel {
	margin-bottom: 100px;
}

.hum-help-carusel h2 {
	margin: 0 0 50px 0;
}

.march-blk7 {
	margin-bottom: 100px;
}

.march-blk7 .img-box img {
	border-radius: 20px;
}

.march-blk7 .year-info {
	margin-bottom: 50px;
}

.march .au-swiper-3 {
	max-width: 100%;
	margin-left: 0;
	height: auto;
}

.march-blk8 {
	margin-bottom: 100px;
}

.march-blk9 {
	margin-bottom: 100px;
}

.march-blk9 .img-box img {
	border-radius: 20px;
}

.march-blk10 {
	margin-bottom: 100px;
}

.march-blk11 {
	margin-bottom: 100px;
}

.march-blk11 h2 {
	text-align: center;
}

.march-map {
	margin-bottom: 100px;
}

.march-map-box {
	padding: 70px 50px;
	border: 1px solid #003575;
	background-color: #001733;
	border-radius: 25px;
}

.march-map-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 70px;
}

.march-map-nav .map-tabs {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	column-gap: 10px;
}

.march-map-nav .map-tabs .map-tab {
	padding: 15px;
	color: #fff;
	background-color: #001733;
	border: 1px solid #003575;
	text-align: center;
	width: 100px;
	border-radius: 20px;
	cursor: pointer;
	transition: all .5s;
}

.march-map-nav .map-tabs .map-tab:hover,
.march-map-nav .map-tabs .map-tab.active {
	background-color: #003575;
	transition: all .5s;
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
}


@media (max-width: 1399px) {
	.march-blk1 .title-box h1 {
		font-size: 85px;
	}

	.march-blk1 .subtitle {
		font-size: 18px;
	}

	.march-blk5 .author img {
		width: 50px;
		height: 50px;
	}

	.march-blk5 .author .author-info .name {
		font-size: 16px;
	}

	.march-blk5 .author .author-info .position {
		font-size: 14px;
	}
}

@media (max-width: 1199px) {
	.march-blk1 .title-box h1 {
		font-size: 70px;
	}

	.march-blk1 .subtitle {
		font-size: 16px;
		bottom: 10px;
	}

	.goal-inner p {
		margin-bottom: 5px;
		font-size: 14px;
	}

	.goal-inner .number {
		font-size: 24px;
	}

	.goal-inner {
		column-gap: 10px;
	}

	.blk-blue-inner .title {
		font-size: 28px;
	}

	.march .year-title {
		font-size: 60px;
	}

	.march-map-nav .map-tabs .map-tab {
		width: 80px;
	}
}


@media (max-width: 991px) {
	.valentine-intro--twoo .valentine-intro__inner {
		max-width: 360px;
		width: 100%;
		height: 550px;
		margin: 0 auto;
		background-image: url(/wp-content/uploads/2025/12/donate-introbg-mob-1.svg);
		padding: 235px 20px 100px;
		align-items: flex-start;
		border-radius: 20px;
	}

	.march-blk1 .title-box h1 {
		font-size: 50px;
	}

	.donate-quest__img-three {
		width: 17%;
		bottom: 0;
		left: -45px;
	}

	.donate-quest__img-four {
		display: none;
	}

	.donate-quest__img-five {
		z-index: 2;
		width: 14%;
		bottom: 0;
		right: -26px;
	}

	.march-blk1 .subtitle {
		font-size: 14px;
		max-width: 300px;
		bottom: 5px;
	}

	.goal {
		padding: 10px;
	}

	.goal-inner {
		flex-direction: column;
	}

	.march-blk5 .item .info {
		margin-bottom: 10px;
	}

	.march-map-nav {
		flex-direction: column;
	}
}

@media (max-width: 767px) {
	.hum-blk1_text {
		margin: 0 0 30px 0;
	}

	.donate-quest__inner {
		padding: 70px 0 60px;
	}

	.hum-verification__bot-title {
		font-size: 24px;
	}

	.hd-btns a {
		width: 100%;
		margin: 0 0 20px 0 !important;
	}

	.humanitarian .se-news h2 {
		font-size: 26px;
	}

	.vlnt-steps__item {
		width: 100%;
		display: flex;
	}

	.vlnt-steps__num::after {
		display: none !important;
	}

	.vlnt-steps__num {
		width: 80px;
		flex-shrink: 0;
	}

	.vlnt-steps__item .vlnt-steps__text {
		margin: 10px 0 0 10px;
		font-size: 18px;
	}

	.vlnt-box {
		padding: 45px 15px;
		margin: 70px auto 5px;
	}

	.donate-quest {
		padding: 0;
	}

	.vlnt-steps__title {
		font-size: 24px;
	}

	.vlnt-steps__subitle {
		margin: 0 0 30px 0;
	}

	.vlnt-steps__list-title {
		font-size: 20px;
	}

	.donate-quest__img-three {
		width: 26%;
		left: 0;
	}

	.donate-quest__img-five {
		width: 28%;
		right: 0;
	}

	.march-blk1 {
		padding-top: 0px;
	}

	.march-blk1 .title-box h1 {
		font-size: 36px;
	}

	.march-blk1 .title-box h1 .bottom {
		text-align: left;
	}

	.march-blk1 .subtitle {
		top: 100px;
		font-size: 16px;
	}

	.march h2 {
		font-size: 36px;
	}

	.march-blk3 {
		margin: 50px 0;
	}

	.blk-blue-inner {
		padding: 30px;
	}

	.goal-inner p {
		width: 100%;
	}

	.march-blk4-images {
		margin-top: 20px;
	}

	.march-blk4-images .col-md-4:nth-child(1) .img-box {
		margin-top: 30px;
		margin-bottom: 20px;
	}

	.march-blk4-images .col-md-4:nth-child(3) .img-box {
		margin-top: 20px;
	}

	.march-blk5 {
		margin: 50px 0;
	}

	.march .year-title {
		font-size: 50px;
	}

	.march-blk6 {
		margin-bottom: 50px;
	}

	.march .full-carousel {
		margin-bottom: 50px;
	}

	.march-blk7 .img-box {
		margin-bottom: 20px;
	}

	.march .au-swiper-3 {
		max-width: 100%;
	}

	.march-blk7 {
		margin-bottom: 50px;
	}

	.march-blk8 {
		margin-bottom: 50px;
	}

	.march-blk9 .au-swiper-3 {
		margin-bottom: 20px;
	}

	.march-blk9 {
		margin-bottom: 50px;
	}

	.march-blk10 {
		margin-bottom: 50px;
	}

	.march-blk11 {
		margin-bottom: 50px;
	}

	.march-map-box {
		padding: 20px;
	}

	.march-map-nav {
		flex-direction: column;
	}

	.march-map-nav .map-tabs {
		column-gap: 5px;
	}

	.march-map-nav .map-tabs .map-tab {
		width: auto;
		padding: 7px 10px;
		border-radius: 10px;
		font-size: 14px;
	}






}












/*Магазин непотрібних речей*/
.shop-line {
	margin: 30px 0 40px;
	font-size: 32px;
	font-weight: 600;
	line-height: 120%;
	color: #fff
}

.shop-line__inner {
	padding: 12px 10px;
	border-radius: 50px;
	background: #0000e7;
	text-align: center
}

.shop-line p {
	margin: 0
}

.shop-line span {
	color: #ffc301
}

.s-box__item-sticker {
	position: absolute;
	top: 40px;
	left: 0;
	color: #1f140f;
	font-size: 18px;
	font-weight: 800;
	line-height: 100%;
	text-transform: uppercase;
	background-color: #F2A940;
	padding: 10px
}

@media(max-width: 1200px) {
	.shop-line {
		font-size: 24px
	}
}

@media(max-width: 992px) {
	.shop-line__inner {
		padding: 25px 20px;
		border-radius: 50px;
		background: #0000e7;
		text-align: center
	}

	.shop-line__inner span:last-child {
		display: block
	}

	.s-box__item-sticker {
		font-size: 16px
	}
}

.shop-dark-yellow {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	background-color: #ffc301;
	border: 1px solid #ffc301;
	border-radius: 20px;
	padding: 15px;
	color: #00151e !important;
	font-size: 18px;
	font-weight: 600;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s
}

.shop-dark-yellow:hover {
	background: #fff;
	border-color: #fff
}

.s-intro,
.pst-intro {
	padding: 150px 0 40px 0
}

.s-intro .container {
	max-width: 1340px
}

.s-intro__inner {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 45px 30px 60px 30px;
	border: 1px solid #0000e7;
	border-radius: 50px;
	background: #0000e7;
	background-image: url("/wp-content/uploads/2024/12/s-intro-bg-1.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center
}

.s-intro__imgs {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0
}

.s-intro__imgs img {
	position: absolute
}

.s-intro__imgs img:nth-child(1) {
	right: 12%;
	top: 18%
}

.s-intro__imgs img:nth-child(2) {
	right: 20px;
	top: 30px
}



.s-intro__left {
	position: relative;
	z-index: 1;
	max-width: 475px;
	width: 100%;
	margin: 50px -20px 0 0
}

.s-intro__left img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain
}

.s-intro__right {
	padding: 75px 0 0 0;
	position: relative
}

.s-intro__right strong {
	position: absolute;
	top: 0;
	left: -50%;
	-webkit-transform: rotate(-5deg);
	-ms-transform: rotate(-5deg);
	transform: rotate(-5deg);
	padding: 15px 17px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	text-align: center;
	color: #1f140f;
	font-size: 40px;
	font-weight: 800;
	line-height: 110%;
	text-transform: uppercase;
	background-color: #ffc301
}

.s-intro__right h1 span {
	margin: 0 0 7px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 10px 20px;
	color: #1f140f;
	font-size: 100px;
	font-weight: 800;
	line-height: 110%;
	text-transform: uppercase;
	background-color: #fff
}

.s-intro__right p {
	margin: 15px 0 0 0;
	color: #fff;
	font-size: 22px;
	font-weight: 400;
	line-height: 150%
}

.s-intro .shop-dark-yellow {
	margin: 30px 0 0 0;
	position: relative;
	z-index: 1;
	font-size: 24px;
	font-weight: 800
}

.s-info {
	padding: 30px 0 40px
}

.s-info__left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.s-info__left p {
	margin: 0 15px 0 0;
	color: #fff;
	font-size: 45px;
	font-weight: 600;
	line-height: 150%
}

.s-info__left img {
	width: 100px;
	height: 100px;
	-o-object-fit: contain;
	object-fit: contain
}

.s-info__right p {
	margin: 0 0 20px 0;
	color: #fff;
	font-size: 20px;
	line-height: 150%
}

.s-info__right strong {
	font-size: 20px;
	line-height: 150%;
	font-weight: 800;
}

.s-box {
	padding: 30px 0 0;
	background-image: url(/wp-content/uploads/2025/12/bg-2.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: top center;
}

.s-box__info-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 30px;
	height: 30px;
	-webkit-transition: linear .2s;
	-o-transition: linear .2s;
	transition: linear .2s;
	cursor: pointer
}

.s-box__info-close:hover {
	opacity: .7
}

.s-box__info-close img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain
}

.s-box__info {
	padding: 20px 20px 40px 20px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 115px;
	background-color: #00151e;
	color: #fff;
	-webkit-transform: translateY(-200%);
	-ms-transform: translateY(-200%);
	transform: translateY(-200%);
	opacity: 0;
	z-index: 1;
	-webkit-transition: linear .2s;
	-o-transition: linear .2s;
	transition: linear .2s;
	overflow: auto
}

.s-box__info h5 {
	padding: 0 80px 0 0;
	margin: 0 0 20px 0;
	color: #fff;
	font-size: 28px;
	font-weight: 800;
	line-height: 130%
}

.s-box__info p {
	font-size: 16px;
	font-weight: 400;
	line-height: 150%
}

.s-box__info strong span {
	color: #ffc301
}

.s-box__item {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 20px 20px 40px 20px;
	border: 3px solid #0000e7;
	border-radius: 30px;
	height: 100%;
	overflow: hidden
}

.s-box__item ::-webkit-scrollbar {
	width: 6px
}

.s-box__item ::-webkit-scrollbar-thumb {
	background-color: #a46afd;
	border-radius: 5px
}

.s-box__item ::-webkit-scrollbar-track {
	background-color: #dadada;
	border-radius: 5px;
	margin: 25px
}

.s-box__item.active .s-box__info {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1
}

.s-box__item-img {
	border-radius: 35px;
	overflow: hidden;
	margin: 0 0 15px 0;
	height: 300px
}

.s-box__item-img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover
}

.s-box__item-top {
	margin: 0 0 25px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.s-box__item-top h6 {
	margin: 0 10px 0 0;
	color: #fff;
	font-size: 28px;
	font-weight: 800;
	line-height: 150%
}

.s-box__item-top .s-box__open {
	display: block;
	width: 30px;
	height: 30px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-transition: .2s linear;
	-o-transition: .2s linear;
	transition: .2s linear;
	cursor: pointer
}

.s-box__item-top .s-box__open img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain
}

.s-box__item-top .s-box__open:hover {
	opacity: .7
}

.s-box__item-bottom {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	align-items: flex-end;
}

.s-box__item__price {
	display: flex;
	align-items: center;
	height: 70px;
	color: #fff;
	font-size: 28px;
	font-weight: 800;
	line-height: 100%
}

.s-box .box-wrap {
	margin: 0 10px
}

.s-box .input-wrap {
	height: 70px;
	width: 120px;
	border-radius: 15px;
	position: relative;
	width: 150px;
	border: 1px solid #fff;
	overflow: hidden
}

.s-box .input-wrap button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 40px;
	position: absolute;
	top: 0;
	bottom: 0;
	height: 100%;
	color: #fff;
	font-family: "Droidd";
	font-size: 30px;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: .6px;
	text-transform: uppercase;
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0);
	outline: none;
	border: none
}

.s-box .input-wrap__minus {
	left: 0
}

.s-box .input-wrap input {
	font-family: 'ZonaPro';
	width: 100%;
	height: 100%;
	padding: 0 40px;
	background-color: rgba(0, 0, 0, 0);
	color: #fff !important;
	font-size: 30px;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: .6px;
	text-transform: uppercase;
	text-align: center
}

.s-box .input-wrap__plus {
	right: 0
}

.s-box .shop-dark-yellow {
	max-width: 250px;
	text-align: center;
	font-size: 20px;
	font-weight: 800;
	height: 70px;
	line-height: 100%;
}

.s-box .col-md-6 {
	margin: 0 0 50px 0
}

.s-banner {
	margin: 75px 0 75px
}

.s-banner__inner {
	padding: 70px 15px;
	text-align: center;
	background-image: url("/wp-content/uploads/2024/12/bannerb-bg2.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border: 1px solid #0000e7;
	border-radius: 50px;
	background-color: #0000e7
}

.s-banner h6 {
	max-width: 1030px;
	width: 100%;
	margin: 0 auto 30px;
	color: #fff;
	font-size: 36px;
	font-weight: 600;
	line-height: 150%
}

.s-banner p {
	max-width: 1030px;
	width: 100%;
	margin: 0 auto 20px;
	color: #fff;
	font-size: 20px;
	font-weight: 400;
	line-height: 150%
}

@media(max-width: 1400px) {
	.container {
		max-width: 1140px
	}

	.s-box__info h5 {
		font-size: 28px;
		margin: 0 0 10px 0
	}

	.s-box__info p,
	.s-box__info strong {
		font-size: 14px
	}
}

@media(max-width: 1200px) {

	.hum-beneficiaries__item::before {
		font-size: 72px;
	}

	.hum-beneficiaries__item {
		padding: 110px 20px 20px 20px;
	}

	.hum-beneficiaries__item {
		width: calc(50% - 20px) !important;
	}

	.hum-beneficiaries__bot {
		font-size: 20px;
	}

	.hum-verification__item-title {
		font-size: 26px;
	}

	.hum-verification__item-text {
		font-size: 16px;
	}

	.hum-faq__title {
		font-size: 24px;
	}

	.hum-faq__list li::before {
		font-size: 56px;
	}

	.hum-faq__list li {
		padding: 20px 20px 20px 105px;
	}

	.container {
		max-width: 960px
	}

	.s-intro__right h1 span {
		font-size: 74px
	}

	.s-info__left p {
		font-size: 32px
	}

	.s-info__right p,
	.s-info__right strong {
		font-size: 18px
	}

	.s-intro__right strong {
		font-size: 28px;
		left: -25%
	}

	.s-box__item-top h6 {
		font-size: 22px
	}

	.s-box .shop-dark-yellow {
		font-size: 16px;
		line-height: 100%
	}

	.s-box__item__price {
		font-size: 22px;
	}

	.s-box__item {
		padding: 20px
	}

	.s-box__info h5 {
		font-size: 16px
	}
}

@media(max-width: 768px) {
	.s-banner__inner {
		background-image: none !important;
	}

	.s-info__left {
		margin: 0 0 30px 0
	}

	.s-intro__inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		padding: 30px 20px 20px 20px;
	}

	.s-intro__right strong {
		font-size: 16px;
		left: -10%
	}

	.s-intro__right {
		padding: 30px 0 0 0
	}

	.s-intro__right h1 span {
		font-size: 40px
	}

	.s-intro__imgs img:nth-child(1) {
		top: 11%;
		width: 75px;
		height: 75px
	}

	.s-intro__right p {
		font-size: 16px
	}

	.s-intro .shop-dark-yellow {
		max-width: 100%;
		width: 100%
	}

	.s-intro__left {
		max-width: 320px;
		margin: 50px 0 0 0
	}

	.s-banner h6 {
		font-size: 24px
	}

	.s-banner p {
		font-size: 18px
	}

	.s-box__item-img {
		border-radius: 20px
	}

	.s-info__left p {
		font-size: 24px
	}

	.s-info__left img {
		width: 60px;
		height: 60px
	}

	.s-box__item-top h6 {
		font-size: 18px
	}

	.s-banner__inner {
		background-image: url(../images/icons/bannerb-bgmob.svg)
	}

	.s-intro__inner {
		background-image: url("../images/icons/s-intro-bgmob.svg");
		background-size: 150px 100px;
		background-position: top left
	}

	.s-intro,
	.pst-intro {
		padding: 50px 0 40px 0;
	}

	.s-box--twoo .dark-yellow {
		margin: 15px 0 0 0;
	}
}

@media(max-width: 576px) {
	.s-box__item-bottom {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}

	.s-box__item__price {
		width: 35%;
		font-size: 20px
	}

	.s-box .box-wrap {
		margin: 0;
		max-width: 48%
	}

	.s-box .shop-dark-yellow {
		margin: 15px 0 0 0;
		max-width: 100%;
		width: 100%;
	}

	.s-box__item-img {
		height: 170px
	}

	.s-box .input-wrap {
		width: 135px
	}

	.s-intro__imgs img:nth-child(2) {
		display: none
	}

	.s-box__info {
		bottom: 100px
	}
}




/*Дрова на зиму 2024*/
.bw-blk1 {
	padding: 150px 0 80px;
}

.key-bw {
	/*background-image: url(/wp-content/uploads/2024/11/bw-key-bg-1.svg), url(/wp-content/uploads/2024/11/bw-key-bg-2-1.svg);*/
	/*background-size: 115%, 40%;*/
	/*background-position: 12% -110%, 150% 270%;*/
	background-image: url(/wp-content/uploads/2024/11/bw-key-bg-3.svg);
	background-size: 100%;
	background-position: 100% 100%;
	background-repeat: no-repeat;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	column-gap: 60px;
	margin: 0 -70px;
	padding: 50px 70px 100px 70px;
	border-radius: 50px;
	color: #fff;
	background-color: #001733;
	border: 1px solid #003575;
}

.key-bw .left {
	width: 60%;
}

.key-bw .right {
	width: 40%;
}

.key-bw .right img {
	width: 100%;
}

.key-bw h1 {
	font-size: 55px;
	font-weight: 600;
	margin: 0 0 20px 0;
}

.key-bw .info {
	font-size: 18px;
}

.bw-blk2-title {
	font-size: 48px;
	font-weight: 600;
	text-align: center;
	color: #fff;
	margin: 0 0 20px 0;
}

.bw-item {
	padding: 30px 20px 50px 20px;
	background-color: #001733;
	border: 1px solid #003575;
	border-radius: 50px;
	text-align: center;
}

.bw-item .buy {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
}

.bw-item .buy .price {
	font-size: 28px;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 0;
	color: #fff;
}

.bw-item .box-wrap .input-wrap {
	height: 45px;
	width: 120px;
	border-radius: 15px;
}

.bw-item .input-wrap input {
	font-family: 'ZonaPro';
	font-size: 21px;
}

.bw-item .dark-yellow {
	display: block;
	width: 100%;
	max-width: 100%;
	margin-top: 20px;
	cursor: pointer;
	font-weight: 700;
}


.bw-blk3 {
	margin: 50px 0 0 0;
}

.bw-blk3 .title {
	font-size: 36px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	background-color: #003575;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 50px;
	padding: 10px;
}

.bw-blk3 .img-box img {
	width: 100%;
}

.bw-blk4 {
	margin: 75px 0 150px;
	color: #fff;
}

.bw-blk4 ul {
	padding: 0;
	margin: 0 0 0 1em;
}

.bw-blk4 .dark-yellow {
	display: block;
	text-align: center;
	width: 250px;
}

.bw-blk4 .dark-white {
	width: 200px;
	text-align: center;
}

.bw-blk4 .buttons {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	column-gap: 20px;
}

.bw-blk5 {
	margin-bottom: 50px;
}

.buy-wood .bw-share {
	background-color: #003575;
	background-image: url(/wp-content/uploads/2023/12/dream-share-bg.svg);
	background-position: 100% 100%;
	background-repeat: no-repeat;
	background-size: 20%;
	padding: 80px 0 0 0;
}

.buy-wood .bw-share h6 {
	font-family: 'ZonaPro';
	color: #fff;
	font-size: 50px;
	font-weight: 600;
	text-transform: none;
}

.bw-share ul li a {
	height: 60px;
	padding: 10px 20px 10px 20px;
	border-radius: 10px;
	background-color: #FFC301;
	color: #000;
	font-family: 'ZonaPro';
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.15;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.bw-share ul li a:hover {
	background-color: #001733;
	color: #fff;
	transition: all .5s;
}

.bw-share ul li a:hover::after {
	background-image: url(/wp-content/uploads/2023/11/arrow-3svg.svg);
}

.bw-share ul li a::after {
	background-image: url(/wp-content/uploads/2023/07/share-arrow.svg);
	right: 20px;
}





.bw-zbir {
	margin-bottom: 50px;
}

.bw-zbir-inner {
	background-image: url(/wp-content/uploads/2024/11/bw-zbir-bg.svg);
	background-size: 100%;
	background-position: 100% 4%;
	background-repeat: no-repeat;
	background-color: #003575;
	border-radius: 50px;
	padding: 30px 50px;
	color: #fff;
}

.bw-zbir-inner .title {
	font-size: 48px;
	line-height: 1.3;
	margin-bottom: 20px;
	max-width: 90%;
}

.bw-zbir-inner .info {
	margin-bottom: 50px;
	max-width: 90%;
}

.bw-zbir-inner .dark-yellow {
	display: block;
	text-align: center;
	font-weight: 700;
}

.bw-zbir-inner .row:last-child {
	margin-top: 50px;
}

.bw-zbir-inner .row:last-child .title {
	max-width: 100%;
	margin-left: 30px;
}

.bw-zbir-inner .row:last-child .info {
	max-width: 100%;
	margin-left: 30px;
}

.bw-zbir-inner .row:last-child .dark-yellow {
	margin-left: 30px;
}


@media (max-width: 1200px) {
	.key-bw h1 {
		font-size: 42px;
	}

	.key-bw .info {
		font-size: 16px;
	}

	.bw-blk3 .title {
		font-size: 36px;
	}

	.buy-wood .bw-share h6 {
		font-size: 42px;
	}

	.bw-zbir-inner .title {
		font-size: 36px;
	}

	.bw-blk2-title {
		font-size: 36px;
	}
}

@media (max-width: 992px) {
	.key-bw h1 {
		font-size: 36px;
	}

	.bw-blk3 .title {
		font-size: 28px;
		column-gap: 20px;
	}

	.bw-blk3 .title img {
		width: 50px;
	}

	.buy-wood .bw-share h6 {
		font-size: 28px;
		text-align: center;
	}

	.bw-zbir-inner .title {
		font-size: 26px;
	}

	.bw-zbir-inner .info {
		font-size: 14px;
	}

	.bw-blk2-title {
		font-size: 28px;
	}
}

@media screen and (max-width: 767px) {
	.vlnt-steps__item {
		margin: 0 0 10px 0;
	}

	.bw-blk1 {
		padding: 100px 0 50px;
	}

	.vlnt-steps__text {
		font-size: 16px;
	}

	.vlnt-steps__list {
		margin: 0 0 0 -15px;
	}

	.key-bw {
		flex-direction: column;
		margin: 0 -20px;
		padding: 30px 20px 50px 20px;
		background-position: 95% 110%;
		background-size: 160%, 40%;
	}

	.key-bw .left {
		width: 100%;
	}

	.key-bw .right {
		width: 100%;
	}

	.key-bw h1 {
		font-size: 32px;
	}

	.key-bw .info {
		font-size: 16px;
	}

	.buy-wood .bw-share h6 {
		font-size: 24px;
	}

	.bw-blk3 {
		margin: 50px 0 50px 0;
	}

	.bw-blk3 .title {
		font-size: 28px;
		padding: 20px;
	}

	.buy-wood .bw-share {
		padding: 50px 0 50px 0;
	}

	.buy-wood .bw-share h6 {
		text-align: left;
	}

	.bw-zbir-inner {
		padding: 40px 20px;
		background-size: 100%;
		background-position: 100% 108%;
	}

	.bw-zbir-inner .title {
		font-size: 28px;
		margin-left: 0;
	}

	.bw-zbir-inner .row:last-child .title {
		margin-left: 0;
	}

	.bw-zbir-inner .row:last-child .info {
		margin-left: 0;
	}

	.bw-zbir-inner .row:last-child .dark-yellow {
		margin-left: 0;
	}

	.bw-zbir-inner .row-2 .col-md-5:first-child {
		order: 2;
	}

	.bw-zbir-inner .row-2 .col-md-7:last-child {
		order: 1;
	}

	.bw-zbir-inner .dark-yellow {
		margin-bottom: 50px;
	}

	.bw-blk4 .dark-yellow {
		margin-bottom: 30px;
	}

	.bw-blk4 {
		margin: 50px 0 50px;
	}

	.bw-blk3 .title img {
		display: none;
	}

	.bw-blk4 .buttons {
		flex-direction: column;
		margin-bottom: 40px;
	}

	.bw-blk4 .buttons a {
		width: 100%;
		max-width: 100%;
	}
}



/*Premia 2024 2*/
.premia24-alt-blk1 {
	padding: 130px 0 0 0;
	color: #fff;
}

.premia24-alt-blk1 h1 {
	font-size: 55px;
	text-align: center;
	text-transform: uppercase;
	color: #FFC301;
	font-weight: 600;
	margin-top: 50px;
}

.premia24-alt-blk1 .y-btn .y-btn-i {
	background-color: #FFC301;
	color: #fff;
	color: #1F140F;
}

.premia24-alt-blk1 .y-btn {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

.white {
	color: #fff;
}

.premia24-alt-blk1 img {
	width: 100%;
}

.img-d {
	margin: -150px 0 0 0;
	position: relative;
	z-index: -1;
}

.premia24-alt-blk1 .h1-subtitle {
	font-size: 20px;
	line-height: 1.5;
	font-weight: 400;
	text-align: center;
}

.img-d {
	display: block;
}

.img-m {
	display: none;
}



@media (max-width: 767px) {
	.premia24-alt-blk1 {
		padding: 100px 0 0 0;
	}

	.img-d {
		display: none;
	}

	.img-m {
		display: block;
	}

	.premia24-alt-blk1 h1 {
		font-size: 26px;
		margin-top: 0;
	}

	.premia24-blk2 .row .col-md-6:first-child {
		order: 2;
	}

	.premia24-blk2 .row .col-md-6:last-child {
		order: 1;
	}

	.premia24-blk2 p {
		font-size: 16px;
	}

	.premia24-blk3 .large-text {
		margin-bottom: 28px;
	}
}


/*Halloween*/
.halloween {
	padding: 100px 0 100px 0;
}

.hallo-1-bg {
	background-image: url(/wp-content/uploads/2024/10/halloween-bg-left.svg), url(/wp-content/uploads/2024/10/halloween-bg-right.svg);
	background-position: 0% 2%, 100% 0%;
	background-repeat: no-repeat;
	animation: backgroundMove 3s ease-in-out infinite;
}

@keyframes backgroundMove {
	0% {
		background-position: 0% 2%, 100% 0%;
	}

	50% {
		background-position: 0% 0%, 100% 4%;
	}

	100% {
		background-position: 0% 2%, 100% 0%;
	}
}

.hallo-key {
	background-size: contain;
	background-position: bottom center;
	background-repeat: no-repeat;
	padding-bottom: 60px;
	padding-top: 50px;
}

.hallo-1 .title {
	margin-bottom: 230px;
}

.hallo-1 .title h1 {
	color: #FF6926;
	font-size: 90px;
	font-weight: 900;
	text-align: center;
	line-height: 1.1;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 20px;
}

.hallo-1 .subtitle {
	color: #fff;
	text-align: center;
}

.dark-orange {
	background-color: #FF6926;
	border: 1px solid #FF6926;
	border-radius: 20px;
	padding: 15px 40px;
	color: #fff;
	font-size: 18px;
	font-weight: 800;
	max-width: 300px;
	white-space: nowrap;
	transition: all .5s;
}


.hallo-key .dark-orange {
	display: block;
	text-align: center;
	margin: 0 auto;
}


.hallo-2 {
	padding: 100px 0 0 0;
}

.hallo-buy {
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.hallo-buy .vet-btn {
	margin-left: 15px;
}

.hallo-buy .vet-btn .vet-btn-inner {
	background-color: #FF6926;
	border: 1px solid #FF6926;
	color: #fff;
	font-weight: 800;
	text-align: center;
	padding: 15px 30px;
	border-radius: 10px;
}

.hallo-buy .vet-btn .vet-btn-inner:hover {
	background-color: #ba3900;
	transition: all .5s;
}

.hallo-buy .vet-buy .price {
	min-width: 160px;
}

.hallo-2 .info-text {
	color: #fff;
}

.hallo-2 .info-text strong {
	font-size: 22px;
}

.hallo-2 .image-box {
	text-align: right;
	position: relative;
}

.hallo-2 .image-box img {
	margin-bottom: 50px;
}

.hallo-2 #animated-svg {
	position: absolute;
	z-index: 99;
	right: 0;
	bottom: 0;
	width: 100%;
}

#animated-svg .melon-2-active {
	animation: moveLeftRight 0.2s infinite alternate;
}

@keyframes moveLeftRight {
	0% {
		transform: translateX(-10px);
	}

	100% {
		transform: translateX(10px);
	}
}

#animated-svg .melon-3 {
	animation: animateMelon-3 1s infinite alternate;
	animation-delay: 0s;
}

@keyframes animateMelon-3 {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-10px);
	}
}

#animated-svg .melon-4 {
	animation: animateMelon-4 1s infinite alternate;
	animation-delay: 1s;
}

@keyframes animateMelon-4 {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-15px);
	}
}

#animated-svg .melon-5 {
	animation: animateMelon-5 1s infinite alternate;
	animation-delay: 2s;
}

@keyframes animateMelon-5 {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-10px);
	}
}



.hallo-3 {
	padding: 100px 0 0 0;
}

.hallo-3 .info-text {
	color: #fff;
}

.hallo-3 .info-text strong {
	font-size: 22px;
}

.hallo-4 {
	padding: 100px 0 0 0;
}

.hallo-4 .title {
	color: #fff;
	font-size: 48px;
	text-align: center;
	margin-bottom: 0;
}

.hallo-5 {
	padding: 50px 0 0 0;
}

.hallo-5 .img-box img {
	width: 100%;
}



.hallo-share {
	padding: 100px 0 0 0;
}

.hallo-share .title {
	color: #fff;
	font-size: 45px;
	font-weight: 900;
	text-align: center;
}

.hallo-share .dark-orange {
	width: 100%;
	max-width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	border-radius: 10px;
}







@media (max-width: 1199px) {
	.hallo-1 .title h1 {
		font-size: 70px;
	}

	.hallo-1-bg {
		background-size: 30% 30%;
		background-position: -10% 0%, 110% 0%;
	}

	@keyframes backgroundMove {
		0% {
			background-position: -10% 2%, 110% 0%;
		}

		50% {
			background-position: -10% 0%, 110% 4%;
		}

		100% {
			background-position: -10% 2%, 110% 0%;
		}
	}

	.hallo-1 .title {
		margin-bottom: 150px;
	}

	.hallo-4 .title {
		font-size: 36px;
	}

	.hallo-buy .vet-buy .price {
		min-width: 130px;
	}

	.hallo-buy .vet-btn .vet-btn-inner {
		padding: 15px;
	}

	.hallo-buy .vet-buy {
		margin-bottom: 0;
	}

	.hallo-share .title {
		font-size: 42px;
	}

	.hallo-share .dark-orange {
		font-size: 16px;
	}
}

@media (max-width: 991px) {
	.hum-progects__item {
		width: calc(100% - 20px);
	}

	.hum-beneficiaries__bot {
		font-size: 18px;
	}

	.hum-verification__top,
	.hum-verification__inner {
		flex-direction: column;
		margin: 0;
	}

	.hum-verification__col,
	.hum-verification__top-col {
		width: 100%;
		margin: 0 0 15px 0;
	}

	.hum-faq__list li {
		width: calc(100% - 20px);
	}



	.halloween {
		padding: 70px 0 50px 0;
	}

	.hallo-1 .title h1 {
		font-size: 50px;
	}

	.hallo-1 .title {
		margin-bottom: 100px;
	}

	.hallo-key {
		padding-bottom: 30px;
	}

	.hallo-2 .info-text strong {
		font-size: 18px;
	}

	.hallo-3 .info-text strong {
		font-size: 18px;
	}

	.hallo-buy {
		align-items: flex-start;
		justify-content: flex-start;
		flex-direction: column;
	}

	.hallo-buy .vet-btn {
		margin-left: 0px;
		margin-top: 10px;
	}

	.hallo-buy .vet-buy {
		width: 100%;
	}

	.hallo-share .title {
		font-size: 36px;
	}

	.hallo-share .dark-orange {
		font-size: 14px;
	}
}

@media (max-width: 767px) {
	.hum-beneficiaries__item {
		width: calc(100% - 20px) !important;
	}

	.hum-beneficiaries__item::before {
		font-size: 62px;
	}

	.hum-beneficiaries__item {
		padding: 95px 20px 20px 20px;
	}

	.hum-verification__item {
		width: calc(100% - 20px) !important;
	}

	.hum-verification__item::after {
		display: none;
	}

	.hum-verification__item {
		border: none !important;
	}

	.hum-verification__item-inner {
		max-width: 100%;
		padding: 70px 0;
	}

	.hum-verification__step-sticker {
		top: -10px;
		width: 75px;
		height: 75px;
	}

	.hum-verification__bot ul {
		column-count: 1;
	}

	.hum-verification__bot-title {
		flex-direction: column;
		align-items: flex-start;
		line-height: 120%;
	}

	.hum-verification__bot-title span {
		margin: 0 0 15px 0;
		font-size: 18px;
	}

	.hum-faq {
		padding: 0 0 100px;
	}

	.hum-faq__title {
		font-size: 20px;
	}

	.hum-faq__list li {
		padding: 80px 20px 20px 20px;
	}

	.hum-verification__bot {
		padding: 40px 20px 25px 20px;
		background-color: #fff;
		border-radius: 30px;
	}

	.hum-faq__list li::before {
		font-size: 50px;
		left: 13px;
		top: 15px;
		transform: translateY(0);
	}

	.hum-faq__content {
		padding: 0 20px 30px 20px;
	}

	.hum-faq__title {
		padding: 20px 20px;
	}

	.hum-verification__item-title {
		font-size: 22px;
	}

	.hum-verification__bot li {
		font-size: 16px;
	}

	.hallo-1 .title h1 {
		font-size: 33px;
	}

	.hallo-key {
		padding-top: 0px;
	}

	.hallo-1-bg {
		background-size: 32% 18%;
		background-position: -10% 0%, 110% 0%;
	}

	@keyframes backgroundMove {
		0% {
			background-position: -10% 2%, 110% 0%;
		}

		50% {
			background-position: -10% 0%, 110% 4%;
		}

		100% {
			background-position: -10% 2%, 110% 0%;
		}
	}

	.hallo-key {
		background-size: 200%;
	}

	.hallo-1 .title {
		padding-top: 10px;
	}

	#animated-svg {
		width: 100%;
	}

	.hallo-2 {
		padding: 50px 0 0 0;
	}

	.hallo-3 {
		padding: 20px 0 0 0;
	}

	.hallo-3 .img-box img {
		width: 100%;
		margin-bottom: 30px;
	}

	.hallo-4 {
		padding: 50px 0 0 0;
	}

	.hallo-4 .title {
		font-size: 24px;
	}

	.hallo-5 {
		padding: 50px 0 0 0;
	}

	.hallo-buy {
		margin-bottom: 30px;
	}

	.hallo-3 .row .col-md-5 {
		order: 2;
	}

	.hallo-3 .row .col-md-7 {
		order: 1;
	}

	.hallo-share .title {
		font-size: 18px;
	}

	.hallo-share .dark-orange {
		font-size: 16px;
	}
}

/*Premia share*/
.premia-share {
	padding: 0;
	margin-bottom: 100px;
}

.premia-share .dark-orange {
	background-color: #caa133;
	border: 1px solid #caa133;
}



.site-cta .dark-yellow {
	padding: 15px 30px;
}

.bounce-hor {
	margin-left: 0px;
	animation-name: bounce-2;
	animation-timing-function: ease;
	animation-duration: 2s;
	animation-iteration-count: infinite;
}

@keyframes bounce-2 {
	0% {
		margin-left: 0px;
	}

	50% {
		margin-left: 10px;
	}

	100% {
		margin-left: 0px;
	}
}



@media (max-width: 767px) {
	.hum-verification__item:nth-child(4) {
		order: 6;
	}

	.site-cta-btn-box {
		display: flex;
		flex-direction: column;
	}

	.site-cta-btn-box .bounce-hor {
		margin-bottom: 10px;
	}

	.site-cta-btn-box .site-cta {
		width: 100%;
		display: flex;
		margin-left: 0 !important;
		margin-top: 0 !important;
	}

	.site-cta-btn-box .site-cta a:before {
		background: none;
	}

	.site-cta-btn-box .site-cta a {
		width: 100%;
		text-align: center;
	}
}


.hf-box-btn-desc {
	text-align: center;
	margin-bottom: 0;
	margin-top: 5px;
	font-weight: 600;
}


.nh-about .info p:last-child {
	margin-bottom: 20px;
}

.nh-about .info a {
	display: block;
	text-align: center;
}

.norm-blk-3 {
	color: #fff;
	margin: 50px 0;
	font-size: 16px;
}

.zak-item-1 {
	border: 1px solid #003575;
	background-color: #003575;
	border-radius: 70px;
	padding: 70px 20px;
	text-align: center;
}

.zak-item-1 .number {
	font-size: 55px;
	margin-bottom: 25px;
	font-weight: 800;
	line-height: 1;
}

.zak-item-2 {
	border: 1px solid #003575;
	background-color: #001733;
	border-radius: 70px;
	padding: 70px 20px;
	text-align: center;
	margin-top: 50px;
}

.zak-item-2 .number {
	font-size: 55px;
	margin-bottom: 25px;
	font-weight: 800;
	line-height: 1;
}

.zak-item-3 .img{
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 370px;
	width: 100%;
	border-radius: 120px;
}



.zak-item-4 {
	border: 1px solid #003575;
	background-color: #003575;
	border-radius: 70px;
	padding: 70px 20px;
	text-align: center;
	margin-top: 30px;
}

.zak-item-4 .number {
	font-size: 55px;
	margin-bottom: 25px;
	font-weight: 800;
	line-height: 1;
}

.zak-item-5 {
	border: 1px solid #003575;
	background-color: #001733;
	border-radius: 70px;
	padding: 70px 20px;
	text-align: center;
}

.zak-item-5 .number {
	font-size: 55px;
	margin-bottom: 25px;
	font-weight: 800;
	line-height: 1;
}

.zak-item-6 .img{
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 250px;
	width: 100%;
	border-radius: 120px;
	margin-top: 30px;
}

@media (max-width: 767px) {
	.zak-item-1 {
		padding: 30px 20px;
		margin-bottom: 20px;
	}

	.zak-item-2 {
		padding: 30px 20px;
		margin-bottom: 20px;
		margin-top: 0;
	}

	.zak-item-3 .img{
		background-position: 50% 30%;
		min-height: 200px;
		margin-bottom: 20px;
	}

	.zak-item-4 {
		padding: 30px 20px;
		margin-bottom: 20px;
		margin-top: 0;
	}

	.zak-item-5 {
		padding: 30px 20px;
		margin-bottom: 20px;
		margin-top: 0;
	}

	.zak-item-6 .img{
		background-position: 50% 30%;
		min-height: 200px;
		margin-bottom: 20px;
		margin-top: 0;
	}
}

.norm-blk-1 .find-cover-btns {
	max-width: 600px;
}

.norm-blk-1 .find-cover-btns .y-btn a {
	font-size: 18px;
}

.norm-blk-1 .find-cover-btns .y-btn-i {
	padding: 15px 20px;
}

.norm-blk-4 {
	color: #fff;
	margin: 50px 0 100px 0;
}

.norm-blk-4 h2 {
	font-size: 48px;
	font-weight: 600;
	margin-bottom: 50px;
}

.norm-blk-4 .target-item {
	padding: 10px 20px;
	border: 1px solid #003575;
	border-radius: 20px;
	margin-bottom: 20px;
	background-color: #001733;
}

.norm-blk-4 .target-item .number {
	color: var(--yellow);
	font-weight: 400;
	font-size: 55px;
	margin-bottom: 50px;
}

.norm-blk-4 .target-item .text {
	font-size: 16px;
	min-height: 120px;
}

.norm-blk-4 .centred-btn {
	text-align: center;
	margin-top: 30px;
}







.adv-blk-6.norm-blk-6 {
	padding: 50px 0;
}

.norm-se-news {
	padding: 100px 0 50px 0;
}

.acc-content-item .info-inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.acc-content-item .info-inner .plus {
	width: 30px;
	min-width: 30px;
	margin-top: 5px;
	transition: transform 0.3s ease;
}

.rotated {
	transform: rotate(45deg);
}

.accin-content {
	display: none;
}

.accin {
	width: 100%;
}

.accin-header {
	cursor: pointer;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

@media (min-width: 768px) and (max-width: 991px) {
	.norm-blk-1 .key-v1-box .subtitle {
		max-width: 100%;
		margin-bottom: 10px;
	}

	.norm-blk-1 .key-v1-box h1 {
		font-size: 45px !important;
		width: 100% !important;
	}

	.norm-blk-1 .find-cover-btns {
		max-width: 100%;
		flex-direction: row;
		column-gap: 10px;
	}

	.norm-blk-1 .key-v1-box .find-cover-btns .y-btn-b {
		margin-bottom: 10px;
	}

	.norm-blk-1 .key-v1-box .find-cover-btns {
		margin-bottom: 560px;
	}

	.norm-blk-1 .key-v1-box {
		background-size: contain;
		background-position: 100% 100%;
	}
}

@media (max-width: 767px) {
	.norm-blk-1 .key-v1-box .subtitle {
		margin-bottom: 20px;
	}

	.norm-blk-1 .key-v1-box .find-cover-btns .y-btn-b {
		margin-bottom: 250px;
	}
}











.menu--three .menu__left ul {
	width: 50% !important;
}

@media screen and (max-width: 767px) {
	.menu--three .menu__left ul {
		width: 100% !important;
	}
}


.sec-cont {
	padding: 150px 0 0 0;
	color: #fff;
	background-image: url("/wp-content/uploads/2024/10/contact-bg-1.svg"), url("/wp-content/uploads/2024/10/contact-bg-2.svg");
	background-position: 5% 150px, 95% 100%;
	background-size: 15%, 15%;
	background-repeat: no-repeat;
}

.sec-cont h1 {
	font-size: 55px;
	text-align: center;
	font-weight: 600;
}

.sec-cont .subtitle {
	font-size: 20px;
	text-align: center;
}

.sec-cont .cont-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
}

.sec-cont .cont-item {
	max-width: 250px;
	background-color: #001733;
	border: 1px solid #003575;
	border-radius: 20px;
	padding: 20px;
	width: 30%;
	margin: 10px;
	cursor: pointer;
	transition: all .5s;
}

.sec-cont .cont-item:hover {
	background-color: #003575;
	transition: all .5s;
}

.sec-cont .cont-item .img-box {
	text-align: right;
}

.sec-cont .cont-item .img-box img {
	width: 20px;
}

.sec-cont .cont-item p {
	font-weight: 800;
	font-size: 16px;
	margin: 10px 0 0 0;
	min-height: 60px;
}

.sec-cont-soc {
	text-align: center;
	padding: 90px 0;
	background-image: url("/wp-content/uploads/2024/10/contact-elipse-bg.svg");
	background-size: auto;
	background-position: bottom center;
	background-repeat: no-repeat;
	color: #fff;
	margin-top: 50px;
}

.sec-cont-soc .title {
	font-size: 45px;
	text-align: center;
	font-weight: 600;
	margin-bottom: 30px;
}

.sec-cont-soc .soc {
	justify-content: center;
	margin-bottom: 80px;
}

.sec-cont-soc .soc__item {
	width: 70px;
	height: 70px;
}

.sec-cont-soc .soc__item img {
	height: 30px;
	max-width: 30px;
}

.soc__item {
	transition: all .5s;
}

.soc__item:hover {
	background-color: var(--yellow);
	transition: all .5s;
}

.sec-cont-soc .btn {
	padding: 20px 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 20px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: 60px;
	color: #FFF;
	font-size: 18px;
	font-weight: 800;
	line-height: 120%;
	cursor: pointer;
	outline: none;
	border: none;
	-webkit-transition: linear .2s;
	-o-transition: linear .2s;
	transition: linear .2s;
}

.sec-cont-soc .btn--yellow {
	color: #1F140F;
	background-color: #FFC301;
	margin: 0 auto;
	min-width: 350px;
	justify-content: space-between;
}

.sec-cont-form {
	padding: 100px 0 50px 0;
	color: #fff;
	display: none;
}

.item7,
.item8 {
	display: none;
}

.sec-cont-form .title {
	font-size: 36px;
	text-align: center;
	font-weight: 600;
	margin-bottom: 30px;
}

.sec-cont-form .vac-all input {
	width: 100%;
	border-radius: 10px;
	height: 50px;
	font-size: 16px;
}

.sec-cont-form .vac-all textarea {
	border-radius: 10px;
	height: 100px;
	font-size: 16px;
}

.sec-cont-form .vac-all input[type="submit"] {
	background: var(--blue);
	color: #fff;
	border: 1px solid var(--blue);
	font-size: 16px !important;
	transition: all .5s;
	padding: 10px;
	border-radius: 5px;
	margin-top: 20px;
}

.sec-cont-form .wpcf7-list-item {
	line-height: 1.3;
	margin: 0 0 0 23px;
}

.sec-cont-form .wpcf7-list-item-label {
	font-size: 13px;
}

.sec-cont-form .vac-all input[type=checkbox] {
	margin-left: -23px;
	width: 20px;
	height: auto;
	margin-bottom: 0;
}

.sec-cont-form .vac-all select {
	border-radius: 10px;
	height: 50px;
	font-size: 16px;
	padding: 10px 20px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: #fff url('/wp-content/uploads/2024/10/select-arr.svg') no-repeat calc(100% - 20px) center;
	background-size: 12px;
	/* Розмір стрілки */
	width: 100%;
	/* Ширина селекта */
}


.sec-cont-form .vac-all label {
	width: 100%;
}


@media (max-width: 1199px) {
	.sec-cont .subtitle {
		font-size: 18px;
	}

	.sec-cont .cont-item p {
		font-size: 20px;
	}

	.sec-cont h1 {
		font-size: 45px;
	}

	.sec-cont-soc .title,
	.sec-cont-form .title {
		font-size: 36px;
	}
}

@media (max-width: 991px) {
	.sec-cont .subtitle {
		font-size: 16px;
	}

	.sec-cont .cont-item {
		padding: 12px;
	}

	.sec-cont .cont-item p {
		font-size: 16px;
	}

	.sec-cont h1 {
		font-size: 36px;
	}

	.sec-cont-soc .title,
	.sec-cont-form .title {
		font-size: 32px;
	}

	.sec-cont-soc .soc__item {
		width: 45px;
		height: 45px;
	}

	.sec-cont-soc .soc {
		justify-content: center;
		justify-content: center;
		margin-bottom: 40px;
	}

	.sec-cont-soc {
		background-size: 150%;
	}
}

@media (max-width: 767px) {
	.sec-cont {
		padding: 100px 0;
	}

	.sec-cont .cont-items {
		flex-direction: column;
	}

	.sec-cont .cont-item {
		width: 100%;
		max-width: 100%;
		margin: 10px 0;
		] padding: 20px;
	}

	.sec-cont .cont-item p {
		font-size: 20px;
	}

	.sec-cont-soc {
		background-size: 300%;
	}

	.sec-cont {
		background-position: 5% 60px, 95% 100%;
		background-size: 20%, 35%;
	}
}

/*MKS Start*/
.just-form {
	padding: 130px 0 100px 0;
	color: #fff;
}

.just-form h1 {
	text-align: center;
	font-weight: 600;
	margin-bottom: 30px;
	font-size: 55px;
}

.just-form .vac-all input[type=checkbox] {
	width: 20px;
	height: auto;
	margin-bottom: 0;
	padding: 0;
	margin-left: -15px;
}

@media (max-width: 991px) {
	.just-form {
		padding: 80px 0 70px 0;
	}

	.just-form h1 {
		font-size: 28px;
	}
}


.mks-blk1 {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding-top: 130px;
	color: #fff;
}

.mks-blk1 .mks-kv {
	margin: 250px 0 100px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.mks-blk1 h1 {
	font-size: 60px;
	text-transform: uppercase;
	max-width: 800px;
	margin: 0;
}

.brd-arr-btn {
	padding: 25px;
	border: 1px solid #fff;
	border-radius: 50px;
	font-size: 28px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: space-between;
	line-height: 1;
}

.brd-arr-btn img {
	margin-left: 30px;
	width: 50px;
}

.mks-blk2 {
	padding: 70px 0;
	color: #fff;
}

.white-scroll-box {
	background-color: #fff;
	color: #00151E;
	padding: 60px 50px;
	height: 80vh;
	overflow-y: scroll;
	border-radius: 20px;
	margin-bottom: 70px;
}

.white-scroll-box::-webkit-scrollbar {
	width: 6px;
}

.white-scroll-box::-webkit-scrollbar-thumb {
	background-color: #00151E;
	border-radius: 5px;
}

.white-scroll-box::-webkit-scrollbar-track {
	background-color: transparent;
	border-radius: 5px;
	margin-bottom: 30px;
}

.white-scroll-box h3 {
	font-size: 24px;
	text-align: center;
	font-weight: 800;
	margin-bottom: 20px;
}

.mks-blk3 {
	padding: 0 0 70px 0;
	color: #fff;
}

.mks-blk3-inner {
	max-width: 90%;
}

.mks-blk3 .title {
	color: var(--yellow);
	font-size: 50px;
	font-weight: 600;
	margin-bottom: 10px;
}

.mks-blk3 .info {
	margin-bottom: 50px;
}

.mks-blk3 .img-box img {
	border-radius: 20px;
}


@media (max-width: 1399px) {
	.brd-arr-btn {
		font-size: 24px;
	}
}

@media (max-width: 1199px) {
	.mks-blk1 .mks-kv {
		margin: 200px 0 100px;
	}

	.mks-blk1 h1 {
		font-size: 55px;
		max-width: 650px;
	}

	.brd-arr-btn {
		font-size: 21px;
		padding: 20px;
	}

	.brd-arr-btn img {
		margin-left: 20px;
		width: 30px;
	}

	.mks-blk3 .title {
		font-size: 45px;
	}
}

@media (max-width: 991px) {
	.mks-blk1 .mks-kv {
		margin: 150px 0 70px;
	}

	.mks-blk1 h1 {
		font-size: 42px;
		max-width: 480px;
	}

	.brd-arr-btn {
		font-size: 18px;
		padding: 15px;
	}

	.white-scroll-box h3 {
		font-size: 18px;
	}

	.mks-blk3-inner {
		max-width: 100%;
	}

	.mks-blk3 .title {
		font-size: 40px;
	}

	.mks-blk3 .info {
		margin-bottom: 20px;
		font-size: 15px;
	}

	.mks-blk3 .row {
		align-items: center;
	}
}

@media (max-width: 767px) {
	.mks-blk1 .mks-kv {
		margin: 50px 0 70px;
		flex-direction: column;
		align-items: flex-start;
	}

	.mks-blk1 h1 {
		font-size: 30px;
		max-width: 100%;
		margin-bottom: 30px;
	}

	.mks-blk2 {
		padding: 50px 0;
	}

	.white-scroll-box {
		padding: 40px 20px;
		margin-bottom: 50px;
	}

	.mks-blk3 .img-box {
		margin-top: 30px;
	}
}



/*MKS End*/
.graphic__top-info .btn--blue,
.graphic-wrap .btn--blue {
	height: 60px;
	margin-left: 10px;
}

.graphic__top-info .btn--blue:hover,
.graphic-wrap .btn--blue:hover {
	color: #fff !important;
}

@media (max-width: 767px) {

	.graphic__top-info .btn--blue,
	.graphic-wrap .btn--blue {
		height: 50px;
		margin-left: 0;
		margin-top: 10px;
		width: 100%;
		justify-content: center;
	}
}

form.donate-form .button-col button {
	width: 100%;
	height: 40px;
	font-size: 16px;
	padding: 5px;
}

form.donate-form {
	max-width: 450px;
	margin: 30px auto;
}

form.donate-form .amount-data {
	display: block !important;
}

.entry-content .donate-form-1 {
	height: 0;
	overflow: hidden;
	opacity: 0;
	transition: height 0.4s ease, opacity 0.3s ease;
}

.spil5 .swiper-slide {
	text-align: inherit;
	font-size: inherit;
	background: transparent;
	display: inherit;
}

.spil5 .swiper-slide img {
	display: block;
	width: auto;
	height: auto;
	object-fit: inherit;
	border: none;
}

.spil5 .swiper-button-next,
.spil5 .swiper-button-prev {
	color: var(--blue);
}

.spil5 .swiper-slide {
	align-items: flex-start;
}




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

	.spil5-box .col-lg-6 {
		width: 47%;
	}
}

@media (max-width: 992px) {
	.spil5-box .row {
		align-items: center;
		width: 100%;
	}

	.spil5 .sup-swiper .swiper-button-next,
	.spil5 .sup-swiper .swiper-button-prev {
		top: var(--swiper-navigation-top-offset, 10%);
	}
}


/*Advokatsia*/
.adv-blk-1 .key-v1-box h1 {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 50px;
	margin-bottom: 20px;
	width: 55%;
}

.adv-blk-1 .subtitle {
	max-width: 600px;
	margin-bottom: 50px;
}

.acc-construct {
	color: #fff;
}

.acc-construct h2 {
	font-size: 48px;
	font-weight: 600;
	margin-bottom: 50px;
}

.acc {
	width: 100%;
	margin: 0 auto;
}

.acc-item {
	border-bottom: 1px solid #fff;
}

.acc-header {
	cursor: pointer;
	padding: 50px;
}

.acc-header-content .info-box {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.acc-header .number {
	min-width: 20%;
	width: 20%;
	font-size: 90px;
	font-weight: 600;
	line-height: 1;
}

.acc-header .title {
	color: var(--yellow);
	font-size: 32px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.acc-header .plus {
	margin-left: 20px;
	margin-top: 10px;
	transform: rotate(0deg);
	transition: all .5s;
}

.active .acc-header .plus {
	transform: rotate(135deg);
	transition: all .5s;
}

.acc-header .plus img {
	min-width: 32px;
}

.acc-content {
	height: 0;
	overflow: hidden;
	padding: 0 15px;
	transition: height 0.3s ease-out, padding 0.3s ease-out;
}

.acc-item.active .acc-content {
	padding-top: 15px;
	padding-bottom: 15px;
}

.acc-item.active .acc-header {}

.acc-content-item {
	padding: 30px 0;
	border-top: 1px solid #003575;
}

.acc-content-item .title {
	color: var(--yellow);
	font-size: 21px;
	font-weight: 600;
}

.acc-content-item ul {
	margin: 0;
	padding: 0 0 20px 1em;
}

.acc-content-item a {
	color: var(--yellow);
	text-decoration: underline;
}

.gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 10px;
	/* Відстань між фото */
}

.item {
	position: relative;
}

.item1 {
	grid-column: span 2;
	/* Займає два стовпці */
	grid-row: span 2;
	/* Займає два рядки */
}

.item2 {
	grid-column: 3;
	grid-row: 1;
}

.item3 {
	grid-column: 4;
	grid-row: 1;
}

.item4 {
	grid-column: 3;
	grid-row: 2;
}

.item5 {
	grid-column: 4;
	/* Займає два стовпці */
	grid-row: 2;
}

.item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* Зберігає пропорції зображення, заповнюючи блок */
	border-radius: 10px;
}

.adv-blk-4 {
	padding: 100px 0;
	color: #fff;
}

.adv-blk-4 h2 {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 20px;
}

.adv-blk-4 .image-box img {
	max-width: 90%;
	border-radius: 20px;
}

.adv-blk-4 .info {
	font-size: 18px;
	margin-bottom: 30px;
}

.adv-blk-5 {
	padding: 100px 0;
	color: #fff;
}

.adv-blk-5 h2 {
	font-size: 48px;
	font-weight: 600;
	margin-bottom: 20px;
}

.adv-blk-5 .subtitle {
	margin-bottom: 30px;
}

.adv-blk-6 {
	padding: 0 0 100px 0;
	color: #fff;
}

.adv-blk-6 h2 {
	font-size: 48px;
	font-weight: 600;
	margin-bottom: 50px;
}

.acc-cont {
	width: 100%;
	margin: 0 auto;
}

.acc-cont-item {
	padding: 20px 30px;
	border: 1px solid var(--blue);
	border-radius: 20px;
	margin-bottom: 10px;
}

.acc-cont-header {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 26px;
	font-weight: 600;
}

.acc-cont-header .plus {
	margin-left: 20px;
	display: flex;
	transform: rotate(0deg);
	transition: all .5s;
}

.active .acc-cont-header .plus {
	transform: rotate(135deg);
	transition: all .5s;
}

.acc-cont-header .plus img {
	min-width: 20px;
	width: 20px;
}



.acc-cont-content-item {
	padding: 30px 0;
	border-top: 1px solid #003575;
}

.acc-cont-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.acc-cont-header {
	cursor: pointer;
}


.adv-blk-6 .centred-btn {
	margin-top: 50px;
	text-align: center;
}


@media screen and (max-width: 767px) {
	.adv-blk-1 .key-v1-box {
		background-size: 100%;
	}

	.adv-blk-1 .key-v1-box h1 {
		font-size: 28px;
	}

	.adv-blk-1 .subtitle {
		margin-bottom: 210px;
	}

	.acc-construct h2 {
		font-size: 28px;
	}

	.norm-blk-4 h2 {
		font-size: 28px;
	}

	.acc-header {
		padding: 0;
	}

	.acc-header .number {
		font-size: 48px;
	}

	.acc-header .title {
		font-size: 21px;
	}

	.acc-header .plus {
		margin-left: 10px;
		margin-top: 5px;
	}

	.acc-header .plus img {
		min-width: 32px;
		width: 32px;
	}

	.acc-header-content {
		padding: 20px 0;
	}

	.acc-content {
		padding: 0;
	}

	.adv-blk-4 h2 {
		font-size: 21px;
	}

	.adv-blk-4 .image-box img {
		max-width: 100%;
		margin-bottom: 20px;
	}

	.adv-blk-4 .info {
		font-size: 16px;
		margin-bottom: 20px;
	}

	.adv-blk-5 h2 {
		font-size: 28px;
	}

	.adv-blk-5 {
		padding: 50px 0;
	}

	.adv-blk-6 h2 {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.acc-cont-header {
		font-size: 16px;
	}

	.acc-cont-item {
		padding: 15px 20px;
	}

	.acc-cont-content {
		font-size: 14px;
	}

}







/*Home donate button*/
.home-donate-single {
	transition: all .5s;
}

.home-donate-single:hover {
	background-color: #ffc300;
	color: #000;
	transition: all .5s;
}

/*Form report*/
.form-report-thanks {
	padding: 150px 0 50px 0;
}

.form-report-thanks-bg {
	padding: 100px 0;
	background-size: contain;
	background-position: center bottom;
	background-repeat: no-repeat;
}

.fr-box {
	padding: 30px;
	background-color: #fff;
	border-radius: 20px;
}

.fr-box .hf-box-title {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 700;
	color: #001733;
}

.fr-box .hf-anonymous-option label .dnt-public {
	font-size: 9px;
	line-height: 1.3;
	display: block;
	margin-left: 18px;
	margin-top: -20px;
}

.fr-box a {
	text-decoration: underline;
	color: #000;
}

@media (max-width: 767px) {
	.form-report-thanks {
		padding: 100px 0 50px 0;
	}

	.form-report-thanks-bg {
		padding: 0 0 50px 0;
	}

	.fr-box {
		margin-bottom: 150px;
	}
}

/*Thank you after sterilization*/
.g-thanks {
	padding: 150px 0;
	color: #fff;
}

.thn-title {
	font-size: 50px;
	font-weight: 600;
	margin-top: 50px;
	margin-bottom: 20px;
}

.thn-subtitle {
	font-size: 18px;
	margin-bottom: 30px;
}

.thn-img-box img {
	width: 100%;
	text-align: center;
}

.thn-one-col {
	text-align: center;
}

.thn-one-col .thn-title {
	margin: 50px auto 20px;
}

.thn-one-col .thn-subtitle {
	margin: 0 auto 30px;
}

.thn-one-col .thn-img-box {
	margin-top: 50px;
}

.g-thanks .dark-yellow {
	max-width: 400px;
}

.thn-one-col .dark-yellow {
	display: block;
	margin: 50px auto;
}

.thn-two-col .thn-img-box {
	margin-top: 50px;
}

.thn-two-col .dark-yellow {
	display: block;
	margin: 50px 0;
	text-align: center;
}

@media (max-width: 767px) {
	.g-thanks {
		padding: 100px 0;
	}

	.thn-title {
		font-size: 24px;
	}

	.thn-one-col .thn-title {
		margin: 0 auto 20px;
	}

	.thn-subtitle {
		font-size: 16px;
	}

	.thn-two-col .thn-title {
		margin: 0 0 20px 0;
	}

	.thn-two-col .thn-img-box {
		margin-top: 0;
	}
}

/*New forms and thanks*/
.hf-step-2 {
	display: none;
}

.hf-step-2 .hf-box-title {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 700;
	color: #001733;
}

.hf-step-2 .hf-anonymous-option label span {
	font-size: 14px;
}

.hf-step-2 .hf-anonymous-option label .dnt-public {
	font-size: 9px;
	line-height: 1.3;
	display: block;
	margin-left: 18px;
	margin-top: -20px;
}

.hf-step-2 a {
	text-decoration: underline;
	color: #000;
}

.hf-box {
	max-width: 500px;
}

.check-rules-text a {
	text-decoration: underline;
}

.form-title-text {
	margin-bottom: 5px;
	font-size: 14px;
}

.rules-anonymous .check-rules-text {
	font-size: 14px;
}

/*Page How to help*/
#bank-req {}

.dnt-bank {
	background-color: #001733;
	border-radius: 20px;
	border: 1px solid #003575;
	padding: 30px 50px;
	margin-top: 50px;
}

.dnt-bank .bank-list {
	display: flex;
	align-items: center;
	column-gap: 20px;
	cursor: pointer;
	font-weight: 700;
	font-size: 24px;
	padding: 0 0 30px 0;
	border-bottom: 1px solid #fff;
}

.dnt-bank .rec-box {
	border-radius: 5px;
	padding: 20px 0;
	margin-bottom: 20px;
	border: none;
}

.dnt-bank .bank-list .active {
	color: #FFC301;
}

.dnt-form-box {
	background-color: #001733;
	border-radius: 20px;
	border: 1px solid #003575;
	padding: 30px 50px;
}

.credentials {
	padding: 150px 0;
}

.credentials .cred-title {
	text-align: left;
}

.dnt-form-title {
	font-size: 24px;
	margin-bottom: 30px;
	font-weight: 700;
}

.dnt-form-img img {
	width: 100%;
}

.dnt-form-box .hf-container {
	margin-bottom: 30px;
	min-height: auto;
}

.dnt-pay-item {
	background-color: #001733;
	border-radius: 20px;
	border: 1px solid #003575;
	padding: 20px 30px;
	margin-bottom: 20px;
	min-height: 175px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
}

.dnt-arrow {
	width: 100%;
	text-align: right;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.dnt-arrow .arrow-rotate {
	transform: rotate(0deg);
	transition: all .5s;
}

.dnt-pay-item:hover .dnt-arrow .arrow-rotate {
	transform: rotate(45deg);
	transition: all .5s;
}

.dnt-payment-method {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.dnt-payment-method p {
	margin-bottom: 0;
	font-size: 32px;
	font-weight: 700;
}

.dnt-payment-method img {
	width: 38px;
	height: 38px;
	margin-right: 20px;
}

.hf-box-fields .hf-text {
	border: 1px solid var(--blue);
	border-radius: 10px;
	width: 100%;
	height: 50px;
	margin-bottom: 10px;
	padding: 5px 15px;
}

.dnt-form-box .hf-anonymous-option label span {
	font-size: 14px;
}

.dnt-form-box .hf-anonymous-option label .dnt-public {
	font-size: 9px;
	line-height: 1.3;
	display: block;
	margin-left: 18px;
	margin-top: -20px;
}

.dnt-form-box .hf-anonymous-option label .dnt-public a {
	color: #000;
	text-decoration: underline;
}

.dnt-form-box .hf-anonymous-option label {
	margin-bottom: 5px;
	margin-top: 5px;
}

.dnt-form-box .hf-box-btn {
	height: 65px;
	background-color: #FFC301;
	color: #1F140F;
	padding: 20px;
	font-size: 22px;
	transition: all .5s;
}

.dnt-form-box .hf-box-btn:hover {
	background-color: #003575;
	color: #fff;
	transition: all .5s;
}

#copied {
	display: block;
	position: fixed;
	bottom: 0;
	background-color: #003575;
	width: 100%;
	color: #fff;
	padding: 10px 0;
	text-align: center;
}


@media (max-width: 1199px) {
	.dnt-form-title {
		font-size: 24px;
	}

	.dnt-payment-method p {
		font-size: 24px;
	}

	.dnt-payment-method img {
		width: 30px;
		height: 30px;
		margin-right: 15px;
	}

	.dnt-pay-item {
		min-height: 170px;
	}
}

@media (max-width: 991px) {
	.evac-ticket {
		padding: 60px 0 0 0 !important;
	}

	.dnt-form-box .hf-box {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.dnt-form-box .hf-box-btn {
		font-size: 18px;
		height: auto;
	}

	.dnt-form-box {
		padding: 20px 10px;
		margin-bottom: 20px;
	}

	.dnt-form-title {
		font-size: 18px;
	}

	.dnt-form-box .hf-box-titles {
		font-size: 13px;
	}

	.dnt-pay-item {
		min-height: 140px;
	}

	.dnt-bank {
		padding: 20px;
		margin-top: 50px;
	}

	.dnt-bank .bank-list {
		font-size: 16px;
		padding: 0 0 20px 0;
	}
}






/*Anonimus forms*/
.hf-anonymous-option {
	color: #000;
	margin-bottom: 15px;
	margin-top: -5px;
}

.hf-anonymous-option input[type=checkbox]:before {
	top: -3px;
	border: 1px solid #013575;
}


.hf-anonymous-option input[type=checkbox]:checked:after {
	top: 0;
}

.hf-anonymous-option label span {
	padding-left: 15px;
}


/*Global*/
.mobile {
	display: none;
}

.desktop {
	display: flex;
}

@media screen and (max-width: 767px) {
	.mobile {
		display: block;
	}

	.desktop {
		display: none;
	}
}

.supSwiper2 .swiper-slide {
	text-align: left;
	background-color: transparent;
}

/*Start New About Us*/
.au-navigation {
	background-color: #00151E;
	padding: 20px 0;
}

.au-navigation.sticky {
	position: fixed;
	top: 130px;
	width: 100%;
	z-index: 1000;
}

.au-years {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	color: #fff;
	font-size: 14px;
	position: relative;
}

.au-years-line {
	width: 100%;
	height: 1px;
	background-color: #FFC301;
	position: absolute;
	top: 6px;
	z-index: 1;
}

.au-year-item {
	z-index: 9;
	cursor: pointer;
}

.au-year-icon {
	width: 20px;
	height: 12px;
	border-radius: 20px;
	border: 1px solid #FFC301;
	margin-bottom: 10px;
	background-color: #00151E;
}

.active .au-year-icon {
	background-color: #FFC301;
}

@media screen and (max-width: 767px) {
	.au-navigation.sticky {
		top: 50px;
	}

	.au-years {
		overflow-x: scroll;
	}

	.au-years-line {
		width: calc(100% + 120px);
	}

	.au-year-item {
		margin-right: 20px;
	}
}





.au-blk20 {
	padding-top: 50px;
	color: #fff;
	margin-bottom: 100px;
}

.au-blk20-after-text {
	text-align: center;
	text-transform: uppercase;
	font-size: 32px;
	font-weight: 600;
}

.au-blk20 a {
	text-decoration: underline;
}

.au-blk19,
.au-blk21 {
	padding-top: 100px;
	color: #fff;
}

.au-blk21 .row {
	padding: 35px 0;
}

.au-blk19-img img {
	border-radius: 10px;
}

.au-blk18 a {
	text-decoration: underline;
}

.au-blk18 {
	padding-top: 65px;
	color: #fff;
}

.au-blk18-img img {
	border-radius: 10px;
	max-width: 90%;
}

.au-blk18 a {
	text-decoration: underline;
}

.au-blk17 {
	padding-top: 100px;
	color: #fff;
}

.au-swiper-5 .swiper-slide {
	border-radius: 10px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.au-swiper-5 .swiper-button-next:after {
	content: '';
}

.au-swiper-5 .swiper-button-prev:after {
	content: '';
}

.au-swiper-5 .au-btn-next {
	width: 50px;
	height: 50px;
	background-color: #003575;
	border-radius: 25px;
}

.au-swiper-5 .au-btn-prev {
	width: 50px;
	height: 50px;
	background-color: #003575;
	border-radius: 25px;
}

.au-blk16 {
	padding-top: 100px;
	color: #fff;
}

.au-blk16 .au-year {
	text-align: center;
}

.au-blk16 .au-year-title {
	text-align: center;
}

.au-blk15 {
	padding-top: 100px;
	color: #fff;
}

.au-blk15 a {
	text-decoration: underline;
}

.au-blk15-text-bold {
	font-size: 21px;
	font-weight: 600;
	text-align: right;
	margin-top: 70px;
}

.au-blk14 {
	margin-top: 120px;
	color: #fff;
}

.au-blk14-img img {
	border-radius: 10px;
}

.au-blk14 p {
	margin-left: 20px;
}

.au-blk13 {
	padding-top: 65px;
	color: #fff;
}

.au-blk13-img img {
	width: 100%;
}

.au-blk13 {
	position: relative;
	height: 700px;
	/* або будь-яка інша висота, яку ви хочете для секції */
	overflow: hidden;
}

.parallax {
	height: 100%;
	background-attachment: fixed;
	/* Створює ефект паралаксу */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.au-blk13-img img {
	display: none;
	/* Ховаємо img тег, так як ми використовуємо фон зображення */
}

.au-blk12 {
	padding-top: 100px;
	color: #fff;
}

.au-blk12-img img {
	border-radius: 10px;
}

.au-blk12 .au-year-title {
	font-size: 32px;
}

.au-blk11 {
	margin-top: 70px;
	color: #fff;
}

.au-blk11-img img {
	border-radius: 10px;
}

.au-blk10 {
	margin-top: 65px;
	color: #fff;
}

.au-blk9 {
	padding-top: 100px;
	color: #fff;
	text-align: center;
}

.au-blk9-img img {
	border-radius: 10px;
	margin-bottom: 20px;
}

.au-blk8 {
	padding-top: 100px;
	color: #fff;
}

.au-blk8 .row {
	display: flex;
	align-items: center;
}

.au-blk8-text {
	font-size: 21px;
	font-weight: 600;
}

.au-swiper-3 .swiper-slide {
	height: 350px;
	border-radius: 10px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.au-swiper-3 .swiper-button-next:after {
	content: '';
}

.au-swiper-3 .swiper-button-prev:after {
	content: '';
}

.au-swiper-3 .au-btn-next {
	width: 50px;
	height: 50px;
	background-color: #003575;
	border-radius: 25px;
}

.au-swiper-3 .au-btn-prev {
	width: 50px;
	height: 50px;
	background-color: #003575;
	border-radius: 25px;
}

.au-swiper-3 .au-btn-prev img {
	transform: rotate(180deg);
}

.au-swiper-3 .swiper-pagination-fraction {
	margin-bottom: 20px;
}

.au-blk7 {
	padding-top: 100px;
	color: #fff;
}

.au-blk7-img img {
	border-radius: 10px;
}

.full-carousel {
	margin-top: 100px;
}

.full-carousel .swiper-slide {
	border-radius: 10px;
}

.full-carousel .swiper-slide img {
	border-radius: 10px;
	border: 0;
}

.au-blk6 {
	padding-top: 100px;
	color: #fff;
}

.au-blk6-title {
	font-size: 36px;
	text-align: center;
	margin-bottom: 35px;
	text-transform: uppercase;
}

.au-blk6-text {
	text-align: center;
}

.au-blk5 {
	padding-top: 100px;
	color: #fff;
}

.au-blk4 {
	padding-top: 70px;
	color: #fff;
}

.au-blk4-img img {
	width: 90%;
	border-radius: 10px;
}

.au-blk4-video-box {
	margin-top: 50px;
}

.video__inner {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 400px;
	border-radius: 10px;
	cursor: pointer;
}

.video__inner::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	height: 100px;
	background: url(/wp-content/uploads/2024/07/play.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	z-index: 3;
	transition: linear .3s;
}

.au-blk2 .video__inner {
	height: 300px;
}

.video__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: linear .5s;
	z-index: 2;
}

.video__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video__inner.playing::after,
.video__inner.playing .video__img {
	display: none;
}


.au-blk3 {
	padding-top: 100px;
	color: #fff;
}

.au-year {
	font-size: 100px;
	margin-bottom: 20px;
	font-weight: 600;
	line-height: 1;
}

.au-year-title {
	font-size: 36px;
	margin-bottom: 20px;
	text-transform: uppercase;
	font-weight: 600;
}

.au-blk3-text {
	font-size: 16px;
}

.au-swiper-1 .swiper-slide {
	height: 400px;
	border-radius: 10px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.au-swiper-1 .swiper-button-next:after {
	content: '';
}

.au-swiper-1 .swiper-button-prev:after {
	content: '';
}

.au-swiper-1 .au-btn-next {
	width: 50px;
	height: 50px;
	background-color: #003575;
	border-radius: 25px;
}

.au-swiper-1 .au-btn-prev {
	width: 50px;
	height: 50px;
	background-color: #003575;
	border-radius: 25px;
}

.au-btn-prev img {
	transform: rotate(180deg);
}

.au-swiper-1 .swiper-pagination-fraction {
	margin-bottom: 20px;
}

.au-blk2 {
	padding-top: 100px;
	color: #fff;
}

.au-blk2-title {
	font-size: 28px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 20px;
}

.au-blk2-subtitle {
	font-size: 20px;
	margin-bottom: 20px;
}

.au-blk2-img-text {
	font-size: 22px;
	font-weight: 600;
}

.au-blk2-img-1 {
	height: 200px;
	border-radius: 10px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.au-blk2-img-2 {
	height: 500px;
	width: 95%;
	margin-left: 5%;
	border-radius: 10px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.au-blk1 {
	padding-top: 130px;
	color: #fff;
}

.au-blk1-inner {
	padding: 200px 0;
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
}

.au-blk1 h1 {
	font-size: 100px;
	margin: 0;
}

.au-blk1_subtitle {
	margin-top: 20px;
}

.au-blk1 .nh-btns {
	margin-top: 50px;
}

.au-blk1 .nh-btns a {
	margin-bottom: 10px;
}

.au-blk1 .dark-yellow {
	padding: 15px 40px;
	max-width: 350px;
}



.page-template-about-us-story-tpl section a {
	color: #FFC301;

}

.page-template-about-us-story-tpl section .share-blk-btn a {
	text-decoration: none;
}


@media (min-width: 992px) and (max-width: 1199px) {
	.au-blk1 h1 {
		font-size: 80px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.au-blk1 h1 {
		font-size: 50px;
	}
}

@media screen and (max-width: 767px) {
	.au-blk21 .row {
		padding: 15px 0;
	}

	.au-blk21 .au-swiper-5 {
		margin: 20px 0;
		height: auto;
	}

	.au-blk1 {
		padding-top: 50px;
	}

	.au-blk1 h1 {
		font-size: 40px;
	}

	.au-blk1-inner {
		padding: 60px 0;
	}

	.au-blk2 {
		padding-top: 50px;
	}

	.au-blk2-title {
		font-size: 20px;
	}

	.au-blk2-subtitle {
		font-size: 16px;
	}

	.au-blk2-img-1 {
		margin-bottom: 20px;
	}

	.au-blk2-img-text {
		font-size: 16px;
	}

	.au-blk2-img-2 {
		width: 100%;
		margin-left: 0;
	}

	.au-blk3 {
		padding-top: 50px;
	}

	.au-year {
		font-size: 48px;
	}

	.au-year-title {
		font-size: 24px;
	}

	.au-swiper-1 .swiper-slide {
		height: 250px;
	}

	.video__inner {
		height: 250px;
	}

	.au-blk4-img img {
		width: 100%;
		margin-bottom: 20px;
	}

	.au-blk5 {
		padding-top: 50px;
	}

	.au-blk6 {
		padding-top: 50px;
	}

	.au-blk6-title {
		font-size: 21px;
	}

	.full-carousel {
		margin-top: 50px;
	}

	.au-blk7-img img {
		margin-bottom: 20px;
	}

	.au-blk8 {
		padding-top: 50px;
	}

	.au-swiper-3 .swiper-slide {
		height: 250px;
	}

	.au-blk9 {
		padding-top: 50px;
	}

	.au-blk10 {
		margin-top: 30px;
	}

	.au-blk11 {
		margin-top: 30px;
	}

	.au-blk11-img img {
		margin-bottom: 20px;
	}

	.au-blk12 {
		padding-top: 50px;
	}

	.au-blk12 .au-year-title {
		font-size: 28px;
	}

	.au-blk13 {
		height: 400px;
	}

	.au-blk14 {
		margin-top: 50px;
	}

	.au-blk14-img img {
		margin-bottom: 20px;
	}

	.au-blk14 p {
		margin-left: 0;
	}

	.au-blk15 {
		padding-top: 50px;
	}

	.au-blk15-text-bold {
		font-size: 18px;
		margin-top: 30px;
	}

	.au-blk16 {
		padding-top: 50px;
	}

	.au-blk17 {
		padding-top: 50px;
	}

	.au-swiper-5 .swiper-slide {
		height: 400px;
	}

	.au-blk18 {
		padding-top: 50px;
	}

	.au-blk18-img img {
		max-width: 100%;
		margin-bottom: 20px;
	}

	.au-blk19 {
		padding-top: 50px;
	}

	.au-blk20-after-text {
		font-size: 21px;
	}

	.au-blk20 {
		padding-top: 50px;
		margin-bottom: 50px;
	}
}









/*End New About Us*/

.entry-title-mission {
	font-size: 45px;
	font-weight: 800;
	margin-top: 100px;
}

@media screen and (max-width: 767px) {
	.entry-title-mission {
		font-size: 24px;
	}
}


/*Evacuation ticket*/
.thankyou-ticket {
	color: #fff;
	padding: 200px 0;
}

.thankyou-ticket h1 {
	color: var(--yellow);
	font-size: 28px;
	font-weight: 800;
}

.thankyou-ticket .subtitle {
	font-size: 28px;
	font-weight: 800;
}


.thankyou-ticket .img-box .desctop {
	display: block;
}


.thankyou-ticket .img-box .mobile {
	display: none;
}

.thankyou-ticket .dark-yellow {
	justify-content: center;
	display: flex;
	margin: 0 auto;
	margin-top: 50px;
}

.evac-ticket .str-vet-box-wide .right {
	padding: 20px 0 60px 60px;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}

.evac-ticket .vet-btn {
	min-width: 40%;
}



@media screen and (max-width: 767px) {
	.evac-ticket .str-vet-box-wide .right {
		height: auto;
		padding: 0 30px;
	}

	.thankyou-ticket {
		padding: 150px 0;
	}

	.thankyou-ticket .img-box .desctop {
		display: none;
	}

	.thankyou-ticket .img-box .mobile {
		display: block;
		width: 100%;
	}

	.thankyou-ticket .subtitle {
		font-size: 18px;
	}
}




/*ScrollToTop*/
#scrollToTopBtn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: block;
	width: 30px;
	height: 30px;
	text-align: center;
	cursor: pointer;
	z-index: 999999999;
}

#scrollToTopBtn img {
	width: 30px;
	height: 30px;
}





/*Search*/
.search-results .page-header {
	padding-top: 170px;
	color: #fff;
}

.search-results .post {
	padding: 0;
}

.search-results h1 {
	font-size: 45px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 30px;
	margin-top: 0;
	color: #fff;
}

.search-results h1 span {
	text-transform: none;
	color: #FFC301;
}

.search-post {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	background-color: #001733;
	border: 1px solid #003575;
	color: #fff;
	margin-bottom: 20px;
	border-radius: 20px;
}

.search-post .left {
	padding: 30px 20px;
}

.search-post .title {
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 20px;
}

.search-post .title a {
	color: #fff;
}

.search-post .date {
	margin-bottom: 0;
}

.search-post .image {
	width: 25%;
	min-width: 25%;
	border-radius: 20px;
	height: 170px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}






.header__search-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: transparent;
	border: none;
	padding: 0;
	margin: 0 0 0 15px;
	cursor: pointer;
}


.header__form-search input::placeholder {
	color: #fff;
	opacity: 1;
	/* Firefox */
}

.header__form-search input::-ms-input-placeholder {
	/* Edge 12 -18 */
	color: #fff;
}

.search-more {
	color: #666;
}

.header__form-left .search-more {
	color: #666;
}

.header__form-left ul li {
	margin-bottom: 10px;
}

.header__form-box {
	opacity: 0;
	transition: all .5s;
}

.header__form-box.open {
	opacity: 1;
	transition: all .5s;
}



/*start search==============*/
.header__search-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: transparent;
	border: none;
	padding: 0;
	margin: 0 0 0 15px;
	cursor: pointer;
}

.header__mob-btn {
	display: none;
}

.header__form-wrap {
	position: fixed;
	top: 60px;
	left: 0;
	right: 0;
	width: 100%;
	-webkit-transform: translateY(-100vh);
	-ms-transform: translateY(-100vh);
	transform: translateY(-100vh);
	-webkit-transition: linear .2s;
	-o-transition: linear .2s;
	transition: linear .2s;
}

.header__form-wrap.open {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

.header__form-search {
	background-color: #00151E;
	border-bottom: 1px solid #fff;
	-webkit-transition: linear .3s;
	-o-transition: linear .3s;
	transition: linear .3s;
}

.header__form-search input {
	padding: 10px;
	margin: 0 20px;
	background-color: transparent;
	border: none;
	width: 100%;
	font-size: 18px;
	color: #fff;
}

.header__form-search input:focus {
	color: #fff;
}

.header__form-search .container {
	height: 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header__form-close {
	cursor: pointer;
	font-size: 12px;
	color: #fff;
}

.header__form-close img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 0 5px auto;
}

.header__form-box {
	padding: 25px 0 80px;
	background-color: #00151E;
	color: #fff;
	max-height: calc(100vh - 200px);
	overflow: auto;
}

.header__form-box h6 {
	color: #ffc301;
	font-size: 22px;
	font-weight: 600;
	line-height: 120%;
	margin: 0 0 20px 0;
}

.header__form-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.header__form-left {
	max-width: 285px;
	width: 100%;
	margin: 0 20px 0 0;
}

.header__form-left li {
	display: none;
	margin: 0 0 20px 0;
}

.header__form-left li:nth-child(1),
.header__form-left li:nth-child(2),
.header__form-left li:nth-child(3),
.header__form-left li:nth-child(4),
.header__form-left li:nth-child(5) {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.header__form-left a {
	color: white;
	font-size: 16px;
	font-weight: 400;
	line-height: 120%;
	text-decoration: underline;
	-webkit-text-decoration-color: transparent;
	text-decoration-color: transparent;
	-webkit-transition: linear .2s;
	-o-transition: linear .2s;
	transition: linear .2s;
}

.header__form-left a:hover {
	-webkit-text-decoration-color: #fff;
	text-decoration-color: #fff;
}

.header__form-show {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 0;
	color: rgba(255, 255, 255, 0.5);
	font-size: 16px;
	font-weight: 400;
	line-height: 120%;
	background-color: transparent;
	border: none;
	-webkit-transition: linear .2s;
	-o-transition: linear .2s;
	transition: linear .2s;
	cursor: pointer;
	text-align: left;
}

.header__form-show:hover {
	color: #fff;
}

.header__form-right {
	max-width: 820px;
	width: 100%;
}

.header__form-right .header__form-show {
	margin: 0 0 0 auto;
}

.header__form-df {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 0 0 -20px;
}

.header__form-item {
	margin: 0 0 0 20px;
	width: calc(50% - 20px);
}

.header__form-item li {
	display: none;
	margin: 0 0 20px 0;
}

.header__form-item li:nth-child(1),
.header__form-item li:nth-child(2),
.header__form-item li:nth-child(3) {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.header__form-item a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header__form-item p {
	margin: 0;
	color: white;
	font-size: 16px;
	font-weight: 400;
	line-height: 120%;
}

.header__form-item img {
	width: 80px;
	height: 65px;
	-o-object-fit: contain;
	object-fit: contain;
	margin: 0 25px 0 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}


@media (max-width: 992px) {
	.header__form-item {
		width: calc(100% - 20px);
	}

	.header__form-item {
		margin: 0 0 30px 0;
	}

	.header__form-show {
		color: rgba(255, 255, 255, 0.5) !important;
	}

	.header__form-search {
		z-index: 99999;
	}

	.search-results h1 {
		font-size: 28px;
	}
}

@media (max-width: 768px) {
	.header__search-btn {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		width: 100%;
		margin-right: 20px;
	}

	.header__form-inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.header__form-left {
		max-width: 100%;
		margin: 0 0 40px 0;
	}

	.header__form-left li {
		margin: 0 0 15px 0;
	}

	.header__form-left a,
	.header__form-item p {
		font-size: 14px;
	}

	.header__form-item img {
		margin: 0 10px 0 0;
	}

	.header__form-right .header__form-show {
		margin: 0 auto 0 0;
	}

	.header__form-wrap {
		top: 50px;
	}

	.header__form-box {
		max-height: calc(100vh - 175px);
	}

	.search-results h1 {
		font-size: 21px;
	}

	.search-post {
		flex-direction: column;
	}

	.search-post .image {
		width: 100%;
		min-width: 100%;
		height: 200px;
	}

	.search-post .title {
		font-size: 18px;
		margin-bottom: 10px;
	}
}

/*end search==============*/








/*Zbir label*/
.zbir_label {
	padding: 5px 10px;
	background-color: #FFC301;
	font-size: 12px;
	font-weight: 600;
	color: #00151E;
	border-radius: 10px;
	line-height: 1.2;
	margin: 20px 10px;
	display: inline-block;
}

.single_zbir_label {
	padding: 5px 10px;
	background-color: #FFC301;
	font-size: 14px;
	font-weight: 600;
	color: #00151E;
	border-radius: 10px;
	line-height: 1.2;
	margin: 40px 0 20px 0;
	display: inline-block;
}

.zbir .description-section .dark-yellow {
	display: block;
	width: 100%;
	text-align: center;
	margin-bottom: 30px;
}

@media (min-width: 768px) and (max-width: 1199px) {
	.zbir_label {
		font-size: 10px;
	}
}

@media screen and (max-width: 767px) {
	.zbir_label {
		font-size: 11px;
	}

	.single_zbir_label {
		font-size: 12px;
		margin: 20px 0;
	}
}

/*New Homepage*/
.grecaptcha-badge {
	z-index: -99999;
	opacity: 0;
}


/*News*/
.nh-news {
	background-color: #00151E;
	padding: 50px 0;
	color: #fff;
}

.nh-news .title {
	font-size: 55px;
	font-weight: 600;
	margin-bottom: 30px;
}

.article-type-top {
	background-color: #001733;
	border: 1px solid #003575;
	border-radius: 15px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 20px;
}

.article-type-top .left {
	padding: 25px 25px 25px 15px;
	width: 70%;
}

.article-type-top .left .article-date {
	font-size: 12px;
	color: #FFC301;
	font-weight: 600;
	margin-bottom: 10px;
}

.article-type-top .left .article-title {
	font-size: 26px;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 15px;
}

.article-type-top .left .article-desc {
	font-size: 14px;
	margin-bottom: 30px;
}

.article-type-top .right {
	width: 30%;
	height: 375px;
	border-radius: 20px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.article-type-bottom-box {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.article-type-bottom-box-d {
	display: flex;
}

.article-type-bottom-box-m {
	display: none;
}

.article-type-bottom-box a {
	width: 32%;
}

.article-type-bottom {
	background-color: #001733;
	border: 1px solid #003575;
	border-radius: 10px;
	padding: 20px 10px 40px 10px;
}

.article-type-bottom .article-date {
	font-size: 12px;
	color: #FFC301;
	font-weight: 600;
	margin-bottom: 10px;
}

.article-type-bottom .article-title {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 0;
	min-height: 85px;
}

.article-type-right-box {
	background-color: #001733;
	border: 1px solid #003575;
	border-radius: 10px;
	padding: 0;
}

.article-type-right-box .box-title {
	font-size: 26px;
	font-weight: 600;
	line-height: 1.5;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin: 10px;
}

.article-type-right-box .box-title img {
	margin-left: 15px;
	height: 40px;
}

.article-type-right-bg {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	height: 200px;
	width: 100%;
	padding: 15px 10px;
	border-radius: 10px;
	background-size: cover;
	background-position: center;
	transition: all .5s;
}

.article-type-right-bg .article-date {
	font-size: 12px;
	color: #FFC301;
	font-weight: 600;
	margin-bottom: 10px;
}

.article-type-right-bg .article-title {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
}

.article-type-right {
	padding: 15px 10px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	column-gap: 20px;
}

.article-type-right .article-title {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
}

.article-type-right .article-img {
	min-width: 75px;
	height: 75px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 5px;
}

.article-type-right-box .divider {
	width: 100%;
	height: 1px;
	background-color: #003575;
}

.article-type-right-box .btn-box {
	margin: 0 10px 30px;
}

.article-type-right-box .dark-yellow {
	border-radius: 15px;
	max-width: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
}









@media (min-width: 992px) and (max-width: 1199px) {
	.nh-news .title {
		font-size: 36px;
	}

	.article-type-top .left .article-title {
		font-size: 22px;
	}

	.article-type-right-box .box-title {
		font-size: 22px;
	}

	.article-type-right-bg .article-title {
		font-size: 16px;
	}

	.article-type-right-box .dark-yellow {
		font-size: 14px;
	}

	.article-type-bottom .article-title {
		min-height: 130px;
	}
}

@media (min-width: 768px) and (max-width: 992px) {
	.nh-news .title {
		font-size: 36px;
	}

	.article-type-top {
		flex-direction: column;
		min-height: 585px;
	}

	.article-type-top .left {
		order: 2;
		width: 100%;
		padding: 20px 25px 50px 15px;
		min-height: 325px;
	}

	.article-type-top .right {
		width: 100%;
		order: 1;
		height: 260px;
	}

	.article-type-right-box {
		min-height: 585px;
	}

	.article-type-top .left .article-title {
		font-size: 16px;
	}

	.article-type-right-box .box-title {
		font-size: 22px;
	}

	.article-type-right-bg .article-title {
		font-size: 16px;
	}

	.article-type-right .article-title {
		font-size: 13px;
	}

	.article-type-bottom-box-d {
		display: none;
	}

	.article-type-bottom-box-m {
		display: flex;
	}


}

@media screen and (max-width: 767px) {
	.nh-news .article-type-top {
		display: flex !important;
		flex-direction: column;
		justify-content: space-between;
		min-height: auto;
	}

	.nh-news {
		padding: 35px 0;
	}

	.nh-news .title {
		font-size: 26px;
	}

	.article-type-top {
		flex-direction: column;
		min-height: 585px;
	}

	.article-type-top .left {
		order: 2;
		width: 100%;
		padding: 20px 25px 40px 15px;
		min-height: auto;
	}

	.article-type-top .right {
		width: 100%;
		order: 1;
		height: 260px;
	}

	.article-type-right-box {
		min-height: auto;
		margin-top: 10px;
	}

	.article-type-top .left .article-title {
		font-size: 16px;
	}

	.article-type-right-box .box-title {
		font-size: 22px;
	}

	.article-type-right-bg .article-title {
		font-size: 16px;
	}

	.article-type-right .article-title {
		font-size: 13px;
	}

	.article-type-bottom {
		padding: 20px 10px;
	}

	.article-type-bottom-box-d {
		flex-direction: column;
	}

	.article-type-bottom-box a {
		width: 100%;
		margin-bottom: 15px;
	}

	.article-type-bottom .article-title {
		min-height: 50px;
	}
}

/*Partners*/
.nh-partners {
	background-color: #00151E;
	padding: 50px 0;
	color: #fff;
}

.nh-partners .title {
	font-size: 55px;
	font-weight: 600;
	margin-bottom: 20px;
}

.nh-partners .partnerSwiper {
	height: auto;
}

.partnerSwiper .swiper-slide {
	background: none;
}

.partnerSwiper .swiper-slide img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: unset;
	border: none;
}

.partnerSwiper .swiper-pagination-bullet {
	background: #003575;
	opacity: 1;
}

.partnerSwiper .swiper-pagination-bullet-active {
	background: #fff;
}

.partnerSwiper .swiper-wrapper {
	padding-bottom: 30px;
}

.nh-btns .btn-p-inner {
	border-radius: 20px;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.nh-partners .title {
		font-size: 36px;
	}
}

@media (min-width: 768px) and (max-width: 992px) {
	.nh-partners .title {
		font-size: 36px;
	}
}

@media screen and (max-width: 767px) {
	.nh-partners {
		padding: 35px 0;
	}

	.nh-partners .title {
		font-size: 26px;
	}
}


/*Certificate*/
.certificate {
	background-color: #003575;
	padding: 50px 0;
	color: #fff;
}

.certificate .title {
	font-size: 36px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.certificate .info {
	font-size: 16px;
	margin-bottom: 50px;
}

.certificate .img-box {
	text-align: right;
}

.certificate .img-box img {
	width: 200px;
}

@media (min-width: 768px) and (max-width: 992px) {
	.certificate .title {
		font-size: 24px;
	}
}

@media screen and (max-width: 767px) {
	.certificate {
		margin: 35px 0;
	}

	.certificate .title {
		font-size: 22px;
	}

	.certificate .img-box {
		text-align: center;
		margin-top: 50px;
	}
}


/*Projects*/
.uan-projects.nh-projects {
	background-color: #00151E;
	padding: 50px 0;
	color: #fff;
}

.uan-projects.nh-projects .container {
	overflow: hidden;
}

.nh-projects .swp-prj {
	background-color: #001733;
	border: 1px solid #003575;
}

.swp-prj strong {
	color: #FFC301;
}

.nh-projects .swp-prj .info {
	font-size: 16px;
	margin-bottom: 50px;
}

.nh-projects .prj-swiper {
	margin-bottom: 0px;
}


.evac-slider .right {
	height: 400px;
}


/*Take help*/
.take-help {
	background-color: #FFC301;
	padding: 50px 0;
	color: #00151E;
	background-image: url("/wp-content/uploads/2024/05/logo-bg.svg");
	background-size: contain;
	background-position: -8% 0%;
	background-repeat: no-repeat;
}

.take-help-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 70px;
	padding-left: 100px;
}

.take-help-box .left .title {
	font-size: 55px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #00151E;
}

.take-help-box .left .info {
	font-size: 14px;
	margin-bottom: 0;
}





@media (min-width: 992px) and (max-width: 1199px) {
	.take-help-box .left .title {
		font-size: 36px;
	}

	.take-help {
		background-position: -15% 0%;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.take-help-box .left .title {
		font-size: 24px;
	}

	.take-help {
		background-position: -23% 0%;
	}

	.take-help-box {
		column-gap: 30px;
		padding-left: 50px;
	}
}

@media screen and (max-width: 767px) {
	.take-help {
		margin: 35px 0;
	}

	.take-help-box .left .title {
		font-size: 26px;
	}

	.take-help-box {
		padding-left: 0;
		flex-direction: column;
	}

	.take-help-box .left {
		margin-bottom: 20px;
	}

	.take-help {
		padding: 50px 0 200px 0;
		background-size: 65%;
		background-position: 50% 130%;
	}

	.nh-projects .prj-swiper {
		margin-bottom: 0px;
	}

	.uan-projects.nh-projects {
		padding: 35px 0;
	}
}



/*How to support*/
.nh-how-to-support {
	background-color: #00151E;
	padding: 50px 0;
	color: #fff;
}

.nh-how-to-support .title {
	font-size: 55px;
	font-weight: 600;
	margin-bottom: 50px;
}

.nh-hth-box {
	padding: 25px 25px 0 20px;
	border: 1px solid #003575;
	border-radius: 20px;
	background-color: #001733;
	background-image: url("/wp-content/uploads/2024/05/arrow-right-top-yellow.svg");
	background-position: calc(100% - 25px) calc(0% + 25px);
	background-repeat: no-repeat;
}

.nh-hth-box .title {
	font-size: 26px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 130px 0 25px 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.nh-how-to-support .title {
		font-size: 36px;
	}

	.nh-how-to-support .nh-hth-box .title {
		font-size: 21px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.nh-how-to-support .title {
		font-size: 36px;
	}

	.nh-how-to-support .nh-hth-box .title {
		font-size: 21px;
	}
}


@media screen and (max-width: 767px) {
	.nh-how-to-support .title {
		font-size: 26px;
	}

	.nh-hth-box {
		margin-bottom: 20px;
	}

	.nh-hth-box .title {
		font-size: 24px;
		margin: 100px 0 25px 0;
	}
}







/*Zbory*/
.nh-collection {
	background-color: #00151E;
	padding: 50px 0;
	color: #fff;
}

.nh-collection .title {
	font-size: 55px;
	font-weight: 600;
	margin-bottom: 0;
}

.title-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 50px;
}

.dark-yellow {
	background-color: #FFC301;
	border: 1px solid #FFC301;
	border-radius: 20px;
	padding: 20px;
	color: #00151E;
	font-size: 18px;
	font-weight: 800;
	max-width: 300px;
	transition: all .5s;
}

.dark-yellow:hover {
	background-color: #fff;
	border: 1px solid #fff;
	color: #00151E;
	transition: all .5s;
}

.dark-yellow:visited {
	color: #00151E;
}

.dark-white {
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 40px;
	padding: 15px;
	color: #00151E;
	font-size: 18px;
	font-weight: 600;
	max-width: 300px;
	transition: all .5s;
}

.dark-white:hover {
	background-color: #000;
	border: 1px solid #fff;
	color: #fff;
	transition: all .5s;
}

.dark-white:visited {
	color: #00151E;
}

.dark-white:hover:visited {
	color: #fff;
}

.collection-img {
	width: 100%;
	height: 250px;
	background-size: cover;
	background-position: center;
	border-radius: 20px 20px 0 0;
}

.collection-box-inner {
	border: 1px solid #003575;
	border-top: none;
	border-radius: 0 0 20px 20px;
	background-color: #001733;
	padding: 20px;
}

.collection-title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 10px;
	min-height: 120px;
}

.collection-info .title {
	font-size: 16px;
	color: #C1C1C2;
	margin-bottom: 10px;
}

.collection-info {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 30px;
}

.collection-sum {
	text-align: right;
}

.collection-info .date,
.collection-info .sum {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 0;
}

.collection-box-inner .dark-yellow {
	width: 100%;
	display: block;
	max-width: 100%;
	text-align: center;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.nh-collection .title {
		font-size: 36px;
	}

	.nh-collection .collection-info .title {
		font-size: 14px;
	}

	.collection-title {
		font-size: 21px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.nh-collection .title {
		font-size: 28px;
	}

	.nh-collection .collection-info .title {
		font-size: 12px;
	}

	.collection-info .date,
	.collection-info .sum {
		font-size: 12px;
	}

	.collection-title {
		font-size: 16px;
		min-height: 80px;
	}

	.dark-yellow {
		font-size: 16px;
	}

	.collection-img {
		height: 150px;
	}
}

@media screen and (max-width: 767px) {
	.nh-collection {
		padding: 35px 0 15px 0;
	}

	.nh-collection .title {
		font-size: 26px;
		margin-bottom: 20px;
	}

	.collection-title {
		font-size: 18px;
		min-height: 100px;
	}

	.title-btn {
		flex-direction: column;
	}

	.dark-yellow {
		width: 100%;
		text-align: center;
		max-width: 100%;
	}

	.collection-box {
		margin-bottom: 20px;
	}

	.nh-collection .title {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.nh-collection .title-btn .title {
		font-size: 34px;
		margin-bottom: 20px;
	}
}



/*How we work*/
.nh-how-we-work {
	background-color: #00151E;
	padding: 50px 0;
	color: #fff;
}

.nh-how-we-work .title {
	font-size: 55px;
	font-weight: 600;
	margin-bottom: 50px;
}

.nh-how-we-work .number {
	font-size: 16px;
	margin-bottom: 10px;
}

.nh-how-we-work .work-box {
	background-color: #001733;
	border: 1px solid #003575;
	border-radius: 20px;
	padding: 30px 20px 50px 20px;
	margin-bottom: 0;
}

.nh-how-we-work .work-box .title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #FFC301;
	min-height: 66px;
}

.nh-how-we-work .work-box .info {
	font-size: 14px;
	margin-bottom: 0;
	min-height: 210px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
	.nh-how-we-work .work-box .title {
		min-height: 66px;
	}

	.nh-how-we-work .work-box .info {
		min-height: 255px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.nh-how-we-work .title {
		font-size: 36px;
	}

	.nh-how-we-work .work-box .title {
		font-size: 16px;
	}

	.nh-how-we-work .work-box .title {
		min-height: 50px;
	}

	.nh-how-we-work .work-box .info {
		min-height: 315px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.nh-how-we-work .title {
		font-size: 36px;
	}

	.nh-how-we-work .work-box .title {
		font-size: 16px;
		min-height: 20px;
	}

	.nh-how-we-work .work-box {
		margin-bottom: 20px;
	}

	.nh-how-we-work .work-box .info {
		min-height: 190px;
	}
}

@media screen and (max-width: 767px) {
	.nh-how-we-work {
		padding: 35px 0;
	}

	.nh-how-we-work .title {
		font-size: 26px;
		margin-bottom: 30px;
	}

	.nh-how-we-work .work-box:last-child {
		margin-bottom: 20px;
	}

	.nh-how-we-work .work-box .title {
		min-height: 20px;
	}

	.nh-how-we-work .work-box .info {
		min-height: 100px;
	}
}


/*About*/
.nh-about {
	background-color: #00151E;
	padding: 50px 0;
	color: #fff;
}

.nh-about .img-box img {
	width: 90%;
	border-radius: 20px;
}

.nh-about .title {
	font-size: 60px;
	font-weight: 600;
	margin-bottom: 20px;
}

.nh-about .info {
	font-size: 18px;
	margin-bottom: 30px;
}

.nh-btns {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	column-gap: 20px;
}

.dark-blue {
	background-color: #001733;
	border: 1px solid #003575;
	border-radius: 20px;
	padding: 15px 40px;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	max-width: 300px;
	white-space: nowrap;
	transition: all .5s;
}

.dark-blue:hover {
	background-color: #003575;
	border: 1px solid #003575;
	transition: all .5s;
}

.dark-blue:visited {
	color: #fff;
}

.light-blue {
	background-color: #003575;
	border: 1px solid #fff;
	border-radius: 20px;
	padding: 15px 40px;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	max-width: 300px;
	white-space: nowrap;
	transition: all .5s;
}

.light-blue:hover {
	background-color: #fff;
	border: 1px solid #fff;
	color: #001733;
	transition: all .5s;
}

.light-blue:visited {
	color: #fff;
}

.light-white {
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 20px;
	padding: 15px 40px;
	color: #00151E;
	font-size: 18px;
	font-weight: 600;
	max-width: 300px;
	transition: all .5s;
}

.light-white:hover {
	background-color: #FFC301;
	border: 1px solid #FFC301;
	color: #00151E;
	transition: all .5s;
}

.light-white:visited {
	color: #00151E;
}

.nh-numbers {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	align-items: stretch;
	margin-top: 70px;
}

.nh-number {
	width: 25%;
	border-right: 1px solid #003575;
	border-bottom: 1px solid #003575;
	padding: 30px 15px 25px 15px;
	text-align: center;
	color: #fff;
}

.nh-number:last-child {
	border-right: none;
}

.nh-number .title {
	font-size: 50px;
	font-weight: 700;
	margin-bottom: 25px;
}

.nh-number .subtitle {
	font-size: 16px;
	margin-bottom: 0;
	min-height: 75px;
}


@media (min-width: 992px) and (max-width: 1199px) {
	.nh-about .title {
		font-size: 36px;
	}

	.nh-about .info {
		font-size: 16px;
	}

	.nh-number .title {
		font-size: 36px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.nh-about .title {
		font-size: 36px;
	}

	.nh-about .info {
		font-size: 14px;
	}

	.dark-blue,
	.light-white {
		padding: 15px 20px;
		font-size: 16px;
		border-radius: 20px;
	}

	.light-blue {
		font-size: 16px;
	}

	.nh-numbers {
		flex-wrap: wrap;
	}

	.nh-number {
		width: 50%;
	}

	.nh-number:nth-child(2) {
		border-right: none;
	}

	.nh-number:nth-child(3) {
		border-bottom: none;
	}

	.nh-number:nth-child(4) {
		border-bottom: none;
	}
}

@media screen and (max-width: 767px) {
	.nh-about {
		padding: 35px 0;
	}

	.nh-about .img-box img {
		width: 100%;
		margin-bottom: 30px;
	}

	.nh-about .title {
		font-size: 36px;
	}

	.nh-about .info {
		font-size: 16px;
		margin-bottom: 20px;
	}

	.nh-btns {
		flex-direction: column;
		padding-top: 35px !important;
		padding-bottom: 35px !important;
	}

	.dark-blue,
	.light-white {
		padding: 15px 20px;
		font-size: 16px;
		border-radius: 20px;
		text-align: center;
		margin-bottom: 20px;
		width: 100%;
		max-width: 100%;
	}

	.light-blue {
		width: 100%;
		display: block;
		text-align: center;
		max-width: 100%;
	}

	.nh-about .title {
		font-size: 26px;
	}

	.nh-number .subtitle {
		font-size: 13px;
	}

	.nh-numbers {
		flex-wrap: wrap;
		margin-top: 50px;
	}

	.nh-number {
		width: 50%;
		padding: 30px 10px 15px 10px;
	}

	.nh-number:nth-child(2) {
		border-right: none;
	}

	.nh-number:nth-child(3) {
		border-bottom: none;
	}

	.nh-number:nth-child(4) {
		border-bottom: none;
	}
}







/*Media banner*/
.media-banner {
	margin-top: -40px;
	z-index: 9999;
	position: relative;
	margin-bottom: 50px;
}

.media-banner .banner-box {
	padding: 16px 40px 16px 40px;
	margin: 0 -40px;
	background-color: #003575;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 30px;
	/*background-image: url(/wp-content/uploads/2024/05/media-banner-bird.svg);*/
	background-size: 60px;
	background-position: 99% 50%;
	background-repeat: no-repeat;
}

.media-banner .banner-box p {
	margin-bottom: 0;
	font-size: 18px;
	color: #fff;
	font-weight: 600;
}

.media-banner .banner-box a {
	background-color: var(--yellow);
	padding: 12px 30px;
	border-radius: 15px;
	text-align: center;
	color: #00151E;
	text-decoration: none;
	font-weight: 600;
	white-space: nowrap;
}


.media-popup {
	position: fixed;
	display: none;
	background-color: #fff;
	padding: 13px 10px 13px 30px;
	border-radius: 5px;
	bottom: 20px;
	left: 20px;
	z-index: 99999999;
	transition: all .5s;
}

.media-popup .left {
	margin-right: 30px;
}

.media-popup .left p {
	margin-bottom: 0;
	font-size: 14px;
}

.media-popup .name {
	font-weight: 800;
	color: #CBA135;
}

.media-popup .site-cta {
	text-align: right;
	display: flex;
}

.media-popup .site-cta a:before {
	opacity: 0;
}

.media-popup .cta-btn {
	padding: 10px 14px;
}

@media screen and (max-width: 767px) {
	.media-popup .cta-btn {
		padding: 12px;
		font-size: 12px;
	}

	.media-popup {
		max-width: 90%;
	}
}



.media-popup {
	background-color: #013575;
	max-width: 310px;
}

.media-popup .close {
	background-color: transparent !important;
}

.media-popup .name {
	font-weight: 400 !important;
	color: #ffffff !important;
	font-size: 12px !important;
}

.media-popup .left {
	margin-right: 10px;
}

.media-popup .right img {
	min-width: 50px;
}





@media (min-width: 1200px) and (max-width: 1400px) {
	.media-banner .banner-box p {
		font-size: 17px;
	}

	.media-banner .banner-box {
		padding: 16px 100px 16px 20px;
		margin: 0 -20px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.media-banner .banner-box p {
		font-size: 16px;
	}

	.media-banner .banner-box {
		padding: 16px 100px 16px 20px;
		margin: 0;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.media-banner .banner-box p {
		font-size: 15px;
	}

	.media-banner .banner-box {
		padding: 16px 100px 16px 20px;
		margin: 0;
	}
}

@media screen and (max-width: 767px) {
	.media-banner {
		margin-top: -85px;
	}

	.media-banner .banner-box {
		margin: 0;
		flex-direction: column;
		padding: 16px 20px 16px 20px;
		background-size: 50px;
		background-position: 97% 84%;
	}

	.media-banner .banner-box p {
		margin-bottom: 20px;
		font-size: 16px;
		text-align: center;
	}
}

/*FAQ*/
.key-v3 {
	background-color: #001733;
	border-bottom: 1px solid #003575;
	border-radius: 0 0 20px 20px;
	padding-top: 130px;
	color: #fff;
}

.key-v3-box {
	padding: 70px 0;
}

.key-v3-box h1 {
	font-size: 60px;
	font-weight: 600;
	margin-bottom: 20px;
}

.u-faq {
	margin: 70px 0 30px 0;
}

.u-faq-row {
	margin-bottom: 100px;
}

.u-faq h2 {
	font-weight: 600;
	font-size: 45px;
	color: #FFC301;
	margin-top: -25px;
}

.u-faq .accordeon {
	margin: -40px 0 0 0;
	max-width: 705px;
	width: 100%;
	color: #fff;
}

.u-faq .accordeon dl {
	border-bottom: 1px solid #013575;
	margin-bottom: 0;
}

.u-faq .accordeon dt {
	padding: 25px 80px 25px 0;
	position: relative;
	font-size: 22px;
	font-weight: 600;
	line-height: 150%;
	cursor: pointer;
}

.r-content .u-faq .accordeon dt {
	font-size: 16px;
	font-weight: 400;
}

.u-faq .accordeon dt::after {
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
	width: 20px;
	height: 20px;
	background-image: url("/wp-content/uploads/2024/04/plus.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-transition: linear .2s;
	-o-transition: linear .2s;
	transition: linear .2s;
}

.u-faq .accordeon dt.active::after {
	-webkit-transform: translateY(-50%) rotate(45deg);
	-ms-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}

.u-faq .accordeon dd {
	padding: 0 0 20px 0;
	margin: 0;
}

.u-faq .accordeon dd p {
	margin: 0 0 10px 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
}

.r-content .u-faq .u-faq-acc-list {
	margin-left: 0;
	padding-left: 0;
}


.r-content .u-faq .u-faq-acc-list ul,
.r-content .u-faq .u-faq-acc-list ol {
	margin-left: 0;
	padding-left: 1em;
	margin-bottom: 10px;
}

.r-content .u-faq .u-faq-acc-list .short-description {
	margin-top: 30px;
}


.r-content .u-faq .u-faq-acc-list .short-description p:last-child {
	margin-bottom: 0;
}


@media (max-width: 1200px) {
	.u-faq .accordeon dt {
		padding: 15px 40px 15px 0;
		font-size: 22px;
	}

	.u-faq .accordeon dd p {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.u-faq .accordeon dt {
		font-size: 20px;
	}

	.u-faq .accordeon ul {
		margin: 0;
		padding: 0;
	}

	.u-faq h2 {
		font-size: 28px;
		margin-bottom: 50px;
	}

	.key-v3-box h1 {
		font-size: 32px;
	}
}




/*New zvity*/
.tzv .w3-button {
	background-color: transparent;
	padding: 15px 50px;
	border-radius: 20px;
	border: 1px solid #FFC301;
	color: #FFC301;
	font-size: 20px;
	font-weight: 800;
	transition: all .5s;
	margin-right: 10px;
}

.tzv .w3-button:hover {
	background-color: #FFC301;
	color: #00151E;
	transition: all .5s;
}

.tzv .w3-active {
	background-color: #FFC301;
	border: 1px solid #FFC301;
	color: #00151E;
}

.tzv .w3-container {
	padding: 50px 0 100px 0;
}




@media (min-width: 768px) and (max-width: 992px) {
	.tzv .w3-button {
		padding: 15px 25px;
		font-size: 18px;
	}
}

@media screen and (max-width: 767px) {
	.tzv .w3-button {
		width: 100%;
		margin-bottom: 10px;
	}
}



/*Home form 2 tabs*/
.hf-box-titles {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 700;
	color: #aaa;
	cursor: pointer;
}

.hf-box-titles .active {
	color: #022b5a;
}

.hf-box-fields {
	display: flex;
	flex-direction: column;
	margin-top: -10px;
}

.hf-box-fields .hf-mail {
	border: 1px solid var(--blue);
	border-radius: 10px;
	width: 100%;
	height: 50px;
	margin-bottom: 10px;
	padding: 5px 15px;
}

.hf-box-tabs .hf-box-sum {
	margin: 20px -5px 20px -5px;
}

.hf-container {
	margin-bottom: 100px;
	z-index: 5;
	min-height: 410px;
}

.hf-container .hf-box {
	margin-bottom: 0;
}

.hf-box-add-1,
.hf-box-add-2 {
	padding: 12px 30px;
	border: 1px solid #013575;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 800;
	color: #013575;
	width: 100%;
	text-align: center;
	margin: 0 5px;
	cursor: pointer;
	transition: all .5s;
}

.hf-box-add-1:hover,
.hf-box-add-2:hover {
	background-color: #013575;
	color: #fff;
	transition: all .5s;
}


@media (min-width: 992px) and (max-width: 1199px) {
	.hf-box-titles {
		font-size: 14px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.hf-box-titles {
		font-size: 14px;
	}
}

@media screen and (max-width: 767px) {
	.hf-box-titles {
		font-size: 12px;
	}

	.hf-box-add-1,
	.hf-box-add-2 {
		padding: 12px 10px;
	}
}

/*Header hovers*/
.hover-1 {
	position: absolute;
	width: 130%;
	font-size: 12px;
	font-weight: 300;
	background-color: #fff;
	color: #000;
	top: 40px;
	left: -15%;
	z-index: 999999999;
	padding: 10px;
	border-radius: 5px;
	box-shadow: 0px 0px 5px 0px #000000;
	display: none;
}

.header__btns .btn {
	position: relative;
}

.header__btns .btn--blue:hover .hover-1 {
	display: block;
	top: 60px;
}

.hover-2 {
	position: absolute;
	width: 100%;
	font-size: 12px;
	font-weight: 300;
	background-color: #fff;
	color: #000;
	top: 40px;
	left: 0;
	z-index: 999999999;
	padding: 10px;
	border-radius: 5px;
	box-shadow: 0px 0px 5px 0px #000000;
	display: none;
}

.header__btns .btn--yellow:hover .hover-2 {
	display: block;
	top: 60px;
}

.header__btns .btn--yellow {
	min-height: 45px !important;
}

/*Pegas slider*/
.pegasSwiper .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	border: none;
}

.docs-title {
	font-size: 28px;
	font-weight: 800;
	margin-top: 50px;
	margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
	.docs-title {
		font-size: 18px;
	}

	.documents h1 {
		font-size: 32px;
	}
}

/*New Help Uanimals*/
.page-template-help-uanimals-template .h-need-help {
	padding-top: 170px;
}

@media screen and (max-width: 768px) {
	.page-template-help-uanimals-template .h-need-help {
		padding: 130px 0 50px 0;
	}
}

/*Sterilization Donate*/
.str-8 {
	padding-bottom: 75px;
}

.str-8 .title {
	font-size: 48px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 20px;
}

.str-8 .subtitle {
	font-size: 18px;
	color: #fff;
	margin-bottom: 30px;
}

.str-vet-box-wide {
	color: #fff;
	display: flex;
	border-radius: 30px;
	background-color: var(--blue);
	margin-bottom: 20px;
}

.str-vet-box-wide .left {
	width: 50%;
	padding: 30px 30px 50px 30px;
}

.str-vet-box-wide .right {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	flex-shrink: 0;
	width: 50%;
	border-radius: 0 30px 30px 0;
}

.str-vet-box-wide .vet-title {
	color: var(--yellow);
	font-weight: 800;
	font-size: 28px;
	margin-bottom: 20px;
}

.str-vet-box-wide .vet-subtitle {
	min-height: 100px;
}

.vet-buy {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.vet-buy .input-wrap {
	border-radius: 10px;
	height: 54px;
}

.vet-buy .input-wrap input {
	font-family: ZonaPro;
	font-weight: 800;
}

.vet-buy .price {
	font-size: 32px;
	margin-bottom: 0;
	font-weight: 800;
	margin-right: 15px;
}

.vet-buy-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.vet-btn {}

.vet-btn a {
	text-decoration: none;
}

.vet-btn-inner {
	background-color: var(--yellow);
	color: var(--blue);
	font-weight: 800;
	text-align: center;
	padding: 15px;
	border-radius: 10px;
}

.str-vet-box {
	padding: 20px 30px;
	border-radius: 30px;
	background-color: var(--blue);
	color: #fff;
	margin-bottom: 20px;
}

.str-vet-box .vet-title {
	font-size: 22px;
	font-weight: 800;
	color: var(--yellow);
	margin-bottom: 10px;
}

.str-vet-box .vet-subtitle {
	min-height: 130px;
}

.str-vet-box .vet-buy {
	margin-bottom: 20px;
}


/*General single zbir donate items*/
.donate_item .vet-subtitle {
	min-height: 0px;
}

.donate-items-section {
	margin-top: 60px;
	margin-bottom: -70px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
	.str-8 .title {
		font-size: 42px;
	}

	.str-vet-box-wide .vet-title {
		font-size: 24px;
	}

	.str-vet-box .vet-title {
		font-size: 18px;
	}

	.vet-buy .price {
		font-size: 24px;
	}

	.vet-buy .input-wrap {
		width: 120px;
	}

	.vet-buy-box .vet-buy {
		width: 50%;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.str-8 .title {
		font-size: 42px;
	}

	.str-vet-box-wide .vet-title {
		font-size: 24px;
	}

	.str-vet-box .vet-title {
		font-size: 18px;
	}

	.vet-buy .price {
		font-size: 24px;
	}

	.vet-buy .input-wrap {
		width: 120px;
	}

	.vet-buy-box {
		flex-direction: column;
		align-items: normal;
	}

	.vet-buy .box-wrap {
		max-width: 50%;
	}

	.vet-btn {
		width: 100%;
	}

	.vet-buy {
		margin-bottom: 20px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.str-8 .title {
		font-size: 28px;
	}

	.str-8 .subtitle {
		font-size: 16px;
	}

	.str-vet-box-wide .vet-title {
		font-size: 18px;
	}

	.str-vet-box .vet-title {
		font-size: 18px;
	}

	.vet-buy .price {
		font-size: 24px;
	}

	.vet-buy .input-wrap {
		width: 120px;
	}

	.vet-buy-box {
		flex-direction: column;
		align-items: normal;
	}

	.vet-buy .box-wrap {
		max-width: 50%;
	}

	.vet-btn {
		width: 100%;
	}

	.vet-buy {
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 767px) {
	.str-8 .title {
		font-size: 24px;
	}

	.str-vet-box-wide {
		flex-direction: column;
	}

	.str-vet-box-wide .left {
		width: 100%;
	}

	.str-vet-box .vet-title {
		font-size: 18px;
	}

	.str-vet-box-wide .right {
		width: 100%;
		border-radius: 0 0 30px 30px;
		height: 200px;
	}

	.vet-buy-box {
		flex-direction: column;
	}

	.vet-buy .box-wrap {
		max-width: 50%;
	}

	.vet-btn {
		width: 100%;
	}

	.vet-buy {
		margin-bottom: 20px;
	}

	.str-vet-box-wide .vet-title {
		font-size: 18px;
	}

	.str-vet-box .vet-subtitle {
		min-height: 80px;
	}

	.vet-buy .price {
		font-size: 24px;
	}

	.donate_item .vet-subtitle {
		min-height: 0;
	}

	.donate-items-section {
		margin-top: 40px;
		margin-bottom: -20px;
	}

}



/*Home*/
.n-help-box {
	background-color: #013575;
	border-radius: 30px;
	padding: 80px 30px 30px 30px;
	position: relative;
	overflow: hidden;
	margin-bottom: 20px;
}

.nh-box-1,
.nh-box-2,
.nh-box-5,
.nh-box-6 {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}

.nh-box-3,
.nh-box-4 {
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
}

.h-need-help .n-help-box .info {
	width: 50%;
	margin-bottom: 0;
	min-height: 75px;
	display: flex;
	align-items: flex-end;
}

.h-need-help .n-help-box .info p {
	margin-bottom: 0;
}

.n-help-box .number-1 {
	position: absolute;
	left: 20px;
	bottom: -25px;
	font-size: 180px;
	color: var(--yellow);
	line-height: 1;
}

.n-help-box .number-2 {
	position: absolute;
	left: 20px;
	bottom: -25px;
	font-size: 180px;
	color: var(--yellow);
	line-height: 1;
}

.n-help-box .number-3 {
	position: absolute;
	right: 0;
	bottom: -25px;
	font-size: 180px;
	color: var(--yellow);
	line-height: 1;
}

.n-help-box .number-4 {
	position: absolute;
	right: 0;
	bottom: -25px;
	font-size: 180px;
	color: var(--yellow);
	line-height: 1;
}

.n-help-box .number-5 {
	position: absolute;
	left: 20px;
	bottom: -25px;
	font-size: 180px;
	color: var(--yellow);
	line-height: 1;
}

.n-help-box .number-6 {
	position: absolute;
	left: 20px;
	bottom: -25px;
	font-size: 180px;
	color: var(--yellow);
	line-height: 1;
}

.h-need-help .n-help-btn {
	margin-top: 50px;
}

.n-help-btn {
	display: flex;
	align-items: center;
	justify-content: center;
}

.n-help-btn a {
	text-decoration: none;
}

.n-help-btn-inner {
	padding: 20px 50px;
	background-color: var(--yellow);
	border-radius: 10px;
	color: #1F140F;
	font-weight: 800;
	text-align: center;
}


@media (min-width: 1200px) and (max-width: 1399px) {
	.h-need-help .n-help-box .info {
		min-height: 95px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.h-need-help .n-help-box .info {
		min-height: 95px;
	}

	.n-help-box .number-1 {
		bottom: -15px;
		font-size: 140px;
	}

	.n-help-box .number-2 {
		bottom: -15px;
		font-size: 140px;
	}

	.n-help-box .number-3 {
		bottom: -15px;
		font-size: 140px;
	}

	.n-help-box .number-4 {
		bottom: -15px;
		font-size: 140px;
	}

	.n-help-box .number-5 {
		bottom: -15px;
		font-size: 140px;
	}

	.n-help-box .number-6 {
		bottom: -15px;
		font-size: 140px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.h-need-help .n-help-box .info {
		min-height: 95px;
	}

	.n-help-box .number-1 {
		bottom: -15px;
		font-size: 120px;
	}

	.n-help-box .number-2 {
		bottom: -15px;
		font-size: 120px;
	}

	.n-help-box .number-3 {
		bottom: -15px;
		font-size: 120px;
	}

	.n-help-box .number-4 {
		bottom: -15px;
		font-size: 120px;
	}

	.n-help-box .number-5 {
		bottom: -15px;
		font-size: 120px;
	}

	.n-help-box .number-6 {
		bottom: -15px;
		font-size: 120px;
	}

	.h-need-help .n-help-box .info {
		width: 100%;
		align-items: flex-start;
	}

	.n-help-box {
		padding: 30px 30px 100px 30px;
	}
}

@media screen and (max-width: 767px) {
	.n-help-box .number-1 {
		bottom: -10px;
		font-size: 80px;
	}

	.n-help-box .number-2 {
		bottom: -10px;
		font-size: 80px;
	}

	.n-help-box .number-3 {
		bottom: -10px;
		font-size: 80px;
	}

	.n-help-box .number-4 {
		bottom: -10px;
		font-size: 80px;
	}

	.n-help-box .number-5 {
		bottom: -10px;
		font-size: 80px;
	}

	.n-help-box .number-6 {
		bottom: -10px;
		font-size: 80px;
	}

	.h-need-help .n-help-box .info {
		width: 100%;
		min-height: 10px;
	}

	.n-help-box {
		padding: 30px 30px 80px 30px;
	}
}

/*Premia 2024*/
.premia24-blk1 {
	background-image: url("/wp-content/uploads/2024/01/premia24-bg-1.svg"), url("/wp-content/uploads/2024/01/premia24-bg-2.svg");
	background-repeat: no-repeat;
	background-position: 0 100%, 100% 100%;
	background-size: 50%, 50%;
	padding: 180px 0 0 0;
	border-radius: 50px;
}

.premia24-blk1 .row-bg {
	background-image: url("/wp-content/uploads/2024/01/premia-24-stars.svg");
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.premia24-logo-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 50px;
	padding-top: 20vw;
}

.premia24-logo-box img {
	width: 15vw;
}

.premia24-logo-box img:first-child {
	width: 26vw;
}

.premia24-blk1 .img-box {
	text-align: center;
}

.premia24-blk1 .img-box img {
	width: 300px;
	margin-top: 30px;
}

.premia24-blk1 h1 {
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	font-weight: 800;
	font-size: 60px;
	margin-bottom: 50px;
}

.premia24-blk1 .yellow-btn {
	justify-content: center;
}

.premia24-blk2 {
	padding: 100px 0 0 0;
	color: #fff;
}


.premia24-blk2 .blk2-title.title {
	margin-bottom: 0;
	border-bottom: none;
}

.premia24-blk2 .title {
	padding-bottom: 50px;
	margin-bottom: 50px;
	border-bottom: 1px solid #fff;
	font-size: 36px;
	font-weight: 800;
}

.premia24-blk2 .text {
	font-size: 16px;
	margin-bottom: 50px;
}

.yellow-btn {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.yellow-btn a {
	text-decoration: none;
}

.yellow-btn-inner {
	background-color: #CBA133;
	color: #fff;
	font-weight: 800;
	font-size: 18px;
	text-align: center;
	width: 300px;
	height: 60px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.white-line-thin {
	width: 100%;
	height: 1px;
	background-color: #fff;
}

.premia24-blk2 .white-line-thin {
	margin-top: 100px;
}

.premia24-blk3 {
	padding: 50px 0;
	color: #fff;
}

.premia24-blk3 .large-text {
	font-size: 45px;
	font-weight: 600;
}

.premia24-blk4 {
	padding: 50px 0;
	color: #fff;
	background-image: url("/wp-content/uploads/2025/12/premia24-bg-form.svg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 50px;
}

.premia24-blk4 .title {
	font-size: 45px;
	font-weight: 600;
	text-align: center;
}

.premia24-blk4 .naividdanishi input[type="submit"] {
	background: #FFC301;
	color: #fff;
	border: 1px solid #FFC301;
	border-radius: 20px;
	padding: 5px 50px;
	width: 100%;
	color: #1F140F;
}

.premia24-blk5 {
	color: #fff;
	padding: 0 0 70px 0;
}

.premia24-blk5 .title {
	font-size: 45px;
	font-weight: 600;
}

.premia24-blk5 .person-title {
	font-weight: 600;
	margin: 20px 0;
	font-size: 20px;
	flex: 1 1 auto;
}

.person-box {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	height: 100%;
}

.person-box>p {
	display: none;
}

.person-fancybox p {
	margin: 0 0 10px 0;
}

.premia24-blk5 .col-md-3 {
	margin: 0 0 25px 0;
}

.person-box img {
	width: 100%;
	height: 380px;
	object-fit: cover;
}

.premia24-blk5 .person-description {
	font-size: 20px;
	color: #00151E;
	display: none;
}

.premia24-blk5 .person-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 800;
	font-size: 18px;
	color: #FFC301;
	background-color: transparent;
	cursor: pointer;
	border: none;
	padding: 0;
}

.premia24-blk5 .person-btn img {
	width: 9px;
	height: 8px;
	margin: 4px 0 0 20px;
	display: block;
	object-fit: contain;
	transition: linear .2s;
}

.premia24-blk5 .person-btn:hover img {
	transform: rotate(45deg);
}

.person-fancybox .fancybox-content {
	max-width: 850px;
	width: 100%;
	border-radius: 15px;
	padding: 30px;
	overflow: visible;
}

.person-fancybox .fancybox-close-small {
	padding: 5px;
	top: -10px;
	right: -10px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #FFC301;
	opacity: 1;
}

.person-fancybox .fancybox-close-small svg path {
	fill: #000;
}

.premia24-blk6 .title {
	text-align: center;
	line-height: 1.3;
	font-size: 40px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 50px;
}

.premia24-blk6 .y-btn .y-btn-i {
	background-color: #FFC301;
	color: #1F140F;
}

.premia24-blk6 .y-btn {
	justify-content: center;
	margin-bottom: 100px;
}




@media (min-width: 992px) and (max-width: 1199px) {
	.premia24-blk2 .title {
		font-size: 30px;
	}

	.premia24-blk2 .text {
		font-size: 16px;
	}

	.premia24-blk2 .img-box img {
		max-width: 90%;
	}

	.premia24-blk3 .large-text {
		font-size: 28px;
	}

	.premia24-blk4 .title {
		font-size: 26px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.premia24-blk2 {
		padding: 50px 0 0 0;
	}

	.premia24-blk2 .title {
		font-size: 20px;
	}

	.premia24-blk2 .text {
		font-size: 16px;
	}

	.premia24-blk2 .img-box img {
		max-width: 90%;
	}

	.premia24-blk3 .large-text {
		font-size: 21px;
	}

	.premia24-blk4 .title {
		font-size: 28px;
	}

	.yellow-btn {
		display: block;
	}

	.yellow-btn-inner {
		width: 100%;
		height: 50px;
	}

	.premia24-blk2 .white-line-thin {
		margin-top: 50px;
	}

	.premia24-blk1 .yellow-btn {
		display: flex;
		justify-content: center;
	}

	.premia24-blk1 .yellow-btn-inner {
		width: 300px;
		height: 60px;
	}

	.premia24-blk1 h1 {
		font-size: 42px;
	}

	.premia24-blk1 .img-box img {
		width: 200px;
		margin-top: 10px;
	}

}

@media screen and (max-width: 767px) {
	.person-box img {
		height: 470px;
	}

	.person-fancybox .fancybox-close-small {
		right: 0;
		width: 40px;
		height: 40px;
	}

	.premia24-blk2 {
		padding: 50px 0 0 0;
	}

	.premia24-blk2 .title {
		font-size: 20px;
	}

	.premia24-blk2 .text {
		max-width: 100%;
		margin-top: 50px;
	}

	.yellow-btn {
		display: block;
		width: 100%;
		height: 50px;
	}

	.premia24-blk2 .white-line-thin {
		margin-top: 60px;
	}

	.premia24-blk3 .large-text {
		font-size: 28px;
	}

	.premia24-blk3 .text {
		max-width: 100%;
	}

	.premia24-blk4 .title {
		font-size: 28px;
		margin-bottom: 0;
	}

	.premia24-blk5 .title {
		font-size: 20px;
	}

	.premia24-blk1 {
		padding: 100px 0 0 0;
		border-radius: 20px;
	}

	.premia24-logo-box {
		padding-bottom: 20px;
		padding-top: 30vw;
	}

	.premia24-blk1 h1 {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.premia24-blk1 .img-box img {
		width: 150px;
	}

	.premia24-blk1 .yellow-btn-inner {
		width: 220px;
		height: 50px;
	}

	.premia24-blk1 .yellow-btn {
		display: flex;
		justify-content: center;
	}

	.premia24-blk6 .title {
		font-size: 22px;
	}

	.premia24-blk6 .y-btn a {
		width: 100%;
		text-align: center;
	}

	.premia24-alt-blk1 .y-btn a {
		width: 100%;
		text-align: center;
	}
}



/*Small dream*/
.s-dream-blk1 {
	padding: 200px 0 80px;
}

.s-dream-blk2 .w-content {
	background-color: #FAFF7F;
	color: #00151E;
	font-family: Spaceland-Seven;
	text-transform: uppercase;
	font-size: 45px;
}

.s-dream-blk2 .w-content img {
	margin: 0 20px;
}

.s-dream-blk2 .cyfer {
	color: #9D2421;
}

.key-s-dream {
	background-image: url("/wp-content/uploads/2023/12/key-bg-1-1.svg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin: 0 -70px;
	padding: 50px 70px 100px 70px;
	border-radius: 50px;
}

.key-s-dream .left {
	width: 55%;
}

.key-s-dream .right {
	width: 45%;
}

.key-s-dream h1 {
	color: #fff;
	font-family: Spaceland-Seven;
	text-transform: uppercase;
	font-size: 130px;
	margin: 0;
	line-height: 1;
}

.key-s-dream .info {
	color: #fff;
	font-size: 18px;
	margin-top: 30px;
	margin-bottom: 50px;
}

.dream-btn {
	display: flex;
}

.dream-btn a {
	text-decoration: none;
}

.dream-btn-inner {
	background-color: #00151E;
	color: #fff;
	font-family: Spaceland-Seven;
	text-transform: uppercase;
	font-size: 45px;
	text-align: center;
	border-radius: 50px;
	padding: 15px 130px;
	line-height: 1;
}

.s-dream-blk3 {
	color: #fff;
	padding: 80px 0;
}

.s-dream-blk3 .title {
	font-family: Spaceland-Seven;
	text-transform: uppercase;
	font-size: 95px;
	line-height: 1;
	margin-bottom: 30px;
}

.s-dream-blk3 .info p {
	margin-bottom: 20px;
}

.dream-rotate-box {
	background-color: #fff;
	padding: 30px;
	border-radius: 30px;
	transform: rotate(7deg);
	color: #00151E;
	width: 90%;
	margin: 0 auto;
}

.dream-rb-inner {
	padding: 30px;
	border-radius: 30px;
	border: 1px solid #9D0014;
}

.dream-rb-inner .title {
	font-family: Spaceland-Seven;
	text-transform: uppercase;
	font-size: 45px;
	line-height: 1;
	margin-bottom: 20px;
}

.dream-rb-inner .title span {
	color: #9D0014;
}

.dream-rb-inner ul {
	margin: 0 0 30px 0;
	padding: 0;
	list-style: none;
}

.dream-rb-inner li {
	margin: 0;
	padding: 0;
}

.dream-rb-inner .more a {
	font-family: Spaceland-Seven;
	text-transform: uppercase;
	font-size: 45px;
	line-height: 1;
	text-decoration: underline;
	font-weight: 300;
	color: #00151E;
}

.dream-rb-inner .more {
	margin-bottom: 10px;
}

.s-dream-blk4 {
	margin: 70px 0;
	color: #fff;
}

.s-dream-blk4 .dreams-key-inner {
	background-image: url("/wp-content/uploads/2023/12/dreams-bg-1.svg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	margin: 0 -70px;
	padding: 50px 70px 100px 70px;
	border-radius: 50px;
}

.dreams-key-inner .title {
	font-family: Spaceland-Seven;
	text-transform: uppercase;
	font-size: 85px;
	line-height: 1;
	text-align: center;
	margin-bottom: 20px;
}

.dreams-key-inner .subtitle {
	text-align: center;
	font-size: 18px;
}

.dreams-key-inner .dream-item {
	background-color: #001121;
	border-radius: 30px;
	padding: 15px;
	text-align: center;
}

.dreams-key-inner .dream-item .title {
	font-family: Spaceland-Seven;
	text-transform: uppercase;
	font-size: 60px;
	line-height: 1;
	text-align: center;
	margin-bottom: 10px;
}

.dreams-key-inner .dream-item .subtitle {
	text-align: center;
	font-size: 14px;
	margin-bottom: 30px;
	min-height: 80px;
}

.dreams-key-inner .dream-item .buy {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.dreams-key-inner .dream-item .buy .price {
	font-family: Spaceland-Seven;
	text-transform: uppercase;
	font-size: 45px;
	line-height: 1;
	margin-bottom: 0;
}

.dreams-key-inner .dream-item .box-wrap .input-wrap {
	height: 45px;
	width: 120px;
}

.dreamy-btn {
	display: block;
	margin-top: 30px;
	margin-bottom: 20px;
}

.dreamy-btn a {
	text-decoration: none;
	width: 100%;
	text-align: center;
}

.dreamy-btn-inner {
	background-color: #FAFF7F;
	color: #00151E;
	font-family: Spaceland-Seven;
	text-transform: uppercase;
	font-size: 32px;
	text-align: center;
	border-radius: 50px;
	padding: 10px 30px;
	line-height: 1;
}

.s-dream-blk5 {
	color: #fff;
	padding: 80px 0;
}

.s-dream-blk5 .title {
	font-family: Spaceland-Seven;
	text-transform: uppercase;
	font-size: 95px;
	line-height: 1;
	margin-bottom: 30px;
}

.s-dream-blk5 .info p {
	margin-bottom: 20px;
}

.s-dream-blk5 .img-box {
	text-align: center;
}

.s-dream-blk5 .img-box img {
	border-radius: 30px;
	width: 90%;
	transform: rotate(5deg);
}

.dreamr-btn {
	display: flex;
	margin-top: 50px;
}

.dreamr-btn a {
	text-decoration: none;
}

.dreamr-btn-inner {
	background-color: #BB041B;
	color: #fff;
	font-family: Spaceland-Seven;
	text-transform: uppercase;
	font-size: 45px;
	text-align: center;
	border-radius: 50px;
	padding: 15px 130px;
	line-height: 1;
}

.s-dream-blk6 {
	margin-bottom: 80px;
}

.s-dream-blk7 {
	text-align: center;
	color: #fff;
	margin-bottom: 70px;
}

.s-dream-blk7 .title {
	font-family: Spaceland-Seven;
	text-transform: uppercase;
	font-size: 95px;
	text-align: center;
	line-height: 1;
	margin-bottom: 30px;
}

.s-dream-blk7 .dreamr-btn {
	justify-content: center;
	margin-bottom: 50px;
}

.s-dream-blk7 .img-box {
	text-align: center;
}

.share-dream .share__inner h6 {
	font-size: 60px;
	color: #fff;
}

.share-dream .share__inner {
	align-items: flex-start;
}

.share-dream {
	background-color: #BB041B !important;
	background-image: url("/wp-content/uploads/2023/12/dream-share-bg.svg");
	background-position: 100% 100%;
	background-repeat: no-repeat;
	background-size: 20%;
}

.share-dream .share__inner a {
	background-color: #00151E;
}

.share-dream .share__inner a:hover {
	background-color: #022838;
}

@media (min-width: 1200px) and (max-width: 1399px) {

	.key-s-dream,
	.s-dream-blk4 .dreams-key-inner {
		margin: 0 -30px;
		padding: 50px 30px 100px 30px;
	}

	.key-s-dream h1 {
		font-size: 115px;
	}

	.dreams-key-inner .title {
		font-size: 75px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {

	.key-s-dream,
	.s-dream-blk4 .dreams-key-inner {
		margin: 0 -10px;
		padding: 50px 10px 100px 10px;
	}

	.key-s-dream h1 {
		font-size: 100px;
	}

	.key-s-dream .info {
		font-size: 16px;
	}

	.dreams-key-inner .title {
		font-size: 65px;
	}

	.dream-rotate-box {
		padding: 10px;
		width: 80%;
	}

	.s-dream-blk3 .title {
		font-size: 75px;
	}

	.s-dream-blk5 .title {
		font-size: 75px;
	}

	.dream-rb-inner {
		padding: 20px;
	}

	.dreams-key-inner .dream-item .title {
		font-size: 42px;
	}

	.dreams-key-inner .dream-item .box-wrap .input-wrap {
		width: 90px;
	}

	.dreams-key-inner .dream-item .input-wrap button {
		font-size: 25px;
	}

	.dreamr-btn-inner {
		padding: 15px 90px;
	}

	.s-dream-blk7 .title {
		font-size: 70px;
	}

	.share-dream .share__inner h6 {
		font-size: 55px;
	}

	.share-dream {
		padding-bottom: 50px !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {

	.key-s-dream,
	.s-dream-blk4 .dreams-key-inner {
		margin: 0 -20px;
		padding: 50px 20px 100px 20px;
	}

	.key-s-dream h1 {
		font-size: 80px;
	}

	.key-s-dream .info {
		font-size: 14px;
	}

	.dream-btn-inner {
		padding: 15px 80px;
		font-size: 40px;
	}

	.s-dream-blk3 .dream-rb-inner .title {
		font-size: 28px;
	}

	.dream-rb-inner ul {
		font-size: 14px;
	}

	.dream-rb-inner .more a {
		font-size: 28px;
	}

	.dreams-key-inner .title {
		font-size: 50px;
	}

	.dream-rotate-box {
		padding: 10px;
		width: 80%;
	}

	.s-dream-blk3 .title {
		font-size: 50px;
	}

	.s-dream-blk5 .title {
		font-size: 50px;
	}

	.dream-rb-inner {
		padding: 20px;
	}

	.dreams-key-inner .dream-item .title {
		font-size: 42px;
	}

	.dreams-key-inner .dream-item .box-wrap .input-wrap {
		width: 90px;
	}

	.dreams-key-inner .dream-item .input-wrap button {
		font-size: 25px;
	}

	.dreamr-btn-inner {
		padding: 15px 50px;
		font-size: 35px;
	}

	.s-dream-blk7 .title {
		font-size: 75px;
	}

	.share-dream .share__inner h6 {
		font-size: 35px;
	}

	.share-dream {
		padding-bottom: 50px !important;
	}
}

@media screen and (max-width: 767px) {
	.s-dream-blk1 {
		padding: 150px 0 50px;
	}

	.key-s-dream {
		flex-direction: column;
		margin: 0 -20px;
		padding: 30px 20px 50px 20px;
		background-position: 33% 100%;
	}

	.key-s-dream .left {
		width: 100%;
	}

	.key-s-dream .info {
		font-size: 14px;
		margin-top: 0;
	}

	.key-s-dream .right {
		width: 100%;
		margin-top: 20px;
	}

	.key-s-dream h1 {
		font-size: 65px;
	}

	.dream-btn {
		display: block;
	}

	.dream-btn a {
		width: 100%;
		text-align: center;
	}

	.dream-btn-inner {
		padding: 15px 80px;
	}

	.s-dream-blk3 .title {
		font-size: 60px;
	}

	.dream-rotate-box {
		transform: rotate(2deg);
		padding: 10px;
	}

	.dream-rb-inner {
		padding: 20px;
	}

	.s-dream-blk3 .dream-rb-inner .title {
		font-size: 30px;
	}

	.dream-rb-inner .more a {
		font-size: 35px;
	}

	.s-dream-blk3 {
		padding: 80px 0 0 0;
	}

	.s-dream-blk4 {
		margin: 50px 0;
	}

	.s-dream-blk4 .dreams-key-inner {
		margin: 0 -20px;
		padding: 50px 20px 100px 20px;
	}

	.dreams-key-inner .title {
		font-size: 45px;
	}

	.s-dream-blk5 .title {
		font-size: 60px;
	}

	.dreams-key-inner .subtitle {
		font-size: 14px;
	}

	.dreamr-btn {
		display: block;
		margin-bottom: 50px;
	}

	.dreamr-btn a {
		width: 100%;
		text-align: center;
	}

	.dreamr-btn-inner {
		padding: 15px 50px;
		font-size: 45px;
	}

	.s-dream-blk5 {
		padding: 0px 0 30px 0;
	}

	.s-dream-blk7 .title {
		font-size: 45px;
	}

	.share-dream .share__inner h6 {
		font-size: 35px;
	}

	.share-dream {
		padding-bottom: 50px !important;
	}

}













/*Law*/
.law-custom-title {
	font-size: 36px;
	font-weight: 800;
	margin: 50px 0;
}

.law-custom-images img {
	width: 45%;
}

@media screen and (max-width: 767px) {
	.law-custom-title {
		font-size: 24px;
		margin-top: 50px;
	}

	.law-custom-images {
		display: flex;
		flex-direction: column;
	}

	.law-custom-images img {
		width: 100%;
		margin-bottom: 10px;
	}
}

/*PDF Forms*/
.dss-form-pdf .wpcf7 form.sent .wpcf7-response-output {
	border: none;
	padding: 0;
	margin: 0;
}

.dss-form-pdf .download-lnk-pdf {
	background-color: #013575;
	padding: 15px 30px;
	border-radius: 10px;
	display: inline-block;
	margin-top: 20px;
	font-weight: 600;
}

.dss-form-pdf .download-lnk-pdf:hover {
	background-color: var(--yellow);
	color: #00151E;
}

.form-law .form-law-radio input[type=radio],
.form-law .form-law-radio input[type=checkbox] {
	min-width: 5%;
	margin-right: 10px;
	width: 20px;
	border-radius: 0;
	height: 20px;
	font-size: 18px;
	padding: 0;
	margin-bottom: 0px;
	margin-top: 3px;
}

.form-law .form-law-radio input[type=checkbox]:before,
.form-law .form-law-radio input[type=checkbox]:after {
	opacity: 0;
}

.form-law .form-law-radio .wpcf7-list-item-label {
	width: 95%;
}

.form-law-radio {
	margin-bottom: 30px;
}

.form-law-radio .wpcf7-list-item {
	margin-left: 0;
	display: block;
	margin-bottom: 10px;
}

.form-law-radio .wpcf7-list-item label {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}

/*Winterisation*/
.titlle {
	color: #FFF;
	font-family: 'Droidd';
	font-size: 80px;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: 2.3px;
	text-transform: uppercase;
}

.titlle span {
	color: #62C9FE;
}

.btnn {
	height: 90px;
	padding: 21px 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-family: 'Droidd';
	font-size: 40px;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.8px;
	cursor: pointer;
	border: none;
	outline: none;
	border-radius: 45px;
	-webkit-transition: linear .2s;
	-o-transition: linear .2s;
	transition: linear .2s;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.btnn svg path {
	-webkit-transition: linear .2s;
	-o-transition: linear .2s;
	transition: linear .2s;
}

.btnn span {
	display: block;
	margin: 0 35px;
}

.btnn--blue {
	background-color: #62C9FE;
	color: #223A72;
}

.btnn--blue:hover {
	background-color: #fff;
	color: #223A72;
}

.btnn--dark-blue {
	background-color: #223A72;
	color: #FFF;
}

.btnn--dark-blue:hover {
	color: #223A72;
	background-color: #fff;
}

.btnn--dark-blue:hover svg path {
	fill: #223A72;
}

/*start .section-one==========*/
.section-one {
	padding: 200px 0 180px;
}

.section-one__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.section-one__left {
	max-width: 925px;
	width: 100%;
}

.section-one__left h1 {
	margin: 0 0 20px 0;
}

.section-one__left p {
	margin: 0 0 15px 0;
	max-width: 825px;
	width: 100%;
	color: #FFF;
	font-family: 'ZonaPro';
	font-size: 18px;
	font-weight: 400;
	line-height: 150%;
}

.section-one__left p span {
	color: #62C9FE;
	font-size: 22px;
}

.section-one__left strong {
	display: block;
	margin: 70px 0 0 0;
	color: #FFF;
	font-family: 'ZonaPro';
	font-size: 18px;
	font-weight: 800;
	line-height: 150%;
}

.section-one__box {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.section-one__box::after {
	position: absolute;
	content: "";
	top: 146px;
	right: 6%;
	width: 80%;
	height: 170px;
	background-image: url("/wp-content/uploads/2023/11/arrow-1.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.section-one__box>span {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 50px 0 0;
	color: #FFF;
	font-family: 'Droidd';
	font-size: 55px;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: 1.3px;
	text-transform: uppercase;
}

.section-one__box .wsum {
	margin-right: 8px;
}

.section-one__right {
	max-width: 650px;
}

.section-one__right img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.section-one .box-wrap {
	margin: 20px 50px 0 0;
}

.section-one .box-wrap p {
	margin: 10px 0 0 0;
	text-align: center;
	font-family: 'ZonaPro';
	font-size: 12px;
}

/*end .section-one==========*/
.input-wrap {
	position: relative;
	width: 150px;
	border-radius: 30px;
	border: 1px solid #FFF;
	overflow: hidden;
	height: 90px;
}

.input-wrap input {
	width: 100%;
	height: 100%;
	padding: 0 40px;
	background-color: transparent;
	color: #FFF !important;
	font-family: 'Droidd';
	font-size: 24px;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	text-align: center;
}

.input-wrap button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 40px;
	position: absolute;
	top: 0;
	bottom: 0;
	height: 100%;
	color: #FFF;
	font-family: 'Droidd';
	font-size: 30px;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	cursor: pointer;
	background-color: transparent;
	outline: none;
	border: none;
}

.input-wrap__minus {
	left: 0;
}

.input-wrap__plus {
	right: 0;
}

/*start line========*/

.marquee {
	position: relative;
	width: 100vw;
	max-width: 100%;
	height: 100px;
	overflow-x: hidden;
}

.track {
	position: absolute;
	white-space: nowrap;
	will-change: transform;
	animation: marquee 48s linear infinite;
}

@keyframes marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.w-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #223A72;
	height: 80px;
	color: #FFF;
	font-family: ZonaPro;
	font-size: 32px;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: 0.9px;
	text-transform: none;
}

.w-content span {
	display: flex;
	margin: 0 5px;
	color: #62C9FE;
}

.w-content svg {
	margin: 0 50px;
}


/*end line========*/
/*start gather===========*/
.gather {
	padding: 100px 0 50px;
}

.gather__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.gather__left {
	margin: 0 5% 0 0;
	max-width: 725px;
	width: 100%;
}

.gather__left h3 {
	margin: 0 0 50px 0;
	color: #FFF;
	font-family: 'Droidd';
	font-size: 95px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 1.9px;
	text-transform: uppercase;
}

.gather__left p {
	margin: 0 0 20px 0;
	color: #FFF;
	font-family: 'ZonaPro';
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
}

.gather__right {
	padding: 2% 0 0 0;
	width: 100%;
	color: #223A72;
}

.gather__right h4 {
	margin: 0 0 20px 0;
	font-family: 'Droidd';
	font-size: 50px;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: 1.1px;
	text-transform: uppercase;
}

.gather__right li {
	color: #223A72;
	font-family: 'ZonaPro';
	font-size: 18px;
	font-weight: 400;
	line-height: 150%;
}

.gather__info {
	position: relative;
	padding: 20px;
	max-width: 622px;
	width: 100%;
	-webkit-transform: rotate(-3.001deg);
	-ms-transform: rotate(-3.001deg);
	transform: rotate(-3.001deg);
	-ms-flex-negative: 0;
	flex-shrink: 0;
	background-color: #fff;
	border-radius: 50px;
}

.gather__info::after {
	content: "";
	position: absolute;
	width: 40px;
	height: 38px;
	top: 40%;
	left: -57px;
	background-image: url("/wp-content/uploads/2023/11/gather.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.gather__info-inner {
	border: 1px solid #223A72;
	padding: 35px;
	border-radius: 30px;
}

.gather__info-inner ul,
.gather__info-inner li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gather__img {
	margin: -50px 0 0 0;
	position: relative;
	z-index: -1;
	width: 100%;
}

.gather__img img {
	width: 100%;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
}

/*end gather===========*/
/*start game=============*/
.game {
	padding: 50px 0 75px;
}

.game__inner {
	background-image: url("/wp-content/uploads/2023/11/game.svg");
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
	padding: 28px 46px;
}

.game__box {
	padding: 60px 75px;
	background-color: #62C9FE;
	border-radius: 35px;
	background-image: url("/wp-content/uploads/2023/11/game-2.svg");
	background-repeat: no-repeat;
	background-size: 12%;
	background-position: bottom 5% right 5%;
}

.game__box h4 {
	margin: 0 0 75px 0;
	color: #223A72;
	font-family: 'Droidd';
	font-size: 50px;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: 1.3px;
	text-transform: uppercase;
}

/*end game=============*/
/**start storry================*/
.storry {
	padding: 75px 0 105px;
}

.storry__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.storry__left {
	margin: 0 20px 0 0;
	max-width: 700px;
	width: 100%;
}

.storry__left h4 {
	margin: 0 0 20px 0;
}

.storry__left p {
	position: relative;
	margin: 0 0 50px 0;
	color: #FFF;
	font-family: 'ZonaPro';
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
}

.storry__left p::after {
	position: absolute;
	content: "";
	bottom: -90px;
	right: 0;
	width: 90px;
	height: 100px;
	background-image: url("/wp-content/uploads/2023/11/arrow-2.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.storry__right {
	width: 100%;
}

.storry__img {
	margin: 0 0 0 auto;
	max-width: 600px;
}

.storry__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

/**end storry================*/
/*start partner-second================*/
.partner-second {
	padding: 75px 0;
}

.partner-second h5 {
	margin: 0 0 50px 0;
}

.partner-second ul {
	margin: 0 0 0 -50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	list-style: none;
	padding: 0;
}

.partner-second li {
	margin: 0 0 25px 50px;
	width: calc(25% - 50px);
	padding: 0;
}

.partner-second li img {
	width: 100%;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
}

/*end partner-second================*/
/*start joinn=========*/
.joinn {
	padding: 75px 0 150px;
}

.joinn h5 {
	margin: 0 0 60px 0;
}

.joinn ul {
	margin: 0 0 0 -30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.joinn__item {
	margin: 0 0 25px 30px;
	width: calc(25% - 30px);
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.joinn__item span {
	display: block;
	margin: 0 0 10px 0;
	color: #FFF;
	font-family: 'Droidd';
	font-size: 65px;
	font-weight: 400;
	line-height: 120%;
	text-transform: uppercase;
}

.joinn__item p {
	color: #FFF;
	font-family: 'ZonaPro';
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
	text-align: center;
}

.joinn__img {
	margin: 0 0 20px 0;
	width: 100%;
	height: 335px;
	border-radius: 30px;
	overflow: hidden;
	background-color: #fff;
}

.joinn__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

/*end joinn=========*/
/*start share===============*/
.share {
	padding: 100px 0 0;
	background-color: #62C9FE;
}

.share__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.share__inner ul,
.share__inner li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.share h6 {
	margin: 0 0 50px 0;
	color: #223A72;
	font-family: 'Droidd';
	font-size: 85px;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: 1.9px;
	text-transform: uppercase;
}

.share ul {
	max-width: 1365px;
	width: 100%;
	margin: 0 0 65px -35px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.share li {
	margin: 0 0 25px 35px;
	width: calc(33.33333% - 35px);
}

.share a {
	position: relative;
	height: 100px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 26px 50px 26px 40px;
	border-radius: 50px;
	background-color: #223A72;
	color: #FFF;
	font-family: 'Droidd';
	font-size: 40px;
	font-weight: 400;
	letter-spacing: 0.8px;
	line-height: 1.15;
	-webkit-transition: linear .2s;
	-o-transition: linear .2s;
	transition: linear .2s;
}

.share a::after {
	position: absolute;
	content: "";
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 30px;
	background-image: url("/wp-content/uploads/2023/11/arrow-3svg.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 29px;
	height: 24px;
}

.share a:hover {
	background-color: #314c8a;
}

.share__img {
	max-width: 1095px;
	width: 100%;
	margin: 0 auto;
}

.share__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}




/*end share===============*/


@media (max-width: 1300px) {
	.titlle {
		font-size: 90px !important;
	}

	.section-one__box>span {
		margin: 0 28px 0 0;
		font-size: 46px;
	}

	.input-wrap,
	.btnn {
		height: 65px;
	}

	.btnn {
		font-size: 28px;
		padding: 21px 30px;
	}

	.section-one__box::after {
		top: 115px;
		right: 43%;
		width: 42%;
	}

	.titlle {
		font-size: 60px !important;
	}

	.share h6 {
		font-size: 60px;
	}

	.gather__right h4 {
		font-size: 32px;
	}

	.gather__right li {
		font-size: 14px;
	}

	.game__box {
		padding: 20px;
	}

	.game__box h4 {
		font-size: 38px;
	}

	.share a {
		display: flex;
		align-items: center;
		font-size: 32px;
		height: 65px;
	}
}

@media (max-width: 1100px) {
	.titlle {
		font-size: 50px !important;
	}

	.section-one__inner {
		flex-direction: column;
	}

	.section-one__right {
		max-width: 450px;
		margin: 50px auto 0;
	}

	.section-one {
		padding: 180px 0 40px !important;
	}

	.section-one__box::after {
		display: none;
	}

	.section-one__left p,
	.gather__left p,
	.storry__left p {
		font-size: 14px;
	}

	.section-one__left p span {
		font-size: 14px;
	}

	.section-one__left strong {
		font-size: 14px;
	}

	.wrap .item {
		height: 60px;
		font-size: 32px;
	}

	.gather__right h4 {
		font-size: 32px;
	}

	.gather__right li {
		font-size: 14px;
	}

	.gather__left h3 {
		margin: 0 0 30px 0;
	}

	.game__inner {
		padding: 0;
		background-image: none;
	}

	.game__box {
		padding: 30px 35px;
	}

	.game__box h4 {
		margin: 0 0 35px 0;
		font-size: 44px;
	}

	.joinn h5 {
		margin: 0 0 30px 0;
	}

	.joinn__img {
		margin: 0 0 15px 0;
		height: 235px;
	}

	.joinn__item span {
		font-size: 34px;
	}

	.joinn__item p {
		font-size: 14px;
	}

	.storry {
		padding: 50px 0 25px;
	}

	.joinn,
	.partner-second {
		padding: 50px 0;
	}

	.share h6 {
		font-size: 46px;
	}

	.share a {
		height: 65px;
		padding: 10px 50px 10px 40px;
		font-size: 26px;
		line-height: 65px;
		display: flex;
		align-items: center;
	}

	.share ul {
		margin: 0;
		max-width: 600px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.share li {
		margin: 0 0 12.5px 0;
		width: 100%;
	}
}

@media (min-width: 700px) and (max-width: 1300px) {
	.section-one .box-wrap {
		margin: 20px 13px 0 0;
	}

	.section-one .btnn span {
		display: block;
		margin: 0 5px;
	}

	.section-one .btnn {
		margin-top: -5px;
		height: 65px;
	}
}

@media (max-width: 900px) {
	.section-one__box::after {
		right: 31%;
	}

	.section-one {
		padding: 150px 0 75px;
	}

	.gather__inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.gather {
		padding: 50px 0 25px;
	}

	.storry__right {
		max-width: 300px;
	}

	.storry__img {
		position: -webkit-sticky;
		position: sticky;
		top: 0;
		margin: 0 0 0 auto;
		max-width: 300px;
	}

	.partner-second li {
		width: calc(33.33333% - 50px);
	}

	.joinn__item {
		width: calc(33.33333% - 30px);
	}

}

@media (max-width: 700px) {
	.section-one__left h1 {
		font-size: 60px !important;
	}

	.titlle {
		font-size: 36px !important;
	}

	.section-one__box::after {
		display: none;
	}

	.section-one__box {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.section-one__box .btnn {
		margin: 15px 0 0 0;
		width: 100%;
	}

	.section-one__box>span {
		max-width: 1258px;
	}

	.section-one .box-wrap {
		margin: 20px 0 0 auto;
		width: calc(100% - 150px);
	}

	.input-wrap {
		width: 100%;
	}

	.content {
		font-size: 24px;
	}

	.gather__info {
		padding: 10px;
		border-radius: 35px;
	}

	.gather__info-inner {
		padding: 15px;
	}

	.gather__img {
		margin: -20px auto 0 auto;
	}

	.game__box {
		padding: 20px 15px;
		border-radius: 15px;
	}

	.game__box h4 {
		font-size: 30px;
	}

	.game__box .btnn {
		width: 100%;
	}

	.storry__inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.storry__inner .btnn {
		width: 100%;
	}

	.storry__right {
		max-width: 300px;
		margin: 50px auto 0;
	}

	.storry__left p::after {
		display: none;
	}

	.partner-second li {
		width: calc(50% - 50px);
	}

	.joinn__item {
		width: calc(50% - 30px);
	}

	.joinn__img {
		height: 180px;
	}

	.share {
		padding: 50px 0 0;
	}

	.share h6 {
		margin: 0 0 30px 0;
		font-size: 42px;
	}

}




















/*Lawyers pages*/
.lawyer-blk-2-1,
.lawyer-blk-2-2 {
	color: #fff;
}

.lawyer-blk-2-1 {
	margin: 75px 0;
}

.lawyer-blk-2-1 .row,
.lawyer-blk-2-2 .row {
	border-bottom: 1px solid #fff;
	padding-bottom: 75px;
}

.lawyer-blk-2-1 h2,
.lawyer-blk-2-2 h2 {
	color: #fff;
	font-size: 42px;
	font-weight: 800;
	margin-bottom: 30px;
}

.page-template-lawyer-advice-tpl ul {
	margin: 0;
	padding: 0 0 0 1em;
}

/* .page-template-lawyer-advice-tpl ul li {
    margin-bottom: 10px;
}
 */


.custom-btn-1 {
	display: block;
	margin-top: 50px;
}

@media screen and (max-width: 767px) {
	.custom-btn-1 {
		margin-bottom: 50px;
		width: 100%;
	}

	.custom-btn-1 a {
		width: 100%;
		display: block;
		text-align: center;
	}
}

/*Advices*/
.advblk1 {
	padding-top: 210px;
	padding-bottom: 100px;
	color: #fff;
}

.advblk1 h1 {
	font-size: 36px;
	font-weight: 800;
	margin-top: 0;
}

.advblk1 ol {
	margin: 0 0 1.5em 1em;
	padding-left: 0;
}

.center-btn {
	display: flex;
	justify-content: center;
}



.advblk1 .center-btn .y-btn {
	margin: 0 10px;
}

.y-btn a {
	text-decoration: none;
}

.y-btn-inner {
	color: #00151E;
	padding: 15px 40px;
	background-color: var(--yellow);
	border-radius: 20px;
}

.lawyer-blk-1 .subtitle {
	max-width: 60%;
	margin-bottom: 50px;
}

.lawyer-blk-1 .y-btn-i {
	padding: 15px 20px;
}

.lawyer-blk-1 h1 {
	text-transform: uppercase;
}

.lawyer-blk-2 {
	margin-top: 70px;
	color: #fff;
	margin-bottom: 50px;
}

.lawyer-blk-2 h2 {
	color: #fff;
	font-size: 42px;
	font-weight: 800;
	margin-bottom: 30px;
}

.advice {
	padding: 20px 30px;
	margin-bottom: 20px;
	border-radius: 20px;
	border: 1px solid var(--blue);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.advice p {
	margin-bottom: 0;
	max-width: 80%;
	font-size: 18px;
	font-weight: 800;
}

.advice-link {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.advice-link a {
	color: var(--yellow);
	font-weight: 800;
}

.advice-link img {
	margin-left: 10px;
}

@media screen and (max-width: 767px) {

	.lawyer-blk-2-1 h2,
	.lawyer-blk-2-2 h2,
	.lawyer-blk-2 h2 {
		color: #fff;
		font-size: 24px;
	}

	.advblk1 h1 {
		font-size: 24px;
	}

	.lawyer-blk-1 .subtitle {
		max-width: 100%;
		margin-bottom: 20px;
	}

	.lawyer-blk-2-1 .row,
	.lawyer-blk-2-2 .row {
		padding-bottom: 25px;
	}

	.lawyer-blk-2-1 {
		margin: 50px 0;
	}

	.lawyer-blk-2-1 ul,
	.lawyer-blk-2-2 ul {
		margin: 0;
	}

	.advice {
		align-items: flex-start;
		justify-content: space-between;
		flex-direction: column;
	}

	.advice p {
		margin-bottom: 10px;
		max-width: 100%;
		font-size: 16px;
	}
}



/*Team*/
.team-blk1 {
	padding-top: 210px;
	padding-bottom: 0;
	color: #fff;
	margin-bottom: 50px;
}

.team-blk1 h1 {
	font-size: 75px;
	font-weight: 800;
	margin-top: 0;
}

.team-blk1 .subtitle {
	margin-top: 20px;
}

.team-blk2 {
	margin-bottom: 100px;
}

.team-blk3 h2 {
	font-size: 60px;
	font-weight: 800;
	margin-bottom: 30px;
	color: #fff;
}

.team-person {
	color: #fff;
}

.team-person img {
	border-radius: 15px;
	margin-bottom: 10px;
}

.team-person .name {
	font-size: 21px;
	font-weight: 800;
	margin-bottom: 10px;
}

.team-person .position {
	font-size: 14px;
}



.team-blk4 {
	margin-bottom: 100px;
}

.team-blk4 .accordion {
	background-color: #00151E;
	border: 1px solid var(--blue);
	color: #fff;
	font-weight: 800;
	font-size: 36px;
	cursor: pointer;
	padding: 30px;
	width: 100%;
	text-align: left;
	outline: none;
	margin-top: 20px;
	border-radius: 30px;
	transition: 0.4s;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.team-blk4 .active,
.team-blk4 .accordion:hover {
	background-color: var(--blue);
	border: 1px solid var(--blue);
	color: #fff;
	transition: 0.4s;
}

.team-blk4 .accordion:hover .accordion:after {
	color: #fff;
}

.team-blk4 .panel {
	padding: 0;
	border-radius: 30px;
	background-color: #00151E;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

.team-blk4 .accordion:after {
	content: '\02193';
	font-size: 20px;
	color: #00151E;
	float: right;
	margin-left: 15px;
	background-color: var(--yellow);
	border-radius: 20px;
	padding: 5px;
	width: 30px;
	height: 30px;
	text-align: center;
}

.team-blk4 .active:after {
	content: "\02191";
	color: #00151E;
}

.team-blk4 .panel .content {
	margin: 20px 0;
}

.team-blk5 {
	margin-bottom: 100px;
	color: #fff;
	text-align: center;
	background-image: url('/wp-content/uploads/2023/09/arrow.svg');
	background-repeat: no-repeat;
	background-size: 10%;
	background-position: 95% 50%;
}

.team-blk5 .title {
	font-size: 45px;
	font-weight: 800;
	margin-bottom: 20px;
}

.team-blk5 .subtitle {
	font-size: 18px;
	margin-bottom: 50px;
}

.team-blk5 .y-btn {
	justify-content: center;
}

.team .team-row .y-btn {
	justify-content: center;
	margin-top: 50px;
}

.team-key-v1 {
	padding-top: 0 !important;
}

.team-key-v1 .key-v1-box {
	background-position: 90% 100%;
}


@media screen and (max-width: 767px) {
	.team-blk1 {
		padding-top: 150px;
	}

	.team-blk1 h1 {
		font-size: 36px;
		margin-bottom: 10px;
	}

	.team-blk1 .y-btn {
		display: block;
		text-align: center;
	}

	.team-blk2 {
		margin-bottom: 50px;
	}

	.team-blk3 h2 {
		font-size: 28px;
		margin-bottom: 20px;
	}

	.team-blk4 .accordion {
		font-size: 18px;
		padding: 20px 30px;
		line-height: 1.5;
	}

	.team-blk4 .accordion:after {
		line-height: 1;
		min-width: 30px;
	}

	.team-blk5 .title {
		font-size: 24px;
	}

	.team-blk5 .subtitle {
		font-size: 14px;
		margin-bottom: 30px;
	}

	.team-blk5 .y-btn {
		justify-content: center;
		display: block;
	}

	.team-blk5 {
		background-size: 12%;
		background-position: 100% 75%;
	}

	.team .team-row .y-btn {
		width: 100%;
		display: block;
		text-align: center;
	}

	.team-key-v1 .key-v1-box {
		background-position: 50% 100%;
		background-size: 75%;
	}

	.team-key-v1 .key-v1-box .y-btn {
		margin-bottom: 250px;
	}
}



@media (min-width: 768px) and (max-width: 991px) {
	.team-blk1 h1 {
		font-size: 42px;
	}

	.team-blk1 .subtitle {
		margin-top: 10px;
		font-size: 14px;
	}

	.team-blk1 .y-btn-i {
		padding: 15px 30px;
	}

	.team-blk3 h2 {
		font-size: 36px;
	}

	.team-person .name {
		font-size: 16px;
	}

	.team-person .position {
		font-size: 12px;
	}

	.team-blk4 .accordion {
		font-size: 24px;
		padding: 20px 30px;
	}

	.team-blk5 .title {
		font-size: 24px;
	}

	.team-blk5 .subtitle {
		font-size: 14px;
	}

	.team-blk5 {
		background-size: 15%;
		background-position: 95% 20%;
	}
}

@media (min-width: 992px) and (max-width: 1399px) {
	.team-blk1 h1 {
		font-size: 60px;
	}

	.team-blk3 h2 {
		font-size: 48px;
	}

	.team-person .name {
		font-size: 16px;
	}

	.team-person .position {
		font-size: 12px;
	}

	.team-blk4 .accordion {
		font-size: 28px;
	}

	.team-blk5 .title {
		font-size: 32px;
	}

	.team-blk5 {
		background-size: 12%;
		background-position: 93% 25%;
	}
}




/*Home new*/
.protection {
	background-color: #FECA3B;
	padding: 100px 0;
	color: #333;
	text-align: center;
	z-index: 0;
	position: relative;
}

.protection-title {
	font-size: 60px;
	font-weight: 800;
	line-height: 1.1;
	text-transform: uppercase;
	margin: 0 0 20px 0;
}

.protection-subtitle {
	font-size: 22px;
	margin-bottom: 50px;
}

.protection .btn-nh {
	width: auto;
	display: flex;
	justify-content: center;
}

.protection .btn-nh-inner {
	background-color: var(--blue);
	border: 1px solid var(--blue);
	color: #fff;
	padding: 15px 50px;
}

.btns,
.our-results,
.h-need-help,
.how-to-support,
.about {
	position: relative;
	z-index: 1;
}

.protection .row {
	z-index: 9;
	position: relative;
}

.protection-img-mob {
	display: none;
}

.protection-img-bg {
	position: relative;
}

.img-bg-1 img {
	position: absolute;
	left: 0;
	top: -900px;
	width: 150px;
	z-index: 1;
	border-radius: 20px;
	animation: movebg-1 10s infinite;
	animation-timing-function: linear;
}

@keyframes movebg-1 {
	0% {
		top: -900px;
	}

	100% {
		top: 750px;
	}
}

.img-bg-2 img {
	position: absolute;
	left: 100px;
	top: -600px;
	width: 125px;
	z-index: 1;
	border-radius: 20px;
	animation: movebg-2 10s infinite;
	animation-timing-function: linear;
	animation-delay: 0s;
}

@keyframes movebg-2 {
	0% {
		top: -600px;
	}

	100% {
		top: 1050px;
	}
}

.img-bg-3 img {
	position: absolute;
	left: 0px;
	top: -400px;
	width: 200px;
	z-index: 1;
	border-radius: 20px;
	animation: movebg-3 10s infinite;
	animation-timing-function: linear;
}

@keyframes movebg-3 {
	0% {
		top: -400px;
	}

	100% {
		top: 1250px;
	}
}

.img-bg-4 img {
	position: absolute;
	left: 0;
	top: -900px;
	width: 150px;
	z-index: 1;
	border-radius: 20px;
	animation: movebg-4 10s infinite;
	animation-timing-function: linear;
	animation-delay: 5s;
}

@keyframes movebg-4 {
	0% {
		top: -900px;
	}

	100% {
		top: 750px;
	}
}

.img-bg-5 img {
	position: absolute;
	left: 100px;
	top: -600px;
	width: 125px;
	z-index: 1;
	border-radius: 20px;
	animation: movebg-5 10s infinite;
	animation-timing-function: linear;
	animation-delay: 5s;
}

@keyframes movebg-5 {
	0% {
		top: -600px;
	}

	100% {
		top: 1050px;
	}
}

.img-bg-6 img {
	position: absolute;
	left: 0px;
	top: -400px;
	width: 200px;
	z-index: 1;
	border-radius: 20px;
	animation: movebg-6 10s infinite;
	animation-timing-function: linear;
	animation-delay: 5s;
}

@keyframes movebg-6 {
	0% {
		top: -400px;
	}

	100% {
		top: 1250px;
	}
}

/*---------Right---------*/
.img-bg-7 img {
	position: absolute;
	right: 0;
	top: -900px;
	width: 190px;
	z-index: 1;
	border-radius: 20px;
	animation: movebg-7 10s infinite;
	animation-timing-function: linear;
}

@keyframes movebg-7 {
	0% {
		top: -900px;
	}

	100% {
		top: 750px;
	}
}

.img-bg-8 img {
	position: absolute;
	right: 100px;
	top: -600px;
	width: 100px;
	z-index: 1;
	border-radius: 20px;
	animation: movebg-8 10s infinite;
	animation-timing-function: linear;
	animation-delay: 0s;
}

@keyframes movebg-8 {
	0% {
		top: -600px;
	}

	100% {
		top: 1050px;
	}
}

.img-bg-9 img {
	position: absolute;
	right: 0;
	top: -400px;
	width: 125px;
	z-index: 1;
	border-radius: 20px;
	animation: movebg-9 10s infinite;
	animation-timing-function: linear;
}

@keyframes movebg-9 {
	0% {
		top: -400px;
	}

	100% {
		top: 1250px;
	}
}

.img-bg-10 img {
	position: absolute;
	right: 0;
	top: -900px;
	width: 190px;
	z-index: 1;
	border-radius: 20px;
	animation: movebg-10 10s infinite;
	animation-timing-function: linear;
	animation-delay: 5s;
}

@keyframes movebg-10 {
	0% {
		top: -900px;
	}

	100% {
		top: 750px;
	}
}

.img-bg-11 img {
	position: absolute;
	right: 100px;
	top: -600px;
	width: 100px;
	z-index: 1;
	border-radius: 20px;
	animation: movebg-11 10s infinite;
	animation-timing-function: linear;
	animation-delay: 5s;
}

@keyframes movebg-11 {
	0% {
		top: -600px;
	}

	100% {
		top: 1050px;
	}
}

.img-bg-12 img {
	position: absolute;
	right: 0;
	top: -400px;
	width: 125px;
	z-index: 1;
	border-radius: 20px;
	animation: movebg-12 10s infinite;
	animation-timing-function: linear;
	animation-delay: 5s;
}

@keyframes movebg-12 {
	0% {
		top: -400px;
	}

	100% {
		top: 1250px;
	}
}









.useful {
	padding: 0 0 100px 0;
	color: #fff;
}

.useful h2 {
	font-weight: 600;
	font-size: 55px;
	margin-bottom: 20px;
}

.useful-box {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 30px;
}

.useful-box .left {
	width: 33%;
}

.useful-box .right {
	width: 67%;
	padding-left: 20px;
}

.useful-box img {
	border-radius: 20px;
}

.useful-box .title {
	font-size: 28px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 20px;
}

.useful-box a {
	color: var(--yellow);
	text-align: left;
	font-weight: 800;
}

.useful-box a img {
	width: 8px;
	border: none;
	margin-left: 10px;
	display: inline-block;
	border-radius: 0;
}


.uan-projects {
	padding: 0 0 100px 0;
	color: #fff;
	background-color: #00161e;
	z-index: 1;
	position: relative;
}

.uan-projects h2 {
	font-weight: 600;
	font-size: 60px;
	margin-bottom: 50px;
}

.swp-prj .title {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	text-align: left;
	text-transform: uppercase;
	margin-bottom: 30px;
}

.swp-prj a {
	color: #fff;
	text-align: left;
	font-weight: 600;
}

.prj-swiper .swiper-slide {
	background: transparent;
}

.swiper-slide .swp-prj img {
	width: 8px;
	border: none;
	margin-left: 10px;
	display: inline-block;
}

.swp-prj {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #223A72;
	border-radius: 20px;
}

.swp-prj .left {
	width: 50%;
	padding: 50px 40px;
	text-align: left;
}

.swp-prj .right {
	width: 40%;
	padding: 0 20px 0 0;
}

.swiper-slide .swp-prj .right img {
	width: 100%;
	border-radius: 20px;
	margin-left: 0;
}

.prj-swiper {
	position: relative;
}

.prjSwiper .swiper-button-prev {
	margin-left: -20px;
}

.prjSwiper .swiper-button-next {
	margin-right: -20px;
}

.prjSwiper .swiper-slide {
	background: transparent;
}

.prjSwiper .swiper-button-next,
.prjSwiper .swiper-button-prev {
	width: calc(var(--swiper-navigation-size)/ 50 * 50);
	background-color: var(--yellow);
	border-radius: 50px;
}

.prjSwiper .swiper-button-next:after,
.prjSwiper .swiper-button-prev:after {
	font-size: 10px;
	color: #00151E;
}

.prjSwiper .swiper-wrapper {
	align-items: stretch;
}





.how-to-support {
	padding: 50px 0 50px 0;
	color: #fff;
	background-color: #00161e;
}

.how-to-support h2 {
	font-weight: 600;
	font-size: 55px;
	margin-bottom: 50px;
}

.swp-sup {
	border-radius: 20px;
	padding: 30px 20px 150px 20px;
	text-align: left;
	background-color: #001733;
	border: 1px solid #003575;
	background-repeat: no-repeat;
	background-size: 50%;
	background-position: 115% 130%;
}

.sup-swiper,
.sup-swiper2 {
	position: relative;
}

.sup-swiper .swiper-button-prev,
.sup-swiper2 .swiper-button-prev {
	margin-left: -60px;
}

.sup-swiper .swiper-button-next {
	margin-right: -60px;
}

.sup-swiper .swiper-slide {
	background: transparent;
}

.sup-swiper .swiper-button-next,
.sup-swiper .swiper-button-prev,
.sup-swiper2 .swiper-button-next,
.sup-swiper2 .swiper-button-prev {
	width: calc(var(--swiper-navigation-size)/ 50 * 50);
	background-color: var(--yellow);
	border-radius: 50px;
}

.sup-swiper .swiper-button-next:after,
.sup-swiper .swiper-button-prev:after,
.sup-swiper2 .swiper-button-next:after,
.sup-swiper2 .swiper-button-prev:after {
	font-size: 10px;
	color: #00151E;
}





.swp-sup .title {
	font-size: 26px;
	font-weight: 800;
	color: #fff;
	text-align: left;
	text-transform: uppercase;
	margin-bottom: 30px;
}

.swp-sup a {
	color: var(--yellow);
	text-align: left;
	font-weight: 800;
}

.swiper-slide .swp-sup img {
	width: 8px;
	border: none;
	margin-left: 10px;
	display: inline-block;
}


.h-need-help {
	color: #fff;
	padding: 0 0 100px 0;
	background-color: #00161e;
}

.h-need-help h2 {
	font-weight: 800;
	font-size: 60px;
	margin-bottom: 20px;
}

.h-need-help .info {
	margin-bottom: 50px;
}

.h-need-help .text {
	color: #fff;
}

.h-need-help-box {
	background-color: #013575;
	padding: 30px;
	border-radius: 30px;
}

.h-need-help-box .title {
	text-transform: uppercase;
	font-weight: 800;
	color: #fff;
	font-size: 24px;
	min-height: 110px;
}

.btn-nh {
	width: 100%;
}

.btn-nh a {
	font-weight: 800;
}

.btn-nh-inner {
	background-color: var(--yellow);
	border: 1px solid var(--yellow);
	padding: 15px 30px;
	border-radius: 20px;
	color: #1F140F;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	transition: all 0.5s;
}

.btn-nh-brd-inner {
	background-color: #013575;
	border: 1px solid var(--yellow);
	padding: 15px 20px;
	border-radius: 20px;
	color: var(--yellow);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.5s;
	font-size: 15px;
}

.our-results {
	padding: 100px 0 50px 0;
	color: #fff;
	background-color: #00151E;
}

.our-results h2 {
	font-weight: 800;
	font-size: 60px;
	margin-bottom: 50px;
}

.our-results .number {
	font-weight: 800;
	font-size: 60px;
	margin-bottom: 0;
	line-height: 1;
}

.our-results .info {
	margin-bottom: 0;
}

.our-results .result {
	display: flex;
	align-items: flex-end;
	padding-bottom: 20px;
	padding-top: 20px;
}

.result-line {
	border-bottom: 1px solid #003575;
}


@media (min-width: 992px) and (max-width: 1200px) {
	.protection-title {
		font-size: 42px;
	}

	.protection-subtitle {
		font-size: 18px;
		margin: 0 auto;
		margin-bottom: 50px;
		max-width: 550px;
	}

	.btn-nh-inner,
	.btn-nh-brd-inner {
		padding: 15px;
	}

	.our-results h2,
	.h-need-help h2,
	.how-to-support h2,
	.uan-projects h2,
	.useful h2 {
		font-size: 45px;
	}

	.our-results .number {
		font-size: 45px;
	}

	.our-results .info {
		font-size: 14px;
	}

	.h-need-help-box .title {
		font-size: 18px;
		min-height: 90px;
	}

	.swp-sup .title {
		font-size: 28px;
	}

	.swp-sup {
		background-size: 40%;
		padding: 30px 20px 100px 20px;
	}

	.swp-prj .left {
		padding: 30px 40px;
	}

	.swp-prj .title {
		font-size: 28px;
	}

	.swp-prj .left .info {
		font-size: 14px;
	}

	.useful-box .title {
		font-size: 20px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.protection-title {
		font-size: 36px;
	}

	.protection-subtitle {
		font-size: 18px;
		margin: 0 auto;
		margin-bottom: 50px;
		max-width: 550px;
	}

	.protection-img-bg img {
		max-width: 120px;
	}

	.img-bg-2 img,
	.img-bg-5 img {
		left: 50px;
	}

	.img-bg-8 img,
	.img-bg-11 img {
		right: 50px;
	}

	.btn-nh-inner,
	.btn-nh-brd-inner {
		padding: 10px;
		font-size: 12px;
	}

	.our-results h2,
	.h-need-help h2,
	.how-to-support h2,
	.uan-projects h2,
	.useful h2 {
		font-size: 36px;
	}

	.our-results .number {
		font-size: 32px;
	}

	.our-results .info {
		font-size: 12px;
		min-height: 55px;
		display: flex;
		align-items: flex-end;
	}

	.h-need-help-box {
		padding: 20px;
	}

	.h-need-help-box .title {
		font-size: 16px;
		min-height: 90px;
	}

	.swp-sup .title {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.swp-sup {
		background-size: 35%;
		padding: 20px 20px 70px 20px;
	}

	.swp-sup a {
		font-size: 16px;
	}

	.swp-prj .left {
		padding: 20px;
	}

	.swp-prj .title {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.swp-prj a {
		font-size: 16px;
	}

	.swp-prj .left .info {
		font-size: 12px;
	}

	.useful-box .title {
		font-size: 16px;
	}

	.useful-box a {
		font-size: 16px;
	}

	.btns .btn-p-inner {
		padding: 15px;
	}
}

@media screen and (max-width: 767px) {
	.protection {
		padding: 50px 0;
		/*margin-top: 100px;
		margin-bottom: 50px;*/
		z-index: 9;
	}

	.protection-title {
		font-size: 28px;
	}

	.protection-subtitle {
		font-size: 18px;
	}

	.protection-img-bg {
		display: none;
	}

	.protection-img-mob {
		display: none;
		position: relative;
	}

	.protection-img-mob img {
		border-radius: 20px;
		position: absolute;
	}

	.img-bgmob-1 img {
		width: 100px;
		left: 0%;
		top: -170px;
		z-index: 9;
	}

	.img-bgmob-2 img {
		width: 100px;
		left: 8%;
		bottom: -410px;
		z-index: 9;
	}

	.img-bgmob-3 img {
		width: 100px;
		right: 8%;
		top: -140px;
		z-index: 9;
	}

	.img-bgmob-4 img {
		width: 100px;
		right: 0%;
		bottom: -420px;
		z-index: 9;
	}


	.our-results h2 {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.our-results .number {
		font-size: 28px;
	}

	.our-results .info {
		font-size: 13px;
	}

	.our-results {
		padding: 50px 0 50px 0;
	}

	.h-need-help h2 {
		font-size: 28px;
	}

	.h-need-help {
		padding: 0 0 50px 0;
	}

	.h-need-help .text {
		max-width: 428px;
	}

	.how-to-support {
		padding: 35px 0;
	}

	.h-need-help-box .title {
		min-height: 0;
		font-size: 21px;
	}

	.h-need-help-box {
		margin-bottom: 20px;
	}

	.how-to-support h2 {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.uan-projects h2 {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.swp-prj .title {
		font-size: 19px;
	}

	.swp-prj {
		flex-direction: column;
	}

	.swp-prj .left {
		width: auto;
		padding: 50px 30px;
	}

	.swp-prj .right {
		padding: 0;
		width: 100%;
	}

	.swiper-slide .swp-prj .right img {
		width: 100%;
		margin-left: 0;
	}

	.prj-swiper .swiper-button-prev {
		margin-left: -30px;
		opacity: 0.8;
	}

	.prj-swiper .swiper-button-next {
		margin-right: -30px;
		opacity: 0.8;
	}

	.swp-sup .title {
		font-size: 24px;
	}

	.sup-swiper .swiper-button-prev,
	.sup-swiper2 .swiper-button-prev {
		margin-left: -30px;
		opacity: 0.8;
	}

	.sup-swiper .swiper-button-next,
	.sup-swiper2 .swiper-button-next {
		margin-right: -30px;
		opacity: 0.8;
	}

	.useful {
		padding: 35px 0;
	}

	.useful h2 {
		font-size: 28px;
	}

	.useful-box .title {
		font-size: 21px;
	}

	.useful-box {
		flex-direction: column;
	}

	.useful-box .left {
		width: 100%;
	}

	.useful-box .right {
		width: 100%;
		padding-left: 0;
		padding-top: 20px;
	}


}


/*Thank you*/

.thankyou-text {
	text-transform: inherit;
	font-weight: 600;
}

.thankyou-2 {
	color: #fff;
	text-align: center;
	padding: 200px 0;
}

.thankyou-2 .thankyou-text {
	font-size: 45px;
	text-transform: unset;
	margin-top: 0;
	margin-bottom: 30px;
}

.thankyou-2 .thankyou-description {
	text-align: center;
	margin-bottom: 50px;
}

.thankyou-2 .site-cta {
	text-align: center;
}

@media screen and (max-width: 767px) {
	.thankyou-2 .thankyou-text {
		font-size: 24px;
	}
}


/*Thank-you-3*/
.thankyou-3 {
	color: #fff;
	padding: 200px 0;
}

.thankyou-3 .thankyou-text {
	font-size: 45px;
	text-transform: unset;
	margin-top: 0;
	margin-bottom: 20px;
	text-align: left;
	line-height: 1.3;
}

.thankyou-3 .thankyou-description {
	margin-bottom: 50px;
}

.thankyou-3 .row {
	justify-content: space-between;
}

.thankyou-3 .y-btn-i {
	padding: 15px 20px;
	font-size: 16px;
}

.thankyou-3 .hf-box-sum {
	margin: 20px -5px 20px -5px;
}

.thankyou-3 .hf-user-fields input {
	padding: 12px 30px;
	border: 1px solid #013575;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	color: #00151E;
	width: 100%;
	margin-bottom: 20px;
}


@media screen and (max-width: 1399px) {
	.thankyou-3 .find-cover-btns {
		flex-direction: column;
	}

	.thankyou-3 .find-cover-btns .y-btn {
		text-align: center;
		display: block;
		width: 100%;
		margin-bottom: 10px;
		margin-right: 0 !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.thankyou-3 .thankyou-text {
		font-size: 36px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.thankyou-3 .thankyou-text {
		font-size: 32px;
	}
}

@media screen and (max-width: 767px) {
	.thankyou-3 {
		padding: 150px 0;
	}

	.thankyou-3 .thankyou-text {
		font-size: 32px;
	}

	.thankyou-3 .hf-box-text {
		font-size: 16px;
	}
}


/*Vacancy archive*/
.vac-archive-1 {
	padding: 200px 0 50px 0;
	color: #fff;
}

.vac-archive-1 h1 {
	font-size: 60px;
	font-weight: 800;
	margin-bottom: 20px;
}

.vac-archive-1 .subtitle {
	font-size: 36px;
	font-weight: 800;
	color: var(--yellow);
	margin-bottom: 20px;
}

.vac-list {
	padding: 0 0 100px 0;
	color: #fff;
}

.vac-list h2 {
	font-size: 60px;
	font-weight: 800;
	margin-bottom: 30px;
}

.vac-list-item {
	padding: 30px;
	background-color: var(--blue);
	border-radius: 30px;
	min-height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.vac-list-item .title {
	font-weight: 800;
	font-size: 24px;
}

.vac-list-item .detail {
	font-size: 18px;
	text-align: center;
	background-color: var(--blue);
	border: 1px solid var(--yellow);
	padding: 15px;
	border-radius: 20px;
	margin-bottom: 0;
	color: var(--yellow);
	font-weight: 800;
	transition: all .5s;
}

.vac-list-item .detail:hover {
	background-color: var(--yellow);
	border: 1px solid var(--yellow);
	color: #1F140F;
	transition: all .5s;
}

.vac-archive-2 {
	color: #fff;
	padding: 100px 0;
}

.vac-archive-2 .img-box img {
	width: 90%;
}

.vac-archive-2 .img-decor {
	position: relative;
	top: -150px;
	left: -30px;
	margin-bottom: -200px;
}

.vac-archive-2 .img-box-2 {
	padding: 100px 0 50px 0;
}

.vac-archive-3 {
	color: #fff;
	padding: 0 0 100px 0;
}

.vac-archive-3 h2 {
	color: #fff;
	font-size: 60px;
	font-weight: 800;
}

.vac-archive-4 {
	padding: 0 0 100px 0;
	color: #fff;
}

.vac-archive-4 .under-vac-title {
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 20px;
}

.vac-archive-4 .under-vac-text a {
	color: var(--yellow);
	font-weight: 800;
}


@media screen and (max-width: 767px) {
	.vac-archive-1 {
		padding: 150px 0 50px 0;
	}

	.vac-archive-1 h1 {
		font-size: 28px;
	}

	.vac-archive-1 .subtitle {
		font-size: 21px;
	}

	.vac-archive-2 {
		padding: 0;
	}

	.vac-archive-2 .img-box img {
		width: 100%;
	}

	.vac-archive-2 .img-decor {
		width: 100px;
		top: -100px;
		left: -15px;
		margin-bottom: -80px;
	}

	.vac-archive-2 .img-box-2 {
		padding: 0 0 50px 0;
	}

	.vac-archive-3 h2 {
		font-size: 36px;
	}

	.vac-archive-3 {
		padding: 0 0 50px 0;
	}

	.vac-list h2 {
		font-size: 36px;
		font-weight: 800;
		margin-bottom: 10px;
	}

	.vac-list-item {
		padding: 20px;
		border-radius: 20px;
		min-height: 100%;
	}

	.vac-list-item .title {
		font-size: 21px;
	}

	.vac-archive-4 .under-vac-title {
		font-size: 21px;
		font-weight: 800;
		margin-bottom: 20px;
	}
}



/*Vacancy*/
.vacblk1 {
	padding: 200px 0 0 0;
	color: #fff;
}

.vacblk1 h1 {
	font-weight: 800;
	font-size: 48px;
}

.vacblk2 .description {
	color: #fff;
}

.vacblk2 .description h2 {
	color: var(--yellow);
	font-weight: 800;
	font-size: 28px;
	margin-bottom: 20px;
	margin-top: 50px;
}

.vacblk2 .description ul {
	margin: 0 0 1.5em 0;
	padding-left: 1rem;
}

.vacblk2 .description ul li {
	margin-bottom: 10px;
}

.vacblk3 {
	padding: 50px 0 100px 0;
	color: #fff;
}

.vacblk3 h2 {
	font-weight: 800;
	font-size: 36px;
	margin-bottom: 20px;
}

.vac-all input {
	width: 100%;
	border-radius: 20px;
	height: 80px;
	font-size: 18px;
	padding: 20px;
	margin-bottom: 20px;
}

.vac-all select {
	width: 100%;
	border-radius: 20px;
	height: 80px;
	font-size: 18px;
	padding: 20px;
	margin-bottom: 20px;
}


.vac-all textarea {
	width: 100%;
	border-radius: 20px;
	height: 100px;
	font-size: 18px;
	padding: 20px;
	margin-bottom: 20px;
}

.vac-all input[type="submit"] {
	background: var(--yellow);
	color: #00151E;
	border: 1px solid var(--yellow);
	font-size: 24px !important;
	transition: all .5s;
}

.vac-all input[type="submit"]:hover {
	background: #003575;
	border: 1px solid #003575;
	color: #fff;
	transition: all .5s;
}

.vac-all .accept input {
	width: auto;
	height: auto;
}

.wpcf7 input[type="file"] {
	width: 0;
	height: 0;
	visibility: hidden;
	margin: 0;
	padding: 0;
	max-width: inherit !important;
}

.vac-file {
	margin-bottom: 20px;
}

.vac-file-text {
	color: #00151E;
	display: inline-block;
	background: #ffc300;
	border: 2px solid #ffc300;
	border-radius: 10px;
	padding: 10px 30px;
	outline: none;
	white-space: nowrap;
	-webkit-user-select: none;
	cursor: pointer;
	font-weight: 800;
	text-transform: uppercase;
	font-family: "ZonaPro";
	font-size: 16px;
	text-align: center;
	transition: all .5s;
}

#list_file {
	font-size: 12px;
	margin-left: 10px;
}

.vac-submit {
	margin-top: 20px;
}

/*
.wpcf7-file {
    color: #fff;
    transition: all .5s;
}
.wpcf7-file::-webkit-file-upload-button {
    visibility: hidden;
}
.wpcf7-file::before {
    content: 'Завантажити резюме';
    color: #00151E;
    display: inline-block;
    background: #ffc300;
    border: 2px solid #ffc300;
    border-radius: 10px;
    padding: 10px 15px;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    font-weight: 800;
    text-transform: uppercase;
    font-family: "ZonaPro";
    font-size: 16px;
    margin-right: -100px;
    transition: all .5s;
}
.wpcf7-file:active {
    outline: 0;
}
.wpcf7-file:hover::before {
    border-color: #003575;
    background-color: #003575;
    color: #fff;
}
.wpcf7-file:active::before {
    background-color: #003575;
    color: #fff;
}*/

@media screen and (max-width: 767px) {
	.vacblk1 {
		padding: 150px 0 0 0;
	}

	.vacblk1 h1 {
		font-size: 28px;
	}

	.vacblk2 .description h2 {
		font-size: 21px;
		margin-top: 30px;
	}

	.vacblk3 h2 {
		font-size: 21px;
	}

	.vac-all input {
		height: 60px;
		font-size: 12px;
		padding: 15px;
		border-radius: 10px;
	}

	.vac-all textarea {
		font-size: 12px;
		padding: 15px;
		border-radius: 10px;
		margin-bottom: 15px;
	}

	.vac-all .accept .wpcf7-list-item-label {
		margin-top: -50px;
	}

	.vac-all .accept input[type=checkbox]:checked:after {
		top: 7px;
		left: 12px;
	}

	.vac-all .accept input[type=checkbox]:before {
		top: 5px;
		left: 5px;
	}

	.vac-all input[type="submit"] {
		font-size: 21px !important;
		margin-top: 20px;
	}

	.vac-file {
		width: 100%;
		margin-bottom: 0px;
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		flex-direction: column;
	}

	.vac-file-text {
		width: 100%;
		padding: 10px 15px;
		font-size: 14px;
	}

	#list_file {
		font-size: 12px;
		margin-top: -10px;
		margin-left: 0;
	}

	/*.vac-all .wpcf7-file {
        color: red !important;
    }
    .wpcf7 input[type="file"] {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        justify-content: space-between;
        height: 90px;
        max-width: 100% !important;
        width: 100%;
        text-align: left;
        padding-right: 0;
        margin-bottom: 0;
    }
    .wpcf7-file::before {
        margin-right: 0;
        width: 100%;
        text-align: center;
    }*/
}






.zbory-title-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.zbory-title-btn .site-cta {
	display: none;
}

@media screen and (max-width: 767px) {
	.zbory-title-btn {
		margin-bottom: 30px;
	}

	.zbory-title-btn .contact-title {
		font-size: 21px;
		max-width: 70%;
	}
}

/*Humanutarian form*/
.humanutarian-form {
	margin: 0 auto;
	width: 600px;
}

.humanutarian-form input[type="text"],
.humanutarian-form input[type="email"],
.humanutarian-form input[type="tel"],
.humanutarian-form textarea {
	width: 100%;
	margin-bottom: 10px;
	border-radius: 10px;
	height: 60px;
}

.humanutarian-form .pf-submit input[type="submit"] {
	width: 100%;
}

.humanutarian-form .accept {
	margin: -10px 0 10px 0;
}

@media screen and (max-width: 767px) {
	.humanutarian-form {
		width: 100%;
	}
}


/*Cooperation list*/
.coop-list {
	margin-bottom: 100px;
}

.coop-list-item {
	border: 2px solid #003575;
	border-radius: 20px;
	margin-bottom: 30px;
}

.coop-list-img {
	height: 250px;
	background-size: cover;
	border-radius: 20px;
}

.coop-list-item .title {
	font-size: 22px;
	font-weight: 800;
	text-transform: uppercase;
	margin: 20px 20px 30px 20px;
	min-height: 65px;
}

.coop-list-item .detail {
	color: var(--yellow);
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin: 0 20px 30px 20px;
	font-weight: 800;
}

.coop-list-item .detail img {
	margin-left: 15px;
	margin-top: 5px;
}

.main-coop-list {
	margin: 100px 0;
}

.main-coop-info {
	color: #fff;
	margin-bottom: 100px;
}

.main-coop-info .image img {
	border-radius: 20px;
	width: 100%;
}

@media screen and (max-width: 767px) {
	.page-template-cooperation-types-tpl .key-v2-box .text {
		margin-bottom: 100px;
	}

	.main-coop-list {
		margin: 50px 0;
	}

	.coop-list-item .title {
		font-size: 20px;
		margin: 20px 20px 20px 20px;
		min-height: 0;
	}

	.coop-s1 h1 {}
}

@media (min-width: 768px) and (max-width: 1199px) {
	.coop-list-item .title {
		font-size: 16px;
		font-weight: 800;
		text-transform: uppercase;
		margin: 20px;
		min-height: 50px;
	}

	.coop-list-img {
		height: 180px;
	}

	.page-template-cooperation-types-tpl .key-v2-box {
		background-size: 50%;
	}

	.page-template-cooperation-types-tpl .key-v2-box h1 {
		font-size: 42px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.coop-list-item .title {
		font-size: 12px;
		min-height: 40px;
		margin: 15px;
	}

	.coop-list-item .detail {
		font-size: 14px;
		margin: 0 15px 15px 15px;
	}
}

/*Cooperation single*/
.coop-s1 {
	padding-top: 210px;
	padding-bottom: 0;
	margin-bottom: 30px;
	color: #fff;
	font-family: ZonaPro;
}

.coop-s1 h1 {
	color: var(--yellow);
	text-transform: uppercase;
	font-weight: 800;
	font-size: 45px;
	margin-bottom: 50px;
}

.coop-box {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	border: 2px solid #003575;
	border-radius: 20px;
	margin-bottom: 50px;
}

.coop-box .coop-box-info .number {
	color: var(--yellow);
	font-weight: 800;
	font-size: 45px;
	margin-bottom: 50px;
	line-height: 1.2;
}

.coop-box .coop-box-info {
	padding: 20px 75px 30px 50px;
	font-size: 16px;
}

.coop-box .coop-box-image img {
	border-radius: 20px;
	min-width: 450px;
}

.coop-box:nth-child(2n-1) {
	flex-direction: row-reverse;
}

.coop-s1-1 {
	margin-bottom: 75px;
	color: #fff;
}

.coop-s1-1 h2 {
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 50px;
}

.coop-s1-1 .subtitle {
	color: var(--yellow);
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 10px;
}

.coop-s1-1 .info {
	font-size: 14px;
	margin-bottom: 20px;
}

.coop-s1-1 .info a {
	color: var(--yellow);
	font-weight: 800;
}

.coop-s1-2 .info-box {
	padding: 0 0 75px 0;
}

.coop-s1-2 h2 {
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 50px;
}

.coop-s2 {
	margin-bottom: 75px;
	color: #fff;
}

.coop-s2 .info-box {
	padding: 75px 0;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

.coop-s2 .info-box .info {
	margin-bottom: 20px;
}

.coop-s2 .info-box .y-btn {
	justify-content: center;
}

@media screen and (max-width: 767px) {
	.coop-s1 h1 {
		font-size: 28px;
	}

	.coop-box {
		flex-direction: column;
	}

	.coop-box .coop-box-info {
		padding: 20px;
	}

	.coop-box .coop-box-info .number {
		font-size: 36px;
		margin-bottom: 20px;
	}

	.coop-box .coop-box-image img {
		min-width: 100%;
	}

	.coop-box:nth-child(2n-1) {
		flex-direction: column;
	}

	.coop-s1 {
		margin-bottom: 0;
	}

	.coop-s1-1 {
		margin-bottom: 30px;
	}

	.coop-s1-1 .col {
		flex: auto;
		width: 100%;
	}

	.coop-s1-1 h2 {
		margin-bottom: 30px;
	}

	.coop-s2 .info-box {
		padding: 50px 0;
	}

	.coop-s2 {
		margin-bottom: 50px;
	}

	.coop-s2 .info-box .y-btn {
		display: block;
		width: 100%;
		text-align: center;
	}

	.coop-s1 {
		padding-top: 150px;
	}
}

@media (min-width: 768px) and (max-width: 1199px) {
	.coop-s1 h1 {
		font-size: 36px;
	}

	.coop-box .coop-box-info .number {
		font-size: 36px;
		margin-bottom: 20px;
	}

	.coop-box .coop-box-info {
		padding: 20px 30px 30px 30px;
		font-size: 15px;
	}

	.coop-box .coop-box-image img {
		min-width: 400px;
	}

	.coop-box .coop-box-info .info p:first-child span {
		font-size: 16px !important;
	}

	.coop-box .coop-box-info .info p:last-child {
		margin-bottom: 0;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.coop-box .coop-box-image img {
		min-width: 230px;
	}
}

/*Partnership form*/
.page-template-partnership-form-tpl .key-v1-box h1 {
	font-size: 65px;
}

.page-template-partnership-form-tpl .key-v1 .subtitle {
	width: 60%;
}

.page-template-partnership-form-tpl .prt-2 .title {
	font-size: 40px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.page-template-partnership-form-tpl .prt-2 .text {
	font-size: 20px;
}

.page-template-partnership-form-tpl .y-btn-i {
	padding: 15px 100px;
}

.prt-form .col-md-12 {
	padding: 75px 0 150px 0;
	border-top: 1px solid #fff;
}

.prt-form .title {
	font-size: 40px;
	text-transform: uppercase;
	font-weight: 800;
	color: #fff;
	margin-bottom: 50px;
}

.pf-all {
	display: flex;
	justify-content: space-between;
}

.pf-left {
	width: 49%;
}

.pf-right {
	width: 49%;
}

.pf-left input,
.pf-right input {
	width: 100%;
	border-radius: 20px;
	height: 80px;
	font-size: 20px;
	padding: 20px;
	margin-bottom: 20px;
}

.pf-left select,
.pf-right select {
	width: 100%;
	border-radius: 20px;
	height: 80px;
	font-size: 20px;
	padding: 20px;
	margin-bottom: 20px;
	-moz-appearance: none;
	/* Firefox */
	-webkit-appearance: none;
	/* Safari and Chrome */
	appearance: none;
	background-image: url("/wp-content/uploads/2023/07/select-arrow.svg");
	background-repeat: no-repeat;
	background-size: 14px;
	background-position: calc(100% - 20px) 50%;
}

.pf-full textarea,
.pf-full textarea {
	width: 100%;
	border-radius: 20px;
	height: 180px;
	font-size: 20px;
	padding: 20px;
	margin-bottom: 20px;
}

.accept .wpcf7-list-item {
	margin-left: 0;
	color: #fff;
}

.accept input[type=checkbox]:before {
	top: -3px;
	border-radius: 2px;
}

.accept input[type=checkbox]:checked:after {
	top: 0;
}

.accept .wpcf7-list-item-label {
	margin-left: 20px;
	display: inline-block;
}

.pf-submit {
	display: flex;
	justify-content: center;
}

.pf-submit input[type="submit"] {
	width: 50%;
	background-color: #FFC301;
	border: #FFC301;
	color: #1F140F;
	height: 80px;
	border-radius: 20px;
	font-size: 24px;
	margin-right: 0;
	margin-top: 20px;
}

.pf-submit .wpcf7-spinner {
	display: none;
}

.prt-form-box .wpcf7 form.sent .wpcf7-response-output {
	border-color: #ffc300;
	border-radius: 20px;
	padding: 10px;
	width: 50%;
	margin: 0 auto;
	margin-top: 20px;
	color: #fff;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.page-template-partnership-form-tpl .key-v1-box h1 {
		font-size: 32px;
	}

	.page-template-partnership-form-tpl .key-v1 .subtitle {
		width: 100%;
		margin-bottom: 100px;
	}

	.page-template-partnership-form-tpl .prt-2 .title {
		font-size: 28px;
	}

	.prt-form .title {
		font-size: 32px;
	}

	.pf-all {
		flex-direction: column;
	}

	.pf-left {
		width: 100%;
	}

	.pf-right {
		width: 100%;
	}

	.pf-left input,
	.pf-right input {
		font-size: 17px;
		height: 60px;
	}

	.pf-left select,
	.pf-right select {
		font-size: 17px;
		height: 60px;
		padding: 10px 20px;
	}

	.pf-left textarea,
	.pf-right textarea {
		font-size: 17px;
		height: 200px;
	}

	.accept .wpcf7-list-item-label {
		margin-left: 20px;
		padding-left: 20px;
		display: flex;
		margin-top: -25px;
	}

	.pf-submit input[type="submit"] {
		width: 100%;
		height: 60px;
	}
}

@media (min-width: 768px) and (max-width: 1199px) {
	.page-template-partnership-form-tpl .key-v1-box h1 {
		width: 100%;
		font-size: 42px;
	}

	.page-template-partnership-form-tpl .prt-2 .title {
		font-size: 32px;
	}

	.page-template-partnership-form-tpl .prt-2 .text {
		font-size: 16px;
	}

	.prt-form .title {
		font-size: 32px;
	}

	.pf-left input,
	.pf-right input {
		font-size: 16px;
		height: 60px;
	}

	.pf-left select,
	.pf-right select {
		font-size: 16px;
		height: 60px;
		padding: 10px 20px;
	}

	.pf-left textarea,
	.pf-right textarea {
		font-size: 17px;
		height: 140px;
	}

	.accept .wpcf7-list-item-label {
		margin-left: 20px;
		padding-left: 20px;
		display: flex;
		margin-top: -25px;
	}

	.pf-submit input[type="submit"] {
		height: 60px;
	}
}

@media (min-width: 1200px) and (max-width: 1399px) {
	.page-template-partnership-form-tpl .prt-2 .title {
		font-size: 36px;
	}
}


/*Partnership*/
.page-template-partnership-tpl .key-v1-box h1 {
	text-transform: uppercase;
	font-size: 50px;
	margin-bottom: 20px;
	width: 75%;
}

.page-template-partnership-tpl .subtitle {
	margin-bottom: 30px;
}

.page-template-partnership-tpl .y-btn-i {
	padding: 15px 70px;
}

.prt-2 {
	padding: 100px 0;
	color: #fff;
}

.prt-2 .img-box img {
	width: 90%;
	border-radius: 20px;
}

.prt-2 .title {
	font-size: 24px;
	font-weight: 800;
}

.prt-3 {
	margin: 0;
	color: #fff;
}

.prt-3 .col-md-12 {
	padding-top: 75px;
	padding-bottom: 75px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

.prt-3 .title {
	font-size: 36px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.prt-3 .text {
	margin-bottom: 30px;
}

.prt-3-international .col-md-12 {
	padding-top: 75px;
	padding-bottom: 75px;
	border-top: none;
	border-bottom: 1px solid #fff;
}

.prt-3 .swiper-slide img {
	height: auto;
	border: none;
}

.prt-3 .swiper-slide {
	background: none;
	display: flex !important;
	justify-content: center;
	align-items: center;
	height: inherit;
}

.prt-3-swiper {
	display: block;
}

.prt-4 {
	padding: 50px 0 150px 0;
	margin: 0;
	color: #fff;
}

.prt-4 .prt-4-btns .y-btn {
	display: flex;
	width: 100%;
	display: block;
	text-align: center;
}

.page-template-partnership-tpl .prt-4-btns .y-btn-i {
	padding: 15px 40px;
}

.prt-4-btns .y-btn-b {
	margin-top: 20px;
}

.prt-4 .title {
	font-size: 36px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
	.page-template-partnership-tpl .key-v1-box h1 {
		font-size: 26px;
		width: 100%;
	}

	.prt-2 .img-box img {
		width: 100%;
		margin-bottom: 30px;
	}

	.prt-2 .text {
		max-width: 100%;
	}

	.prt-2 .y-btn {
		display: block;
		width: 100%;
		text-align: center;
	}

	.prt-2 .y-btn-i {
		margin-bottom: 30px;
	}

	.prt-3 .title {
		font-size: 24px;
	}

	.prt-3 .text {
		max-width: 100%;
	}

	.prt-4 .title {
		font-size: 24px;
	}

	.prt-4 .text {
		max-width: 100%;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.page-template-partnership-tpl .key-v1-box h1 {
		font-size: 36px;
		width: 100%;
	}

	.page-template-partnership-tpl .prt-4-btns .y-btn-i {
		padding: 15px 15px;
		font-size: 16px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.key-v1-box {
		background-size: 50%;
	}

	.page-template-partnership-tpl .key-v1-box h1 {
		font-size: 42px;
	}

	.page-template-partnership-tpl .y-btn-i {
		padding: 15px 50px;
	}
}

/*StopEcocide*/
.key-v2 {
	padding-top: 170px;
	padding-bottom: 0;
	margin-bottom: 30px;
	color: #fff;
}

.key-v2-box {
	position: relative;
	background-color: #013575;
	border-radius: 20px;
	margin: 0 -70px;
	padding: 50px 70px;
	background-size: contain;
	background-position: 100% 100%;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.key-v2-box h1 {
	font-weight: 800;
	font-size: 60px;
	line-height: 1.3;
	margin-top: 0;
	margin-bottom: 15px;
	width: 65%;
}

.key-v2-box .text {
	width: 65%;
}

.key-v2-box .buttons {
	display: flex;
}

.key-v2-box .y-btn-i {
	border: 1px solid #ffc300;
}

.key-v2-box .bordered {
	margin-left: 10px;
}

.key-v2-box .bordered .y-btn-i {
	background-color: transparent;
	border: 1px solid #ffc300;
	color: #ffc300;
}

.se-blk4 {
	padding: 70px 0 0 0;
}

.se-blk4 .y-text {
	font-size: 45px;
	font-weight: 800;
	line-height: 1;
	color: #ffc300;
	margin-bottom: 20px;
}

.se-blk4 .text {
	font-size: 22px;
	line-height: 1.5;
	color: #fff;
}

.se-blk4 .row {
	margin-bottom: 100px;
}

.se-news h2 {
	color: #fff;
	font-weight: 600;
	margin-bottom: 48px;
	font-size: 48px;
}

.page-template-comunity-tpl .se-news,
.page-template-evacuation-tpl .se-news,
.single-advice .se-news,
.page-template-lawyer-advice-tpl .se-news {
	margin-bottom: 100px;
}

.share-v1 {
	padding: 100px 0;
	color: #fff;
}

.share-v1-box {
	position: relative;
	background-color: #013575;
	border-radius: 20px;
	margin: 0 -70px;
	padding: 50px 70px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.share-v1-box .title {
	font-size: 32px;
	font-weight: 800;
	margin-bottom: 20px;
}

.share-v1-box .text {
	margin-bottom: 30px;
}

.share-v1-box .buttons {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.sh-btn {
	display: flex;
	width: 100%;
}

.sh-btn a {
	color: #00151E;
	font-size: 20px;
	font-weight: 800;
	width: 100%;
}

.sh-btn-i {
	background-color: #FFC301;
	padding: 15px 30px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.se-form {
	padding: 50px 0 100px 0;
}

.se-form .title {
	font-size: 42px;
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
}



@media screen and (max-width: 767px) {
	.key-v2 {
		padding-top: 130px;
	}

	.key-v2-box {
		margin: 0;
		padding: 30px 20px;
		justify-content: flex-start;
		background-size: 75%;
		background-position: 125% 100%;
	}

	.key-v2-box h1 {
		font-size: 26px;
		width: 100%;
		margin-bottom: 20px;
	}

	.key-v2-box .y-btn {
		text-align: center;
		display: block;
		margin-bottom: 10px;
	}

	.share-v1-box {
		margin: 0;
		padding: 30px 20px;
		justify-content: flex-start;
	}

	.key-v2-box .text {
		width: 100%;
	}

	.key-v2-box .buttons {
		flex-direction: column;
		margin-bottom: 140px;
	}

	.key-v2-box .bordered {
		margin-left: 0;
	}

	.se-blk4 {
		padding: 50px 0;
	}

	.share-v1-box .buttons {
		flex-direction: column;
	}

	.se-blk4 .y-text {
		font-size: 32px;
		margin-top: 30px;
	}

	.se-blk4 .text {
		font-size: 18px;
		max-width: 100%;
	}

	.se-blk4 .row {
		margin-bottom: 30px;
	}

	.se-news h2 {
		font-size: 28px;
	}

	.share-v1-box .title {
		font-size: 24px;
	}

	.se-form {
		padding: 0 0 100px 0;
	}

	.se-form .title {
		font-size: 22px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.key-v2-box {
		background-size: 50%;
		background-position: 110% 100%;
	}

	.key-v2-box h1 {
		width: 80%;
		font-size: 28px;
	}
}

/*Subscribe*/
.subscribe-formbox {
	display: flex;
}

.subscribe .col-md-6:first-child {
	border-right: 1px solid #00151E;
}

.subscribe-formbox input[type="text"],
.subscribe-formbox input[type="email"] {
	width: 95%;
	margin-right: 0;
	border-radius: 5px;
}

.subscribe-formbox input[type="submit"] {
	padding: 5px 20px;
	margin-right: 0;
	background: #003575;
	color: #fff;
	border-radius: 5px;
	font-size: 16px;
}

.subscribe-formbox .wpcf7-spinner {
	display: none;
}

.subscribe .subscribe-title {
	font-size: 28px;
	margin-bottom: 0;
}

.subscribe .subscribe-subtitle {
	color: #fff;
}

.share-blk {
	display: flex;
	justify-content: space-between;
}

.share-blk-btn {
	width: 32%;
}

.share-blk-btn a {}

.share-btn-inner {
	background-color: #013575;
	color: #fff;
	padding: 10px;
	text-align: center;
	font-weight: 800;
	font-size: 18px;
	height: 50px;
	border-radius: 5px;
}

.subscribe-inner-l {
	padding-right: 20px;
}

.subscribe-inner-r {
	padding-left: 20px;
}

@media screen and (max-width: 767px) {
	.share-btn-inner {
		font-size: 16px;
		height: 45px;
	}

	.subscribe-formbox {
		flex-direction: column;
	}

	.subscribe-formbox input[type="text"],
	.subscribe-formbox input[type="email"] {
		width: 100%;
	}

	.subscribe .col-md-6 {
		border-right: none;
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.subscribe .col-md-6:first-child {
		border-bottom: 1px solid #00151E;
		border-right: none;
	}

	.share-blk {
		margin-bottom: 10px;
	}

	.subscribe-inner-l,
	.subscribe-inner-r {
		padding: 0;
	}
}


/*Evacuation*/
.page-template-evacuation-tpl .key-v1 h1 {
	font-size: 60px;
}

.page-template-evacuation-tpl .key-v1 .subtitle {
	margin-bottom: 50px;
}

.image-numbers {
	padding: 60px 0 80px 0;
}

.image-numbers .row {
	align-items: center;
}

.image-numbers img {
	width: 90%;
	border-radius: 20px;
}

.image-numbers .number {
	color: #FFC301;
	font-size: 60px;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 20px;
}

.image-numbers .text {
	color: #fff;
	font-size: 16px;
	margin-bottom: 0;
}

.image-numbers .mb50 {
	margin-bottom: 50px;
}

.title-text-col {
	padding: 75px 0 0 0;
	color: #fff;
}

.title-text-col .title {
	font-size: 48px;
	line-height: 1.3;
	font-weight: 600;
}

.evac-ticket {
	padding: 140px 0 0 0;
}

.stories {
	padding: 75px 0;
	color: #fff;
}

.stories h2 {
	font-size: 42px;
	text-transform: uppercase;
	font-weight: 800;
	margin-bottom: 50px;
}

.story {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.story img {
	border-radius: 20px;
}

.story .text {
	padding: 30px 30px 30px 70px;
	margin-left: -40px;
	border-radius: 20px;
	background-color: #013575;
}

.story .text p:last-child {
	margin-bottom: 0;
}

.stories .row:nth-child(2n-1) .story {
	flex-direction: row-reverse;
}

.stories .row:nth-child(2n-1) .story .text {
	padding: 30px 70px 30px 30px;
	margin-left: 0px;
	margin-right: -40px;
}

.need-evacuation {
	padding: 100px 0;
	color: #fff;
}

.need-evacuation h2 {
	font-size: 50px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 30px;
}

.need-evacuation img {
	width: 90%;
}

.need-evacuation .row {
	margin-bottom: 30px;
}

.page-template-evacuation-tpl .str5 {
	margin-bottom: 75px;
}

.se-news .y-btn {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

@media screen and (max-width: 767px) {
	.page-template-evacuation-tpl .key-v1 h1 {
		font-size: 28px;
	}

	.title-text-col .title {
		font-size: 28px;
	}

	.image-numbers img {
		width: 100%;
		margin-bottom: 30px;
	}

	.image-numbers .number {
		font-size: 48px;
	}

	.image-numbers .text {
		max-width: 100%;
	}

	.title-text-col .text {
		max-width: 100%;
	}

	.stories h2 {
		font-size: 28px;
	}

	.story {
		flex-direction: column;
	}

	.story .text {
		padding: 60px 20px 20px 20px;
		margin-left: 0;
		margin-top: -20px;
		border-radius: 20px;
	}

	.stories .row:nth-child(2n-1) .story {
		flex-direction: column;
	}

	.stories .row:nth-child(2n-1) .story .text {
		padding: 60px 20px 20px 20px;
		margin-left: 0px;
		margin-right: 0;
	}

	.need-evacuation h2 {
		font-size: 28px;
	}

	.need-evacuation img {
		width: 100%;
		margin-bottom: 30px;
	}

	.need-evacuation .y-btn {
		display: block;
		text-align: center;
	}

	.se-news .y-btn a {
		width: 100%;
		text-align: center;
	}
}








/*Validation icon*/
.validated-d {
	display: block;
}

.validated-m {
	display: none;
}

.validated-d img,
.validated-m img {
	width: 35px;
	height: 35px;
}

@media screen and (max-width: 767px) {
	.validated-d {
		display: none;
	}

	.validated-m {
		display: block;
		margin-right: 20px;
	}

	.lang li:nth-child(2) a,
	.lang li:nth-child(3) a {
		padding-left: 10px;
		font-size: 14px;
	}

	.lang li:first-child a,
	.lang li:nth-child(2) a {
		padding-right: 10px;
	}
}

.main-navigation ul ul a {
	width: 240px;
}

.pic {
	display: block;
}

.pic-m {
	display: none;
}

.y-btn-b-i {
	color: #FFC301;
	border: 1px solid #FFC301;
	background-color: transparent !important;
}

.find-cover-btns .y-btn-b a,
.find-cover-btns .y-btn a {
	text-decoration: none;
}

.find-cover-btns .y-btn:first-child {
	margin-right: 20px;
}

.find-cover-btns {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.text-content .find-cover-btns {
	justify-content: center;
	margin: 50px 0;
}

@media screen and (max-width: 992px) {
	.find-cover-btns {
		flex-direction: column;
	}

	.key-v1-box .find-cover-btns .y-btn,
	.find-cover-btns .y-btn {
		text-align: center;
		display: block;
		width: 100%;
		margin-bottom: 10px;
		margin-right: 0 !important;
	}

	.key-v1-box .find-cover-btns .y-btn-b {
		margin-bottom: 140px;
	}

	.pic-m {
		display: block;
	}

	.pic {
		display: none;
	}
}


/*Cross boarder*/
.key-v1 {
	padding-top: 170px;
	padding-bottom: 0;
	margin-bottom: 30px;
	color: #fff;
}

.key-v1-box {
	position: relative;
	background-color: #013575;
	border-radius: 20px;
	margin: 0 -70px;
	padding: 50px 70px;
	background-size: contain;
	background-position: 100% 100%;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.key-v1-box h1 {
	font-weight: 800;
	font-size: 36px;
	line-height: 1.3;
	margin-top: 0;
	margin-bottom: 15px;
	width: 65%;
}

.key-v1 .subtitle {
	width: 50%;
}

.text-content {
	color: #fff;
	padding: 50px 0;
}

.text-content a {
	text-decoration: underline;
}

.text-content ul {
	margin-left: 0;
}

.text-content table tr:first-child {
	text-align: center;
	color: #FFC301;
	font-weight: 800;
}

.text-content table td {
	border: 1px solid #fff;
	padding: 20px;
}

.text-content-table {
	overflow-x: auto;
}

.double-image {
	padding: 50px 0;
}

.double-image img {
	border-radius: 20px;
}

.useful-links {
	padding: 50px 0;
}

.useful-links .title-h2 {
	color: #fff;
	font-size: 36px;
	text-transform: uppercase;
	font-weight: 800;
	margin-bottom: 30px;
}

.useful-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #013575;
	border-radius: 20px;
	padding: 20px 30px;
	margin-bottom: 10px;
}

.useful-link p {
	margin-bottom: 0;
	color: #fff;
	font-size: 18px;
	font-weight: 800;
}

.useful-link p a {
	color: #FFC301;
	white-space: nowrap;
}

.useful-link p a svg {
	margin-left: 10px;
}

.table-country {
	padding: 50px 0;
}

.table-country .title-h2 {
	color: #fff;
	font-size: 32px;
	font-weight: 800;
	margin-bottom: 30px;
}

.country {
	border: 1px solid #fff;
	border-bottom: none;
	padding: 20px 50px;
	color: #fff;
	display: flex;
	flex-direction: column;
}

.country:last-child {
	border-bottom: 1px solid #fff;
}

.country-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.country-name {
	font-size: 24px;
	font-weight: 800;
}

.country-part {
	font-weight: 400;
	font-size: 18px;
}

.country-link p {
	margin-bottom: 0;
}

.country-link .more-btn {
	color: #FFC301;
	font-weight: bold;
	white-space: nowrap;
}

.country-link .more-btn svg {
	margin-left: 10px;
}

.country-files p {
	padding-left: 20px;
	background-image: url("/wp-content/uploads/2023/06/skripka.svg");
	background-repeat: no-repeat;
	background-position: 0% 10%;
	margin-top: 10px;
}

.w-line {
	width: 100%;
	height: 1px;
	background-color: #fff;
}

.title-double-images {
	padding: 50px 0;
	color: #fff;
}

.title-double-images .title-h2 {
	color: #fff;
	font-size: 32px;
	font-weight: 800;
	margin-bottom: 30px;
}

.title-double-images img {
	border-radius: 20px;
}

.text-content .simple-table-1 table tr:first-child {
	text-align: left;
	color: #fff;
	font-weight: 400;
}

.text-content .title-h2 {
	color: #fff;
	font-size: 32px;
	font-weight: 800;
	margin-bottom: 30px;
}





@media screen and (max-width: 767px) {
	.key-v1 {
		padding-top: 130px;
	}

	.key-v1-box {
		margin: 0;
		padding: 30px 20px;
		justify-content: flex-start;
		background-size: 75%;
		background-position: 125% 100%;
	}

	.key-v1-box h1 {
		font-size: 21px;
		width: 100%;
		margin-bottom: 20px;
	}

	.key-v1-box .y-btn {
		text-align: center;
		display: block;
		margin-bottom: 140px;
	}

	.key-v1 .subtitle {
		width: 100%;
	}

	.text-content table td {
		padding: 10px;
		font-size: 14px;
	}

	.text-content table ul {
		padding-left: 1rem;
	}

	.double-image {
		padding: 0;
	}

	.double-image img {
		margin-bottom: 20px;
	}

	.useful-links {
		padding: 25px 0;
	}

	.useful-link {
		flex-direction: column;
		align-items: flex-start;
		padding: 15px 20px;
	}

	.useful-links .title-h2 {
		font-size: 21px;
	}

	.useful-link p {
		margin-bottom: 10px;
		font-size: 16px;
		font-weight: 400;
	}

	.useful-link p a {
		font-weight: 800;
	}

	.table-country .title-h2,
	.title-double-images .title-h2,
	.text-content .title-h2 {
		font-size: 21px;
	}

	.table-country,
	.title-double-images {
		padding: 25px 0;
	}

	.country {
		padding: 20px;
	}

	.country-link {
		align-items: flex-start;
		flex-direction: column;
	}

	.country-link p {
		margin-bottom: 10px;
	}

	.country-name {
		font-size: 14px;
	}

	.country-files {
		font-size: 14px;
	}

	.country-part {
		font-size: 14px;
	}

	.title-double-images img {
		margin-bottom: 20px;
	}

	.simple-table-1 span {
		font-size: 16px;
		line-height: 1;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.key-v1-box {
		background-size: 50%;
		background-position: 110% 100%;
	}

	.key-v1-box h1 {
		width: 80%;
		font-size: 28px;
	}

	.key-v1 .subtitle {
		width: 65%;
	}
}







/*Tumo*/
.tumo-blk1 {
	padding-top: 200px;
	color: #fff;
}

.tumo-blk1 h1 {
	font-family: ZonaPro;
	font-size: 44px;
	text-transform: uppercase;
	font-weight: 800;
	color: #DEE98F;
	margin: 0 0 10px 0;
}

.tumo-blk1 p {
	margin-bottom: 50px;
}

.btn-pink {
	display: flex;
}

.btn-pink a {
	color: #fff;
	text-decoration: none;
}

.btn-pink-inner {
	background-color: #CC7AC2;
	border-radius: 20px;
	padding: 15px 40px;
	text-align: center;
	font-weight: 800;
	font-size: 20px;
}

.tumo-blk1 .image-right {
	text-align: right;
}

.tumo-blk2 {
	padding: 75px 0 100px 0;
}

.tumo-sum-box {
	background-color: #DEE98F;
	border-radius: 20px;
	margin: 0 -70px;
	padding: 100px 70px;
	background-image: url("/wp-content/uploads/2023/06/tumo-box-bg-1.svg");
	background-repeat: no-repeat;
	background-size: 40%;
	background-position: 100% 50%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.tumo-sum-box .sum-title {
	font-size: 48px;
	color: #00151E;
	text-transform: uppercase;
	font-weight: 800;
	margin-bottom: 0;
}

.tumo-sum-box .sum-value {
	color: #CC7AC2;
	font-size: 80px;
	font-weight: 800;
	margin-bottom: 0;
}

.tumo-blk3 .title-blk {
	font-size: 48px;
	color: #DEE98F;
	font-weight: 800;
	text-transform: uppercase;
	display: flex;
}

.tumo-blk3 .title-blk img {
	margin-left: 20px;
	width: 50px;
}

.work-box {
	color: #fff;
	margin-bottom: 50px;
}

.work-box img {
	width: 100%;
	margin-bottom: 20px;
}

.work-box .name {
	font-size: 24px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.work-box .description {
	margin-bottom: 40px;
}




.tumo-blk4 {
	padding: 75px 0 100px 0;
}

.tumo-collect-box {
	background-color: #DEE98F;
	border-radius: 20px;
	margin: 0 -70px;
	padding: 70px 70px;
	background-image: url("/wp-content/uploads/2023/06/tumo-box-bg-1.svg");
	background-repeat: no-repeat;
	background-size: 55%;
	background-position: 100% 100%;
	color: #00151E;
}

.tumo-collect-box .title {
	font-size: 48px;
	margin-bottom: 20px;
	font-weight: 800;
	text-transform: uppercase;
}

.tumo-collect-box .text {
	margin-bottom: 50px;
}

.tumo-collect-box .text p {
	font-size: 18px;
	margin-bottom: 20px;
}

.tumo-collect-box .image-right {
	text-align: right;
}

@media screen and (max-width: 767px) {
	.tumo-blk1 {
		padding-top: 150px;
	}

	.tumo-blk1 h1 {
		font-size: 30px;
	}

	.btn-pink {
		display: block;
	}

	.btn-pink-inner {
		font-size: 18px;
	}

	.tumo-blk1 .image-right {
		text-align: center;
		margin-top: 50px;
	}

	.tumo-blk2 {
		padding: 50px 0 50px 0;
	}

	.tumo-sum-box {
		flex-direction: column;
		align-items: flex-start;
		margin: 0;
		padding: 30px 20px 30px 20px;
		background-size: 70%;
		background-position: 100% 0%;
	}

	.tumo-sum-box .sum-title {
		font-size: 28px;
	}

	.tumo-sum-box .sum-value {
		font-size: 48px;
	}

	.tumo-blk3 .title-blk {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.work-box .name {
		font-size: 21px;
	}

	.work-box video {
		height: 250px;
	}

	.tumo-collect-box {
		flex-direction: column;
		align-items: flex-start;
		margin: 0;
		padding: 30px 20px 30px 20px;
		background-size: 70%;
		background-position: 100% 0%;
	}

	.tumo-collect-box .title {
		font-size: 28px;
	}

	.tumo-collect-box .text p {
		font-size: 16px;
	}

	.tumo-collect-box .text {
		margin-bottom: 30px;
	}

	.tumo-collect-box .image-right {
		text-align: center;
		margin-top: 50px;
	}

	.tumo-blk4 {
		padding: 0 0 50px 0;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.tumo-blk1 h1 {
		font-size: 28px;
	}

	.tumo-sum-box {
		margin: 0 -20px;
		padding: 50px 20px;
	}

	.tumo-sum-box .sum-title {
		font-size: 28px;
	}

	.tumo-sum-box .sum-value {
		font-size: 48px;
	}

	.tumo-blk3 .title-blk {
		font-size: 36px;
	}

	.btn-pink-inner {
		padding: 15px 30px;
		font-size: 18px;
	}

	.tumo-collect-box .title {
		font-size: 36px;
	}

	.tumo-collect-box {
		margin: 0 -20px;
		padding: 50px 20px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.tumo-blk1 h1 {
		font-size: 44px;
	}

	.tumo-sum-box .sum-title {
		font-size: 36px;
	}

	.tumo-sum-box .sum-value {
		font-size: 60px;
	}
}

@media (min-width: 1200px) and (max-width: 1399px) {
	.tumo-sum-box {
		margin: 0 -40px;
		padding: 50px 40px;
	}

	.tumo-collect-box {
		margin: 0 -40px;
		padding: 50px 40px;
	}
}



/*Spilnota*/
.spil31 {
	padding: 0 0 100px 0;
}

.spil31 .title {
	font-size: 36px;
	font-weight: 900;
	line-height: 1.2;
}

.spil31 .number {
	font-family: Spaceland;
	font-size: 96px;
	margin-bottom: 0;
}

.spil31 .list-number p {
	margin-bottom: 20px;
}

.spil31 .list-number span {
	margin-right: 15px;
	font-family: Spaceland;
	font-size: 28px;
}

@media screen and (max-width: 767px) {
	.spil31 .title {
		font-size: 28px;
		margin-bottom: 20px;
	}

	.spil31 .btn-or-desc {
		display: block;
	}
}

/*Table zbir*/
.r-costs {
	margin-top: 100px;
	margin-bottom: 100px;
}

.costs-table {
	overflow-x: auto;
}

.costs-table tr td,
.costs-table tr th {
	color: #fff;
	border: 1px solid #fff;
	padding: 20px;
}

.costs-table tr th {
	color: #FFC301;
	text-align: center;
}

@media screen and (max-width: 768px) {

	.costs-table tr td,
	.costs-table tr th {
		padding: 10px;
	}

	.costs-table table {
		font-size: 12px;
	}
}

/*Spilnota*/
.spil6 .swiper-slide img {
	border: none;
}

.spil6 .swiper-slide {
	border-radius: 20px;
}


.spil6 {
	padding: 150px 0;
}

.spil6 .row-gallery {
	margin-bottom: 50px;
}

.spil6 img {
	border-radius: 20px;
}

.spil21 {
	margin-bottom: 150px;
}

.spil21 .number {
	font-family: Spaceland;
	font-size: 96px;
	margin-bottom: 0;
}

.spil21 .btn-blue,
.spil6 .btn-blue {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.spil21 .btn-blue a,
.spil6 .btn-blue a {
	color: #fff;
	font-weight: 800;
}

.spil21 .btn-blue-inner,
.spil6 .btn-blue-inner {
	background-color: #022B5A;
	padding: 15px;
	border-radius: 10px;
}


.spil5 .spil5-box {
	border: 3px solid #003575;
	border-radius: 10px;
	padding: 50px;
}

.spil5-box .row {
	align-items: center;
}

.spil5 .title {
	font-size: 45px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 30px;
}


.spil4 {
	padding: 150px 0 100px 0;
}

.spil4 .title {
	font-size: 36px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 50px;
}

.spil4 .list-number {}

.spil4 .list-number p {
	margin-bottom: 50px;
	font-size: 24px;
}

.spil4 .list-number span {
	margin-right: 15px;
	font-family: Spaceland;
	font-size: 32px;
}

.blue {
	color: #6EBFBA;
}

.yellow {
	color: #ffc300;
}

.purple {
	color: #CC7AC2;
}

.orange {
	color: #F77F02;
}


.spil3 .title {
	font-size: 45px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 30px;
}

.spil3 .list-icon img {
	margin-right: 15px;
}

.spil2 {
	padding: 150px 0;
}

.spil2 .title {
	font-size: 55px;
	font-weight: 900;
	line-height: 1.2;
}

.btn-or {
	display: flex;
	margin-top: 50px;
}

.btn-or a {
	color: #fff;
	font-weight: 800;
}

.btn-or-inner {
	background-color: #F77F02;
	padding: 15px;
	border-radius: 10px;
}

.btn-or-desc {
	display: flex;
}

.btn-or-mob {
	display: none;
}

.spil1 {
	padding-top: 200px;
}

.spil1 .ms {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.spil1 .ms-r {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-left: 20px;
}

.spil1 .ms-r img:first-child {
	margin-bottom: 15px;
}

.spilnota {
	color: #fff;
}

@media screen and (max-width: 992px) {
	.spil21 .number {
		font-size: 60px;
	}
}

@media screen and (max-width: 767px) {
	.spil1 {
		padding-top: 130px;
	}

	.spil1 .ms-r {
		margin-left: 5px;
	}

	.spil1 .ms-r img:first-child {
		margin-bottom: 5px;
	}

	.spil2 {
		padding: 50px 0 20px 0;
	}

	.spil2 .title {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.spil3 .title {
		font-size: 28px;
		margin-bottom: 20px;
	}

	.list-icon p {
		display: flex;
		align-items: flex-start;
	}

	.spil3 .list-icon img {
		margin-top: 7px;
	}

	.spil4 {
		padding: 50px 0;
	}

	.spil4 .title {
		font-size: 28px;
		margin-bottom: 20px;
	}

	.spil4 .list-number p {
		margin-bottom: 10px;
		font-size: 21px;
		display: flex;
		align-items: center;
	}

	.spil5 .spil5-box {
		padding: 20px;
		font-size: 14px;
	}

	.spil5 .title {
		font-size: 28px;
		margin-bottom: 20px;
	}

	.btn-or-inner {
		text-align: center;
	}

	.btn-or {
		margin-top: 30px;
		margin-bottom: 30px;
	}

	.btn-or-desc {
		display: none;
	}

	.btn-or-mob {
		display: flex;
		margin-bottom: 0;
	}

	.spil6 {
		padding: 50px 0;
	}

	.spil6 img {
		margin-bottom: 20px;
	}

	.spil6 .row-gallery {
		margin-bottom: 20px;
	}

	.spil21 .number {
		font-size: 75px;
		line-height: 1.2;
	}

	.spil21 .text {
		max-width: 100%;
		margin-bottom: 30px;
	}

	.spil21 .btn-blue,
	.spil6 .btn-blue {
		margin-top: 30px;
	}

	.spil21 {
		margin-bottom: 50px;
	}


}





/*Home buttons*/
.btns {
	padding-bottom: 100px;
	background-color: #00151E;
}

.btns-p {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.btn-p {
	width: 33%;
}

.btn-p a {
	color: #013575;
	font-weight: 800;
}

.btn-p-inner {
	background-color: #fff;
	padding: 15px 30px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.5s;
}

.btn-p-inner svg path {
	stroke: #013575;
	transition: all 0.5s;
}

.btn-p:hover a {
	color: #fff;
}

.btn-p:hover .btn-p-inner {
	background-color: #013575;
	transition: all 0.5s;
}

.btn-p:hover .btn-p-inner svg path {
	stroke: #fff;
	transition: all 0.5s;
}


.btn-pb a {
	color: #fff;
}

.btn-pb .btn-p-inner {
	background-color: #013575;
}

.btn-pb .btn-p-inner svg path {
	stroke: #fff;
}

.btn-pb:hover a {
	color: #013575;
}

.btn-pb:hover .btn-p-inner {
	background-color: #fff;
	transition: all 0.5s;
}

.btn-pb:hover .btn-p-inner svg path {
	stroke: #013575;
	transition: all 0.5s;
}


@media screen and (max-width: 767px) {
	.btn-p {
		width: 100%;
		margin-bottom: 10px;
	}

	.btns-p {
		flex-direction: column;
	}

	.btns {
		padding-top: 20px;
		padding-bottom: 50px;
	}
}


/*Home form*/
.home-form {
	display: flex;
	position: relative;
	padding-top: 220px;
}

.hf-text {
	z-index: 1;
}

.hf-text .home-form-title {
	font-size: 80px;
	text-transform: uppercase;
	text-align: left;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 10px;
	margin-top: 0;
	color: #fff;
}

.hf-text .home-subtitle {
	font-size: 32px;
	font-weight: 800;
	text-transform: uppercase;
	color: #fff;
}

.hf-box {
	background-color: #fff;
	z-index: 5;
	padding: 30px 30px 50px 30px;
	border-radius: 20px;
	min-width: 500px;
	margin-bottom: 100px;
}

.hf-box-text {
	color: #022B5A;
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 20px;
}

.hf-box .hf-donate-sum {
	width: 100%;
	margin-right: 0;
	border: 1px solid #013575;
	border-radius: 10px;
	height: 90px;
	text-align: center;
	font-size: 40px;
	color: #013575;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hf-box .hf-donate-sum input {
	margin-right: 0;
	text-align: left;
	font-size: 40px;
	color: #013575;
	border: none;
	width: 100%;
	line-height: 1;
}

.hf-donate-curr {
	text-align: left;
	width: 30%;
	color: #999;
}

.hf-box-sum {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 20px -5px 40px -5px;
}

.hf-box-add {
	padding: 12px 30px;
	border: 1px solid #013575;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 800;
	color: #013575;
	width: 100%;
	text-align: center;
	margin: 0 5px;
	cursor: pointer;
}

.hf-box-add:hover {
	background-color: #013575;
	color: #fff;
}

.hf-box-btn {
	width: 100%;
	height: 50px;
	border: none;
	background-color: #013575;
	color: #fff;
	font-weight: 800;
	border-radius: 5px;
	padding: 15px;
}

.hf-img {
	position: absolute;
	z-index: 3;
	text-align: center;
	width: 100%;
	left: 0;
	bottom: 0;
}

.hf-img img {
	width: 600px;
}


@media (min-width: 1200px) and (max-width: 1399px) {
	.hf-img img {
		width: 550px;
	}

	.hf-box {
		width: 450px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.home-form {
		padding-top: 200px;
	}

	.hf-text .home-form-title {
		font-size: 50px;
	}

	.hf-text .home-subtitle {
		font-size: 21px;
	}

	.hf-box {
		min-width: 400px;
	}

	.hf-img img {
		width: 500px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.home-form {
		padding-top: 180px;
	}

	.hf-text .home-form-title {
		font-size: 55px;
	}

	.hf-text .home-subtitle {
		font-size: 16px;
	}

	.hf-box {
		min-width: 300px;
		width: 360px;
	}

	.hf-img img {
		width: 400px;
	}

	.hf-box-add {
		padding: 8px;
	}

	.hf-box-sum {
		margin: 10px -5px 20px -5px;
	}

	.hf-box {
		padding: 20px 20px 30px 20px;
		margin-bottom: 50px;
	}

	.hf-box-text {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.hf-box .hf-donate-sum input {
		font-size: 32px;
	}

	.hf-donate-curr {
		font-size: 28px;
	}

	.hf-box .hf-donate-sum {
		height: 70px;
	}
}

@media screen and (max-width: 767px) {
	.home-form {
		flex-direction: column;
		padding-top: 90px;
	}

	.hf-text .home-form-title {
		font-size: 36px;
	}

	.hf-text .home-subtitle {
		font-size: 14px;
	}

	.hf-box {
		min-width: 200px;
		width: 100%;
		margin-top: 30px;
		padding: 20px 20px 30px 20px;
	}

	.hf-box-add {
		padding: 8px;
	}

	.hf-img {
		bottom: auto;
		text-align: right;
		top: 140px;
	}

	.hf-img img {
		width: 180px;
	}

	.home-screen {
		background-position: center;
	}

	.hf-box .hf-donate-sum {
		height: 60px;
		font-size: 30px;
	}
}


/*Modal wild*/
.modal-wild {
	background-image: url("/wp-content/uploads/2023/05/ms-bg.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: fixed;
	width: 90%;
	height: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 800px;
	z-index: 99999;
	padding-bottom: 50px;
	opacity: 0;
	transition: all 0.5s;
}

.modal-wild .title {
	text-align: center;
	padding: 0 10%;
}

.modal-wild .title .first {
	margin-top: 100px;
	margin-bottom: -30px;
	width: 80%;
}

.modal-wild .mw-close {
	top: 0;
	right: 0;
	background-color: #fff;
	padding: 5px;
	border-radius: 30px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	float: right;
	position: relative;
	margin: 10px;
}

.modal-wild .text {
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	font-size: 28px;
	margin-bottom: 50px;
	padding: 0 10%;
}

.modal-wild .y-btn {
	display: flex;
	justify-content: center;
}

.modal-wild .y-btn a {
	text-decoration: none;
}

.modal-wild .y-btn-inner:hover {
	color: #00151E;
	background-color: #FFFF00;
	transition: all 0.5s;
}

.modal-wild .y-btn-inner {
	padding: 10px 20px;
	font-size: 20px;
	border-radius: 30px;
	color: #00151E;
	background-color: #FFFF00;
	width: 270px;
	text-align: center;
	transition: all 0.5s;
}

.modal-bg {
	background-color: #000;
	opacity: 0;
	position: fixed;
	z-index: 99998;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition: all 0.5s;
}

@media screen and (max-width: 768px) {
	.modal-wild .text {
		font-size: 18px;
	}

	.modal-wild .title .first {
		margin-bottom: -10px;
	}
}

/*Documents*/
.documents {
	padding: 150px 0 150px 0;
	color: #fff;
}

.documents h1 {
	color: #fff;
	font-size: 45px;
	font-weight: 800;
}

.documents-inner {
	padding: 30px 0;
	border-bottom: 1px solid #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.documents-inner .documents-title {
	font-size: 24px;
	margin-bottom: 0;
}

.documents-inner .documents-link {
	color: #CBA135;
	font-size: 18px;
	margin-bottom: 0;
}

.documents-inner .documents-link a {
	color: #CBA135;
	margin-right: 10px;
}

@media screen and (max-width: 768px) {
	.documents-inner .documents-title {
		font-size: 16px;
	}

	.documents-inner .documents-link {
		font-size: 14px;
	}

	.documents-inner .documents-link a {
		display: none;
	}

	.documents {
		padding: 100px 0 100px 0;
		color: #fff;
	}
}

/*Sterilization*/
.page-template-sterilization-tpl h1,
.page-template-sterilization-tpl h2,
.page-template-sterilization-tpl h3,
.page-template-sterilization-tpl h4,
.page-template-sterilization-tpl h5,
.page-template-sterilization-tpl h6,
.page-template-sterilization-tpl .str-title,
.page-template-sterilization-tpl .str-title,
.page-template-sterilization-tpl .title {
	font-weight: 600 !important;
	text-transform: inherit !important;

}



.str1 {
	padding-top: 170px;
	padding-bottom: 0;
	margin-bottom: 30px;
	color: #fff;
	font-family: ZonaPro;
}

.str1-box {
	position: relative;
	background-color: #013575;
	border-radius: 20px;
	margin: 0 -70px;
	padding: 50px 70px;
}

.str1 h1 {
	font-weight: 800;
	font-size: 55px;
	text-transform: uppercase;
	line-height: 1.3;
	margin-top: 0;
	margin-bottom: 15px;
	width: 75%;
}

.str1 .subtitle {
	font-size: 24px;
	text-transform: uppercase;
	font-weight: 800;
	margin-bottom: 10px;
}

.str1 .text {
	font-size: 16px;
	width: 50%;
	margin-bottom: 50px;
}

.str1 .cat-dog {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 43%;
}

.y-btn {
	display: flex;
}

.y-btn a {
	color: #00151E;
	font-size: 20px;
	font-weight: 800;
}

.y-btn-i {
	background-color: #FFC301;
	padding: 15px 50px;
	border-radius: 20px;
}

.str2 {
	font-family: ZonaPro;
	padding-bottom: 100px;
}

.str2 .row {
	padding-top: 100px;
	border-top: 1px solid #fff;
}

.str2-box {
	margin: 0 -70px;
	display: flex;
	justify-content: space-between;
}

.str2-box2-bg {
	background: linear-gradient(181.37deg, #BAADA5 1.27%, #C4B4AB 28.98%, #C4B3AB 47.42%, #B8A499 77.31%, #A9988E 91.72%, #A9988D 98.78%);
	border-radius: 20px;
	width: 100%;
}

.str2-box2 {
	background-image: url("/wp-content/uploads/2023/04/sterilization-dog-top-3.png");
	background-repeat: no-repeat;
	background-position: 100% 100%;
	background-size: contain;
	padding: 50px;
	height: 300px;
}

.str2-box1 .title,
.str2-box2 .title {
	font-size: 48px;
	color: #022B5A;
	font-weight: 800;
	margin-bottom: 10px;
}

.str2-box1 .text,
.str2-box2 .text {
	color: #022B5A;
	font-size: 16px;
	width: 60%;
}

.str3 {
	margin-top: 65px;
	margin-bottom: 50px;
}

.str3 .str-small-title {
	font-size: 48px;
}

.str-title {
	font-size: 48px;
	color: #fff;
	font-family: ZonaPro;
	font-weight: 800;
	line-height: 1.3;
	margin-top: 0;
	margin-bottom: 20px;
}

.str-text {
	font-size: 16px;
	color: #fff;
	line-height: 1.5;
}

.str4 {
	margin-top: 80px;
	display: none;
}

.map-bottom-text {
	color: #fff;
	margin-bottom: 75px;
	margin-top: 20px;
}

.map-bottom-text p {
	margin-bottom: 0;
}

.map-box {
	position: relative;
	border-radius: 20px;
	-webkit-transform: translateZ(0);
	-webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
}

.map-box #map {
	border: none;
	width: 100%;
	height: 450px;
	max-width: 74%;
	box-shadow: 10px 10px 20px 0px rgb(0 114 187 / 0.1);
	border-radius: 20px;
}



.map-side {
	position: absolute;
	right: 0;
	top: 0;
	height: 450px;
	width: 330px;
	background-color: #013575;
	border-radius: 18px;
	padding: 25px;
}

.map-info {
	display: none;
}

.map-info .info {
	color: #fff;
	font-size: 14px;
	position: absolute;
	bottom: 0;
	width: 88%;
}

.active-map-info {
	display: block;
}

.map-side .title {
	color: #fff;
	font-size: 16px;
	font-weight: 800;
}

.map-side .cities {
	border-radius: 10px;
	padding: 10px;
	border: none;
	height: 40px;
}

.map-side .person {
	margin: 40px 0 10px 0;
	color: #fff;
	font-size: 22px;
	font-weight: 800;
}

.map-social {
	display: flex;
}

.map-social a {
	float: left;
	margin-right: 10px;
}

.map-phone a,
.map-phone a:visited,
.map-phone a:active {
	font-weight: 800;
	color: #fff;
}

.str7 {
	margin-top: 65px;
}

.graph {
	margin-top: 50px;
}


.str6 {
	margin-top: 100px;
}

.str5 .str-title {
	margin-bottom: 25px;
}

.str5 .swiper {
	width: auto;
	height: auto;
}

.str5 .swiper-slide {
	background: none;
}

.str5 .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	border: none;
}

.str-subtext {
	color: #fff;
}

.str-subtext a {
	color: #fff;
	text-decoration: underline;
}

.myth-box {
	padding: 30px;
	border: 1px solid #fff;
	border-radius: 20px;
	margin-bottom: 30px;
}

.myth-box .title {
	font-size: 24px;
	text-transform: uppercase;
	color: #FFC301;
	margin-bottom: 0;
	font-weight: 800;
}

.myth-box .subtitle {
	font-size: 24px;
	color: #fff;
	font-weight: 800;
	margin-bottom: 20px;
}

.myth-box .text {
	font-size: 16px;
	line-height: 1.5;
	color: #fff;
}

.str1-bottom {
	padding-top: 30px;
	margin-bottom: 100px;
	display: none;
}

.str1-bottom .title {
	font-weight: 800;
	font-size: 45px;
	text-transform: uppercase;
	line-height: 1.3;
	margin-top: 0;
	margin-bottom: 15px;
	width: 75%;
}

.str1-bottom .cat-dog {
	width: 35%;
}


@media screen and (max-width: 767px) {

	.page-template-sterilization-tpl .str-title,
	.page-template-sterilization-tpl .str-title,
	.page-template-sterilization-tpl .title,
	.str3 .str-small-title {
		font-size: 26px !important;
	}

	.hts-sterilization .col-md-3 {
		margin: 0 0 24px 0;
	}

	.map-box #map {
		max-width: 100%;
	}

	.str1 {
		padding-top: 130px;
	}

	.str1-box {
		margin: 0;
		padding: 30px 20px 100px 20px;
	}

	.str1 h1,
	.str1-bottom .title {
		font-size: 22px;
		width: 100%;
	}

	.str1 .subtitle {
		font-size: 16px;
	}

	.str1 .text {
		width: 100%;
		max-width: 100%;
		margin-bottom: 30px;
	}

	.y-btn-i {
		padding: 15px;
	}

	.y-btn a {
		color: #00151E;
		font-size: 16px;
		font-weight: 800;
	}

	.str2-box {
		margin: 0;
		flex-direction: column;
		row-gap: 30px;
	}

	.str2-box1-bg,
	.str2-box2-bg {
		width: 100%;
	}

	.str2-box1,
	.str2-box2 {
		padding: 30px 20px;
	}

	.str2-box2 {
		height: 400px;
		background-size: 65%;
	}

	.str2-box1 .title,
	.str2-box2 .title {
		font-size: 32px;
	}

	.str2-box1 .text,
	.str2-box2 .text {
		width: 100%;
	}

	.str-title {
		font-size: 24px;
	}

	.str3 {
		margin-top: 75px;
	}

	.str3 .str-small-title {
		font-size: 22px;
	}

	.str3 .y-btn a {
		width: 100%;
		text-align: center;
	}

	.str6 {
		margin-top: 75px;
	}

	.myth-box {
		padding: 20px;
	}

	.myth-box .subtitle {
		font-size: 22px;
	}

	.str1-bottom {
		padding-top: 30px;
	}

	.map-box iframe {
		border-radius: 20px 20px 0 0 !important;
	}

	.map-side {
		position: relative;
		top: 0;
		margin-top: -25px;
		width: 100%;
	}

	.graph {
		margin-top: 30px;
	}

}

@media (min-width: 768px) and (max-width: 1200px) {
	.str1 h1 {
		font-size: 32px;
	}

	.str1-box {
		margin: 0 -30px;
		padding: 50px 30px;
	}

	.str1 .subtitle {
		font-size: 20px;
	}

	.str2-box1 {
		padding: 25px;
	}

	.str2-box2 {
		padding: 25px;
		background-size: 40%;
	}

	.str2-box {
		margin: 0 -30px;
	}

	.str2-box1 .title,
	.str2-box2 .title {
		font-size: 32px;
	}

	.str2-box1 .text,
	.str2-box2 .text {
		width: 65%;
	}

	.str-title {
		font-size: 32px;
	}

	.myth-box .subtitle {
		font-size: 20px;
	}

	.str1-bottom .title {
		font-size: 28px;
		width: 70%;
	}

	.map-box #map {
		max-width: 65%;
	}

}






/*Footer*/
.footer-text {
	text-align: center;
}

.subscribe,
.site-footer {
	z-index: 9999999;
	position: relative;
}

.footer-main .menu {
	visibility: visible;
	opacity: 1;
	background: none;
	display: block !important;
}

/*Reports*/
.report-head {
	padding-top: 150px;
	padding-bottom: 50px;
	color: #fff;
}

.report-head h1 {
	font-size: 45px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 30px;
	margin-top: 0;
}

.report-head .title-1,
.report-head .title-2 {
	margin-bottom: 10px;
}

.report-head .subtitle-1,
.report-head .subtitle-2 {
	font-size: 32px;
	font-weight: 800;
	margin-bottom: 20px;
}

.report-head .r-line {
	height: 1px;
	width: 100%;
	border-top: 1px solid #fff;
	margin-bottom: 20px;
}

.r-gallery {
	margin: 50px 0 100px 0;
}

.swiper {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 5px solid #fff;
}

.mySwiper .swiper-wrapper,
.myMobileSwiper .swiper-wrapper {
	transition-timing-function: linear;
}

.myMobileSwiper {
	display: none !important;
}

.mySwiper {
	display: block !important;
}

.r-content {
	color: #fff;
	margin-bottom: 100px;
}

.r-content .title {
	font-size: 32px;
	font-weight: 800;
	margin-bottom: 40px;
}

.r-content .site-cta {
	text-align: left;
}

.col-md-6-d-l {
	width: 50%;
	position: sticky;
	top: 200px;
	float: left;
}

.col-md-6-d-r {
	width: 50%;
	display: inline-block;
}

.r-full-text {
	margin-top: 30px;
}

.r-full-text img {
	width: 100%;
}

.reports {
	padding: 150px 0 150px 0;
	color: #fff;
}

.reports-summary {
	margin-bottom: 100px;
}

.reports h1 {
	text-transform: uppercase;
	font-weight: 800;
	font-size: 48px;
}

.reports-inner {
	padding: 40px 0;
	border-bottom: 1px solid #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.reports-inner .reports-title {
	font-size: 36px;
	text-transform: uppercase;
	margin-bottom: 0;
	font-weight: 800;
}

.reports .col-md-10 {
	margin-top: 0;
}

.reports-inner .reports-link {
	color: #CBA135;
	font-size: 18px;
	margin-bottom: 0;
	white-space: nowrap;
}

.reports-inner .reports-link a {
	color: #CBA135;
	margin-right: 10px;
}



@media screen and (max-width: 767px) {
	.report-head {
		padding-top: 150px;
	}

	.report-head h1 {
		font-size: 28px;
	}

	.report-head .subtitle-1,
	.report-head .subtitle-2 {
		font-size: 24px;
	}

	.r-gallery {
		margin: 0 0 50px 0;
	}

	.col-md-6-d-l,
	.col-md-6-d-r {
		width: 100%;
		position: inherit;
	}

	.r-content .title {
		font-size: 24px;
	}

	.r-content .site-cta a {
		width: 100%;
		display: block;
		text-align: center;
	}

	.myMobileSwiper {
		display: block !important;
	}

	.mySwiper {
		display: none !important;
	}

	.reports {
		padding: 100px 0 100px 0 !important;
	}

	.reports h1 {
		font-size: 32px;
	}

	.reports-image {
		margin-top: 30px;
	}

	.reports-inner .reports-title {
		font-size: 24px;
	}

	.reports-inner .reports-link {
		font-size: 14px;
	}

	.reports-inner .reports-link a {
		margin-right: 5px;
	}

	.reports-inner {
		padding: 20px 0;
	}

	.reports .col-md-1 {
		display: none;
	}
}

/*New Forms*/
.col-md-5-d {
	width: 40%;
	position: sticky;
	top: 200px;
	float: left;
}

.col-md-7-d {
	width: 55%;
	margin-left: 5%;
	display: inline-block;
}

.payment-period {
	margin: 0 0 20px 0 !important;
	padding: 0 5px;
}

.reg-pay-info {
	font-size: 14px;
	margin-bottom: 10px;
}

.credentials .payment-period .nav-item {
	margin: 0;
}

.payment-period input[type="radio"] {
	opacity: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	margin-top: -35px;
	margin-left: -20px;
	cursor: pointer;
}

.payment-period label {
	display: block;
	height: inherit;
	position: relative;
}

.payment-period label {
	padding: 10px 20px;
	border: 1px solid #013575;
}

.payment-period .active label {
	background-color: #013575;
}




.payment-title {
	font-size: 28px;
	font-weight: 800;
}

.rec-name {
	font-size: 28px;
	font-weight: 800;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.rec-box {
	border-radius: 5px;
	padding: 20px;
	margin-bottom: 20px;
	border: 1px solid #013575;
}

.rec-title {
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 10px;
	font-size: 14px;
}

.rec-title span {
	font-weight: 300;
	text-transform: none;
	margin-right: 10px;
}

.rec-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #013575;
	padding: 10px 20px;
	border-radius: 5px;
	margin: 20px 0 10px 0;
}

.rec-item p {
	margin-bottom: 0;
}

.rec-item .rec-item-title {
	font-size: 14px;
}

.rec-item .rec-item-value {
	font-weight: 800;
	margin-bottom: 5px;
}

.click {
	cursor: pointer;
	transition: all 0.5s;
}

.click:hover {
	background-color: #044492;
	transition: all 0.5s;
}

#copied {
	z-index: 999;
}

.rec-btn-m {
	margin-bottom: 10px;
}

.rec-btn-m a {
	color: #000;
	text-decoration: none;
	font-weight: 800;
	font-size: 18px;
}

.rec-btn-m-inner {
	text-align: center;
	background-color: #fff;
	padding: 10px;
	border-radius: 5px;
}

.rec-btn-patreon {
	margin-bottom: 10px;
}

.rec-btn-patreon a {
	color: #fff;
	text-decoration: none;
	font-weight: 800;
	font-size: 18px;
}

.rec-btn-patreon-inner {
	text-align: center;
	background-color: #fe434d;
	padding: 10px;
	border-radius: 5px;
}

.rec-btn-patreon-inner img {
	height: 20px;
	margin-right: 10px;
}

.rec-btn {
	margin-bottom: 10px;
}

.rec-btn a {
	color: #fff;
	text-decoration: none;
	font-weight: 800;
	font-size: 18px;
}

.rec-btn-inner {
	text-align: center;
	background-color: #013575;
	padding: 10px;
	border-radius: 5px;
}



@media screen and (max-width: 767px) {

	.col-md-5-d,
	.col-md-7-d {
		width: 100%;
		position: inherit;
		margin-left: 0;
	}

	.rec-item .rec-item-value {
		font-weight: 800;
		margin-bottom: 5px;
		word-break: break-word;
	}

	.rec-item p {
		font-size: 14px;
	}

	.rec-item-copy-text {
		font-size: 12px;
		margin-left: 10px;
	}

	.rec-link {
		font-size: 14px;
	}

	.rec-box {
		padding: 20px 10px;
	}

	.rec-item {
		padding: 10px;
	}

	.rec-name {
		font-size: 21px;
	}

	form.donate-form .contact-data {
		margin-bottom: 30px;
	}

	.advblk1 .center-btn {
		flex-direction: column;
	}

	.advblk1 .center-btn .y-btn {
		margin: 10px 0px;
	}

	.advblk1 .center-btn .y-btn a {
		width: 100%;
		text-align: center;
	}

}


@media (min-width: 768px) and (max-width: 1439px) {
	form.donate-form label .radio-text {
		font-size: 14px !important;
	}

	.payment-title {
		display: none;
	}
}

@media (max-width: 380px) {
	.titlle {
		font-size: 34px !important;
	}
}

a.btnn--blue:visited {
	color: #223A72 !important;
}



:root {
	--yellow: #FFC301;
	--blue: #013575;
	--dark: #00151E;
}




/*padding pages*/
@media screen and (max-width: 767px) {
	.news {
		padding: 75px 0;
	}

	.team-blk1 {
		padding-top: 75px;
	}

	.vac-archive-1 {
		padding: 75px 0 50px 0;
	}

	.simple-page h1 {
		margin-top: 25px;
	}

	.documents {
		padding: 75px 0 100px 0;
	}

	.contact {
		padding: 75px 0 30px;
	}

	.page-template-help-uanimals-template .h-need-help {
		padding: 100px 0 50px 0;
	}

	.key-v1 {
		padding-top: 100px;
	}

	.str1 {
		padding-top: 100px;
	}

	.key-v2 {
		padding-top: 100px;
	}

	.credentials {
		padding: 75px 0;
	}

	.contact #breadcrumbs {
		margin-bottom: 25px !important;
	}

	.zbir-1-screen {
		padding: 75px 0 100px 0;
	}

	.spil1 {
		padding-top: 100px;
	}

	.premia24-blk1 {
		padding: 75px 0 0 0;
	}

	.reports {
		padding: 50px 0 100px 0 !important;
	}

}