@font-face {
font-family: 'TT Fors';
src: url('/fonts/TTFors-Regular.woff2') format('woff2'),
		url('/fonts/TTFors-Regular.woff') format('woff');
font-weight: normal;
font-style: normal;
font-display: swap;
}

:root {
--font-size:21px;
--red:#DA352C;
--dark-red:#AA1D1D;
--light-grey:#EFEFEF;
--white:#FFF;
--black:#141412;
}

.header *, .footer * {
font-family: 'TT Fors';
font-size: var(--font-size) !important;
}

.fancybox-container *{
  cursor: text !important;
}



.button {
background: var(--red);
height: 32px;
border-radius: 40px;
font-size: 12px;
text-transform: uppercase;
color: var(--white);
display: flex;
align-items: center;
align-content: center;
padding: 0 15px;
transition: 300ms;
text-decoration: none;
border:1px solid var(--red);
cursor: pointer;
position: relative;
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.18);
overflow: hidden;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.button_b {
height: 50px;
font-size: 16px;
justify-content: center;
border-right: 60px;
}

.button:hover {
background: var(--red);
border:1px solid var(--dark-red);
color: var(--white);
transform: translateY(-2px) scale(1.02);
box-shadow: 
	0 15px 40px rgba(0, 0, 0, 0.15),
	inset 0 1px 0 rgba(255, 255, 255, 0.3),
	0 1px 0 rgba(255, 255, 255, 0.2);
}

.button:active {
transform: translateY(-1px) scale(0.98);
background: rgba(170, 29, 29, 0.702);
}

.button::after{
content: '';
position: absolute;
top: 100%;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to top, 
	rgba(255, 255, 255, 0.795) 0%, 
	rgba(255, 255, 255, 0.3) 100%);
transition: top 0.5s cubic-bezier(0.4, 0, 0.2, 1);
border-radius: inherit;
z-index: 2;
}

.button::hover::after {
top: 0;
}

.button_i {
border:1px solid var(--black);
background: none;
color: var(--black);
}

.button_i:hover {
border:1px solid var(--black);
background: var(--black);
color: var(--white);
}

.button_g {
background: var(--light-grey);
border:1px solid var(--light-grey);
color: var(--black);
}

.button_g:hover {
color: var(--white);
background: var(--black);
}

.button_r {
width: 78px;
height: 110px;
justify-content: center;
padding: 0;
border-radius: 50%;
padding: 0 16px;
text-align: center;
}

.wrapper {
margin: 0 auto;
position: relative;
max-width: 1440px;
}

.header {
border-bottom: 1px solid var(--black);
position: sticky;
top:0;
z-index: 6;
backdrop-filter: blur(10px);
background: rgba(255, 255, 255, 0.7);
}

.header .wrapper {
display: flex;
flex-wrap: wrap;
align-items: center;
align-content: center;
justify-content: space-between;
width: 100%;
}

.header__mm {
display: none;
}

.header__logo-src {
width: 114px;
aspect-ratio: 114 / 41;
}

.header__menu {
display: flex;
flex-wrap: wrap;
margin-top: 8px;
margin-bottom: 8px;
}

.header__menu-item {
list-style: none;
display: flex;
align-items: center;
align-content: center;
margin: 0 12px;
position: relative;
padding: 16px 0;
}

.header__menu-item-link {
font-size: 12px;
text-transform: uppercase;
text-decoration: none;
color: inherit;
}

.header__menu-item:hover {
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 3px;
}

.header__menu-item-toggle {
background: none;
border: none;
padding: 0;
margin-left: 9px;
cursor: pointer;
display: flex;
align-items: center;
align-content: center;
}

.header__menu-item-arrow {
width: 8px;
aspect-ratio: 2 / 1;
transition: transform 0.3s ease;
}

.header__menu-item:hover .header__menu-item-arrow,
.header__menu-item.is-open .header__menu-item-arrow {
transform: rotate(180deg);
}

.header__submenu {
display: none;
left: -20px;
position: absolute;
top: 100%;
background: var(--white);
border:1px solid var(--black);
z-index: 1000;
list-style: none;
padding: 20px 20px 15px 20px;
margin: 0;
}

/* Показываем подменю при наведении на десктопе */
@media (min-width: 768px) {
	.header__menu-item.has-submenu:hover .header__submenu {
		display: block;
	}

	/* Отключаем кликабельность кнопки на десктопе */
	.header__menu-item-toggle {
		pointer-events: none;
	}
}

/* Стили для мобильной версии */
@media (max-width: 767px) {
	.header__submenu {
		position: static;
		box-shadow: none;
		background: none;
		padding-left: 20px;
	}

	.header__menu-item.is-open .header__submenu {
		display: block;
	}
}

.header__submenu-item {
list-style: none;
}

.header__submenu-item_middleshow {
display: none;
}

@media screen and (min-width: 990px) and (max-width: 1279px) {
.header__submenu-item_middleshow {
display: flex;
}

.header__menu-item-middlehide {
display: none;
}
}

.header__submenu-link {
display: block;
font-size: 12px;
text-transform: uppercase;
text-decoration: none;
color: inherit;
margin-bottom: 10px;
white-space: nowrap;
}

.header__submenu-link:hover {
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 3px;
}

.header__menu-buttons {
display: none;
}

.header__search-icon {
width: 16px;
aspect-ratio: 1 / 1;
}

.header__left {
display: flex;
align-items: center;
align-content: center;
}

.search-popup {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(10px);
z-index: 2000;
display: none;
}

.search-popup.is-open {
display: block;
}

.search-popup__overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.search-popup__content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 90%;
max-width: 80vw;
}

.search-popup__close {
position: absolute;
top: 18px;
right: 40px;
background: none;
border: none;
cursor: pointer;
z-index: 2;
}

.search-popup__close-icon {
width: 13px;
height: 13px;
}

.search-popup__close:hover .search-popup__close-icon {
fill:var(--red);
}

.search-popup__input-wrap {
position: relative;
}

.search-popup__input {
width: calc(100% - 40px);
padding: 0 20px;
display: flex;
height: 52px;
font-size: 14px;
border: 1px solid var(--black);
border-radius: 50px;
outline: none;
}

.search-popup__input:focus {
border-color: var(--black);
}

.search-popup__input-icon {
position: absolute;
top: 50%;
right: 16px;
transform: translateY(-50%);
width: 17px;
height: 17px;
}

.search-popup__results {
background: var(--white);
max-height: 80vh;
overflow-y: auto;
border-radius: 20px;
}

.search-popup__result-item {
padding: 10px 16px;
border-bottom: 1px solid #eee;
}

.search-popup__result-link {
color: #999999;
text-decoration-thickness: 1px;
text-underline-offset: 3px;
text-decoration: underline;
}

.search-popup__result-link b {
color: var(--black);
font-weight: 400;
}

.search-popup__result-item p {
color: #999999;
}

.search-popup__result-item p b {
color: var(--black);
font-weight: 400;
}

.search-popup__no-results {
padding: 8px 20px;
}

.search-popup__show-more {
display: block;
margin: 16px auto;
padding: 8px 16px;
background-color: var(--red);
color: white;
border: none;
border-radius: 40px;
cursor: pointer;
font-size: 16px;
}

.search-popup__show-more:hover {
background-color: var(--dark-red);
}

.header__search {
cursor: pointer;
width: 32px;
height: 32px;
display: flex;
align-content: center;
align-items: center;
justify-content: center;
margin-right: 12px;
}

.header__search-icon {
width: 17px;
height: 17px;
}

.header__search:hover {
background: var(--black);
border-radius: 50%;
}

.header__search:hover .header__search-icon {
fill:var(--white);
}

.header__button_need-help {
margin-right: 10px;
}

.slider-wrap {
max-width: 100%;
overflow-x: clip;
overflow-y: visible;
}

.slider {

}

.slider-nav {
display: none;
}

.slider .swiper-slide {
opacity: 0;
min-height: calc(100vh - 9rem);
display: flex !important;
align-items: center;
align-content: center;
flex-wrap: wrap;
padding-top: 1rem;
padding-bottom: 1rem;
}

.slider .swiper-slide-active {
opacity: 1;
}

.slider-item__pic {
display: none;
}

.slider-item__ftitle, .slider-item__stitle {
font-size: 5.75rem;
width: 100%;
text-align: center;
line-height: 1;
position: relative;
z-index: 2;
display: block;
}

