@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700;800&family=Roboto+Mono:wght@200;300;700&display=swap');

:root {
	/* Colors */
	--agds-color-1: #7b99ce;
	--agds-color-1-rgb: 123, 153, 206;
	--agds-color-2: #c19009;
	--agds-color-2-rgb: 193, 144, 9;
	--agds-color-3: #7b783e;
	--agds-color-3-rgb: 123, 120, 62;
	--agds-color-4: #d05838;
	--agds-color-4-rgb: 208, 88, 56;
	--agds-color-5: #E4B430;
	--agds-color-5-rgb: 228, 180, 48;
	--agds-color-6: #188FE5;
	--agds-color-6-rgb: 24, 143, 229;

	--agds-white: #fff;
	--agds-white-rgb: 255, 255, 255;
	--agds-light: rgb(245, 239, 235);
	--agds-light-rgb: 245, 239, 235;
	--agds-grey: #636363;
	--agds-dark: #1d2327;
	--agds-black: #000;
	--agds-black-rgb: 0, 0, 0;

	/* Typography */
	--agds-font-primary: 'Raleway';
	--agds-font-secondary: 'Roboto Mono', monospace;
	--agds-body-font-size: 20px;
	--agds-body-font-weight: 400;
	--agds-body-line-height: 1.4;

	/* Sizes */
	--agds-gutter-x: 30px;
	--agds-container-1200: 1160px;
	--agds-header-height: 100px;
	--agds-header-height-tab: 90px;
	--agds-header-height-mob: 80px;
	--agds-border-radius: 3px;

	/* Transitions */
	--agds-transition-duration: .25s;
	--agds-transition-timing-function: ease;
	--agds-transition: var(--agds-transition-duration) var(--agds-transition-timing-function);
}

/* MAIN */
html,
body {
	color: var(--agds-black);
	background: var(--agds-light);
}

.section-title {
	margin: 0;
}

.text-white {
	color: var(--agds-white);
}

.text-dark {
	color: var(--agds-dark);
}

.bg-backdrop {
	position: relative;
}

.bg-backdrop::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 1;
}

.bg-dark-green {
	background-color: var(--agds-color-3);
}

.bg-yellow {
	background-color: var(--agds-color-5);
}

.bg-blue {
	background-color: var(--agds-color-1);
}

.bg-orange {
	background-color: var(--agds-color-2);
}

/* Main Overlay */
.fancybox__backdrop {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgb(var(--agds-black-rgb), 70%);
	transition: var(--agds-transition);
	backdrop-filter: blur(3px);
	z-index: 9;
}

/* Lang Btn */
.lang-btn {
	position: fixed;
	right: calc(16px + 2vw);
	bottom: calc(16px + 2vw);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	width: 44.8px;
	height: 44.8px;
	color: var(--agds-white);
	border-radius: 50%;
	background-color: var(--agds-color-1);
	transition: var(--agds-transition);
	text-decoration: none !important;
	box-shadow: 0px 0px 25px 0px rgba(var(--agds-black-rgb), 20%);
	z-index: 998;
}

.lang-btn:hover {
	opacity: 1;
	background: var(--agds-color-2);
	box-shadow: 0px 2px 4px 0px rgba(var(--agds-black-rgb), 50%);
}

/* Modals */
.modal {
	width: 100%;
	max-width: 1035px;
	display: none;
	padding: 50px;
	color: var(--agds-black);
	background-color: var(--agds-light);
}


@media screen and (max-width: 991px) {

	html,
	body {
		font-size: 16px;
	}
}

@media screen and (max-width: 767px) {

	html,
	body {
		font-size: 15px;
	}

	.modal {
		padding: 35px 22px;
	}
}

/* BUTTONS */
.btn {
	display: inline-block;
	padding: 18px 50px;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 1.61px;
	line-height: 1;
	border: none;
	outline: none;
	border-radius: 30px;
	text-transform: uppercase;
	transition: var(--agds-transition);
}

/* Main Button */
.btn-main {
	color: var(--agds-color-3);
	background-color: transparent;
	border: 1px solid var(--agds-color-3);
}

.btn-main:hover {
	background-color: var(--agds-color-3);
	color: var(--agds-white);
}

/* HEADER */
.header {
	background-color: var(--agds-black);
	padding-bottom: 30px;
}

.header__subtitle,
.header__title {
	color: #F5EFEB;
	font-family: var(--agds-font-secondary);
	font-size: 54px;
	font-weight: 300;
	margin-top: 16px;
	line-height: 1.4;
}

