/* Font All */

@font-face {
    font-family: 'Noto Sans';
    src: url('../fonts/NotoSans-Variable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Noto Sans';
    src: url('../fonts/NotoSans-Italic-Variable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Intro';
    src: url('../fonts/Intro-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Intro';
    src: url('../fonts/Intro-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Intro';
    src: url('../fonts/Intro-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Intro';
    src: url('../fonts/Intro-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Intro';
    src: url('../fonts/Intro-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
 
@font-face {
    font-family: 'Intro Book';
    src: url('../fonts/Intro-Book.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


:root {
    --navy: #2B3990;
    --navy-dark: #202a70;
    --ink: #17181C;
    --gray-text: #6B6F76;
    --bg-top: #EAF0FC;
    --bg-bottom: #FFFFFF;
    --card-bg: #FFFFFF;
    --card-radius: 28px;
    --pill-radius: 16px;
    --shadow-card: 0px 16px 32px 0px #232C7C3D;
    --shadow-btn: 0 10px 24px rgba(0, 0, 0, 0.12);
    font-family: 'Noto Sans';
    --Texts-onLight-textColor-colored: #232C7C;
    --BGs-bgColor-primary: #F2F8FF;

}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background: #F2F8FF;
    background-size: 100% 900px;
    background-position: top center;
    color: var(--ink);
        font-family: 'Noto Sans';

}

*, *::after, *::before {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

a {
     text-decoration: none; 
     color: inherit; 
     font-family: Noto Sans 
}

.container {
    max-width: 1140px;
    margin: 0 auto;
}

.block__mainfull { 
    position: relative; 
}
.block__mainfull::before,
.block__mainfull::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 340px;
    background-image: radial-gradient(circle, rgba(43,57,144,0.18) 1.5px, transparent 1.5px);
    background-size: 13px 13px;
    pointer-events: none;
    z-index: -1;
}
.block__mainfull::before { left: 0; top: 900px; }
.block__mainfull::after { right: 0; top: 2100px; }

/* pennant/flag mark used as bullet icon */
.pennant-mark {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: var(--navy);
    clip-path: polygon(0 0, 100% 0, 100% 60%, 50% 100%, 0 60%);
}

.blcok__content_help {
    cursor: grab;
    user-select: none;
}
.blcok__content_help.dragging {
    cursor: grabbing;
}
/* header */
.header { 
    position: relative; 
    z-index: 20; 
    padding-top: 18px; 
    background: linear-gradient(180deg, rgba(213, 221, 249, 0) 0%, #D5DDF9 50%, rgba(213, 221, 249, 0) 100%);
}

.header__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
        height: 56px;
}

.header__contacts {
    display: flex;
    gap: 24px;
    min-width: 287px;
}

.header__contact-link {

    color: var(--navy);
    transition: opacity 0.2s ease;
    font-family: Noto Sans;
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 20px;
    letter-spacing: 0%;

}
.header__contact-link:hover { opacity: 0.7; }

.header__logo { display: flex; align-items: center; }
.logo { width: auto; height: 56px; }

.header__right {
    display: flex;
    align-items: center;
    gap: 32px;
    min-width: 200px;
    justify-content: flex-end;
}

.header__socials {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.header__socials li {
    list-style: none;
}
.header__socials a:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--navy, #1a2b4c);
    border-radius: 50%;
}

.header__socials a:focus:not(:focus-visible) {
    box-shadow: none;
}

.header__socials a:focus-visible {
    box-shadow: 0 0 0 2px var(--navy, #1a2b4c);
}
.header__socials img {
    width: 32px;
    height: 32px;
    padding: 6px;
    border-radius: 8px;
    background: linear-gradient(180deg, #FFFFFF 0%, #EFEFEF 100%);
    border: 1px solid #EFEFEF; 
    box-shadow: 0px 16px 32px 0px #232C7C3D;
    transition: transform 0.15s ease;
}
.header__socials img:hover { box-shadow: 0px 16px 32px 0px #232C7C3D;
 }

.header__lang { 
    display: flex; 
    align-items: center; 
    gap: 24px; 
}
.header__lang-link {
    font-family: 'Noto Sans', Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    color: #6B6880;
    cursor: pointer;
    transition: color 0.2s ease;
}

.header__lang-link:hover {
    color: #232C7C;
}

.header__lang-link.active {
    font-family: 'Noto Sans', Arial, sans-serif;
    color: #232C7C;
}
.header__submenu {
    margin-top: 24px;
        margin-bottom: 24px;
    
    background: #fff;
    border-radius: var(--pill-radius);
    padding: 6px;
    height: 56px;
    box-shadow: 0 6px 18px rgba(43,57,144,0.06);
}

.header__submenu > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    flex-wrap: wrap;
    gap: 24px;
}

.header__submenu > ul > li.active > a,
.header__submenu > ul > li.active {
    color: #232C7C;
}
.header__submenu > ul > li > a {
    display: block;
    padding: 10px;
    font-size: 16px;
    font-family: 'Noto Sans';
    color: var(--ink);
    border-radius: var(--pill-radius);
    transition: color 0.2s ease, background-color 0.2s ease;
}
.header__submenu > ul > li > a:hover {
    color: #7A7A7A;
}

/*  hero */
.main_blcok { margin-top: 24px; }

.first_main__inner {
    width: 100%;
    border-radius: var(--card-radius);
    overflow: hidden;
}

.first_main__inner img.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: var(--card-radius);
}


.blcok__payment {
    text-align: center;
    margin-top: 160px;
    scroll-margin: 220px;
}

.blcok__title_payment {
    max-width: 960px;
    
    margin: 0 auto;
}

.blcok__title_payment > h2 {
    font-size: 20px;
    line-height: 1.6em;
    color: var(--ink);
    font-family: 'Noto Sans';
    font-weight: 400;
}

.blcok__title_payment > p {
    display: none;
}

.blcok__donate { margin-top: 24px; }

.blcok__donate_inner { text-align: center; }

.blcok__donate_inner > h1 {
    font-size: 64px;
    width: 542px;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: Intro ;
    font-weight: 700;
    font-style: Regular;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;

}

.blcok__info_payment {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.payment-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, #4D4D4D 0%, #121212 100%);
    color: #fff;
    border: none;
    border-radius: var(--pill-radius);
    padding: 14px 26px;
    width: 240px;
    height: 56px;    
    justify-content: center;
    font-family: 'Noto Sans';
    font-size: 16px;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: var(--shadow-btn);
    transition: transform 0.15s ease, background-color 0.15s ease;
    flex-direction: row-reverse;
}



.blcok__info_second {
    text-align: center;
    margin-top: 160px;
    padding: 0 15px;
}

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


.blcok__text {
    max-width: 960px;
    margin: 0 auto;
    font-family: 'Noto Sans';
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7em;
    color: var(--ink);
}

.blcok__text > span {
    color: var(--navy);
    font-family: 'Noto Sans';
    font-weight: 700;
}

.blcok_img__second {
    display: flex;
    gap: 24px;
    flex-wrap: nowrap;
    justify-content: center;
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px;
}
.card_first, .card_second, .card_three {
    flex: 0 0 370px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid transparent;
    text-align: left;
    padding: 32px;
    cursor: pointer;
    position: relative;
    width: 370px;
    height: 248px;
    overflow: hidden;
    transition: transform 0.2s ease;
    justify-content: space-between;
}
.card_first::before,
.card_second::before,
.card_three::before {
    content: '';
    position: absolute;
    top:44px;
    right: 32px;
    width: 80px;
    height: 159px;
    background-color: #232C7C; 
    -webkit-mask-image: url('/images/Vector2.svg');
    mask-image: url('/images/Vector2.svg');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top right;
    mask-position: top right;
    pointer-events: none;
    z-index: 0;
    opacity: 0.1;
}

.card-icon {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 8px;
}
.card-text-block{
    display: flex;
    gap: 8px;
        flex-direction: column;

}
.card-text-block h2 {
    font-size: 24px;
}
.card_first > h2,
.card_second > h2,
.card_three > h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
}

.card_first > p,
.card_second > p,
.card_three > p {
    font-size: 15px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}
.card-btn { display: none; }

/* Video */
.blcok__fond { margin-top: 90px; scroll-margin: 220px; }

.first__block {
    display: flex;
    margin-top: 160px;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.blcok__suptitle, .blcok__suptitle_second {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 32px;
}

.blcok__suptitle img.logo-top,
.blcok__suptitle_second img.logo-top {
    width: 26px;
    height: 26px;
    margin-bottom: 8px;
}

.blcok__suptitle h2, .blcok__suptitle_second h2 {
    font-size: 48px;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 0;
    font-family: Intro ;
    font-weight: 700;
    font-style: Regular;
    font-size: 48px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;

}

.document > h1, .news> h1, .blcok__suptitle h2, .blcok__suptitle_second h2, .blcok__suptitle h2, .blcok__suptitle_second h2{
    margin-bottom: 56px;
}

.video__blcok_first {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
    justify-content: center;
    order: 2;
        flex-direction: column;
}

.video__blcok_first iframe {
    border-radius: var(--card-radius);
    width: 100%;
    max-width: 562px;
    height: 382px;
    margin-bottom: 0 !important;
}
.btn_video_fond, .btn_photo_fond, .programs-btn, .news-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 240px;
    height: 56px;
    padding: 20px 24px;
    border: none;
    border-radius: 16px;
    color: #fff;
    font-family: 'Noto Sans';
    font-size: 18px;
    letter-spacing: 0.5px;
    cursor: pointer;
    margin: 24px auto 0;
    box-shadow: var(--shadow-btn);
    background: linear-gradient(180deg, #5A5A5A 0%, #1A1A1A 100%);
    opacity: 1;
}


.second__blcok_fond {
    position: relative;
    margin-top: 100px;
    padding: 0 15px;
}

.blcok__suptitle_second {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1170px;
    margin: 0 auto 24px;
}

.blcok__suptitle_second .logo-top {
    display: none;
}

.blcok__suptitle_second h2 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1A1A1A;
    margin: 0;
}

.photo-nav {
    display: flex;
    gap: 10px;
}

.photo-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #F2F2F2;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    transition: background 0.2s ease;
}

.photo-nav-btn:hover {
    background: #E5E5E5;
}

.photo-collage {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 20px;
    width: 100%;
    margin: 0;
    padding-left: max(15px, calc((100vw - 1170px) / 2));
    padding-right: 15px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 15px;
}

.photo-collage::-webkit-scrollbar {
    display: none;
}

.photo-collage a {
    flex: 0 0 200px;
    display: block;
}
.photo-collage img {
    width: 100%;
    width: -webkit-fill-available;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.btn_photo_fond {
    display: flex;
    margin: 32px auto 0;
    font-size: 18px;
    font-weight: 400;
    leading-trim: NONE;
    text-align: center;

}
/* help section */
.help {
    margin-top: 100px;
    scroll-margin: 220px;
}

.help-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1170px;
    margin: 0 auto 24px;
}

.help > h1,
.help-section-title {
    font-family: 'Noto Sans', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    text-transform: uppercase;
    margin: 0;
}

.help-nav {
    display: flex;
    gap: 10px;
}

.help-nav-btn {
    width: 80px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    background: linear-gradient(180deg, #FFFFFF 0%, #EFEFEF 100%);
    border: 1px solid;
    border-image-source: linear-gradient(180deg, #EFEFEF 0%, #FFFFFF 100%);
    cursor: pointer;
    font-size: 24px;
    color: #333;
    transition: background 0.2s ease;
    align-items: center;
    justify-content: center;
}

.help-nav-btn:hover {
    background: #E5E5E5;
}



.help-card {
    flex: 0 0 365px;
    width: 365px;
    min-height: 592px;
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0px 16px 32px 0px #232C7C3D;
    padding: 0 0 24px;
    text-align: left;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.help-card-icon {
    width: 100%;
    height: 200px;
    flex-shrink: 0;
}

.help-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.help-card > h2 {
    font-family: 'Noto Sans', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    padding: 20px 28px 0;
    margin-bottom: 10px;
    line-height: 1.3;
}

.help-card > p {
    font-family: 'Noto Sans', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    padding: 0 28px;
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
}

.help-card-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 28px;
    margin-top: auto;
}
.help, .podval, .blcok_img__second,  {
    position: relative;
    padding: 40px 0;
}
.second__blcok_fond{
    padding: 70px 0;
}
/* Отвечают before за несколько разных блоков и за разных масштабов пришлось увеличить*/

.blcok__content_help::before{
    content: '';
    position: absolute;
    top: 240px;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    height: 328px;
    background-image: url('../images/Group 106.svg');
    background-size: 1512px 328px;
    background-repeat: repeat-x;
    background-position: center top;
    z-index: -5;
    pointer-events: none;
}
.blcok_img__second::before  {
    content: '';
    position: absolute;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    height: 328px;
    background-image: url('../images/Group 106.svg');
    background-size: 1512px 328px;
    background-repeat: repeat-x;
    background-position: center top;
    z-index: 0;
    pointer-events: none;
 }
.second__blcok_fond::before{
    content: '';
    position: absolute;
    top: 100px;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    height: 328px;
    background-image: url('../images/Group 106.svg');
    background-size: 1512px 328px;
    background-repeat: repeat-x;
    background-position: center top;
    z-index: -5;
    pointer-events: none;
}
.podval::before{
            content: '';
    position: absolute;
    top: 55px;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    height: 328px;
    background-image: url('../images/Group 106.svg');
    background-size: 1512px 328px;
    background-repeat: repeat-x;
    background-position: center top;
    z-index: -5;
    pointer-events: none;
}
.help-section-header, .block_news {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1170px;
    margin: 0 auto 30px;
    padding: 0 15px;
}
.blcok__content_help {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 20px;
    width: 100%;
    margin: 0;
    padding-left: max(15px, calc((100vw - 1170px) / 2));
    padding-right: 15px;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: -40px;
    margin-bottom: -40px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.blcok__content_help::-webkit-scrollbar {
    display: none;
}

.help-card {
    flex: 0 0 365px;
    width: 365px;
}


.help-card-btn {
    width: 301px;
    height: 56px;
    background: linear-gradient(180deg, #4D4D4D 0%, #121212 100%);
    color: #fff;
    border-radius: 16px;
    font-family: 'Noto Sans', Arial, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.15s ease;
    box-shadow: 0px 16px 32px 0px #232C7C3D;
    border: 1px solid;
    border-image-source: linear-gradient(180deg, #4D4D4D 0%, #121212 100%);
}


.help-card-btn-outline {
    width: 301px;
    height: 56px;
    background: #EFEFEF;
    color: #1A1A1A;
    border-radius: 16px;
    font-family: 'Noto Sans';
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
    box-shadow: 0px 16px 32px 0px #232C7C3D;
    border: 1px solid;

    border-image-source: linear-gradient(180deg, #EFEFEF 0%, #FFFFFF 100%);


}

.help-card-btn-outline:hover {
    background: #E8E8E8;
}
.programs-block {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.programs-logo { width: 26px; height: 26px; margin-bottom: 8px; }
.programs-title {
    font-family: 'Gilroy-Heavy';
    font-size: 26px;
    color: var(--navy);
    text-transform: uppercase;
}

/*  News */
.news {
    margin-top: 160px;
    text-align: center;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}
.news> h1 {
    width: 1140px;
    max-width: 100%;
    height: 48px;
    font-family: 'Intro', Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    color: #232C7C;
    text-transform: uppercase;
    margin: 0 auto 32px;
}

.block_news {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
}

.new__Card_first {
    flex: 0 0 562px;
    width: 360px;
    height: 360px;
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: left;
    justify-content: space-between;
}


.new__Card_first {
    position: relative;
    overflow: hidden;
}

.new__Card_first::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    margin-bottom: 16px;
    background-image: url('../images/Vector.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.new__Card_first::after {
    content: '';
    position: absolute;
    top: 169px;
    right: 32px;
    width: 80px;
    height: 159px;
    background-color: #232C7C;
    -webkit-mask-image: url('/images/Vector2.svg');
    mask-image: url('/images/Vector2.svg');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top right;
    mask-position: top right;
    pointer-events: none;
    z-index: 0;
    opacity: 0.1;
}


.new__Card_first > h2 {
    font-family: 'Noto Sans';
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.35;
    margin: 8px 0 10px;
}

.new__Card_first > p {
    font-family: 'Noto Sans';
    font-size: 16px;
    color: var(--gray-text);
    width: auto;
    line-height: 1.5em;
    margin-bottom: 40px;
}

.blcok_link_news {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    bottom: 22px;
    left: 26px;
    right: 26px;
    margin: 0;
    flex-direction: row;
}

.news-date {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

.news-read-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: none;
    color: black;
    border: none;
    font-family: 'Noto Sans';
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: transform 0.2s ease;
}

.news-share-btn {
    display: none;
}

.news-share-btn img { width: 18px; height: 18px; opacity: 0.6; }

.news-all-btn {
    display: flex;
    margin: 32px auto 0;
}

/* Documents */
.document { 
    margin-top: 160px; 
    text-align: center; }

.document > h1 {
    font-family: 'Gilroy-Heavy';
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 28px;
    font-family: Intro ;
    font-weight: 700;
    font-style: Regular;
    font-size: 48px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;

}

.first__menu_document { margin-bottom: 28px; }

.doc-nav-buttons { display: none; }

.doc-menu-list {
    display: flex;
    height: 72px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.06);
    max-width: 1140px;
    overflow-x: auto;
    gap: 8px;
    background: #fff;
    border-radius: 24px;
    padding: 6px;
    margin: 0 auto 32px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.doc-menu-list::-webkit-scrollbar { display: none; }

.doc-menu-list > li {
    flex-shrink: 0;
    white-space: nowrap;
}

.video_block_Fix{
    display: flex;
    gap: 16px;
        justify-content: center;
}

.doc-menu-btn {
    width: 100%;
    border: 1px solid var(--BGs-bgColor-primary, #F2F8FF);
    background: transparent;
    border-radius: var(--pill-radius);
    padding: 10px 20px;
    font-family: 'Noto Sans';
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-text);
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
      border: 2px solid transparent; 

}


.doc-menu-btn.active {
    border: 2px solid #B8C3E8;
    color: var(--navy);
    font-weight: 700;
}
.doc-menu-btn:hover {
    border: 2px solid #B8C3E8;
    color: var(--navy);
}

.info__blcok_document {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1170px;
    margin: 0 auto;
}

.info__blcok_document.active {
    display: grid;
}

.card_document {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    cursor: pointer;
}

.card_document img {
    width: 279px;
    height: 436px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.card_document:hover img {
    transform: scale(1.05);
}

.card_document::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.card_document:hover::before {
    opacity: 1;
}

.card_document::after {
    content: '';
    background-image: url('../images/Vector.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.card_document:hover::after {
    opacity: 1;
}
/* Contacts */
.contacts { margin-top: 100px; text-align: center; }

.contacts > h1 {
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 32px;
    font-family: Intro ;
    font-weight: 700;
    font-style: Regular;
    font-size: 48px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;

}

.blcok__info_contact {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    gap: 40px;
        flex-direction: row-reverse;
}

.info_contact { margin: 0; padding-top: 8px; }

.block__adress, .phone { margin-bottom: 30px; }

.block__adress > h1, .phone > h1, .maill > h1 {
    color: #1F1F1F;
    font-size: 16px;
    font-family: 'Noto Sans';
    margin-bottom: 8px;
}
.block__adress > p, .phone > p, .maill > p {
    color: var(--gray-text);
    font-size: 14px;
    font-family: 'Noto Sans';
    font-weight: 400;
    
}

.form {
    display: flex;
    flex-direction: column;
    width: 485px;
    align-items: stretch;
}

.form > p {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-card);
    color: var(--ink);
    padding: 14px 20px;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Noto Sans';
    margin-bottom: 14px;
}

.form > p > input {
    margin-top: 6px;
    border: none;
    width: 100%;
    outline: none;
    font-size: 14px;
}

#form_message {
    width: 100%;
    height: 120px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-card);
    padding: 14px 20px;
}
#form_message > textarea {
    margin-top: 6px;
    border: none;
    resize: none;
    width: 100%;
    outline: none;
    font-family: 'Noto Sans';
    font-size: 14px;
}

.contact-submit-btn {
    width: 100%;
    background: linear-gradient(180deg, #5A5A5A 0%, #1A1A1A 100%);
    height: 56px;
    color: #fff;
    border-radius: var(--pill-radius);
    border: none;
    padding: 15px;
    gap: 8px;
    font-family: 'Noto Sans';
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Footer */
.podval {
    margin-top: 160px;
    position: relative;
    overflow: hidden;
    padding: 60px 0 30px;
    
}


.logo_footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.footer-logo-icon { width: 34px; height: 34px; }
.footer-logo-text-block { display: flex; flex-direction: column; text-align: left; }
.footer-logo-text {
    font-family: 'Noto Sans';
    font-size: 24px;
    color: var(--ink);
    letter-spacing: 1px;
}
.footer-logo-subtitle {
    font-family: 'Noto Sans';
    font-size: 11px;
    color: var(--gray-text);
    letter-spacing: 2px;
}

.first__nav_footer > ul {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
    list-style: none;
}
.link__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #f5f5f8;
    border: 1px solid;
    border-image-source: linear-gradient(180deg, #EFEFEF 0%, #FFFFFF 100%);
    border-radius: 16px;

}

.link__inner img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.second_nav__footer > ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    height: 56px;
    margin-top: 24px;
    list-style: none;
    background: #fff;
    border-radius: var(--pill-radius);
    padding: 8px;
    width: 100%;
    max-width: 100%;
}

.second_nav__footer > ul > li a {
    display: block;
    padding: 10px 18px;
    font-size: 16px;
    font-family: 'Noto Sans';
    color: black;
    border-radius: var(--pill-radius);
    transform: none;
    transition: none;
}

.second_nav__footer > ul > li.active a {
    color: var(--navy);
    font-family: 'Noto Sans';
    font-weight: 700;
    font-size: 16px;
}

.second_nav__footer > ul > li > a:hover {
    color: #7A7A7A;
}
.confidational {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0 0;
    color: var(--gray-text);
    font-size: 13px;
    font-family: 'Noto Sans';
    flex-wrap: wrap;
    text-align: center;
}
.confidational > div { cursor: pointer; }

/* Modals */
.overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(23, 24, 28, 0.55);
    z-index: 999;
}

.modal, .modal_volonter, .modal_help, .modal_end, .modal_goodzivka {
    display: none;
    width: 620px;
    max-width: 92vw;
    height: auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    text-align: center;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.modal-header, .modal-header_help, .modal-header_help-second,
.modal-header-end, .modal-header-goodzivka {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.modal-header h2, .modal-header_help h2, .modal-header_help-second h2,
.modal-header-end h2, .modal-header-goodzivka h2 {
    font-size: 26px;
    color: var(--navy);
    font-family: 'Noto Sans';
}
.close-btn {
    background: #F2F4FA;
    border: none;
    width: 34px; height: 34px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: var(--gray-text);
}

.payment-options { 
    display: flex; 
    justify-content: space-between; 
    gap: 10px;
    margin-bottom: 20px; 
}
.payment-option {
    flex: 1;
    padding: 16px 10px;
    background-color: #F7F8FC;
    border: 2px solid transparent;
    border-radius: 16px;
    cursor: pointer;
    font-family: 'Noto Sans';
    font-weight: 600;
}
.payment-option.active, .card-option.active, .swift-card.active, .crypto-card.active {
    border-color: var(--navy);
    background: #EEF0FC;
}

.currency-selection, .currency-selection-crypto { 
    display: none; 
    gap: 10px; 
    justify-content: center; 
    margin-bottom: 16px; 
}
.currency-btn {
    padding: 10px 20px;
    border: 2px solid #E2E5F0;
    border-radius: var(--pill-radius);
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Noto Sans';
}
.currency-btn.active { 
    color: var(--navy); 
    border-color: var(--navy); 
}
.currency-btn img {
     width: 18px; 
     height: 18px; 
}

.req { 
    display: none; 
    margin-top: 16px; 
    margin-bottom: 20px; 
    text-align: left; 
    background: #F7F8FC; 
    padding: 16px 20px; 
    border-radius: 16px; 
}
.req h1 { 
    font-size: 15px; 
    margin-bottom: 8px; 
}
.req p { 
    font-size: 13px; 
    color: var(--gray-text); 
    line-height: 1.6em; 
}

.donate-btn, .copy-btn {
    display: none;
    width: 100%;
    background: var(--ink);
    color: #fff;
    border: none;
    border-radius: var(--pill-radius);
    padding: 15px;
    cursor: pointer;
    font-family: 'Noto Sans';
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 8px;
}

.form-help > p, .form-help-second > p {
    display: flex;
    flex-direction: column;
    text-align: left;
    background: #F7F8FC;
    border-radius: 16px;
    padding: 12px 18px;
    font-size: 13px;
    font-family: 'Noto Sans';
    margin-bottom: 12px;
}
.form-help > p > input, .form-help > p > textarea,
.form-help-second > p > input, .form-help-second > p > textarea {
    border: none;
    background: transparent;
    margin-top: 6px;
    outline: none;
    font-family: 'Gilroy-Regular';
    font-size: 14px;
}
.dropdown { 
    width: 100%; 
    border: none; 
    background: transparent; 
    font-size: 14px; 
    margin-top: 6px; 
}

#send-btn_help, #send-btn_help-second, #send-btn_end, #send-btn_goodzivka {
    width: 100%;
    background: var(--ink);
    color: #fff;
    border: none;
    border-radius: var(--pill-radius);
    padding: 15px;
    font-family: 'Noto Sans';
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 6px;
}

.modal-swift .modal-swift-content {
    background: #fff;
    border-radius: 30px;
    padding: 30px;
    max-width: 560px;
    width: 92vw;
    position: fixed;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.modal-swift { 
    display: none; 
}
.modal-swift-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 16px; 
}
.modal-swift-header h2 { 
    font-family: 'Noto Sans'; 
    color: var(--navy); 
    font-size: 22px; 
}

.currency-radio-group { display: flex; 
    justify-content: center; 
    gap: 14px; 
    margin-bottom: 20px; 
}
.currency-radio { display: flex; 
    align-items: center; 
    gap: 6px; 
    cursor: pointer; 
    font-family: 'Noto Sans'; 
}
.swift-details { 
    display: none; 
    text-align: left; 
    background: #F7F8FC; 
    padding: 16px 20px; 
    border-radius: 16px; 
    font-size: 13px; 
    line-height: 1.6em; 
    color: var(--gray-text); 
}
.swift-details h3 { 
    font-family: 'Noto Sans'; 
    font-size: 14px; 
    color: var(--ink); 
    margin-bottom: 8px; 
}
.swift-complete-btn {
    width: 100%;
    background: var(--ink);
    color: #fff;
    border: none;
    border-radius: var(--pill-radius);
    padding: 15px;
    font-family: 'Noto Sans';
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 16px;
}
.swift-privacy-text { font-size: 11px; color: var(--gray-text); margin-top: 10px; }

/* Mobile Global(Отвечает за выводение Бургера и il меню а все другие настройки в addaptive.css) */
.mob_menu { display: none; }

.mobile-menu {
    position: absolute;
    display: flex;
    justify-content: center;
    background-color: #fff;
    width: 100%;
    height: calc(100% - 65px);
    min-height: 700px;
    top: 65px;
    left: 0;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
.mobile-menu.active { transform: translateX(0); opacity: 1; }
.mobile-menu.active > ul { margin-top: 40px; }
.mobile-menu.active > ul > li { list-style: none; }

.scroll-link_mobile {
    font-size: 20px;
    margin-top: 16px;
    font-family: 'Noto Sans';
    color: var(--ink);
    width: 250px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.logo_mob_link { display: inline-flex; align-items: center; justify-content: center; }

@media (max-width: 992px) {
    .blcok_img__second, .video__blcok_first { 
        flex-direction: column; 
    }
    .blcok__info_contact { 
        flex-direction: column; 
        align-items: center; 
    }
    .form { 
        width: 100%; 
        max-width: 485px; 
    }
    .info__blcok_document { 
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 567px) {
    .blcok__donate_inner > h1 { 
        font-size: 32px; 
    }
    .help > h1, .news > h1, .document > h1, .contacts > h1 { 
        font-size: 48px; 
    }
    .first_main__inner img.hero-image {
         height: 260px; 
    }
}


.help--simple {
    margin-top: 100px;
    padding: 60px 0;
}

.help--simple > h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
}

.help--simple .blcok__content_help {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 40px auto 0;
    padding: 0 15px;
    overflow: visible;
    position: static;
}

.blcok_first__inner {
    flex: 0 0 365px;
    width: 365px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blcok_first__inner > a {
    display: block;
}

.blcok__first_help {
    background: #FFFFFF;
    border-radius: var(--card-radius, 24px);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    flex-direction: column-reverse;
    height: 370px;
    justify-content: space-between;
}


.blcok__first_help img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.text__blcok {
    padding: 20px 24px 24px;
}

.text__blcok > h1 {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.3;
    margin-bottom: 10px;
}

.text__blcok > p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blcok_first__inner > button {
    width: 100%;
    height: 56px;
    background: linear-gradient(180deg, #4D4D4D 0%, #121212 100%);
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.15s ease;
}
