@import './normalize.css';
@import './vars.css';
@import './fonts.css';

* {
	box-sizing: border-box;
}

body {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 16px;
	color: var(--color-text);
}

body.no-scroll {
	margin: 0;
	height: 100%;
	overflow: hidden
}

body.open {
	overflow: hidden;
}

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.wrapper .header {
	flex: 0 0 auto;
}

.wrapper .main {
	flex: 1 0 auto;
}

.wrapper .footer{
	flex: 0 0 auto;
}

.main-title {
	color: var(--color-blue);
	font-weight: 400;
	font-size: 36px;
}

.text {
	color: var(--color-text);
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 19px;
}

.line {
	position: relative;
}

.line:before {
	content: '';
	position: absolute;
	top: -14px;
	left: 0;
	width: 46px;
	height: 5px;
	background-color: var(--color-yellow);
}

.btn {
	display: inline-flex;
	color: var(--color-white);
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	border-radius: 10px;
	border: none;
	background-color: var(--color-blue);
	outline: none;
	cursor: pointer;
	transition: all .15s ease;
}

.btn:hover {
	color: var(--color-white);
	background-color: var(--color-blue-hover);
}

.btn:focus,
.btn:active {
	color: var(--color-white);
	background-color: var(--color-blue-active);
}

.btn.btn--sm {
	padding: 7px 18px;
}

.btn.btn--md {
	padding: 15px 34px;
}

img {
	max-width: 100%;
}

.truncate {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}


.section-title-wrapper {
	margin: 0 0 var(--margin-32) ;
}

.section-title {
	margin: 0;
	color: var(--color-title);
	font-weight: 400;
	font-size: 28px;
}

.section-title--yellow {
	display: inline-flex;
	padding: 20px 28px 10px;
	background-color: var(--color-yellow);
}

.section-title--white {
	color: var(--color-white);
}

.section-title--center {
	text-align: center;
}

.main {
	padding: 66px 0 0;
}

.display-none {
	display: none;
}

.disabled-link, .disabled-link span {
	color: grey !important;
	cursor: default;
}

.disabled-link:hover {
	color: grey !important;
}

/* header */

.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	width: 100%;
	padding: 2px 0;
	height: 66px;
	background-color: var(--color-white);
	border-bottom: 1px solid var(--color-bg);
}

.logo {
	display: flex;
	align-items: center;
	height: 100%;
}

.logo img {
	max-width: 150px;
}

.burger-wrapper {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	height: 100%;
}

.burger {
	position: relative;
	width: 40px;
	height: 40px;	
}

.burger span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 2px;
	background: var(--color-blue);
	transform: translate(-50%, -50%);
	border-radius: 2px;
}

.burger span:before {
	content: "";
	position: absolute;
	top: -4px;
	left: 0;
	width: 18px;
	height: 2px;
	background: var(--color-blue);
	border-radius: 2px;
}

.burger span:after {
	content: "";
	position: absolute;
	top: 4px;
	left: 0;
	width: 18px;
	height: 2px;
	background: var(--color-blue);
	border-radius: 2px;
}

.language-select-wrapper {
	width: 70px;
	flex-shrink: 0;
}

.language-select {
	padding: 7px 36px 7px 12px;
	color: var(--color-text);
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	cursor: pointer;
}

/* save */

.start {
	display: flex;
	align-items: center;
	padding: 44px 0 var(--margin-16);
}

.start__days {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 var(--base-spacing) 0 0;
	height: 36px;
	width: 36px;
	background-color: var(--color-yellow);
	border-radius: 10px;
}

.start__days span {
	margin: 8px 0 0;
	color: var(--color-title);
	font-weight: 400;
	font-size: 24px;
}

.start__text {
	margin: 0;
	color: var(--color-gray);
	font-weight: 400;
	font-size: 24px;
}

.save-item-wrapper {
	position: relative;
}

.save {
	position: relative;
	margin: 0 0 var(--margin-32);
	overflow: hidden;
}

.background {
	display: none;
}

.save__title {
	margin: 5px 0 12px;
}