[lang="de"] .header__subtitle,
[lang="de"] .header__title {
	font-size: 48px;
}

.header__subtitle {
	font-weight: 700;
	margin-top: 0px;
}

.header__subtitle span {
	color: var(--agds-color-4);
}

.header__desc {
	color: var(--agds-color-1);
	font-size: 28px;
	font-weight: 800;
	line-height: 1.32;
	letter-spacing: 1.26px;
	text-transform: uppercase;
	margin-top: 30px;
}

.header__desc span {
	text-transform: initial;
	color: var(--agds-color-2);
}

@media screen and (max-width: 991px) {

	[lang="de"] .header__subtitle,
	[lang="de"] .header__title,
	.header__subtitle,
	.header__title {
		font-size: 36px;
	}

	.header__desc {
		font-size: 18px;
	}
}

@media screen and (max-width: 767px) {
	.header__banner {
		margin-right: calc(var(--agds-gutter-x) * -0.5);
		margin-left: calc(var(--agds-gutter-x) * -0.5);
	}

	[lang="de"] .header__subtitle,
	[lang="de"] .header__title,
	.header__subtitle,
	.header__title {
		font-size: 26px;
		margin-top: 0;
	}

	.header__subtitle {
		margin-top: 10px;
	}

	.header__desc {
		font-size: 12px;
		line-height: 1.4;
		letter-spacing: 0.54px;
		margin-top: 20px;
	}

	.header__desc br {
		display: none;
	}
}

/* FOOTER */
.footer {
	font-family: var(--agds-font-secondary);
	position: relative;
	background-color: var(--agds-black);
	padding: 90px 0;
	color: var(--agds-light);
	z-index: 20;
}

.footer .contacts {
	margin-bottom: 80px;
	font-weight: 700;
	letter-spacing: 5.7px;
}

.footer .contacts-item:not(:last-child) {
	margin-bottom: 5px;
}

.copyright {
	font-size: 14px;
}

@media screen and (max-width: 991px) {
	.footer {
		padding: 50px 0;
	}

	.footer .contacts {
		margin-bottom: 40px;
	}
}

@media screen and (max-width: 767px) {
	.footer {
		padding: 50px 0 30px;
	}
}

@media screen and (max-width: 350px) {
	.footer .contacts {
		font-size: 12px;
	}
}

/* ABOUT SECTION */
.about-section__left h2 {
	font-family: var(--agds-font-secondary);
	font-size: 36px;
	line-height: 1.3;
	font-weight: 300;
}

.about-section__right {
	padding-left: 11%;
}

.about-section__right p:last-child {
	margin-top: 40px;
}

@media screen and (max-width: 991px) {
	.about-section__left h2 {
		font-size: 24px;
	}

	.about-section__right {
		padding-left: 0;
	}
}

@media screen and (max-width: 767px) {
	.about-section__right {
		margin-top: 30px;
	}

	.about-section__left p {
		font-size: 22px;
		margin-bottom: 40px;
	}
}

/* SHARE SECTION */
.share-section__title {
	font-size: 54px;
	text-align: center;
	display: inline-block;
	background-color: var(--agds-light);
	z-index: 3;
	padding: 0 50px;
}

.share-section__title span {
	color: var(--agds-color-4);
}

.share-section__title-wrap::after {
	content: '';
	position: absolute;
	top: 57%;
	transform: translateY(-50%);
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--agds-grey);
}

.share-section__inner {
	padding: 40px;
	border-radius: 61px;
	border: 1px solid var(--agds-black);
	margin: 0 5%;
	margin-top: 50px;
}

.share-section__content-img {
	position: absolute;
	left: -93px;
	top: 122px;
	width: 460px;
	height: 340px;
}

.share-section__content {
	min-height: 460px;
}

.share-section__content:not(:last-child) {
	margin-bottom: 60px;
}

.share-section__content-text {
	padding-left: 420px;
}

.share-section__content-title {
	font-size: 36px;
	font-weight: 300;
}

.share-section__content-desc {
	margin: 20px 0;
}

.share-section__content__num {
	position: relative;
	font-size: 80px;
	top: -20px;
	font-style: italic;
	margin-left: 250px;
	font-family: var(--agds-font-secondary);
}

.share-section__content__num::after {
	content: '';
	position: absolute;
	top: 50px;
	left: -31px;
	width: 147px;
	height: 68px;
	background-image: url('../img/features-circle.svg');
	background-repeat: no-repeat;
	background-size: 100%;
}