.slider-item_partners .slider-item__ftitle, .slider-item_partners .slider-item__stitle  {
font-size: 3vw;
}

.mp__projects_partners {
margin-top: 7rem;
}

.slider-item_partners .slider-item__gal {
margin-top: 1rem;
margin-bottom: 1rem;
}

.slider-item__gal {
margin-top: 1rem;
margin-bottom: 1rem;
}

.slider-item__gal {
display: flex;
align-items: center;
align-content: center;
justify-content: center;
padding-left: 6.56rem;
padding-right: 6.56rem;
width: calc(100% - 13.13rem);
}

.slider-item__gal-item {
border-radius: 1.88rem;
font-size: 0;
margin: 0 0.63rem;
height: 16rem;
}

.slider-item__bottom {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
margin-top: 1.42rem;
}

.slider-item__text {
width: 40%;
font-size: 1.29rem;
}

.slider-item__buttom {
width: 30%;
display: flex;
justify-content: center;
}

.slider-item__bottom_projects .slider-item__text {
width: 30%;
}

.slider-item__bottom_projects .slider-item__buttom {
width: 55%;
justify-content: space-between;
}

.slider-item__buttom-prjct-link {
text-transform: uppercase;
}

.slider-item__buttom_pd {
justify-content: center;
}

.slider-item__buttom_pd .slider-item__buttom{
display: none;
}

.slider-item__text_pd {
display: flex;
margin-top: 2rem;
}

.slider-item__bpttomprt {
max-width: 1000px;
margin: 0 auto;

}

.slider-item__bpttomprt .button {
display: inline-flex;
}

.slider-item__bpttomprt-text {
font-size: 1.33rem;
padding-bottom: 1rem;
}

.slider-item-prev, .slider-item-next {
font-size: 6rem;
line-height: 18.25rem;
position: absolute;
top:calc(50% - 9rem);
cursor: pointer;
z-index: 1;
}

.slider-item-prev:hover, .slider-item-next:hover {
color: var(--red);
}

.slider-item-next {
right: 0;
}

.mp__slider {
position: relative;
}

.mp__slider-button {
position: absolute;
z-index: 3;
margin-top: -3rem;
}

.mp__slider-button_red {
color: var(--red);
cursor: default !important;
}

.mp__slider-button_red:hover {
color: var(--red);
background: var(--red);
border:1px solid var(--red);
}

.mp__marquee {
display: flex;
align-items: center;
align-content: center;
overflow: hidden;
white-space: nowrap;
width: 100%;
height: 3rem;
background: var(--light-grey);
}

.mp__marquee span {
display: inline-block;
animation: marquee 15s linear infinite;
}

.mp__marquee span::after {
content: "Уже 10 лет мы помогаем взрослым пациентам с заболеваниями системы крови по всей России. Мы объединяем людей, чтобы каждый взрослый в России получил помощь, победил болезнь и вернулся к счастливой жизни.";
color: #5D6570;
font-size: 1.13rem;
text-transform: uppercase;
}

@keyframes marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-100%); }
}

.patients__pagetitle {
text-align: center;
margin-top: 3.13rem;
margin-bottom: 3.13rem;
}

.patients__sections {
display: flex;
justify-content: center;
flex-wrap: wrap;
}

.patients__sections-item {
margin: 0 0.31rem;
}

.patients-list {
display: flex;
flex-wrap: wrap;
margin-top: 3.75rem;
}

.patients-list__item {
width: calc(25% - 1.32rem);
margin-right: 1.75rem;
text-decoration: none;
border-bottom: 1px solid var(--black);
padding-bottom: 1.88rem;
margin-bottom: 3.75rem;
cursor: pointer;
}

.patients-list__item:hover {
cursor: pointer;
}

.patients-list__item:nth-child(4n+4) {
margin-right: 0;
}

.patients-list__item-pic {
font-size: 0;
border-radius: 1.88rem;
overflow: hidden;
position: relative;
}

.patients-list__item-pic picture {
font-size: 0;
line-height: 1;
}

.patients-list__item-pic-src {
width: 100%;
height: 100%;
transition: 300ms;
aspect-ratio: 73 / 50;
object-fit: cover;
}

.patients-list__item:hover .patients-list__item-pic-src {
transform: scale(1.05);
transition: 300ms;
}

.patients-list__item-pic-src_gs, .patient-detail__gallery_gs {
filter: grayscale(100%);
}

.patients-list__item-urgent {
position: absolute;
bottom:1rem;
left: 1rem;
display: flex;
align-items: center;
align-content: center;
}

.patient-detail__item-urgent {
z-index: 3;
right: 1rem;
top:1rem;
left: auto;
bottom: auto;
}

.patients-list__item-urgent-icon {
width: 0.88rem;
height: 1rem;
}

.patients-list__item-urgent-title {
font-size: 0.75rem;
margin-left: 0.38rem;
}

.patients-list__item-title {
font-size: 1.3rem;
min-height: 4.5rem;
margin-top: 0.63rem;
margin-bottom: 1rem;
}

.patients-list__item-short-info {
min-height: 6rem;
border-bottom: 1px solid transparent;
}

.patients-list__item-short-info p {
font-size: 1rem;
margin: 0;
line-height: 1.1;
margin-bottom: 0.5rem;
}

.patients-list__progress-info {
display: flex;
justify-content: space-between;
margin-bottom: 1rem;
}

.patients-list__progress-label {
line-height: 1.2;
font-size: 0.63rem;
text-transform: uppercase;
}

.patients-list__progress-label span {
font-size: 1.25rem;
display: block;
text-decoration: none;
line-height: 1.5;
}

.patients-list__progress-label--right {
text-align: right;
}

.patients-list__progress-wrapper {
position: relative;
width: 100%;
font-size: 0;
margin-bottom: 1.38rem;
}

.patients-list__progress {
width: 100%;
height: 1rem;
border-radius: 0.63rem;
background: #EFEFEF;
border: none;
-webkit-appearance: none;
appearance: none;
}

.patients-list__progress::-webkit-progress-bar {
background: #EFEFEF;
border-radius: 0.63rem;
}

.patients-list__progress--low::-webkit-progress-value {
background: #DADADA;
border-radius: 0.63rem;
}

.patients-list__progress--medium::-webkit-progress-value {
background: #5D6570;
border-radius: 0.63rem;
}

.patients-list__progress--full::-webkit-progress-value {
background: #2BAA1D;
border-radius: 0.63rem;
}

.patients-list__progress--low::-moz-progress-bar {
background: #DADADA;
border-radius: 0.63rem;
}

.patients-list__progress--medium::-moz-progress-bar {
background: #5D6570;
border-radius: 0.63rem;
}

.patients-list__progress--full::-moz-progress-bar {
background: #2BAA1D;
border-radius: 0.63rem;
}

.patients-list__progress-percent {
position: absolute;
top: 0rem;
font-size: 0.75rem;
color: var(--black);
}

.patients-list__progress-wrapper--low .patients-list__progress-percent {
left: 10%;
text-decoration: none;
}

.patients-list__progress-wrapper--medium .patients-list__progress-percent {
left: 50%;
color: var(--white);
text-decoration: none;
}

.patients-list__progress-wrapper--full .patients-list__progress-percent {
right: 5px;
color: var(--white);
}

.patients-list__item:hover .button {
background: var(--dark-red);
}

.patients-list__item:hover .button_g {
background: var(--black);
color: var(--white);
}

.load-more {
cursor: pointer;
display: flex;
justify-content: center;
flex-wrap: wrap;
}

.load-more-mini {
justify-content: flex-end;
}

.load-more-mini span {
text-decoration: underline;
font-size: 0.88rem;
text-decoration-thickness: 1px;
text-underline-offset: 3px;
}

.load-more-mini:hover {
color: var(--red);
}

.load-more-mini:hover span {
text-decoration: none;
color: var(--red);
}

.load_more-icon {
width: 1.81rem;
aspect-ratio: 29 / 40;
transition: 300ms;
}

.load-more:hover .load_more-icon {
transform: rotate(35deg);
fill:var(--red);
}

.load_more-text {
font-size: 0.88rem;
width: 100%;
text-align: center;
transition: 300ms;
margin-top: 0.63rem;
text-decoration: underline;
}

.load-more:hover .load_more-text {
text-decoration: none;
}

.load-more:hover .load_more-text {
color: var(--red);
}

.fbl-breadcrumb {
width: 100%;
display: flex;
align-items: center;
align-content: center;
margin-top: 1.38rem;
margin-bottom: 1.88rem;
}