.save__text {
	margin: 0 0 var(--margin-24);
	color: var(--color-gray);
}

.save__img {
	position: relative;
	margin: 0 -12px; 
}

.save__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.action {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.action__title {
	margin: 0 0 10px;
	color: var(--color-blue);
	font-size: 24px;
	font-weight: 400;
}

.save-item-wrapper:first-child {
	order: 2;
}

.save-item-wrapper:last-child {
	order: 1;
}

.save-item-wrapper:last-child:before {
	content: '';
	position: absolute;
	right: calc(50% - 50px);
	bottom: 0;
	z-index: 1;
	width: 1000px;
	height: 10px;
	background-color: var(--color-yellow);
}

.save-item-wrapper:last-child:after {
	content: '';
	position: absolute;
	left: calc(50% - 50px);
	bottom: -10px;
	width: 1000px;
	height: 10px;
	background-color: var(--color-blue);
}

/* work */

.work {
	padding: var(--margin-24) 0;
	background-color: var(--color-bg);
}

.work-item-wrapper {
	margin-bottom: var(--margin-32);
}

.work-item-wrapper:last-child {
	margin-bottom: 0;
}

.work-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.work-item__top {
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom: var(--base-spacing);
}

.work-item__icon {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	margin: 0 var(--margin-24) 0 0;
	width: 75px;
	height: 75px;
	background-color: var(--color-white);
	border-radius: 50%;
}

.work-item__title {
	margin: 0;
	color: var(--color-blue);
	font-weight: 400;
	font-size: 24px;
	text-transform: uppercase;
}

.work-item__text {
	margin: 0;
}

/* result */

.result {
	padding: var(--margin-24) 0;
	margin: 0 0 var(--base-spacing);
	background-image: url('https://storage.googleapis.com/wou-site/Home/blue_pattern_bzqdmo.png');
	background-position: center;
	background-size: cover;
}

.result-item-wrapper {
	margin: 0 0 var(--margin-24);
	padding-top: 14px;
}

.result-item-wrapper:last-child {
	margin: 0;
}

.result-item__count {
	color: var(--color-white);
	font-weight: 400;
	font-size: 42px;
}

.result-item__text {
	margin: 0;
	color: var(--color-white);
}

/* post */

.post {
	padding: 0 6px;
	margin-bottom: var(--margin-32);
}

.post-item-wrapper {
	padding: 0;
}

.post-item-wrapper:first-child .post-item {
	margin: 0 6px 12px;
	padding: 46.5% 0 0;
}

.post-item {
	position: relative;
	display: flex;
	margin: 0 6px;
	padding: 93% 0 0;
}

.post-item img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

/* team */

.team {
	margin: 0 0 var(--margin-32);
}

.team__title {
	margin: 0 0 var(--margin-16);
	font-weight: 400;
	font-size: 28px;
	color: var(--color-title);
}

.team__desc {
	margin: 0 0 var(--base-spacing);
	font-weight: 400;
	font-size: 24px;
	color: var(--color-blue);
}

.team__subtitle {
	margin: var(--margin-16) 0 var(--base-spacing);
	padding: var(--margin-16) 0 0;
	color: var(--color-title);
	font-weight: 400;
	font-size: 24px;
	border-top: 5px solid var(--color-yellow);
}

.team__text {
	margin: 0;
}

.team-item-wrapper {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -6px var(--margin-16);;
}

.team-item {
	position: relative;
	display: flex;
	margin: 2px;
	padding: 50% 0 0;
	width: calc(50% - 4px);
}

.team-item img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

/* mobile menu */

.mobile-menu-overlay {
	position: fixed;
	top: 0;
	right: -100%;
	z-index: 5;
	width: 100%;
	height: 100%;
	transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
	
}

.mobile-menu-overlay.open {
	right: 0;
}

.mobile-menu {
	height: 100%;
	background-color: var(--color-white);
}

.mobile-menu__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 66px;
	padding: 0 12px;
	margin: 0 0 var(--margin-32);
}