.share-section__content-desc a {
	color: var(--agds-color-6);
	font-style: italic;
	text-decoration-line: underline;
	display: inline;
}

.share-section__content-desc a:hover {
	color: var(--agds-color-4);
}

.share-section__content-desc strong {
	text-decoration-line: underline;
}

.modal-leter-template__title {
	font-size: 38px;
}

.modal-leter-template .modal__content {
	font-family: var(--agds-font-secondary);
}

.modal-leter-template .modal__content p {
	margin: 30px 0;
}

.modal-leter-template .modal__content a {
	font-weight: 700;
	color: var(--agds-black);
	text-decoration-line: underline;
}

.modal-leter-template__bottom p:not(:last-of-type) {
	margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
	.share-section__inner {
		border-radius: 45px;
		margin: 0;
		margin-top: 50px;
	}

	.share-section__title {
		font-size: 40px;
		padding: 0 40px;
	}

	.share-section__content-text {
		padding-left: 0;
		padding-top: 330px;
	}

	.share-section__content-img {
		width: 460px;
		height: 270px;
		left: -56px;
	}

	.share-section__content__num {
		font-size: 60px;
		top: -20px;
		margin-left: 29px;
	}

	.share-section__content__num::after {
		top: 40px;
		left: -31px;
		width: 132px;
	}

	.share-section__content-title {
		font-size: 30px;
		font-weight: 300;
		position: absolute;
		top: 15px;
		left: 170px;
	}

	.modal-leter-template__title {
		font-size: 30px;
	}
}

@media screen and (max-width: 767px) {
	.share-section {
		margin-bottom: 70px;
	}

	.share-section__title {
		font-size: 22px;
		padding: 0;
		text-align: left;
	}

	.share-section__title-wrap::after {
		display: none;
	}

	.share-section__inner {
		border-radius: 30px;
		margin-top: 30px;
		padding: 20px;
	}

	.share-section__content-img {
		width: 275px;
		height: 180px;
		left: -36px;
	}

	.share-section__content__num {
		font-size: 30px;
		top: 0px;
		margin-left: 14px;
	}

	.share-section__content__num::after {
		top: 20px;
		left: -11px;
		width: 56px;
	}

	.share-section__content-title {
		font-size: 22px;
		top: 15px;
		left: 80px;
	}

	.share-section__content:not(:last-child) {
		margin-bottom: 40px;
	}

	.share-section__content-text {
		padding-top: 260px;
	}

	.share-section__content-btn {
		width: 100%;

		padding: 16px 30px;
	}

	.share-section__content-second .share-section__content-img {
		top: 102px;
	}

	.share-section__content-second .share-section__content-text {
		padding-top: 260px;
	}

	.modal-leter-template__title {
		font-size: 22px;
	}

	.modal-leter-template__bottom p:not(:last-of-type) {
		margin-bottom: 20px;
	}
}

/* PRISONERS SECTION */
.prisoners-item:not(:last-child) {
	margin-bottom: 60px;
}

.prisoners-item__name h2 {
	font-size: 54px;
	line-height: 1.2;
	padding: 60px 0 23px;
}

.prisoners-item__content-left {
	padding: 40px 0 0px;
	margin-left: 10%;
}

.prisoners-item__content-img {
	width: 400px;
	height: 300px;
	margin-top: -90px;
	margin-left: 20px;
}

.prisoners-item__content-title {
	font-size: 38px;
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: 40px;
}

.prisoners-item__content-btn {
	margin-top: 30px;
}

.modal-story__name {
	font-size: 54px;
	font-weight: 700;
}

.modal-story__title {
	color: var(--agds-color-1);
	font-family: var(--agds-font-primary);
	font-weight: 800;
	letter-spacing: 1.7px;
	text-transform: uppercase;
	margin: 30px 0;
	font-size: 20px;
}

.modal__content p:not(:last-child) {
	margin-bottom: 10px;
}

.modal__content a {
	color: var(--agds-color-6);
	font-weight: 700;
	text-decoration-line: underline;
	display: inline;
}

.modal__content a:hover {
	color: var(--agds-color-4);
}

.modal-story__bottom {
	padding: 30px 50px;
	border-radius: 61px;
	border: 1px solid var(--agds-black);
	margin-top: 54px;
}

.modal-story__bottom-title {
	font-size: 38px;
	line-height: 1.4;
}

.modal-story__bottom-desc {
	margin-top: 15px;
}

.prisoners-page-section .prisoners-item__content-img {
	margin: 0;
	margin-bottom: 30px;
}