.fbl-breadcrumb-item a, .fbl-breadcrumb-item span {
font-size: 0.63rem;
text-transform: uppercase;
text-decoration: none;
}

.fbl-breadcrumb-item a:hover {
color: var(--red);
}

.fbl-breadcrumb__icon {
margin-left: 0.31rem;
}

.patient-detail {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.patient-detail__content {
width: 70%;
}

.patient-detail__content h1 {
font-size: 2rem;
}

.patient-detail__gallery {
margin-bottom: 2.5rem;
}

.patient-detail__gallery img {
border-radius: 1.88rem;
width: 100%;
}

.patient-detail__gallery .swiper-button-next:after, .patient-detail__gallery .swiper-button-prev:after {
display: none;
}

.patient-detail__gallery .swiper-button-next, .patient-detail__gallery .swiper-button-prev {
font-size: 3rem;
color: var(--black);
width: 5.31rem;
height: 5.31rem;
display: flex;
align-items: center;
align-content: center;
justify-content: center;
top:calc(50% - 2.65rem);
}

.patient-detail__gallery .swiper-slide {
transition:opacity 0.3s;
}

.patient-detail__gallery .swiper-slide:not(.swiper-slide-active){
opacity:0.1;
}

.patient-detail__gallery .swiper-slide-prev,.patient-detail__gallery .swiper-slide-next {
width:200px;
overflow:hidden;
}

.patient-detail__gallery .swiper-button-next:hover, .patient-detail__gallery .swiper-button-prev:hover {
color: var(--red);
}

.patient-detail__gallery .swiper-slide-active:hover img {
transform: scale(1.01);
transition: 300ms;
opacity: 1;
}

.patient-detail__gallery .swiper-slide:not(.swiper-slide-active):hover{
opacity: .5;
transition: 300ms;
}

.fbl-ohelp { 
background: var(--white); 
max-width: 42.86rem; 
padding: 2.86rem;
display: none;
}

.fbl-ohelp__grid {
display: grid; 
grid-template-columns: repeat(4, 1fr);
gap: 0.71rem; 
opacity: 1; 
transition: opacity 0.3s ease;
}

.fbl-ohelp__block {
display: flex; 
flex-direction: column; 
padding: 0.71rem; 
border: 1px solid var(--light-grey); 
border-radius: 5px;
text-decoration: none; 
color: black;
}

.fbl-ohelp__block-icon {
height: 7.14rem;
display: flex;
align-items: flex-end;
align-content: flex-end;
justify-content: flex-start;
}

.fbl-ohelp__block-icon-src {
min-height: 3.57rem;
}

.fbl-ohelp__block-name {
font-size: 1rem; 
height: 2.5rem;
}

.fbl-ohelp__content-screen {
display: none;
opacity: 0;
transition: opacity 0.3s ease;
}

.fbl-ohelp__content-screen-title {
margin-bottom: 1rem;
}

.fbl-ohelp__content-screen-text {
font-size: 1.29rem;
margin-bottom: 1rem;
}

.fbl-ohelp__content-screen--active {
display: block; 
opacity: 1;
}

.fbl-ohelp__grid--hidden {
opacity: 0; 
display: none;
}

.fbl-ohelp__back-btn {
cursor: pointer; 
font-size: 1rem;
margin-bottom: 1.43rem; 
}

.fblc__text p, .fblc__text p strong, .fblc__text p, .fblc__text li {
font-size: 1.13rem;
padding-bottom: 0.8rem;
line-height: 1.4;
}

.fblc__text a {
font-size: 1.13rem;
text-decoration-thickness: 1px;
text-underline-offset: 0.2rem;
text-decoration: underline;
}

.fblc__text_btext p, .fblc__text_btext p strong, .fblc__text_btext a {
font-size: 1.5rem;
}

.fblc__text_quote {
border-top: 1px solid var(--red);
border-bottom: 1px solid var(--red);
margin-bottom: 2.50rem;
margin-top: 0.9rem;
}

.fblc__text_quote p {
font-size: 1.5rem;
color: var(--red);
}

.fblc__big-quote {
border-top: 1px solid var(--black);
border-bottom: 1px solid var(--black);
margin-bottom: 2.50rem;
margin-top: 0.9rem;
padding-bottom: 1.88rem;
}

.fblc__big-quote p {
font-size: 1.5rem;
}

.fblc__big-quote-autor {
display: flex;
align-items: center;
align-content: center;
flex-wrap: wrap;
}

.fblc__big-quote-autor_kat {
margin-top: 1.5rem;
}

.fblc__big-quote-autor-pic {
width: 5.25rem;
font-size: 0;
margin-right: 1.25rem;
}

.fblc__big-quote-autor-pic-src {
border-radius: 50%;
width: 100%;
}

.fblc__big-quote-autor-text {
width: calc(100% - 6.50rem);
}

.fblc__big-quote-autor-name {
font-size: 1.50rem;
margin-bottom: 0.94rem;
}

.fblc__big-quote-autor-role {
font-size: 0.63rem;
text-transform: uppercase;
}

.fblc__video {
margin-bottom: 1.25rem;
}

.fblc__video iframe {
border-radius: 1.88rem;
border:none;
aspect-ratio: 16 / 9;
width: 100%;
height: auto;
}

.fblc__button {
margin-bottom: 2rem;
}

.fblc__button .button {
display: inline-flex;
padding: 0 1.88rem;
text-decoration: none;
}

.fblc__simarticle-item {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
padding-top: 2.50rem;
padding-bottom: 2.50rem;
border-top: 1px solid var(--black);
border-bottom: 1px solid var(--black);
margin-top: 0.63rem;
margin-bottom: 2.25rem;
}

.fblc__simarticle-item-pic {
width: calc(50% - 0.63rem);
font-size: 0;
}

.fblc__simarticle-item-pic-src {
width: 100%;
border-radius: 1.88rem;
}

.fblc__simarticle-item-text {
width: calc(50% - 0.63rem);
}

.fblc__simarticle-item-text-stitle {
font-size: 0.63rem;
text-transform: uppercase;
margin-bottom: 1rem;
}

.fblc__simarticle-item-text-title {
font-size: 1.25rem;
}

.fblc__banner {
display: block;
font-size: 0;
margin-top: 5.63rem;
margin-bottom: 2.50rem;
}

.fblc__banner-pic {
width: 100%;
}

.fblc__facts {
display: flex;
flex-wrap: wrap;
gap: 1.88rem;
margin-top: 3rem;
margin-bottom: 4.38rem;
}

.fblc__facts-item {
width: calc(50% - 1.88rem);
margin-bottom: 0.63rem;
}

.fblc__facts-item-num {
font-size: 6rem;
color: var(--red);
}

.fblc__facts-item-text {
color: var(--red);
}

.fblc__file {
border:1px solid var(--black);
padding: 1.25rem 1.50rem;
display: inline-flex;
align-items: center;
align-content: center;
flex-wrap: wrap;
margin-bottom: 1.5rem;
}

.fblc__file:hover {
border:1px solid var(--red);
}

.fblc__file-icon {
width: 2.94rem;
}

.fblc__file-icon-src {
width: 1.69rem;
height: 2.19rem;
}

.fblc__file:hover .fblc__file-icon-src {
fill:var(--red);
}

.fblc__file-text {
width: calc(100% - 2.94rem);
}

.fblc__file-name {
margin-bottom: 0.50rem;
}

.fblc__file-bottom {
font-size: 0.63rem;
}

.fblc__slider {
overflow: hidden;
margin-bottom: 2rem;
}

.fblc__slider-item {
margin-bottom: 1.25rem;
}

.fblc__slider-item-fb {
font-size: 0;
display: block;
background: var(--light-grey);
border-radius: 1.88rem;
text-align: center;
}

.fblc__slider-item-fb-src {
border-radius: 1.88rem;
max-width: 100%;
}

.fblc__slider-thumbs {
display: flex;
justify-content: center;
}

.fblc__slider-thumbs-item {
width: auto !important;
}

.fblc__slider-thumbs .swiper-slide {
opacity: 0.4;
}

.fblc__slider-thumbs .swiper-slide-thumb-active {
opacity: 1;
}

.fblc__slider-thumbs-item-src {
border-radius: 0.63rem;
}

.fblc__faq {
border: none;
border-radius: 0;
border-bottom: 1px solid var(--black);
width: 100%;
}

.sp-accordion-title {
font-size: 1.13rem;
//text-transform: uppercase;
padding: 0;
border-left: none;
border-right: none;
color: var(--black);
border-top: 1px solid var(--black);
padding-top: 1.25rem;
padding-bottom: 1.25rem;
}

.fblc__faq-body {
padding: 0;
padding-bottom: 1rem;
}

.fblc__faq-body p {
font-size: 1rem;
padding-bottom: 0;
}

.fblc__faq-body p span {
opacity: .4;
}

.fblc__steps {
border-top: 1px solid var(--red);
margin-top: 2.25rem;
}

.fblc__steps-item {
border-bottom: 1px solid var(--red);
display: flex;
flex-wrap: wrap;
align-items: center;
align-content: center;
color: var(--red);
padding-top: 1.50rem;
padding-bottom: 1.25rem;
}

.fblc__steps-item-num {
font-size: 6rem;
width: 9rem;
}

.fblc__steps-item-text {
width: calc(100% - 9rem);
font-size: 1.50rem;
}

.fblc__steps-item-text a {
font-size: 1.50rem;
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 0.2rem;
}

.fblc__steps-item-text span {
display: block;
font-size: 0.81rem;
margin-top: 0.5rem;
}

.fblc__steps_alt .fblc__steps-item-num {
width: 15rem;
}

.fblc__steps_alt .fblc__steps-item-text {
width: calc(100% - 15rem);
}

.fblc__include {
display: flex;
flex-wrap: wrap;
}

.fblc__include-item {
width: calc(50% - 0.63rem);
margin-right: 1.25rem;
border-bottom: 1px solid var(--black);
margin-bottom: 1.25rem;
padding-bottom: 3.13rem;
}

.fblc__include-item:nth-child(2n+2) {
margin-right: 0;
}

.fblc__include-item-pic {
font-size: 0;
}

.fblc__include-item-pic-src {
width: 100%;
border-radius: 1.88rem;
height: auto;
}

.fblc__include-item-name {
font-size: 1.50rem;
margin-top: 1rem;
margin-bottom: 0.81rem;
display: block;
}

.fblc__include-item-text {
min-height: 8rem;
margin-bottom: 2rem;
}

.fblc__include-item-link {
text-transform: uppercase;
}

.fblc__include-item-detail {
display: none;
max-width: 800px;
}

.fblc__icons-action {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}

.fblc__icons-action-item {
display: flex;
gap: 2.5rem;
flex-wrap: wrap;
border-top: 1px solid var(--red);
width: calc(50% - 0.5rem);
padding-top: 1.5rem;
padding-bottom: 1.22rem;
}

.fblc__icons-action-item-icon {
width: 3.33rem;
}

.fblc__icons-action-item-text {
width: calc(100% - 5.88rem);
color: var(--red);
}

.fblc__icons-action-item-text span {
font-size: 1.33rem;
display: block;
padding-bottom: 0.56rem;
}

.thanks-top {
display: flex;
flex-wrap: wrap;
gap:2.50rem;
padding-top: 2.69rem;
padding-bottom: 3.63rem;
}

.thanks-top__col {
width: calc(50% - 1.25rem);
}

.thanks-top__mtext {
font-size: 1.5rem;
}

.thanks-top__share {
padding: 1.88rem 2.5rem !important;
margin-top: 3rem !important;
}

.thanks-top__title {
margin-bottom: 1.88rem;
}

.thanks-top__title_pf {
text-align: left;
}

.thanks-top__share .article-detail__share-title {
font-size: 1.5rem;
}

.thanks-top__text {
font-size: 1.13rem;
margin-top: 1.75rem;
}

.thanks-top_pf .thanks-top__text {
margin-bottom: 1.75rem;
}

.thanks-top__katya-photo {
display: none;
}

.thanks-top__name {
font-weight: 400;
font-size: 1.5rem;
margin-top: 1.5rem;
margin-bottom: 2rem;
}

.thanks-top__name span {

}

.thanks-top__share .article-detail__share-pic-src {
width: 14.75rem;
top: -4.5rem;
}

.thanks-top__pic {
width: 100%;
}

.about_thanks {
padding-top: 5.5rem !important;
}

.about_thanks-button {
margin-top: 3.75rem;
}

.patient-detail__sidebar {
width: 25%;
}

.patient-detail__sidebar-inner {
position: sticky;
top:6rem;
}

.patient-detail__sidebar .patients-list__item-title {
font-size: 2.25rem;
}

.patient-detail__sidebar-share {
margin-top: 1.88rem;
text-align: center;
}

.patient-detail__sidebar-share-title {
font-size: 0.75rem;
text-align: center;
margin-bottom: 0.25rem;
}

.patient-detail__donates {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
width: 100%;
margin-top: 3.75rem;
}

.patient-detail__donates-text {
width: 23%;
}

.patient-detail__donates-title {
margin-bottom: 1.88rem;
}

.patient-detail__donates-block {
width: 66%;
border-top: 1px solid var(--black);
}

.patient-detail__donates-item {
display: flex;
justify-content: space-between;
align-items: center;
align-content: center;
padding: 1.25rem 0;
border-bottom: 1px solid var(--black);
}

.patient-detail__donates-date {
flex: 1;
font-size: 1.25rem;
color: #5D6570;
}

.patient-detail__donates-email {
flex: 2;
font-size: 1.13rem;
}

.patient-detail__donates-sum {
flex: 1;
text-align: right;
font-size: 1.50rem;
}

.patient-detail__donates-load-more-wrap {
display: flex;
justify-content: flex-end;
margin-top: 3rem;
}

.patient-detail__donates-load-more {
text-transform: uppercase;
cursor: pointer;
}

.patient-detail__donates-load-more span {
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 0.2rem;
}

.patient-detail__donates-load-more:hover {
text-decoration: none;
color: var(--red);
}

.patient-detail__donates-load-more:hover span {
text-decoration: none;
} 

.button_fund-close {
margin-top: 1.25rem;
}

.mp__about {
position: relative;
z-index: 2;
padding-top: 6.50rem;
}

.mp__about_helpf {
background: var(--red);
}

.mp__about .wrapper {
display: flex;
flex-wrap: wrap;
}

.mp__about-form {
width: 50%;
}

.mp__about-form .bustlers-donate {
position: sticky;
top:6rem;
}

.mp__about-form .bustlers-donate .fbl-form {
background: var(--white);
padding: 2.13rem 3.75rem 3.13rem 3.75rem;
border-radius: 1.88rem;
}

.bustlers-donate h2 {
margin-bottom: 1.13rem;
}

.mp__about-text {
width: calc(50% - 7.50rem);
margin-left: 7.50rem;
color: var(--white);
}

.mp__about-text-block {
border-bottom: 1px solid var(--light-grey);
padding-top: 2.63rem;
padding-bottom: 4.50rem;
}

.mp__about-text-block_last {
border-bottom: 0;
}

.mp__about-text-block-title {
font-size: 6.75rem;
font-weight: 400;
margin-bottom: 0.38rem;
}

.mp__about-text-block-title span {
font-size: 5rem;
padding-left: 1rem;
}

.mp__about-text-block-bottom {
display: flex;
flex-wrap: wrap;
}

.mp__about-text-block-text {
width: calc(62% - 1.25rem);
font-size: 1.50rem;
margin-right: 1.25rem;
display: flex;
align-content: space-between;
flex-wrap: wrap;
}

.mp__about-text-block-last-text {
font-size: 1.50rem;
padding-bottom: 3.19rem;
}

.mp__about-text-block-text-link {
width: 100%;
}

.mp__about-text-block-text-link-val {
color: var(--white);
font-size: 0.88rem;
text-transform: uppercase;
text-decoration: none;
cursor: pointer;
}

.mp__about-text-block-text-link-val span {
color: var(--white);
font-size: 0.88rem;
text-transform: uppercase;
text-decoration: underline;
}

.mp__about-text-block-text-link-val:hover span {
color: var(--white);
text-decoration: none;
}

.mp__about-text-block-text-link-val:hover {
color: var(--white);
}

.mp__about-text-block-pic {
width: 38%;
font-size: 0;
}

.mp__about-text-block-pic-src {
border-radius: 0.63rem;
width: 100%;
}

.mp__about-text-block_last .mp__about-text-block-pic {
width: 100%;
margin-top: 5rem;
}

.mp__about-text-block-pic_last {
width: 100%;
margin-bottom: 4rem;
display: flex;
justify-content: flex-end;
}

.mp__about-text-block-pic_last .mp__about-text-block-pic-src {
//width: calc(50% - 7.50rem);
}

.mp__help {
display: flex;
flex-wrap: wrap;
padding-bottom: 5.25rem;
margin-top: 7rem;
}

.mp__help-sidebar {
width: calc(25% - 1.25rem);
margin-right: 1.25rem;
}

.mp__help-sidebar-inner {
padding-top: 3rem;
position: sticky;
top:6rem;
}

.sidebar-title {
padding-bottom: 3rem;
position: sticky;
top:6rem;
}

.mp__help-content {
width: 75%;
padding-top: 3rem;
}

.mp__help-content .patients-list {
margin-top: 0;
}

.mp__help-content .patients-list__item {
width: calc(33.33% - 1.32rem);
}

.mp__help-content .patients-list__item:nth-child(4n+4) {
margin-right: 1.25rem;
}

.mp__help-content .patients-list__item:nth-child(3n+3) {
margin-right: 0;
}

.mp__how-to-help {
background: var(--red);
color: var(--white);
padding-top: 6.50rem;
padding-bottom: 8.75rem;
}

.mp__how-to-help-item {
display: flex;
flex-wrap: wrap;
margin-bottom: 3.75rem;
}

.mp__how-to-help-item-text {
width: calc(60% - 7.50rem);
margin-right: 7.50rem;
}

.mp__how-to-help-item-title, .mp__how-to-help-item-title span {
font-size: 2.88rem;
color: var(--white);
text-decoration-thickness: 2px;
text-underline-offset: 0.5rem;
}

.mp__how-to-help-item-title:hover {
color: var(--white);
}

.mp__how-to-help-item-text-val {
font-size: 1.5rem;
padding-top: 2.06rem;
}

.mp__how-to-help-item-pic {
width: 40%;
font-size: 0;
}

.mp__how-to-help-item-pic-src {
border-radius: 1.88rem;
width: 100%;
aspect-ratio: 1 / 1;
}

.mp__projects {
background: var(--light-grey);
padding-top: 5.63rem;
padding-bottom: 1.88rem;
}

.mp__projects_m {
display: none;
}

.mp__progrmas {
display: flex;
flex-wrap: wrap;
margin-top: 6rem;
}

.mp__progrmas-sidebar {
width: calc(34% - 1.25rem);
margin-right: 1.25rem;
}

.mp__progrmas-sidebar-inner {
padding-top: 3.38rem;
}

.mp__progrmas-list {
width: 66%;
display: flex;
flex-wrap: wrap;
padding-top: 3.38rem;
}

.mp__progrmas-list-item {
width: calc(50% - 0.63rem);
margin-right: 1.25rem;
border-bottom: 1px solid var(--black);
padding-bottom: 1.88rem;
margin-bottom: 1.25rem;
}

.mp__progrmas-list-item:nth-child(2n+2) {
margin-right: 0;
}

.mp__progrmas-list-item-pic {
font-size: 0;
}

.mp__progrmas-list-item-pic-src {
width: 100%;
border-radius: 1.88rem;
height: auto;
aspect-ratio: 1.36 / 1;
}

.mp__progrmas-list-item-title {
font-size: 1.5rem;
padding-top: 1rem;
padding-bottom: 0.88rem;
display: block;
}

.mp__fbldights-head {
display: flex;
align-content: center;
align-items: center;
flex-wrap: wrap;
height: 43rem;
padding-top: 6.25rem;
}

.mp__fbldights-head_hf {
padding-top: 0;
}

.mp__fbldights-head-circles {
display: flex;
position: absolute;
justify-content: space-between;
width: 100%;
top:6.25rem;
}

.mp__fbldights-head-circle {
width: calc(50% - 2px);
aspect-ratio: 1 / 1;
border:1px solid rgba(218, 53, 44, 0.4);
border-radius: 50%;
position: absolute;
}

.mp__fbldights-head-circle:nth-child(2) {
transform: translateX(50%);
}

.mp__fbldights-head-circle:nth-child(3) {
right: 0;
}

.mp__fbldights-head-title {
color: var(--red);
text-align: center;
font-size: 8.75rem;
width:100%;
margin-bottom: 1.13rem;
text-transform: uppercase;
}

.mp__fbldights-head-tabs-wrap {
display: flex;
justify-content: center;
width:100%;
}

.mp__fbldights-head-tabs {
display: inline-flex;
justify-content: center;
height: 2.50rem;
border:1px solid var(--red);
border-radius: 3.13rem;
margin: 0 auto;
position: relative;
}

.mp__fbldights-head-tabs-item {
height: 2.50rem;
display: flex;
align-items: center;
align-content: center;
font-size: 1.13rem;
padding: 0 0.94rem;
color: var(--red);
border-radius: 3.13rem;
transition: 300ms;
}

.mp__fbldights-head-tabs-item_active {
background: var(--red);
color: var(--white);
cursor: default;
}

.mp__fbldights-head-tabs-item:hover {
color: var(--white);
background: rgba(218, 53, 44, 0.4);
cursor: pointer;
}

.mp__fbldights-fundrise {
position: relative;
display: flex;
align-content: center;
align-items: center;
flex-wrap: wrap;
height: 45.88rem;
}

.mp__fbldights-fundrise-img {
position: absolute;
z-index: 0;
width: 100%;
opacity: 0;
}

.mp__fbldights-head_hf .mp__fbldights-fundrise-img {
opacity: 1;
}

.mp__fbldights-fundrise-val {
color: var(--red);
text-align: center;
font-size: 8.75rem;
width:100%;
margin-bottom: 1.13rem;
position: relative;
z-index: 1;
margin-top: 10rem;
}

.mp__fbldights-fundrise-title {
font-size: 1.50rem;
text-align: center;
color: var(--red);
position: relative;
z-index: 1;
width: 100%;
}

.mp__fbldights-facts {
display: flex;
flex-wrap: wrap;
padding-top: 7.5rem;
position: static;
overflow: visible;
}

.mp__fbldights-facts-text {
width: 41%;
margin-right: 9%;
}

.mp__fbldights-facts-text-facts-item {
display: flex;
flex-wrap: wrap;
align-items: center;
align-content: center;
margin-bottom: 3.13rem;
}

.mp__fbldights-facts-text-facts-item-num {
font-size: 8.75rem;
color: var(--red);
}

.mp__fbldights-facts-text-facts-item-text {
font-size: 1.50rem;
color: var(--red);
max-width: 8rem;
margin-left: 1.88rem;
}

.mp__fbldights-facts-text-grants {
margin-top: 3.63rem;
margin-bottom: 3.38rem;
}

.mp__fbldights-facts-text-grant {
border:1px solid var(--red);
padding: 1.25rem 2.50rem;
margin-bottom: 1.25rem;
color: var(--red);
}

.mp__fbldights-facts-text-grant-title {
font-size: 1.50rem;
margin-bottom: 2rem;
}

.mp__fbldights-facts-text-grant-stitle {
font-size: 0.75rem;
text-transform: uppercase;
margin-bottom: 0.5rem;
}

.mp__fbldights-facts-text-grant-val {
font-size: 3rem;
}

.mp__fbldights-facts-pic {
width: 50%;
}

.mp__fbldights-facts-pic .pin-spacer {
position: absolute !important;
}

.mp__fbldights-facts-pic-wrap {
transition: none;
}

.mp__fbldights-facts-pic-src {
width: 100%;
transition: none;
}

.mp__fbldights-facts-link {
color: var(--red);
}

.mp__partenrs {
display: flex;
flex-wrap: wrap;
margin-top: 11.18rem;
}

.mp__partenrs-sidebar {
width: calc(34% - 1.25rem);
margin-right: 1.25rem;
}

.mp__partenrs-body {
width: 66%;
}

.partners-list {
display: flex;
gap: 1.25rem;
flex-wrap: wrap;
border-bottom: 1px solid var(--black);
margin-bottom: 2.81rem;
}

.partners-list-item {
width: calc(25% - 1rem);
height: 7.50rem;
flex: 0 0 auto;
display: flex;
justify-content: center;
align-items: center;
border-top: 1px solid var(--black);
}

.partners-list-item-logo {
max-height: 4.38rem;
max-width: 9.38rem;
width: 100%;
height: 100%;
object-fit: contain;
}

.mp__news {
display: flex;
flex-wrap: wrap;
padding-top: 11.18rem;
}

.mp__news-sidebar {
width: calc(34% - 1.25rem);
margin-right: 1.25rem;
}

.mp__news-body {
width: 66%;
}

.news-list {
display: flex;
gap: 1.25rem;
flex-wrap: wrap;
margin-bottom: 2.81rem;
}

.news-list__item {
width: calc(50% - 1rem);
border-bottom: 1px solid var(--black);
padding-bottom: 5rem;
}

.news-list__item-pic {
font-size: 0;
margin-bottom: 1.25rem;
}

.news-list__item-pic-src {
width: 100%;
height: auto;
border-radius: 1.88rem;
aspect-ratio: 12 / 7;
}

.news-list__item-bottom {
display: flex;
flex-wrap: wrap;
}

.news-list__item-date {
width: 25%;
font-size: 0.63rem;
text-transform: uppercase;
}

.news-list__item-date span {
font-size: 2.25rem;
display: block;
text-decoration: none;
}

.news-list__item-title {
width: 75%;
font-size: 1.25rem;
}

.news-list__item:hover .news-list__item-title {
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 3px;
}

.programs__item {
display: flex;
flex-wrap: wrap;
align-items: center;
align-content: center;
background: var(--red);
border-radius: 1.88rem;
overflow: hidden;
margin-bottom: 2.5rem;
}

.programs__item a, .programs__item a:hover {
color: var(--white);
}

.programs__item:nth-child(2n+2) {
background: var(--dark-red);
}

.programs__item-pic {
width: 40%;
font-size: 0;
}

.programs__item-pic-src {
border-radius: 0 1.88rem 1.88rem 0;
width: 100%;
height: auto;
}

.programs__item-text {
width: calc(60% - 12.50rem);
padding: 0 6.25rem;
color: var(--white);
}

.programs__item-title {
font-size: 3rem;
margin-bottom: 1.25rem;
display: block;
color: var(--white);
}

.programs__item-text-val {
font-size: 1.13rem;
display: block;
color: var(--white);
}

.programs__item-links {
margin-top: 3rem;
}

.programs__item-links-item {
display: block;
font-size: 0.88rem;
text-transform: uppercase;
margin-bottom: 1.38rem;
}

.press {

}

.press__title {
text-align: center;
margin-top: 3.13rem;
margin-bottom: 3.13rem;
}

.press-filter {
margin-bottom: 3.75rem;
}

.press-filter__item_active {
background: var(--red);
color: var(--white);
}

.article-detail {

}

.article-detail .fbl-breadcrumb {
justify-content: center;
}

.article-detail__title {
font-size: 4rem;
text-align: center;
text-transform: none;
margin-bottom: 2.5rem;
}

.article-detail-pic {
font-size: 0;
margin-bottom: 1rem;
padding-left: 12.5rem;
padding-right: 12.5rem;
}

.article-detail-pic-src {
border-radius: 1.88rem;
width: 100%;
height: auto;
}

.article-detail__content {
padding-left: 12.5rem;
padding-right: 12.5rem;
}

.article-detail__content h3 {
padding-bottom: 1rem;
}

.article-detail__share {
background: var(--red);
border-radius: 1.88rem;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 2.50rem 3.13rem;
margin-top: 7.50rem;
}

.article-detail__share-body {
width: 65%;
display: flex;
flex-wrap: wrap;
align-items: center;
align-content: center;
}

.article-detail__share-body .ya-share2__container.ya-share2__container_color-scheme_blackwhite .ya-share2__badge {
background: transparent !important;
}

.article-detail__share-title {
color: var(--white);
font-size: 2.25rem;
width: 100%;
margin-bottom: 0.63rem;
}

.article-detail__share-body-copy {
color: var(--white);
text-decoration: underline;
text-transform: uppercase;
margin-left: 1.88rem;
text-decoration-thickness: 1px;
text-underline-offset: 0.2rem;
cursor: pointer;
}

.article-detail__share-body-copy:hover {
text-decoration: none;
}

.article-detail__share-pic {
position: relative;
width: 35%;
}

.article-detail__share-pic-src {
position: absolute;
width: 18.75rem;
top:-6rem;
}

.about {
display: flex;
flex-wrap: wrap;
border-top: 1px solid var(--black);
padding-top: 9.19rem;
}

.about_partnersp {
padding-top: 6.25rem;
border-top: none;
}

.about_vol {
border-top: none;
padding-top: 6.25rem;
}

.about_partnerswhy {
padding-top: 4.5rem;
border-top: 0;
}

.about_subscribe {
padding-top: 4.5rem;
}

.about_partnerscus {
padding-top: 4.5rem;
border-top: 0;
}

.about_partnerswhy h2 {
color: var(--red);
}

.about_partnerswhy .fblc__steps, .about_subscribe .fblc__steps {
margin-top: 0;
}

.about_subscribe p {
font-size: 1.13rem;
line-height: 1.5;
padding-bottom: 2.69rem;
}

.about_subscribe2 {
border-top: none;
}

.about_subscribe2 .fblc__steps, .about_subscribe2 .fblc__steps-item {
border-color: var(--black);
color: var(--black);
width: 100%;
}

.about_subscribe2 .fblc__steps-item-num {
width: 5.88rem;
}

.fblc__steps-item-num-icon {
width: 3.81rem;
aspect-ratio: 1 / 1;
}

.about_subscribe2 .fblc__steps-item-text {
width: calc(100% - 5.88rem);
}

.about_subscribe2-bottom {
margin-top: 3.75rem;
margin-bottom: 6.25rem;
}

.about_subscribe2-button {

}

.sidebar {
width: calc(25% - 3.25rem);
margin-right: 3.25rem;
}

.content {
width: 75%;
display: flex;
flex-wrap: wrap;
}

.about__sidebar-menu {
border: 1px solid var(--red);
list-style: none;
padding: 2.50rem 2.50rem 1.25rem 2.50rem;
position: sticky;
top:6rem;
}

.about__sidebar-menu-item {
display: block;
font-size: 1rem;
text-transform: uppercase;
text-decoration: none;
color: inherit;
white-space: nowrap;
color: var(--red);
margin-bottom: 1.25rem;
}

.about__sidebar-menu-item:hover {
text-decoration-thickness: 1px;
text-underline-offset: 0.2rem;
text-decoration: underline;
}

.about__content .mp__about-text {
color: var(--red);
width: 100%;
margin-left: 0;
}

.about__content .mp__about-text-block-title {
font-size: 6rem;
width: 100%;
}

.about__content .mp__about-text-block-title span {
font-size: 4rem;

}

.about__content .mp__about-text-block-text-link-val, .about__content .mp__about-text-block-text-link-val span {
color: var(--red);
}

.about__content .mp__about-text-block_last .mp__about-text-block-text {
width: 100%;
}

.about__content .mp__about-text-block {
border-bottom: 1px solid var(--red);
}

.about__content-block {
margin-top: 6.25rem;
}

.about__content-buttons {
display: flex;
align-items: center;
align-content: center;
flex-wrap: wrap;
}

.about__content-buttons span {
margin: 0 1.88rem;
}

.about__content_if-you-pic {
width: 100%;
border-radius: 1.88rem;
}

.about__content_if-you-text-wrap {
display: flex;
gap: 2rem;
padding-top: 2rem;
}

.about__content_if-you-text {
width: 50%;
}

.about__employee {
width:100%;
}

.about__content_if-you-links {
width: 50%;
margin-top: 1.3rem;
}

.about__content_if-you-links-item {
display: block;
text-transform: uppercase;
margin-bottom: 1rem;
}

.about__content_if-you-links .button {
margin-top: 1rem;
}

.about__employee-division-title {
margin-top: 5.75rem;
}

.about__employee-big-boss {
display: flex;
align-items: center;
align-content: center;
flex-wrap: wrap;
padding: 1.88rem 0;
border-bottom: 1px solid var(--black);
}

.about__employee-big-boss-pic {
width: 11.88rem;
margin-right: 1.25rem;
font-size: 0;
}

.about__employee-big-boss-pic-src {
border-radius: 50%;
max-width: 100%;
height: auto !important;
}

.about__employee-big-boss-info {
width: calc(100% - 13.13rem);
}

.about__employee-big-boss-name {
font-size: 2.25rem;
margin-bottom: 1rem;
}

.about__employee-big-boss-role {
font-size: 0.63rem;
text-transform: uppercase;
line-height: 1.2;
}

.about__employee-big-boss-phone {
font-size: 1.5rem;
display: block;
margin-top: 1rem;
}

.about__employee-big-boss-mail {
display: inline-flex;
margin-top: 1rem;
}

.about__employee-division {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.about__employee-item {
display: flex;
align-items: center;
align-content: center;
flex-wrap: wrap;
padding: 1.88rem 0;
border-bottom: 1px solid var(--black);
width: calc(50% - 0.63rem);
margin-right: 1.25rem;
}

.about__employee-item:nth-child(2n+2) {
margin-right: 0;
}

.about__employee-pic {
width: 5.31rem;
margin-right: 1.25rem;
font-size: 0;
}

.about__employee-pic-src {
border-radius: 50%;
max-width: 100%;
height: auto !important;
}

.about__employee-info {
width: calc(100% - 6.56rem);
}

.about__employee-info-name {
font-size: 1.50rem;
margin-bottom: 0.75rem;
}

.about__employee-info-role {
font-size: 0.63rem;
text-transform: uppercase;
line-height: 1.2;
}

.about__programs {
margin-top: 3rem;
}

.about-reports {
	margin: 2rem 0;
}

.about-reports__tabs {
display: flex;
flex-wrap: nowrap;
overflow-x: auto;
scroll-snap-type: x mandatory; 
-webkit-overflow-scrolling: touch; 
margin-bottom: 1rem;
padding-bottom: 0.5rem; 
scrollbar-width: thin; 
scrollbar-color: var(--red) transparent;
}

.about-reports__tabs::-webkit-scrollbar {
height: 6px;
}

.about-reports__tabs::-webkit-scrollbar-track {
background: transparent;
}

.about-reports__tabs::-webkit-scrollbar-thumb {
background: var(--red);
border-radius: 3px;
}

.about-reports__tabs::-webkit-scrollbar-thumb:hover {
background: darken(var(--red), 10%);
}

.about-reports__tab {
background: none;
border: none;
padding: 0rem 0.94rem;
height: 2rem;
font-size: 0.75rem;
color: #666;
cursor: pointer;
transition: color 0.3s;
white-space: nowrap; 
scroll-snap-align: start;
flex: 0 0 auto;
border-radius: 1.88rem;
}

.about-reports__tab:hover {
background: var(--dark-red);
color: var(--white);
}

.about-reports__tab.active {
background: var(--red);
color: var(--white);
}

.about-reports__content {
position: relative;
}

.about-reports__panel {
display: none;
}

.about-reports__panel.active {
display: flex;
flex-wrap: wrap;
}

.about-reports__panel .fblc__file {
width: calc(50% - 4.25rem);
margin-right: 1.25rem;
margin-bottom: 1.25rem;
}

.about-reports__panel .fblc__file:nth-child(2n+2) {
margin-right: 0;
}

.about-docs {
margin-top: 1.75rem;
}

.about-docs .fblc__file {
width: calc(100% - 3rem);
margin-bottom: 1.25rem;
}

.about-contacts__block {
background: var(--light-grey);
border-radius: 1.88rem;
padding: 3.13rem 3.75rem;
margin-top: 2.25rem;
margin-bottom: 3.13rem;
}

.about-contacts__block-text {
font-size: 1.13rem;
color: var(--red);
}

.about-contacts__block_v .about-contacts__block-text {
font-size: 2.25rem;
margin-bottom: 1.5rem;
}

.about-contacts__bottom {
display: flex;
flex-wrap: wrap;
align-items: center;
align-content: center;
margin-top: 1.25rem;
}

.about-contacts__bottom-phone {
font-size: 2.25rem;
font-weight: 600;
color: var(--red);
}

.about-contacts__block_v .about-contacts__bottom-phone {
font-size: 1.5rem;
margin-right: 1.5rem;
}

.about-contacts__bottom-or {
margin: 0 1.88rem;
}

.about-contacts .footer__quest {
border-bottom: 0;
}

.about-req .fblc__faq {
margin-top: 1.88rem;
}

.ancor_tune {
position: relative;
top:-3rem;
}

.page-404 {
text-align: center;
padding-top: 5rem;
padding-bottom: 4rem;
}

.page-404-title {
color: var(--red);
font-size: 18.75rem;
display: flex;
flex-wrap: wrap;
justify-content: center;
font-weight: 800;
}

.page-404__pic {
width: 15rem;
}

.page-404__text {
font-size: 1.5rem;
margin-top: 0.75rem;
margin-bottom: 3.50rem;
}

.page-404__button {
display: inline-flex;
}

.partners__slider {
border-bottom: 1px solid var(--black);
padding-bottom: 6.88rem;
}

.partners__slider .slider {
margin-bottom: 1rem;
}

.partners__slider .slider-item__text {
width: 70%;
}

.partners__slider-bottom {
margin-top: 1.5rem;
}

.partners__slider-bottom-item {
display: block;
text-transform: uppercase;
margin-bottom: 1.38rem;
}

.partner-reviews {
margin-top: 3.19rem;
padding-bottom: 0.25rem;
}

.partner-reviews__top {
display: flex;
flex-wrap: wrap;
margin-bottom: 5.63rem;
}

.partner-reviews__top-item {
width: calc(50% - 8rem);
margin-right: 8rem;
color: var(--red);
display: flex;
align-items: center;
align-content: center;
}

.partner-reviews__top-item-num {
font-size: 6rem;
white-space: nowrap;
}

.partner-reviews__top-item-text {
margin-left: 1.50rem;
}

.partner-reviews__num {
color: var(--red);
font-size: 18.75rem;
}

.partner-reviews__circles {
position: absolute;
z-index: 2;
}

.partner-reviews__circle {
position: absolute;
width: 5.25rem;
height: 5.25rem;
border-radius: 50%;
cursor: pointer;
transition: transform 0.1s ease-out;
}

.partner-reviews__circle:hover {
transform: scale(1.4);
z-index: 3;
}

.partner-reviews__circle:nth-child(1) {
left: 0;
top:6.5rem;
}

.partner-reviews__circle:nth-child(2) {
left: 13.25rem;
top:6.5rem;
}

.partner-reviews__circle:nth-child(3) {
left: 18.13rem;
top:11.88rem;
}

.partner-reviews__circle:nth-child(4) {
left: 24.69rem;
top:2.75rem;
}

.partner-reviews__circle:nth-child(5) {
left: 41.56rem;
top:11.25rem;
}

.partner-reviews__circle:nth-child(6) {
left: 57.31rem;
top:6.56rem;
}

.partner-reviews__circle-inner {
width: 100%;
height: 100%;
border-radius: 50%;
}

.partner-reviews__circle:hover .partner-reviews__circle-inner {

}

.partner-reviews__review {
position: absolute;
top: 0px;
right: 0;
transform: translateX(100%);
background: var(--light-grey);
font-size: 0.88rem;
padding: 0.75rem 0.94rem;
border-radius: 0.63rem;
width: 23.75rem;
text-align: left;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s, visibility 0.3s;
z-index: 10;
}

.partner-reviews__circle:nth-child(6) .partner-reviews__review {
right: 100%;
transform: translateX(0%);
}

.partner-reviews__circle:hover .partner-reviews__review {
opacity: 1;
visibility: visible;
}

.partner-reviews__author {
margin-top: 0.5rem;
font-style: italic;
color: #666;
}

.partner-reviews__bottom {
color: var(--red);
font-size: 2.25rem;
}

.partner-reviews__list {
max-width: 100%;
overflow: hidden;

padding-bottom: 2.22rem;
}

.partner-reviews__list .swiper-wrapper {

}

.partner-reviews__list-item {
max-width: 100%;
border-bottom: 1px solid var(--black);
display: flex;
flex-wrap: wrap;
}

.partner-reviews__list-item-text {
font-size: 1.33rem;
margin-bottom: 1.11rem;
}

.partner-reviews__list-item-text * {
font-size: 1.33rem;
}

.partner-reviews__list-item-text a {
color: var(--red);
margin-top: .5rem;
display: block;
text-decoration: underline;
text-decoration-style: dashed;
text-decoration-thickness: 1px;
text-underline-offset: 0.2rem;
}

.partner-reviews__list-item-text a:hover {
text-decoration: none;
}

.partner-reviews__list-pagination {
padding-top: 1rem;
padding-bottom: 1rem;
}

.partner-reviews__list-pagination .swiper-pagination-bullet {
width: .8rem;
height: .8rem;
}

.partner-reviews__list-pagination .swiper-pagination-bullet-active {
background: var(--red);
}

.partner-revm {
display: none;
}

.need-help__pic {
width: 100%;
border-radius: 1.88rem;
font-size: 0;
}

.need-help__title {
margin-top: 2.5rem;
margin-bottom: 2.5rem;
}

.need-help__title_2 {
margin-top: 2.5rem;
margin-bottom: 2.5rem;
}

.need-help__list {
display: flex;
flex-wrap: wrap;
}

.need-help__list-item {
width: calc(50% - 0.63rem);
margin-right: 1.25rem;
display: flex;
align-items: center;
align-content: center;
margin-bottom: 1.75rem;
}

.need-help__list-item:nth-child(2) {
margin-right: 0;
}

.need-help__list-item-icon {
width: 1.94rem;
}

.need-help__list-item-icon_ok {
width: 1.31rem;
height: 0.88rem;
}

.need-help__list-item-icon_notok {
width: 1.13rem;
height: 1.13rem;
}

.need-help__list-item-text {
font-size: 1.13rem;
width: calc(100% - 1.94rem);
}

.need-help__button {
display: inline-flex;
}

.donate-block {
background: var(--red);
padding-top: 7.50rem;
padding-bottom: 7.50rem;
margin-top: 6.25rem;
}

.donate-block .wrapper {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.donate-block .bustlers-donate {
background: var(--light-grey);
border-radius: 1.88rem;
padding: 1.88rem 3.75rem 3.13rem 3.75rem;
width: calc(50% - 7.50rem);
}

.donate-block .bustlers-donate .fbl-form__input:hover {
background: var(--white);
border: 1px solid var(--black);
}

.donate-block__info {
width: calc(50% - 7.50rem);
margin-left: 7.50rem;
}

.donate-block__info-pic-src {
border-radius: 50%;
}

.donate-block__info-title {
font-size: 2.25rem;
color: var(--white);
margin-top: 1rem;
}

.donate-block__info-need {
font-size: 1.5rem;
color: var(--white);
}

.donate-block__info-more {
margin-top: 1rem;
}

.fbl-form__subscription-note a, .checkbox-group label a {
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 0.2rem;
}

.footer {
display: flex;
flex-wrap: wrap;
border-top: 1px solid var(--black);
margin-top: 58px;
padding-top: 40px;
}

.footer__left {
width: calc(33% - 32px);
margin-right: 32px;
}

.footer__logo {
width: 151px;
height: 55px;
}

.footer__menu {
padding: 0;
margin: 0;
margin-top: 24px;
margin-bottom: 24px;
}

.footer__menu-item {
list-style: none;
margin-bottom: 14px;
}

.footer__menu-item-link {
font-size: 12px;
text-transform: uppercase;
text-decoration: none;
}

.footer__button {
display: inline-flex;
}

.footer__right {
width: 67%;
display: flex;
flex-wrap: wrap;
}

.footer__quest {
width: 100%;
display: flex;
flex-wrap: wrap;
border-bottom: 1px solid var(--black);
margin-bottom: 32px;
}

.footer__quest-block {
width: calc(50% - 32px);
margin-right: 32px;
margin-bottom: 40px;
}

.footer__quest-block_l {
width: 100%;
}

.footer__quest-block-top {
display: flex;
align-items: center;
align-content: center;
flex-wrap: wrap;
font-size: 14px;
}

.footer__quest-block-top span {
font-weight: 600;
padding-left: 8px;
}

.footer__quest-block-pic {
border-radius: 50%;
margin: 0 16px;
display: none;
}

.footer__quest-block-value {
font-size: 36px;
text-decoration: none;
}

.footer__adress {
width: calc(50% - 32px);
font-size: 14px;
margin-right: 32px;
}

.footer__social {
width: calc(50% - 32px);
display: flex;
align-items: center;
align-content: center;
}

.footer__social-item {
margin-right: 20px;
}

.footer__social-item-icon {
fill:var(--black);
opacity: .4;
transition: 300ms;
}

.footer__social-item:hover .footer__social-item-icon  {
fill:var(--red);
}

.footer__social-item-icon_yt {
width: 26px;
height: 18px;
}

.footer__social-item-icon_rt {
width: 22px;
height: 19px;
}

.footer__social-item-icon_ok {
width: 14px;
height: 24px;
}

.footer__social-item-icon_vk {
width: 26px;
height: 16px;
}

.footer__social-item-icon_tg {
width: 24px;
height: 20px;
}

.footer__social-item-icon_wa {
width: 24px;
height: 24px;
}

.footer__phone {
font-size: 24px;
text-decoration: none;
margin-top: 10px;
display: flex;
}

.footer__bottom {
width: 100%;
border-top: 1px solid var(--black);
display: flex;
align-items: center;
align-content: center;
flex-wrap: wrap;
justify-content: space-between;
margin-top: 50px;
padding-top: 24px;
padding-bottom: 24px;
}

.footer__bottom_bustlers {
display: flex !important;
align-items: center;
align-content: center;
}

#blogo {
width: 80px;
height: 24px;
margin-left: 6px;
fill:var(--red);
}

.footer__bottom_bustlers:hover {
color: var(--dark-red);
}

.footer__bottom_bustlers:hover #blogo {
fill:var(--dark-red);
}

.fbl-form__wishes {
height: 3.5rem;
}

@media (max-width:1460px) {

:root {
--font-size: 17px;
}	

.wrapper {
margin-left: 20px;
margin-right: 20px;
}

.header .wrapper {
width: calc(100% - 30px);
}

}

@media (max-width:1280px) {
	


.header {
padding-left: 20px;
padding-right: 20px;
}

}

@media (max-width:1140px) {

.header__menu {
padding-left: 0;
}

.header__menu-item {
margin: 0 10px;
}

.header__menu-item-link, .header__submenu-link {
font-size: 16px;
}

.footer__menu-item-link {
font-size: 16px;
}
	
}

@media (max-width:990px) {
	
.header {
padding-top: 10px;
padding-bottom: 10px;
}

.header .wrapper {
margin-left: 0;
margin-right: 0;
width: 100%;
position: initial;
}

.header__logo {
width: calc(50% + 34px);
display: flex;
justify-content: flex-end;
}

.header__mm {
width: 23px;
padding: 10px 0px;
display: block;
}

.header__mm-stripe {
width: 23px;
height: 1px;
background: var(--black);
margin-bottom: 8px;
}

.header__mm-stripe:nth-child(3) {
margin-bottom: 0;
}

.header__menu {
position: absolute;
top: 63px;
left: 0;
backdrop-filter: blur(10px);
background: rgba(255, 255, 255, 0.95);
width: 100%;
height: calc(100vh - 95px);
margin: 0;
align-items: flex-start;
align-content: flex-start;
transform: translateX(-100vw);
transition: 300ms;
padding-top: 32px;
}

.header_a .header__menu {
transform: translateX(0);
}

.header__menu-item {
width: calc(100% - 40px);
margin: 0 20px;
flex-wrap: wrap;
text-decoration: none !important;
}

.header__submenu {
position: relative;
width: 100%;
margin: 20px 20px 0 20px;
border: none;
background: var(--light-grey);
padding: 20px 20px 0px 20px;
border-radius: 30px;
}

.header__submenu-link {
margin-bottom: 16px;
}

.header__left {
width: calc(50% - 58px);
display: flex;
justify-content: flex-end;
}

.header__button_need-help {
display: none;
}


.footer__quest-block {
width: 100%;
margin-right: 0;
}

.footer__quest-block-value {
font-size: 34px;
}



}

@media (max-width:767px) {
	
.header__logo {
width: 35%;
}

.header__left {
width: 55%;
}

.header__menu-buttons {
display: block;
width: calc(100% - 40px);
margin: 20px;
}

.header__menu-buttons .header__button_need-help {
display: flex;
}

.header__menu-buttons .button {
width: 100%;
margin-bottom: 16px;
padding: 0;
height: 69px;
justify-content: center;
font-size: 21px;
}



.footer__left {
width: 100%;
margin-right: 0;
margin-bottom: 46px;
}

.footer__right {
width: 100%;
}

.footer__adress {
width: 100%;
margin-right: 0;
margin-bottom: 24px;
}

.footer__social {
width: 100%;
}

.footer__phone {
margin-top: 24px;
}

.footer__bottom a {
display: block;
margin-top: 16px;
width: 100%;
}

}