.mobile-menu__close {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
	padding: 0;
	background: none;
	outline: none;
	border: none;
}

.nav-list {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0 0 0 var(--margin-32);
	list-style: none;
}

.nav-list__item {
	display: flex;
	align-items: center;
	padding: 18px 0;
	width: 100%;
	border-bottom: 1px solid var(--color-bg);
}

.nav-list__link {
	color: var(--color-text);
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	text-decoration: none;
} 

.nav-list__icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 24px;
	height: 24px;
	margin: 0 var(--base-spacing) 0 0;
}

 .nav-list__icon svg {
	fill: var(--color-text);
}

.nav-list__icon.active svg {
	fill: var(--color-blue);
}

.nav-list__link.active {
	color: var(--color-blue);
}

.controls {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	padding: var(--margin-32) 0 0;
}

.social {
	display: flex;
	padding: var(--margin-24) 0;
}

.social__link {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 36px;
	width: 36px;
	font-size: 0;
}

.social__link svg {
	fill: var(--color-blue);
}

.social__link:hover svg {
	fill: var(--color-blue-hover);
}

.social__link:active svg {
	fill: var(--color-blue-active);
}

.social__link:not(:first-child) {
	margin: 0 0 0 24px;
}

.lang__link:not(:first-child) {
	margin: 0 0 0 var(--base-spacing);
}

/* contants */

.contacts-form {
	margin: 0 0 var(--margin-32);
}

.contacts-form textarea {
	resize: vertical;
}

.contacts-form .characters-count {
	font-size: 15px;
	color: grey;
}

.contacts-form__title {
	margin: 0 0 var(--margin-24);
	color: var(--color-text);
	font-size: 24px;
	font-weight: 400;
}

/* form*/

.form-success {
	color: green;
	font-size: 14px;
	position: absolute;
	font-family: 'Inter', sans-serif;
}

.form-danger {
	color: red;
	font-size: 14px;
	position: absolute;
	font-family: 'Inter', sans-serif;
}

.form__label {
	display: flex;
	flex-direction: column;
	margin: 0 0 2px;
}

.form__label span {
	color: var(--color-title);
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 400;
}

.form__label span sup {
	color: var(--color-red);
}

.form__field {
	height: 38px;	
	font-family: 'Inter', sans-serif;
	font-style: normal;
	border-color: #CFD4D9;
	border-radius: 4px;
	background-color: var(--color-white);
}

.form__field--area {
	height: 80px;
	resize: none;
}

.form__btn {
	margin: auto;
	display: inline-block;
}

.form__btn.disabled {
	cursor: none;
	background-color: gray;
}

.detail-info__link {
	display: flex;
	align-items: center;
	margin: 0 0 var(--margin-16);
	color: var(--color-blue);
	font-family: 'Inter';
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
}

.detail-info__icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 24px;
	height: 24px;
	margin: 0 12px 0 0;
}

.footer {
	background-color: #002650;
}

.footer__bottom {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 72px;
	border-top: 1px solid #335172;
}

.footer__top {
	padding: 32px 0;
}

.footer-col {
	display: flex;
	justify-content: center;
	flex: 1 0 100%;
}

.footer-col + * {
	margin-top: 32px;
}

.footer-col__inner {
	flex-shrink: 0;
}

.footer-link {
	display: inline-flex;
	align-items: center;
	color: var(--color-white);
	text-decoration: none;
}

.footer-link > * {
	flex-shrink: 0;
}

.footer-link:hover {
	color: var(--color-white);
}

.footer-link__text {
	display: block;
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
}

.footer-link__text + * {
	margin: 0 0 0 10px;
}

.footer-link__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
}

.footer-link__icon > * {
	flex-shrink: 0;
	display: block;
}

.footer-link__icon + * {
	margin-left: 10px;
}

.footer-logo + * {
	margin-top: 12px;
}

.footer-logo img {
	display: block;
}

.footer-copy {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	color: var(--color-text-gray);
}