.btn-back {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 30px;
	padding-left: 30px;
	position: relative;
}

.btn-back::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	background-image: url('data:image/svg+xml;base64,PHN2ZyBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGZpbGwtcnVsZT0iZXZlbm9kZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLW1pdGVybGltaXQ9IjIiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtMTAuOTc4IDE0Ljk5OXYzLjI1MWMwIC40MTItLjMzNS43NS0uNzUyLjc1LS4xODggMC0uMzc1LS4wNzEtLjUxOC0uMjA2LTEuNzc1LTEuNjg1LTQuOTQ1LTQuNjkyLTYuMzk2LTYuMDY5LS4yLS4xODktLjMxMi0uNDUyLS4zMTItLjcyNSAwLS4yNzQuMTEyLS41MzYuMzEyLS43MjUgMS40NTEtMS4zNzcgNC42MjEtNC4zODUgNi4zOTYtNi4wNjguMTQzLS4xMzYuMzMtLjIwNy41MTgtLjIwNy40MTcgMCAuNzUyLjMzNy43NTIuNzV2My4yNTFoOS4wMmMuNTMxIDAgMS4wMDIuNDcgMS4wMDIgMXYzLjk5OGMwIC41My0uNDcxIDEtMS4wMDIgMXoiIGZpbGwtcnVsZT0ibm9uemVybyIvPjwvc3ZnPg==');
	background-repeat: no-repeat;
	background-size: 100%;
}

.share-list {
	margin-top: 30px;
}

.share-item__link {
	width: 40px;
	height: 40px;
	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: rgb(var(--agds-color-1-rgb), 20%);
	border-radius: var(--agds-border-radius);
}

.share-item__link:hover {
	background-color: var(--agds-color-1);
}

.share-item:not(:last-child) {
	margin-right: 10px
}

.share-item .icon {
	max-width: 19px;
	max-height: 19px;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}

.share-item__link:hover {
	fill: var(--agds-white);
}

.share-item-facebook .share-item__link:hover {
	background-color: var(--agds-i-facebook);
}

.share-item-twitter .share-item__link:hover {
	background-color: var(--agds-i-twitter);
}

.share-item-telegram .share-item__link:hover {
	background-color: var(--agds-i-telegram);
}


.copy-text {
	font-weight: 600;
	margin-top: 30px;
	padding-left: 30px;
	position: relative;
	color: var(--agds-success);
	transition: var(--agds-transition);
}

.copy-text._copied {
	color: var(--agds-success);
	pointer-events: none;
}

.copy-text::before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 20px;
	height: 20px;
	background-image: url('../img/copied.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	transition: var(--agds-transition);
}

.copy-text._copied::before {
	background-image: url('../img/copied.svg');
}


.copy-text:hover::before {
	transform: translateY(-50%) scale(1.2);
}

@media screen and (max-width: 991px) {
	.prisoners-item__content-img {
		width: 100%;
		margin-left: 0;
	}

	.prisoners-page-section .prisoners-item__content-img {
		width: 400px;
	}

	.prisoners-item__content-title {
		font-size: 30px;
		margin-bottom: 30px;
	}

	.modal-story__name {
		font-size: 45px;
	}

	.prisoners-item__name h2 {
		font-size: 45px;
	}

	.prisoners-item__content-left {
		margin-left: 0;
	}

	.modal-story__bottom-title {
		font-size: 26px;
	}

	.modal-story__bottom {
		margin-top: 35px;
		padding: 35px;
	}
}

@media screen and (max-width: 767px) {
	.prisoners-item__name h2 {
		font-size: 22px;
		padding: 28px 0 16px;
	}

	.prisoners-item__content-img {
		position: absolute;
		right: 0;
		top: -34px;
		width: 168px;
		height: 168px;
		margin: 0;
	}

	.prisoners-page-section .prisoners-item__content-img {
		width: 100%;
		position: static;
		height: auto;
	}

	.prisoners-item__content-left {
		padding: 50px 0 0px;
	}

	.prisoners-item__content-title {
		font-size: 16px;
		margin-bottom: 16px;
	}

	.prisoners-item__content-btn {
		width: 100%;
	}

	.modal-story__name {
		font-size: 26px;
	}

	.modal-story__title {
		margin: 16px 0;
		font-size: 16px;
	}

	.modal-story__bottom {
		margin-top: 25px;
		padding: 30px 25px;
		border-radius: 30px;
	}

	.modal-story__bottom-desc {
		margin-bottom: 30px;
	}
}

/* VOICE SECTION */
.voice-section__content {
	font-family: var(--agds-font-secondary);
	font-size: 38px;
	max-width: 85%;
}

.voice-section__title {
	font-family: var(--agds-font-secondary);
	font-size: 54px;
	line-height: 1.2;
	font-weight: 700;
	margin-top: 15px;
}

@media screen and (max-width: 991px) {
	.voice-section__content {
		font-size: 34px;
		max-width: 100%;
	}

	.voice-section__title {
		font-size: 40px;
	}
}

@media screen and (max-width: 767px) {
	.voice-section__content {
		font-size: 22px;
	}

	.voice-section__title {
		font-size: 26px;
	}
}

/* SUPPORT SECTION */
.support-section__inner {
	padding: 40px;
	border-radius: 61px;
	border: 1px solid var(--agds-black);
	margin: 0 5%;
}

.support-section__title {
	font-size: 38px;
	padding-left: 210px;
}

.support-section__title::before {
	content: '';
	position: absolute;
	top: 37px;
	left: 22px;
	width: 111.478px;
	height: 87.5px;
	background-image: url('../img/heart.svg');
	background-repeat: no-repeat;
	background-size: 100%;
}

.support-section__content {
	margin: 80px 0 60px;
	min-height: 300px;
}

.support-section__content-img {
	position: absolute;
	left: -93px;
	top: 0;
	width: 400px;
	height: 300px;
}

.support-section__content-left .support-section__content-text {
	padding-left: 360px;
}

.support-section__content-right .support-section__content-text {
	padding-right: 360px;
}

.support-section__content-right .support-section__content-img {
	left: auto;
	right: -93px;
}

.support-section__content-title {
	font-size: 38px;
	margin-bottom: 40px;
}

.support-section__content-desc {
	max-width: 91%;
}

.support-section__content-right {
	margin-bottom: 20px;
}

.partners__title {
	color: var(--agds-color-4);
	text-align: center;
	font-family: var(--agds-font-primary);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.4;
	max-width: 400px;
	border: 2px solid #000;
	padding: 53px;
	border-radius: 100%;
	margin: 150px auto 35px;
}

.partners-list {
	margin-bottom: -30px;
}

.partners-list__img {
	height: 141px;
	padding: 25px;
	margin-bottom: 30px;
	background-color: var(--agds-white);
}

.partners-list-col {
	max-width: 200px;
	flex: 0 0 200px;
	width: 100%;
}

@media screen and (max-width: 991px) {
	.support-section__inner {
		border-radius: 45px;
		margin: 0;
	}

	.support-section__title {
		font-size: 34px;
		padding-left: 0;
		padding-top: 160px;
	}

	.support-section__content {
		margin: 50px 0;
	}

	.support-section__content-right {
		margin-bottom: 20px;
	}

	.partners-list__img {
		padding: 20px;
	}

	.support-section__content-img {
		position: absolute;
		left: 0;
		top: 0;
		width: 400px;
		height: 300px;
	}

	.support-section__content-left .support-section__content-text {
		padding-left: 0;
		padding-top: 338px;
	}

	.support-section__content-title {
		font-size: 30px;
		margin-bottom: 30px;
		max-width: 80%;
	}

	.support-section__content-right .support-section__content-img {
		left: 0;
		right: auto;
	}

	.support-section__content-right .support-section__content-text {
		padding-top: 338px;
		padding-right: 0;
	}

	.partners__title {
		margin: 50px auto 35px;
	}
}

@media screen and (max-width: 767px) {
	.support-section__inner {
		border-radius: 30px;
		padding: 20px;
	}

	.support-section__title::before {
		top: 20px;
		left: 2px;
		width: 49px;
		height: 39px;
	}

	.support-section__content {
		margin: 35px 0;
	}

	.support-section__content-right {
		margin-bottom: 20px;
	}

	.support-section__title {
		font-size: 22px;
		padding-left: 0;
		padding-top: 80px;
	}

	.support-section__content-img {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 230px;
	}

	.support-section__content-right .support-section__content-text,
	.support-section__content-left .support-section__content-text {
		padding-top: 250px;
	}

	.support-section__content-title {
		font-size: 18px;
		margin-bottom: 16px;
		max-width: 100%;
	}

	.partners__title {
		font-size: 16px;
	}

	.partners-list {
		margin-bottom: -20px;
	}

	.partners-list-col {
		max-width: 150px;
		flex: 0 0 150px;
	}

	.partners-list__img {
		height: 90px;
		margin-bottom: 20px;
	}
}