.arrow-top {
	position: fixed;
	right: 10px;
	bottom: 80px;
	z-index: 4;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
	padding: 8px;
	border-radius: 50%;
	background-color: rgba(249, 249, 249, 0.5);
	cursor: pointer;
	opacity: 0;
	transform: translateY(40px);
	transition: all .5s ease;
}

.arrow-top:hover {
	background-color: rgba(231, 231, 231, 0.5);
}

.arrow-top:active {
	background-color: rgba(165, 165, 165, 0.5);
}

.showBtn {
  opacity: 1;
  transform: translateY(0);
}

/* invoice */

.invoice {
	padding: 0;
	margin: 0;
	background-color: var(--color-bg);
}

.invoice__title {
	margin: var(--margin-16) 0;
	text-align: center;
}

.invoice__text {
	margin: 0;
	text-align: center;
}

.invoice__text.spendings-info {
	display: none;
}

.invoice-box {
	display: none;
}

.invoice-box.active {
	display: block;
}

.invoice-box__title {
	margin: 0 0 10px;
	color: var(--color-title);
	font-weight: 400;
	font-size: 28px;
}

.invoice-box__sub-title {
	display: flex;
	align-items: center;
	margin: 0 0 var(--base-spacing);
	font-weight: 400;
	font-size: 24px;
	color: var(--color-text);
}

.invoice-box .invoice-box__sub-title:not(:first-child) {
	margin: 20px 0 var(--base-spacing);
}

.invoice-box__button {
	display: none;
}

.invoice-text {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 14px;
}

.invoice-text + * {
	margin-top: 11px;
}

.invoice-text__title {
	margin: 0 3px 0 0;
	color: var(--color-gray);
}

.invoice-text__row {
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.invoice-text__row.invoice-text__row--with-icon {
	padding: 0 35px 0 0;
}

.invoice-text__row.invoice-text__row--with-icon .invoice-text__icon {
	display: block;
}

.invoice-text__icon {
	position: absolute;
	top: -2px;
	right: 0;
	display: none;
}

.invoice-text__desc {
	color: var(--color-text);
}

.invoice-text__desc.invoice-text__desc--hide {
	display: none;
}

.invoice-text__desc.invoice-text__desc--mobile {
	display: block;
}

.invoice-text__desc.invoice-text__desc--mobile + .invoice-text__icon {
	display: block;
	margin: 0 0 0 16px;
}

.invoice-text__icon {
	display: none;
}

.qr-modal {
	position: relative;
	margin: auto;
	padding: 24px;
	max-width: 450px;
	background: white;
	border-radius: 10px;
}

.qr-modal__close {
	position: absolute;
	top: 23px;
	right: 26px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 24px;
	height: 24px;
	padding: 0;
	background: none;
	border: none;
	cursor: pointer;
}

.qr-modal__head {
	padding: 0 0 var(--margin-16);
	border-bottom: 1px solid #CFD4D9;
}

.head {
	display: flex;
	align-items: center;
}

.head__icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 24px;
	height: 24px;
	margin: 0 var(--base-spacing) 0 0;
}

.head__text {
	margin: 0;
	color: var(--color-text);
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 16px;
}

.head__text span {
	text-transform: uppercase;
}

.qr-modal__body {
	padding: var(--margin-16) 0 0;
}

.body {
	color: var(--color-text);
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 14px;
}

.body__wallet {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0 40px;
	text-align: center;
	cursor: pointer;
}

.body__wallet:hover {
	color: var(--color-blue);
}

.body__icon {
	margin: 0 0 0 var(--base-spacing);
}

.body__image {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 160px;
	height: 160px;
	margin: 0 auto var(--margin-32);
}

.body__image img {
	max-width: 100%;
}

.body__text {
	margin: 0 auto;
	max-width: 300px;
	text-align: center;
	line-height: 21px;
}

/* modal animation */

.my-mfp-zoom-in .zoom-anim-dialog {
	opacity: 0;

	-webkit-transition: all 0.2s ease-in-out; 
	-moz-transition: all 0.2s ease-in-out; 
	-o-transition: all 0.2s ease-in-out; 
	transition: all 0.2s ease-in-out; 
	-webkit-transform: scale(0.8); 
	-moz-transform: scale(0.8); 
	-ms-transform: scale(0.8); 
	-o-transform: scale(0.8); 
	transform: scale(0.8); 
}


.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
	opacity: 1;

	-webkit-transform: scale(1); 
	-moz-transform: scale(1); 
	-ms-transform: scale(1); 
	-o-transform: scale(1); 
	transform: scale(1); 
}

.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
	-webkit-transform: scale(0.8); 
	-moz-transform: scale(0.8); 
	-ms-transform: scale(0.8); 
	-o-transform: scale(0.8); 
	transform: scale(0.8); 
	opacity: 0;
}

.my-mfp-zoom-in.mfp-bg {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease-out; 
	-moz-transition: opacity 0.3s ease-out; 
	-o-transition: opacity 0.3s ease-out; 
	transition: opacity 0.3s ease-out;
}

.my-mfp-zoom-in.mfp-ready.mfp-bg {
	opacity: 0.8;
}

.my-mfp-zoom-in.mfp-removing.mfp-bg {
	opacity: 0;
}

/* announcement */

.announcement {
	padding: 0;
	margin: 0;
	background-color: var(--color-bg);
}

.announcement__title{
	margin: var(--margin-16) 0;
	text-align: center;
}

.announcement__text{
	margin: 0 0 var(--margin-16) 0;
	text-align: center;
}

/* gallery */

.gallery {
	margin: 0 0 var(--margin-32);
}

.gallery-item-wrapper {
	margin-bottom: var(--margin-32);
}

.gallery-item {
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.gallery-item:hover .gallery-item__title {
	color: var(--color-blue);
}

.gallery-item__image {
	position: relative;
	display: flex;
	padding: 60% 0 0;
	margin: 0 0 var(--base-spacing);
}

.gallery-item__image img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

.gallery-item__title {
	margin: 0 0 var(--base-spacing);
	color: var(--color-title);
	font-size: 24px;
	line-height: 28px;
	font-weight: 400;
}

.gallery-item__text{
	margin: 0;
	display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.gallery-item__info {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	display: flex;
	justify-content: flex-end;
	padding: var(--base-spacing);
}

.gallery-item__label {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 34px;
	padding: 0 8px;
	color: var(--color-white);
	font-size: 14px;
	font-family: "Inter", sans-serif;
	font-weight: 400;
	border-radius: 45px;
}

.gallery-item__label.gallery-item__label--amount {
	background: rgba(0, 87, 184, 0.7);
}

.gallery-item__label.gallery-item__label--date {
	margin: 0 0 0 var(--base-spacing);
	background: rgba(0, 0, 0, 0.7);
}

.album .album-grid.display-none-album img {
	opacity: 0;
}

/* loader */

.loader-container {
	text-align: center;
}

.contacts-form .loader-container {
	display: inline-block;
	margin-left: 5px;
}

.album .loader-container {
	margin-top: 10vh;
}

.loader {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 5px solid;
  border-color:rgba(0, 87, 184, 0.1);
  border-right-color: var(--color-blue);
  animation: loader-rotate 1s infinite linear;
  display: inline-block;
}

.album .loader-container .loader {
	width: 60px;
	height: 60px;
	border: 10px solid;
	border-color:rgba(0, 87, 184, 0.1);
	border-right-color: var(--color-blue);
}

.contacts-form .loader {
	width: 15px;
	height: 15px;
	border: 2px solid;
	border-color: white;
	border-right-color: gray;
}

@keyframes loader-rotate {
	to {
		transform: rotate(1turn)
	}
}

/* album page */

.main-controls {
	margin: 0 0 var(--margin-16);
}

.main-controls__wrapper {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.breadcrumbs {
	display: none;
}

.date {
	color: var(--color-text);
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 14px;
}

.date span {
	font-weight: 400;
}

.album {
	margin: 0 0 var(--margin-32);
}

.album-grid {
	margin: -12px;
}

.album-grid-sizer,
.album-grid-item {
  width: 100%;
  cursor: pointer !important;
}

.album-grid-item {
	padding: 12px;
	cursor: zoom-in;
}

/* news */

.news {
	margin: 0 0 var(--margin-32);
}

.news-item {
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.news-item:not(:last-child) {
	margin: 0 0 var(--margin-32);
}

.news-item:hover .news-item__title {
	color: var(--color-blue);
}

.news-item__img {
	position: relative;
	display: flex;
	flex-shrink: 0;
	width: 100%;
	margin: 0 0 var(--base-spacing);
	padding: 60% 0 0;
}

.news-item__img img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}

.news-item__body {
	display: flex;
	flex-direction: column;
}

.news-item__title {
	margin: 0 0 var(--base-spacing);
	color: var(--color-title);
	font-size: 24px;
	line-height: 28px;
	font-weight: 400;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-item__text-wrap {
	flex-grow: 1;
}

.news-item__text {
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-item__desc {
	margin: var(--base-spacing) 0 0;
	color: var(--color-gray);
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 14px;
}

/* post */

.post-section {
	padding: var(--margin-32) 0 var(--margin-48);
}

.post-section__content span, .post-section__content img {
	display: block;
}

.post-section__content {
	margin: 0 0 var(--margin-48);
}

.post-section__content * {
	width: 100%;
	max-width: 856px;
}

.post-section__content > span:nth-of-type(2),
.post-section__content img:first-of-type {
	max-width: 100%;
}

.post-section__content h1 {
	margin: 0 auto var(--margin-16);
	max-width: 856px;
	color: var(--color-title);
	font-weight: 400;
	font-size: 32px;
	text-align: center;
}

.post-section__content h2 {
	margin: var(--margin-24) auto var(--margin-16);
	color: var(--color-text);
	font-weight: 400;
	font-size: 24px;
}

.post-section__content h3 {
	margin: var(--margin-24) auto var(--margin-16);
	color: var(--color-text);
	font-weight: 400;
	font-size: 18px;
}

.post-section__content img {
	margin: 0 auto var(--margin-16);
}

.post-section__content span {
	margin: 0 auto var(--margin-16);
	color: var(--color-gray);
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 14px;
}

.post-section__content p,
.post-section__content ul,
.post-section__content ol {
	margin: 0 auto var(--margin-16);
	color: var(--color-text);
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 14px;
}

.post-section__controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 856px;
	margin: 0 auto var(--margin-48);
}

.post-section__link {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.post-section__link svg {
	fill: var(--color-blue);
}

.post-section__link span {
	color: var(--color-blue);
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 16px;
}

.post-section__link.post-section__link--prev span {
	margin: 0 0 0 var(--base-spacing);
}

.post-section__link.post-section__link--next span {
	margin: 0 var(--base-spacing) 0 0;
}

.post-section__link:hover svg {
	fill: var(--color-blue-hover);
}

.post-section__link:hover span {
	color: var(--color-blue-hover);
}

.banner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 22px 32px 16px;
	margin: 0 auto;
	max-width: 856px;
	background-color: var(--color-yellow);
}

.banner__title {
	margin: 0 0 var(--base-spacing);
	color: var(--color-title);
	font-weight: 400;
	font-size: 24px;
	text-align: center;
}

.progress-bar-container {
  position: absolute;
  left: 0;
	bottom: -4px;
  width: 100%;
  height: 8px;
}

.progress-bar-container > div {
	height: 4px;
	width: 0%;
}

.progress-bar-container__line-blue {
  background-color: var(--color-blue);
}

.progress-bar-container__line-yellow {
  background-color: var(--color-yellow);
}

.invoice-tabs {
	background: var(--color-bg);
	padding: var(--margin-16) var(--margin-16) var(--margin-32);
}

.block-select__title {
	font-family: "Inter", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	color: var(--color-text);
}

.block-select__title + * {
	margin-top: var(--margin-16);
}

.block-select__buttons-list {
	display: flex;
	align-items: center;
}

.block-select__buttons-list > * {
	flex-shrink: 0;
	flex-grow: 1;
}

.block-select__buttons-list_mob-row {
	display: block;
}

.block-select__buttons-list_mob-row .block-select__button {
	margin-bottom: 8px;
	margin-right: 0;
}

.block-select__buttons-list_mob-row .block-select__button:last-child {
	margin-bottom: 0;
}

.block-select__button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	border-radius: 10px;
	background-color: var(--color-white);
	border: 0;
	padding: var(--base-spacing);
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	color: var(--color-blue);
	white-space: nowrap;
	user-select: none;
	transition: background-color 150ms, color 150ms;
	cursor: pointer;
	margin-right: var(--base-spacing);
}

.block-select__button:last-child {
	margin-right: 0;
}

.block-select__button.active,
.radio-box__input:checked + .block-select__button {
	color: var(--color-white);
	background-color: var(--color-blue);
	box-shadow: 1px 0 7px rgba(157, 157, 157, 0.25);
}

.form-invoice .block-select + *,
.form-invoice__row + * {
	margin-top: var(--margin-24);
}

.form-invoice__label {
	display: block;
}

.form-invoice__label + * {
	margin-top: var(--base-spacing);
}

.form-invoice__input {
	display: block;
	width: 100%;
	height: 40px;
	background: var(--color-white);
	border: 1px solid var(--color-white);
	border-radius: 10px;
	font-family: "Inter", sans-serif;
	font-size: 14px;
	padding: 0 var(--margin-16);
	outline: 0;
}

.form-invoice__input:focus {
	border-color: #86b7fe;
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-invoice__input::-webkit-input-placeholder {
	font-size: 12px;
	color: var(--color-placeholder);
}

.form-invoice__input:-moz-placeholder           {
	font-size: 12px;
	color: var(--color-placeholder);
}

.form-invoice__input::-moz-placeholder          {
	font-size: 12px;
	color: var(--color-placeholder);
}

.form-invoice__input:-ms-input-placeholder      {
	font-size: 12px;
	color: var(--color-placeholder);
}

.form-invoice__addition-text {
	display: block;
	font-family: "Inter", sans-serif;
	font-size: 12px;
	line-height: 130%;
}

.form-invoice__button-submit {
	min-width: 154px;
	height: 53px;
	color: var(--color-white);
	background-color: var(--color-blue);
	border: 0;
	border-radius: 10px;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	line-height: 130%;
	transition: background-color 150ms;
	white-space: nowrap;
	user-select: none;
	padding: 0 var(--margin-32);
}

.form-invoice__button-submit:hover {
	background-color: var(--color-blue-hover);
}

.form-invoice__button-submit:disabled {
	background-color: var(--color-button-disabled);
	pointer-events: none;
}

.radio-box__input {
	overflow: hidden;
	width: 1px;
	height: 1px;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	left: -999px;
	display: none;
}

.card-list {
	display: flex;
	align-items: center;
}

.card-list > * {
	flex-shrink: 0;
}

.card-list + * {
	margin-top: var(--margin-16);
}

.footer .card-list + * {
	margin-top: 11px;
}

.card-list__item {
	width: 48px;
	margin-right: var(--base-spacing);
}

.card-list__item.card-list__item_big  {
	width: 81px;
	margin-right: var(--margin-16);
}

.card-list > *:last-child {
	margin-right: 0;
}

.card-list__item svg {
	display: block;
	width: 100%;
	height: auto;
}

.offers-box {
	display: block;
	background: var(--color-yellow);
	text-align: center;
	padding: 16px 30px;
	margin: 40px 0;
}

.offers-box__title {
	font-family: "Bebas Neue", sans-serif;
	line-height: 130%;
	font-size: 24px;
	color: var(--color-blue);
}

.offers-box__button {
	margin-top: var(--base-spacing);
}

.button-main {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	font-weight: 600;
	font-family: "Inter", sans-serif;
	line-height: 130%;
	padding:  var(--base-spacing) var(--margin-16);
	text-decoration: none;
	white-space: nowrap;
}

.button-main_sm {
	font-size: 16px;
}

.button-main_white {
	background: var(--color-white);
	color: var(--color-blue);
}

.button-main_white:hover {
	transition: 150ms;
	background: var(--color-blue);
	color: var(--color-white);
}

.button-main_white:active {
	background: var(--color-blue-active);
	color: var(--color-white);
}

.pt-16 {
	padding-top: var(--margin-16);
}

.mr-3 {
	margin-right: 3px;
}

.link-main {
	text-decoration: none;
	white-space: nowrap;
}

.link-main:hover {
	text-decoration: none;
}

.link-main_white {
	color: var(--color-white);
}

.link-main_white:hover {
	color: var(--color-white);
}

.link-main_sm {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
}

.soc-net-list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.soc-net-list__item {
	flex-shrink: 0;
	margin-right: 20px;
}

.soc-net-list__item:last-child {
	margin-right: 0;
}

.soc-net-link {
	text-decoration: none;
}

.soc-net-link svg path {
	transition: 150ms;
}

.soc-net-link:hover svg path {
	text-decoration: none;
	fill: var(--color-blue-hover);
}

.footer-address {
	font-style: normal;
}

.footer-address + * {
	margin-top: var(--margin-16);
}

.flex {
	display: flex;
}

.confirmed {
	flex-grow: 1;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding-top: var(--margin-32);
}

.confirmed > *,
.confirmed-content > * {
	flex-shrink: 0;
}

.confirmed-content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: 856px;
	width: 100%;
	margin: 0 auto;
}

.confirmed-content__icon {
	width: 161px;
	height: 151px;
}

.confirmed-content__icon svg {
	display: block;
	width: 100%;
	height: auto;
}

.confirmed-content__text {
	font-size: 24px;
	color: var(--color-blue);
	margin: var(--base-spacing) 0 0;
}

@-webkit-keyframes heartBeat {
	0%, 20%, 50% {
		stroke-width: 0;
	}
	10%, 30% {
		stroke-width: 4px;
	}
}

@keyframes heartBeat {
	0%, 20%, 50% {
		stroke-width: 0;
	}
	10%, 30% {
		stroke-width: 4px;
	}
}

.animate__heartBeat {
	stroke: var(--color-yellow);
	stroke-width: 0;
	-webkit-animation-name: heartBeat;
	animation-name: heartBeat;
	-webkit-animation-duration: 1.6s;
	animation-duration: 1.6s;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
}

.wrapper-tabs {
	position: relative;
}

.select-tabs {
	position: relative;
	margin-bottom: 24px;
	width: 100%;
	height: 48px;
}

.select-tabs-title {
	position: relative;
	display: flex !important;
	align-items: center;
	height: 100%;
	padding: 12px 40px 12px 12px;
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	color: #fff;
	border-radius: 4px;
	background-color: var(--color-blue);
}

.select-tabs-title.open {
	border-radius: 4px 4px 0 0;
}

.select-tabs-title__indicator {
	position: absolute;
	width: 16px;
	height: 16px;
	right: 12px;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: transform 300ms;
}

.select-tabs-title__indicator.open {
	transform: rotateX(180deg);
}

.tabs-nav {
	display: none;
	position: absolute;
	top: 100%;
	width: 100%;
	padding: 8px 0;
	border-radius: 0 0 4px 4px;
	border: 1px solid var(--color-blue);
	background-color: #fff;
	z-index: 1;
}

.tabs-nav-button {
	display: block;
	width: 100%;
	color: var(--color-text);
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	border: 0;
	padding: 0;
	background-color: transparent;
}

.tabs-nav-button + * {
	margin-top: 2px;
}

.tabs-nav-button span {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	padding: 8px 16px;
	transition: color 50ms, background-color 50ms;
}

.tabs-nav-button.active span {
	color: #fff;
	background-color: var(--color-blue-hover);
}

/* privacy policy*/

.privacy-policy {
	padding-bottom: 50px;
}

.privacy-policy span {
	font-size: 18px;
}