/* =========================
   PROGRAM PAGE / BASE
   ========================= */

.program-page,
.program-page * {
    box-sizing: border-box;
}

.program-page {
    --mv-green: #3EA74F;
    --mv-green-dark: #185E30;
    --mv-orange: #EE7B2D;
    --mv-black: #343333;
    --mv-gray: #5F5E5E;
    --mv-bg: #F4F4F4;
    --mv-white: #FFFFFF;

    width: 100%;
    overflow: hidden;
    background: var(--mv-bg);
    color: var(--mv-black);
    font-family: "Roboto", Arial, sans-serif;
}

.program-page img,
.program-page svg {
    /*! display: block; */
    /*! max-width: 100%; */
}

.program-page a {
    color: inherit;
    text-decoration: none;
}

.program-page button,
.program-page input,
.program-page textarea,
.program-page select {
    font-family: "Roboto", Arial, sans-serif;
}

.program-page section {
    position: relative;
    width: 100%;
}

.mv-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================
   COMMON
   ========================= */

.mv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    height: 40px;
    padding: 0 32px;
    border: 0;
    border-radius: 999px;
    background: var(--mv-orange);
    color: var(--mv-white);
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.mv-btn:hover {
    background: #E46F21;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(238, 123, 45, .22);
}

.mv-breadcrumbs {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 12px 28px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9C9C9C;
    font-size: 14px;
    line-height: 1.2;
    background: #FFF;
}

.mv-breadcrumbs a:hover {
    color: var(--mv-green);
}

.mv-breadcrumbs span:last-child {
    color: var(--mv-black);
}

.mv-zigzag {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

/* =========================
   HERO / 1440+
   ========================= */

.mv-hero {
    min-height: 1200px;
    padding: 92px 20px 80px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F4F4F4 100%);
}

.mv-hero__title {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 38px;
    max-width: 920px;
    margin: 0 auto;
    color: #16843A;
    font-size: 118px;
    font-weight: 400;
    line-height: .72;
    text-align: center;
}

.mv-hero__subtitle {
    position: relative;
    z-index: 5;
    max-width: 535px;
    margin: 58px auto 0;
    color: var(--mv-black);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.12;
    text-align: center;
}

.mv-zigzag--hero {
    left: 50%;
    top: 567px;
    width: 1440px;
    max-width: none;
    transform: translateX(-50%);
}

.mv-hero__bullet {
    position: absolute;
    z-index: 4;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--mv-green-dark);
    pointer-events: none;
}

.mv-hero__bullet--1 { left: 17.1%; top: 54%; }
.mv-hero__bullet--2 { left: 20.9%; top: 50.9%; }
.mv-hero__bullet--3 { left: 28.4%; top: 50.4%; }
.mv-hero__bullet--4 { left: 35.2%; top: 55.2%; }
.mv-hero__bullet--5 { left: 45.6%; top: 61.2%; }
.mv-hero__bullet--6 { left: 54.4%; top: 58.8%; }
.mv-hero__bullet--7 { left: 65.2%; top: 57.7%; }
.mv-hero__bullet--8 { left: 72.2%; top: 57.4%; }
.mv-hero__bullet--9 { left: 77.2%; top: 51.2%; }
.mv-hero__bullet--10 { left: 81.8%; top: 45.6%; }

.mv-hero__photo {
    position: absolute;
    z-index: 3;
    object-fit: cover;
    object-position: center;
    border-radius: 2px;
    box-shadow: 0 10px 24px rgba(52, 51, 51, .08);
}

.mv-hero__photo--left {
    left: calc(50% - 593.7px);
    top: 508px;
    width: 200px;
    height: 200px;
    transform: rotate(-4deg);
}

.mv-hero__photo--right {
    left: calc(50% + 411.47px);
    top: 510px;
    width: 200px;
    height: 200px;
    transform: rotate(4deg);
}

.mv-hero__photo--center-left {
    left: calc(50% - 278.8px);
    top: 682px;
    width: 210px;
    height: 210px;
    transform: rotate(6deg);
}

.mv-hero__photo--center-right {
    left: calc(50% + 85.92px);
    top: 700px;
    width: 210px;
    height: 210px;
    transform: rotate(-5deg);
}

.mv-hero__donate {
    position: relative;
    z-index: 5;
    width: 454px;
    min-height: 210px;
    margin: 530px auto 0;
    padding: 73px 30px 32px;
    background: var(--mv-white);
    border-radius: 10px;
    text-align: center;
}

.mv-hero__price {
    position: absolute;
    left: 50%;
    top: -65px;
    width: 430px;
    transform: translateX(-50%);
}

.mv-hero__donate-text {
    margin: 0 0 24px;
    color: var(--mv-black);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.06;
    text-align: center;
}

/* =========================
   HERO / 1400
   ========================= */

@media (max-width: 1400px) {
    .mv-hero {
        min-height: 1060px;
        padding-top: 82px;
    }

    .mv-hero__title {
        gap: 34px;
        font-size: 106px;
    }

    .mv-hero__subtitle {
        max-width: 500px;
        margin-top: 50px;
        font-size: 22px;
    }

    .mv-zigzag--hero {
        top: 494px;
        width: 1280px;
    }

    .mv-hero__bullet {
        width: 9px;
        height: 9px;
    }

    .mv-hero__photo--left {
        left: calc(50% - 530px);
        top: 444px;
        width: 178px;
        height: 178px;
    }

    .mv-hero__photo--right {
        left: calc(50% + 366px);
        top: 444px;
        width: 178px;
        height: 178px;
    }

    .mv-hero__photo--center-left {
        left: calc(50% - 248px);
        top: 606px;
        width: 187px;
        height: 187px;
    }

    .mv-hero__photo--center-right {
        left: calc(50% + 76px);
        top: 622px;
        width: 187px;
        height: 187px;
    }

    .mv-hero__donate {
        width: 420px;
        min-height: 195px;
        margin-top: 500px;
        padding-top: 66px;
    }

    .mv-hero__price {
        top: -58px;
        width: 385px;
    }

    .mv-hero__donate-text {
        font-size: 18px;
    }
}

/* =========================
   HERO / 1024
   ========================= */

@media (max-width: 1024px) {
    .mv-hero {
        min-height: 1040px;
        padding-top: 78px;
        padding-bottom: 70px;
    }

    .mv-hero__title {
        gap: 32px;
        font-size: 96px;
    }

    .mv-hero__subtitle {
        max-width: 500px;
        margin-top: 46px;
        font-size: 18px;
    }

    .mv-zigzag--hero {
        top: 520px;
        width: 1120px;
    }

    .mv-hero__bullet {
        width: 8px;
        height: 8px;
    }

    .mv-hero__photo--left {
        left: calc(50% - 420px);
        top: 500px;
        width: 176px;
        height: 176px;
    }

    .mv-hero__photo--right {
        left: calc(50% + 252px);
        top: 492px;
        width: 168px;
        height: 168px;
    }

    .mv-hero__photo--center-left {
        left: calc(50% - 160px);
        top: 650px;
        width: 176px;
        height: 176px;
    }

    .mv-hero__photo--center-right {
        left: calc(50% + 112px);
        top: 664px;
        width: 176px;
        height: 176px;
    }

    .mv-hero__bullet--8,
    .mv-hero__bullet--9,
    .mv-hero__bullet--10 {
        display: none;
    }
}

/* =========================
   HERO / 991
   ========================= */

@media (max-width: 991px) {
    .mv-hero {
        min-height: 1000px;
        padding-top: 74px;
    }

    .mv-hero__title {
        gap: 28px;
        font-size: 88px;
    }

    .mv-hero__subtitle {
        max-width: 470px;
        margin-top: 42px;
        font-size: 18px;
    }

    .mv-zigzag--hero {
        top: 505px;
        width: 1040px;
    }

    .mv-hero__bullet {
        width: 7px;
        height: 7px;
    }

    .mv-hero__photo--left {
        left: calc(50% - 385px);
        top: 488px;
        width: 158px;
        height: 158px;
    }

    .mv-hero__photo--right {
        left: calc(50% + 225px);
        top: 480px;
        width: 154px;
        height: 154px;
    }

    .mv-hero__photo--center-left {
        left: calc(50% - 135px);
        top: 620px;
        width: 160px;
        height: 160px;
    }

    .mv-hero__photo--center-right {
        left: calc(50% + 100px);
        top: 632px;
        width: 160px;
        height: 160px;
    }
}

/* =========================
   HERO / 768
   ========================= */

@media (max-width: 768px) {
    .mv-hero {
        min-height: 980px;
        padding: 70px 16px 65px;
    }

    .mv-hero__title {
        gap: 24px;
        font-size: 76px;
    }

    .mv-hero__subtitle {
        max-width: 470px;
        margin-top: 42px;
        font-size: 19px;
    }

    .mv-zigzag--hero {
        top: 505px;
        width: 930px;
    }

    .mv-hero__photo--left {
        left: calc(50% - 342px);
        top: 490px;
        width: 138px;
        height: 138px;
    }

    .mv-hero__photo--right {
        left: calc(50% + 202px);
        top: 484px;
        width: 134px;
        height: 134px;
    }

    .mv-hero__photo--center-left {
        left: calc(50% - 76px);
        top: 610px;
        width: 145px;
        height: 145px;
    }

    .mv-hero__photo--center-right {
        left: calc(50% + 118px);
        top: 620px;
        width: 145px;
        height: 145px;
    }

    .mv-hero__donate {
        width: 390px;
        min-height: 184px;
        margin-top: 460px;
        padding: 62px 24px 28px;
    }

    .mv-hero__price {
        top: -52px;
        width: 350px;
    }

    .mv-hero__donate-text {
        font-size: 17px;
    }
}

/* =========================
   HERO / 755
   ========================= */

@media (max-width: 755px) {
    .mv-hero {
        min-height: 960px;
    }

    .mv-hero__title {
        font-size: 74px;
    }

    .mv-hero__subtitle {
        font-size: 18px;
    }
}

/* =========================
   HERO / 600
   ========================= */

@media (max-width: 600px) {
    .mv-hero {
        min-height: 910px;
        padding-top: 60px;
    }

    .mv-hero__title {
        max-width: 420px;
        gap: 22px;
        font-size: 64px;
    }

    .mv-hero__subtitle {
        max-width: 380px;
        margin-top: 36px;
        font-size: 17px;
    }

    .mv-zigzag--hero {
        top: 470px;
        width: 780px;
    }

    .mv-hero__photo--right,
    .mv-hero__photo--center-right {
        display: none;
    }

    .mv-hero__photo--left {
        left: calc(50% - 225px);
        top: 460px;
        width: 130px;
        height: 130px;
    }

    .mv-hero__photo--center-left {
        left: calc(50% - 40px);
        top: 570px;
        width: 140px;
        height: 140px;
    }

    .mv-hero__bullet--4,
    .mv-hero__bullet--5,
    .mv-hero__bullet--6,
    .mv-hero__bullet--7,
    .mv-hero__bullet--8,
    .mv-hero__bullet--9,
    .mv-hero__bullet--10 {
        display: none;
    }

    .mv-hero__donate {
        width: 360px;
        margin-top: 430px;
    }
}

/* =========================
 /* =========================
   HERO / MOBILE 450
   ========================= */

@media (max-width: 450px) {
    .mv-hero {
        min-height: 10px;
        padding: 84px 20px 70px;
    }

    .mv-hero__title {
        max-width: 335px;
        gap: 24px;
        font-size: 57px;
        line-height: .72;
    }

    .mv-hero__subtitle {
        max-width: 335px;
        margin-top: 58px;
        font-size: 16px;
        line-height: 1.08;
        font-weight: 400;
    }

    .mv-zigzag--hero {
        top: 327px;
        left: 100%;
        width: 1440px;
        transform: translateX(-50%);
    }

    .mv-hero__bullet {
        width: 6px;
        height: 6px;
    }

    .mv-hero__bullet--1 {
        display: block;
        left: 70px;
        top: 494px;
    }

    .mv-hero__bullet--2 {
        display: block;
        left: auto;
        right: 65px;
        top: 609px;
    }

    .mv-hero__bullet--3,
    .mv-hero__bullet--4,
    .mv-hero__bullet--5,
    .mv-hero__bullet--6,
    .mv-hero__bullet--7,
    .mv-hero__bullet--8,
    .mv-hero__bullet--9,
    .mv-hero__bullet--10 {
        display: none;
    }

    .mv-hero__photo--left,
    .mv-hero__photo--right,
    .mv-hero__photo--center-right {
        display: none;
    }

    .mv-hero__photo--center-left {
        display: block;
        left: 50%;
        top: 353px;
        width: 270px;
        height: 307px;
        max-width: none;
        transform: translateX(-50%) rotate(-2deg);
        object-position: center;
        z-index: 3;
    }

    .mv-hero__donate {
        width: 100%;
        min-height: 261px;
        margin-top: 439px;
        padding: 70px 20px 34px;
        border-radius: 12px;
    }

    .mv-hero__price {
        top: -52px;
        width: 280px;
    }

    .mv-hero__donate-text {
        margin-bottom: 30px;
        font-size: 30px;
        line-height: 1.05;
    }

    .mv-hero__btn {
        width: 100%;
        max-width: 260px;
        height: 56px;
        font-size: 18px;
    }
}

/* =========================
   HERO / MOBILE 352
   ========================= */

@media (max-width: 352px) {
    .mv-hero {
        min-height: 1270px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .mv-hero__title {
        max-width: 320px;
        font-size: 52px;
    }

    .mv-hero__subtitle {
        max-width: 320px;
        font-size: 26px;
    }

    .mv-hero__photo--center-left {
        width: 260px;
        height: 570px;
    }

    .mv-hero__donate {
        margin-top: 720px;
    }

    .mv-hero__price {
        width: 260px;
    }

    .mv-hero__donate-text {
        font-size: 27px;
    }
}
.mv-about {
    position: relative;
    isolation: isolate;
    max-width: 1440px;
    min-height: 827px;
    margin: 0 auto;
    padding: 92px 20px 100px;
    overflow: hidden;
}

.mv-about__cloud {
    position: absolute;
    z-index: 4;
    left: calc(50% - 579px);
    top: 28px;
    width: 260px;
    height: auto;
    max-width: none;
    pointer-events: none;
}

.mv-about__title,
.mv-who__title,
.mv-work__title,
.mv-purpose__title,
.mv-partners__title,
.mv-faq__title,
.mv-other-programs__title {
    position: relative;
    z-index: 3;
    margin: 0;
    color: var(--mv-black);
    font-size: 54px;
    font-weight: 400;
    line-height: 1.04;
    text-align: center;
    letter-spacing: -.02em;
}

.mv-about__title strong,
.mv-who__title span,
.mv-work__title span,
.mv-purpose__title span {
    color: var(--mv-green);
    font-weight: 400;
}

.mv-about__vector {
    position: absolute;
    z-index: 2;
    left: calc(50% + -20px);
    top: 147px;
    width: 746px;
    height: auto;
    max-width: none;
    pointer-events: none;
}

.mv-about__lead {
    position: relative;
    z-index: 3;
    max-width: 630px;
    margin: 34px auto 0;
    color: var(--mv-black);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
}

.mv-about__blue-icon {
    position: absolute;
    z-index: 1;
    left: calc(50% - 280px);
    top: 470px;
    width: 330px;
    height: 330px;
    max-width: none;
    pointer-events: none;
}

.mv-about__photo {
    position: relative;
    z-index: 3;
    display: block;
    width: 448px;
    height: 478px;
    margin: 105px 0 0 70px;
    object-fit: cover;
    object-position: center;
    transform: rotate(-5deg);
}

.mv-about__dot {
    position: absolute;
    z-index: 4;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #006AB2;
    pointer-events: none;
}

.mv-about__dot--top {
    left: calc(50% - 474px);
    top: 348px;
}

.mv-about__dot--left {
    left: calc(50% - 644px);
    top: 500px;
}

.mv-about__dot--bottom {
    left: calc(50% - 619px);
    top: 800px;
    bottom: auto;
}

.mv-about__text {
    position: absolute;
    z-index: 3;
    right: calc(50% - 584px);
    top: 418px;
    width: 456px;
    margin: 0;
    color: var(--mv-gray);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.28;
}

.mv-about__card {
    position: absolute;
    z-index: 3;
    right: calc(50% - 584px);
    top: 612px;
    width: 454px;
    min-height: 176px;
    padding: 35px 40px 30px;
    background: var(--mv-white);
    border-radius: 8px;
}

.mv-about__card-text {
    margin: 0;
    color: var(--mv-black);
    font-size: 18px;
    line-height: 1.22;
}

.mv-about__card-btn {
    min-width: 140px;
    margin-top: 29px;
    background: var(--mv-green);
}

/* =========================
   ABOUT / 1400
   ========================= */

@media (max-width: 1400px) {
    .mv-about {
        min-height: 735px;
        padding-top: 82px;
        padding-bottom: 90px;
    }

    .mv-about__cloud {
        left: calc(50% - 514px);
        top: 24px;
        width: 230px;
    }

    .mv-about__title,
    .mv-who__title,
    .mv-work__title,
    .mv-purpose__title,
    .mv-partners__title,
    .mv-faq__title,
    .mv-other-programs__title {
        font-size: 48px;
    }

    .mv-about__vector {
        left: calc(50% + 58px);
        top: 112px;
        width: 660px;
    }

    .mv-about__lead {
        max-width: 560px;
        margin-top: 30px;
        font-size: 17px;
    }

    .mv-about__photo {
        width: 398px;
        height: 425px;
        margin-top: 94px;
        margin-left: 62px;
    }

    .mv-about__blue-icon {
        left: calc(50% - 75px);
        top: 420px;
        width: 294px;
        height: 294px;
    }

    .mv-about__dot {
        width: 12px;
        height: 12px;
    }

    .mv-about__dot--top {
        left: calc(50% - 421px);
        top: 334px;
    }

    .mv-about__dot--left {
        left: calc(50% - 547px);
        top: 445px;
    }

    .mv-about__dot--bottom {
        left: calc(50% - 520px);
        top: 711px;
    }

    .mv-about__text {
        right: calc(50% - 519px);
        top: 372px;
        width: 405px;
        font-size: 18px;
    }

    .mv-about__card {
        right: calc(50% - 519px);
        top: 544px;
        width: 404px;
        min-height: 157px;
        padding: 31px 36px 27px;
    }
}

/* =========================
   ABOUT / 1024
   ========================= */

@media (max-width: 1024px) {
    .mv-about {
        min-height: 760px;
        padding-top: 78px;
        padding-bottom: 85px;
    }

    .mv-about__cloud {
        left: calc(50% - 450px);
        top: 20px;
        width: 205px;
    }

    .mv-about__title,
    .mv-who__title,
    .mv-work__title,
    .mv-purpose__title,
    .mv-partners__title,
    .mv-faq__title,
    .mv-other-programs__title {
        font-size: 44px;
    }

    .mv-about__vector {
        left: calc(50% + 5px);
        top: 105px;
        width: 560px;
    }

    .mv-about__lead {
        max-width: 520px;
        margin-top: 28px;
        font-size: 16px;
    }

    .mv-about__photo {
        width: 360px;
        height: 430px;
        margin-top: 92px;
        margin-left: 50px;
    }

    .mv-about__blue-icon {
        left: calc(50% - 110px);
        top: 445px;
        width: 260px;
        height: 260px;
    }

    .mv-about__dot {
        width: 11px;
        height: 11px;
    }

    .mv-about__dot--top {
        left: calc(50% - 370px);
        top: 338px;
    }

    .mv-about__dot--left {
        left: calc(50% - 465px);
        top: 455px;
    }

    .mv-about__dot--bottom {
        left: calc(50% - 445px);
        top: 715px;
    }

    .mv-about__text {
        right: calc(50% - 450px);
        top: 390px;
        width: 365px;
        font-size: 17px;
    }

    .mv-about__card {
        right: calc(50% - 450px);
        top: 575px;
        width: 360px;
        min-height: 150px;
        padding: 28px 32px 26px;
    }
}

/* =========================
   ABOUT / 991
   ========================= */

@media (max-width: 991px) {
    .mv-about {
        min-height: 735px;
        padding-top: 74px;
    }

    .mv-about__cloud {
        left: calc(50% - 350px);
        width: 185px;
    }

    .mv-about__title,
    .mv-who__title,
    .mv-work__title,
    .mv-purpose__title,
    .mv-partners__title,
    .mv-faq__title,
    .mv-other-programs__title {
        font-size: 40px;
    }

    .mv-about__vector {
        left: calc(50% - 10px);
        top: 98px;
        width: 500px;
    }

    .mv-about__lead {
        max-width: 470px;
        font-size: 15px;
    }

    .mv-about__photo {
        width: 320px;
        height: 390px;
        margin-top: 88px;
        margin-left: 40px;
    }

    .mv-about__blue-icon {
        left: calc(50% - 125px);
        top: 420px;
        width: 230px;
        height: 230px;
    }

    .mv-about__text {
        right: calc(50% - 405px);
        top: 370px;
        width: 330px;
        font-size: 16px;
    }

    .mv-about__card {
        right: calc(50% - 405px);
        top: 540px;
        width: 330px;
        min-height: 145px;
        padding: 26px 28px 24px;
    }
}

/* =========================
   ABOUT / 768
   ========================= */

@media (max-width: 768px) {
    .mv-about {
        min-height: 730px;
        padding: 70px 16px 80px;
    }

    .mv-about__cloud {
        left: 20px;
        top: 20px;
        width: 170px;
    }

    .mv-about__title,
    .mv-who__title,
    .mv-work__title,
    .mv-purpose__title,
    .mv-partners__title,
    .mv-faq__title,
    .mv-other-programs__title {
        font-size: 38px;
    }

    .mv-about__vector {
        left: calc(50% - 70px);
        top: 96px;
        width: 470px;
    }

    .mv-about__lead {
        max-width: 455px;
        margin-top: 32px;
        font-size: 15px;
    }

    .mv-about__photo {
        width: 285px;
        height: 350px;
        margin-top: 84px;
        margin-left: 30px;
    }

    .mv-about__blue-icon {
        left: calc(50% - 120px);
        top: 400px;
        width: 205px;
        height: 205px;
    }

    .mv-about__dot {
        width: 10px;
        height: 10px;
    }

    .mv-about__dot--top {
        left: 190px;
        top: 330px;
    }

    .mv-about__dot--left {
        left: 25px;
        top: 420px;
    }

    .mv-about__dot--bottom {
        left: 40px;
        top: 640px;
    }

    .mv-about__text {
        right: 36px;
        top: 350px;
        width: 310px;
        font-size: 15px;
        line-height: 1.25;
    }

    .mv-about__card {
        right: 36px;
        top: 520px;
        width: 310px;
        min-height: 140px;
        padding: 24px 24px 22px;
    }

    .mv-about__card-text {
        font-size: 16px;
    }
}

/* =========================
   ABOUT / MOBILE
   ========================= */

@media (max-width: 755px) {
    .mv-about {
        min-height: 1015px;
        padding: 0px 40px 80px;
        overflow: hidden;
    }

    .mv-about__cloud {
        display: block;
        left: 20px;
        top: -26px;
        width: 185px;
        z-index: 4;
    }

    .mv-about__title {
        max-width: 335px;
        margin: 125px auto 0;
        font-size: 36px;
        line-height: .98;
        text-align: center;
    }

    .mv-about__title span,
    .mv-about__title strong {
        display: block;
    }

    .mv-about__vector {
        display: block;
        left: 57%;
        top: 203px;
        width: 483px;
        max-width: none;
        transform: translateX(-28%);
        z-index: 2;
    }

    .mv-about__lead {
        max-width: 361px;
        margin: 54px auto 0;
        font-size: 16px;
        line-height: 1.14;
        text-align: center;
    }

    .mv-about__lead br {
        display: none;
    }

    .mv-about__blue-icon {
        display: none;
    }

    .mv-about__photo {
        position: relative;
        z-index: 3;
        width: 100%;
        max-width: 535px;
        height: 590px;
        margin: 115px auto 0;
        object-fit: cover;
        object-position: center;
        transform: rotate(-3deg);
    }

    .mv-about__dot {
        display: block;
        z-index: 4;
        width: 10px;
        height: 10px;
        background: #006AB2;
    }

    .mv-about__dot--top {
        left: 50%;
        top: 433px;
        transform: translateX(-50%);
    }

    .mv-about__dot--left {
        left: 62px;
        top: 502px;
    }

    .mv-about__dot--bottom {
        left: 73px;
        top: 675px;
        bottom: auto;
    }

    .mv-about__text {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        max-width: 335px;
        margin: 100px auto 0;
        color: var(--mv-gray);
        font-size: 16px;
        /*! font-weight: 700; */
        line-height: 1.20;
    }

    .mv-about__card {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        max-width: 335px;
        min-height: 210px;
        margin: 70px auto 0;
        padding: 36px 20px 30px;
        border-radius: 10px;
        text-align: center;
    }

    .mv-about__card-text {
        font-size: 27px;
        line-height: 1.15;
    }

    .mv-about__card-btn {
        min-width: 230px;
        height: 56px;
        margin-top: 30px;
        font-size: 18px;
    }
}

@media (max-width: 450px) {
    .mv-about {
        padding-left: 40px;
        padding-right: 40px;
    }

    .mv-about__photo {
        width: 270px;
        max-width: none;
        height: 297px;
        margin-left: 32px;
    }
}

@media (max-width: 352px) {
    .mv-about {
        min-height: 1600px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .mv-about__title,
    .mv-about__lead,
    .mv-about__text,
    .mv-about__card {
        max-width: 315px;
    }

    .mv-about__photo {
        width: 500px;
        height: 560px;
        margin-left: 20px;
    }
}
/* =========================
   WHO
   ========================= */

.mv-who {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 115px 20px 100px;
    overflow: hidden;
}

.mv-who__title {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    color: var(--mv-black);
    font-size: 54px;
    font-weight: 400;
    line-height: 1.04;
    text-align: center;
    letter-spacing: -.02em;
}

.mv-who__title span {
    color: var(--mv-green);
}

.mv-who__vector {
    position: absolute;
    z-index: 2;
    left: calc(50% - 720px);
    top: 170px;
    width: 545px;
    height: auto;
    max-width: none;
    pointer-events: none;
}

.mv-who__cards {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(2, 452px);
    justify-content: center;
    gap: 21px;
    margin-top: 70px;
}

.mv-who-card {
    min-height: 220px;
    padding: 34px 44px 32px;
    border-radius: 8px;
    background: var(--mv-white);
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.mv-who-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(52, 51, 51, .08);
}

.mv-who-card__icon {
    height: 181px;
    margin: 0 auto 24px;
    object-fit: contain;
}

.mv-who-card__icon--institution {
    width: 290px;
}

.mv-who-card__icon--ministry {
    width: 309px;
}

.mv-who-card__text {
    margin: 0;
    color: var(--mv-gray);
    font-size: 18px;
    line-height: 1.16;
}

@media (max-width: 1400px) {
    .mv-who {
        padding-top: 100px;
        padding-bottom: 90px;
    }

    .mv-who__title {
        font-size: 48px;
    }

    .mv-who__vector {
        left: calc(50% - 640px);
        top: 66px;
        width: 485px;
    }

    .mv-who__cards {
        grid-template-columns: repeat(2, 420px);
        margin-top: 62px;
    }
}

@media (max-width: 1024px) {
    .mv-who {
        padding-top: 90px;
        padding-bottom: 80px;
    }

    .mv-who__title {
        max-width: 760px;
        font-size: 40px;
        line-height: 1.06;
    }

    .mv-who__vector {
        left: calc(50% - 520px);
        top: 64px;
        width: 420px;
    }

    .mv-who__cards {
        grid-template-columns: repeat(2, minmax(320px, 1fr));
        max-width: 860px;
        margin-left: auto;
        margin-right: auto;
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .mv-who {
        padding: 80px 16px 70px;
    }

    .mv-who__title {
        max-width: 680px;
        font-size: 40px;
    }

    .mv-who__vector {
        left: calc(50% - 455px);
        top: 58px;
        width: 385px;
    }

    .mv-who__cards {
        grid-template-columns: 1fr;
        max-width: 452px;
        gap: 20px;
        margin-top: 48px;
    }
}

@media (max-width: 755px) {
    .mv-who__title br {
        display: none;
    }
}

@media (max-width: 450px) {
    .mv-who {
        padding: 0px 20px 60px;
    }

    .mv-who__title {
        max-width: 335px;
        font-size: 36px;
        line-height: 1.2;
    }

    .mv-who__vector {
        left: calc(50% - 280px);
        top: 36px;
        width: 367px;
    }

    .mv-who__cards {
        max-width: 335px;
        margin-top: 42px;
    }

    .mv-who-card {
        min-height: 210px;
        padding: 30px 22px 28px;
    }

    .mv-who-card__text {
        font-size: 18px;
    }
}
/* =========================
   WORK
   ========================= */

.mv-work {
    position: relative;
    max-width: 1440px;
    min-height: 1720px;
    margin: 0 auto;
    padding: 70px 20px 120px;
    overflow: hidden;
}

.mv-work__title {
    position: relative;
    z-index: 5;
    margin: 0 auto;
    color: var(--mv-black);
    font-size: 54px;
    font-weight: 400;
    line-height: 1.04;
    text-align: center;
    letter-spacing: -.02em;
}

.mv-work__title span {
    color: var(--mv-green);
}

.mv-work__line {
    position: absolute;
    z-index: 1;
    width: auto;
    max-width: none;
    pointer-events: none;
    left: 375px;
}

.mv-work__line--top {
    left: 520px;
    top: 96px;
    width: 610px;
}

.mv-work__line--middle {
    left: 360px;
    top: 470px;
    width: 650px;
}

.mv-work__line--bottom {
    left: 650px;
    top: 965px;
    width: 580px;
}

.mv-work__cards {
    position: static;
    display: block;
    margin: 0;
    z-index: 1;
}

.mv-work-card {
    position: absolute;
    z-index: 3;
    width: 453px;
    min-height: 250px;
    padding: 72px 32px 28px;
    border-radius: 8px;
    background: var(--mv-white);
    color: var(--mv-black);
}

.mv-work-card--1 {
    left: 136px;
    top: 190px;
}

.mv-work-card--2 {
    left: 840px;
    top: 270px;
}

.mv-work-card--3 {
    left: 608px;
    top: 685px;
}

.mv-work-card--4 {
    left: 254px;
    top: 1110px;
}

.mv-work-card--5 {
    left: 840px;
    top: 1250px;
}

.mv-work-card__num {
    position: absolute;
    left: 32px;
    top: -48px;
    width: 75px;
    height: auto;
    pointer-events: none;
}

.mv-work-card h3 {
    margin: 0 0 24px;
    color: var(--mv-black);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.15;
}

.mv-work-card p {
    margin: 0;
    color: var(--mv-gray);
    font-size: 18px;
    line-height: 1.22;
}

.mv-work__photo {
    position: absolute;
    z-index: 2;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.mv-work__photo--1 {
    right: 165px;
    top: 145px;
    width: 137px;
    height: 137px;
    transform: rotate(6deg);
}

.mv-work__photo--2 {
    left: 160px;
    top: 635px;
    width: 216px;
    height: 216px;
    transform: rotate(-8deg);
}

.mv-work__photo--3 {
    right: 115px;
    top: 875px;
    width: 177px;
    height: 177px;
    transform: rotate(6deg);
}

.mv-work__photo--4 {
    left: 380px;
    top: 1410px;
    width: 137px;
    height: 137px;
    transform: rotate(-7deg);
}

@media (max-width: 1400px) {
    .mv-work {
        min-height: 1640px;
        padding-top: 65px;
    }

    .mv-work__title {
        font-size: 48px;
    }

  .mv-work__line {
    position: absolute;
    z-index: 1;
    left: calc(50% - 500px);
    top: 98px;
    width: 799px;
    height: auto;
    max-width: none;
    pointer-events: none;
}

@media (max-width: 1400px) {
    .mv-work__line {
        left: calc(50% - 480px);
        top: 92px;
        width: 760px;
    }
}

@media (max-width: 1024px) {
    .mv-work__line {
        left: calc(50% - 405px);
        top: 88px;
        width: 700px;
    }
}

@media (max-width: 768px) {
    .mv-work__line {
        left: calc(50% - 360px);
        top: 82px;
        width: 620px;
    }
}

@media (max-width: 755px) {
    .mv-work__line {
        display: none;
    }
}
    .mv-work-card {
        width: 430px;
        min-height: 245px;
    }

    .mv-work-card--1 {
        left: 110px;
        top: 180px;
    }

    .mv-work-card--2 {
        left: 790px;
        top: 260px;
    }

    .mv-work-card--3 {
        left: 570px;
        top: 660px;
    }

    .mv-work-card--4 {
        left: 220px;
        top: 1065px;
    }

    .mv-work-card--5 {
        left: 790px;
        top: 1205px;
    }

    .mv-work__photo--1 {
        right: 145px;
        top: 135px;
    }

    .mv-work__photo--2 {
        left: 140px;
        top: 610px;
    }

    .mv-work__photo--3 {
        right: 95px;
        top: 850px;
    }

    .mv-work__photo--4 {
        left: 350px;
        top: 1365px;
    }
}

@media (max-width: 1024px) {
    .mv-work {
        min-height: 1700px;
        padding-top: 58px;
    }

    .mv-work__title {
        font-size: 42px;
    }

    
    .mv-work-card {
        width: 430px;
        min-height: 260px;
        padding: 68px 30px 28px;
    }

    .mv-work-card--1 {
        left: 16px;
        top: 180px;
    }

    .mv-work-card--2 {
        left: 575px;
        top: 285px;
    }

    .mv-work-card--3 {
        left: 295px;
        top: 665px;
    }

    .mv-work-card--4 {
        left: 16px;
        top: 1100px;
    }

    .mv-work-card--5 {
        left: 575px;
        top: 1245px;
    }

    .mv-work__photo--1 {
        right: 45px;
        top: 145px;
        width: 135px;
        height: 135px;
    }

    .mv-work__photo--2 {
        left: 16px;
        top: 590px;
        width: 180px;
        height: 180px;
    }

    .mv-work__photo--3 {
        right: 24px;
        top: 880px;
        width: 150px;
        height: 150px;
    }

    .mv-work__photo--4 {
        left: 160px;
        top: 1415px;
        width: 135px;
        height: 135px;
    }
}

@media (max-width: 768px) {
    .mv-work {
        min-height: 1800px;
        padding-top: 54px;
    }

    .mv-work__title {
        font-size: 40px;
    }

   
    .mv-work-card {
        width: 330px;
        min-height: 300px;
        padding: 60px 26px 26px;
    }

    .mv-work-card--1 {
        left: 16px;
        top: 180px;
    }

    .mv-work-card--2 {
        left: 430px;
        top: 285px;
    }

    .mv-work-card--3 {
        left: 220px;
        top: 690px;
    }

    .mv-work-card--4 {
        left: 16px;
        top: 1120px;
    }

    .mv-work-card--5 {
        left: 430px;
        top: 1290px;
    }

    .mv-work-card h3 {
        font-size: 28px;
    }

    .mv-work-card p {
        font-size: 18px;
    }

    .mv-work__photo--1 {
        right: 22px;
        top: 135px;
        width: 120px;
        height: 120px;
    }

    .mv-work__photo--2 {
        left: 16px;
        top: 610px;
        width: 150px;
        height: 150px;
    }

    .mv-work__photo--3 {
        right: 18px;
        top: 890px;
        width: 135px;
        height: 135px;
    }

    .mv-work__photo--4 {
        left: 175px;
        top: 1445px;
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 755px) {
    .mv-work {
        min-height: auto;
        padding: 56px 27px 70px;
    }

    .mv-work__title {
        max-width: 335px;
        font-size: 44px;
        line-height: .98;
    }

    .mv-work__line,
    .mv-work__photo {
        display: none;
    }

    .mv-work__cards {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 74px;
    }

    .mv-work-card,
    .mv-work-card--1,
    .mv-work-card--2,
    .mv-work-card--3,
    .mv-work-card--4,
    .mv-work-card--5 {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        min-height: 0;
        padding: 42px 28px 30px;
    }

    .mv-work-card__num {
        left: 28px;
        top: 22px;
        width: 52px;
    }

    .mv-work-card h3 {
        margin-left: 88px;
        margin-bottom: 58px;
        font-size: 30px;
        line-height: 1.05;
    }

    .mv-work-card p {
        font-size: 20px;
        line-height: 1.22;
    }
}
/* =========================
   PURPOSE
   ========================= */

.mv-purpose {
    position: relative;
    max-width: 1440px;
    min-height: 920px;
    margin: 0 auto;
    padding: 70px 20px 120px;
    overflow: hidden;
}

.mv-purpose__title {
    position: relative;
    z-index: 4;
    max-width: 820px;
    margin: 0 auto;
    color: var(--mv-black);
    font-size: 54px;
    font-weight: 400;
    line-height: 1.04;
    text-align: center;
    letter-spacing: -.02em;
}

.mv-purpose__title span {
    color: var(--mv-green);
}

.mv-purpose__line {
    position: absolute;
    z-index: 1;
    max-width: none;
    pointer-events: none;
}

.mv-purpose__line--top {
    left: calc(50% - 720px);
    top: 45px;
    width: 642px;
}

.mv-purpose__line--bottom {
    left: 50%;
    bottom: 0;
    width: 1440px;
    transform: translateX(-50%);
}

.mv-purpose__photo {
    position: absolute;
    z-index: 3;
    left: calc(50% - 560px);
    top: 210px;
    width: 494px;
    height: 536px;
    object-fit: cover;
    object-position: center;
    transform: rotate(-4.5deg);
}

.mv-purpose__text {
    position: absolute;
    z-index: 3;
    left: calc(50% + 80px);
    top: 250px;
    width: 460px;
    margin: 0;
    color: var(--mv-gray);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
}

.mv-purpose__stats {
    position: absolute;
    z-index: 3;
    left: calc(50% + 80px);
    top: 520px;
    display: flex;
    gap: 18px;
    margin: 0;
}

.mv-stat {
    position: relative;
    width: 218px;
    min-height: 127px;
    padding: 56px 16px 16px;
    border-radius: 8px;
    background: var(--mv-white);
    text-align: center;
}

.mv-stat__num {
    position: absolute;
    left: 50%;
    top: -38px;
    transform: translateX(-50%);
}

.mv-stat__num--wide {
    width: 222px;
}

.mv-stat__num--narrow {
    width: 96px;
}

.mv-stat span {
    display: block;
    color: var(--mv-black);
    font-size: 16px;
    line-height: 1.14;
}

.mv-purpose__btn {
    position: absolute;
    z-index: 3;
    left: calc(50% + 180px);
    top: 705px;
    min-width: 250px;
    margin: 0;
    background: var(--mv-green);
}

@media (max-width: 1400px) {
    .mv-purpose {
        min-height: 860px;
        padding-top: 64px;
    }

    .mv-purpose__title {
        font-size: 48px;
    }

    .mv-purpose__line--top {
        left: calc(50% - 640px);
        top: 32px;
        width: 570px;
    }

    .mv-purpose__line--bottom {
        width: 1280px;
    }

    .mv-purpose__photo {
        left: calc(50% - 535px);
        top: 195px;
        width: 455px;
        height: 495px;
    }

    .mv-purpose__text {
        left: calc(50% + 70px);
        top: 230px;
        width: 455px;
        font-size: 18px;
    }

    .mv-purpose__stats {
        left: calc(50% + 70px);
        top: 490px;
    }

    .mv-purpose__btn {
        left: calc(50% + 165px);
        top: 670px;
    }
}

@media (max-width: 1024px) {
    .mv-purpose {
        min-height: 960px;
        padding-top: 70px;
    }

    .mv-purpose__title {
        max-width: 760px;
        font-size: 44px;
    }

    .mv-purpose__line--top {
        left: calc(50% - 520px);
        top: 42px;
        width: 520px;
    }

    .mv-purpose__line--bottom {
        width: 1180px;
    }

    .mv-purpose__photo {
        left: 32px;
        top: 230px;
        width: 470px;
        height: 560px;
    }

    .mv-purpose__text {
        left: 560px;
        top: 240px;
        width: 390px;
        font-size: 20px;
    }

    .mv-purpose__stats {
        left: 560px;
        top: 600px;
        flex-direction: column;
        gap: 16px;
    }

    .mv-stat {
        width: 360px;
        min-height: 130px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 24px 26px;
        text-align: left;
    }

    .mv-stat__num {
        position: static;
        flex: 0 0 auto;
        transform: none;
        margin-right: 24px;
    }

    .mv-stat__num--wide {
        width: 165px;
    }

    .mv-stat__num--narrow {
        width: 95px;
    }

    .mv-stat span {
        font-size: 20px;
        line-height: 1.1;
    }

    .mv-purpose__btn {
        left: 650px;
        top: 835px;
        min-width: 300px;
        height: 58px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .mv-purpose {
        min-height: 1020px;
    }

    .mv-purpose__title {
        font-size: 42px;
    }

    .mv-purpose__photo {
        left: 22px;
        top: 220px;
        width: 420px;
        height: 535px;
    }

    .mv-purpose__text {
        left: 470px;
        top: 230px;
        width: 270px;
        font-size: 18px;
    }

    .mv-purpose__stats {
        left: 470px;
        top: 610px;
    }

    .mv-stat {
        width: 260px;
    }

    .mv-purpose__btn {
        left: 485px;
        top: 850px;
        min-width: 240px;
    }
}

@media (max-width: 755px) {
    .mv-purpose {
        min-height: auto;
        padding: 56px 37px 110px;
    }

    .mv-purpose__title {
        max-width: 335px;
        font-size: 44px;
        line-height: .98;
    }

    .mv-purpose__line--top {
        /*! display: none; */
        width: 464px;
        left: calc(50% - 450px);
        top: 27px;
    }

    .mv-purpose__line--bottom {
        left: 50%;
        bottom: -36px;
        width: 509px;
    }

    .mv-purpose__photo {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 535px;
        height: 590px;
        margin: 90px auto 0;
        transform: rotate(-3deg);
    }

    .mv-purpose__text {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 335px;
        margin: 86px auto 0;
        font-size: 20px;
        line-height: 1.24;
    }

    .mv-purpose__stats {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 335px;
        margin: 70px auto 0;
        flex-direction: column;
        gap: 20px;
    }

    .mv-stat {
        width: 100%;
        min-height: 130px;
        display: flex;
        align-items: center;
        padding: 26px 24px;
        text-align: left;
    }

    .mv-stat__num {
        position: static;
        transform: none;
        margin-right: 22px;
    }

    .mv-stat__num--wide {
        width: 175px;
    }

    .mv-stat__num--narrow {
        width: 86px;
    }

    .mv-stat span {
        font-size: 22px;
        line-height: 1.1;
    }

    .mv-purpose__btn {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 335px;
        height: 58px;
        margin: 52px auto 0;
        display: flex;
        font-size: 18px;
    }
}

@media (max-width: 450px) {
    .mv-purpose {
        padding-left: 37px;
        padding-right: 37px;
    }

    .mv-purpose__photo {
        width: 317px;
        max-width: none;
        height: 320px;
        margin-left: 13px;
    }
}
/* =========================
   PARTNERS
   ========================= */

.mv-partners {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 86px 0 86px;
    overflow: hidden;
    background: var(--mv-bg);
}

.mv-partners__title {
    position: relative;
    z-index: 3;
    margin: 0 auto;
    color: var(--mv-black);
    font-size: 54px;
    font-weight: 400;
    line-height: 1.04;
    text-align: center;
    letter-spacing: -.02em;
}

.mv-partners__viewport {
    width: 100%;
    margin-top: 86px;
    overflow: visible;
}

.mv-partners__track {
    display: flex;
    align-items: stretch;
    gap: 10px;
    width: max-content;
    transform: translateX(-150px);
}

.mv-partner-card {
    flex: 0 0 340px;
    width: 340px;
    height: 260px;
    padding: 44px 34px 32px;
    border-radius: 8px;
    background: var(--mv-white);
    text-align: center;
    overflow: hidden;
}

.mv-partner-card__logo {
    display: block;
    width: auto;
    height: 92px;
    max-width: 178px;
    margin: 0 auto 34px;
    object-fit: contain;
}

.mv-partner-card__logo--pirogov { max-width: 190px; }
.mv-partner-card__logo--nmic { max-width: 128px; }
.mv-partner-card__logo--rdkb { max-width: 142px; }
.mv-partner-card__logo--president { max-width: 128px; }
.mv-partner-card__logo--voyno { max-width: 148px; }

.mv-partner-card__name {
    margin: 0;
    color: var(--mv-gray);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.14;
}

/* =========================
   EXPERTS
   ========================= */

.mv-experts {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 76px 20px 82px;
    overflow: hidden;
    background: var(--mv-bg);
}

.mv-experts__title {
    position: relative;
    z-index: 3;
    margin: 0 auto;
    color: var(--mv-black);
    font-size: 54px;
    font-weight: 400;
    line-height: 1.04;
    text-align: center;
    letter-spacing: -.02em;
}

.mv-experts__cards {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 64px auto 0;
}

.mv-expert-card {
    position: relative;
    min-height: 450px;
    padding: 31px 30px 0;
    border-radius: 8px;
    background: var(--mv-white);
    overflow: hidden;
}

.mv-expert-card__name {
    position: relative;
    z-index: 3;
    margin: 0 0 10px;
    color: var(--mv-black);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.12;
}

.mv-expert-card__position,
.mv-expert-card__mail {
    position: relative;
    z-index: 3;
    margin: 0;
    color: #A0A0A0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.18;
}

.mv-expert-card__mail {
    display: inline-block;
    margin-top: 16px;
    color: var(--mv-black);
}

.mv-expert-card__photo-wrap {
    position: absolute;
    left: -8px;
    right: 18px;
    bottom: -28px;
    height: 285px;
    transform: rotate(-4deg);
    overflow: hidden;
    background: #EEF1F2;
}

.mv-expert-card__photo {
    display: block;
    width: 96%;
    height: 129%;
    object-fit: cover;
    object-position: center top;
    transform: rotate(4deg) scale(1.08);
}

.mv-expert-card__dot {
    position: absolute;
    z-index: 4;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--mv-green);
    pointer-events: none;
}

.mv-expert-card__dot--top { left: 49%; top: 188px; }
.mv-expert-card__dot--corner { right: 18px; top: 230px; }
.mv-expert-card__dot--right { right: 14px; top: 337px; }

.mv-experts__more {
    display: flex;
    width: 214px;
    min-width: 214px;
    margin: 40px auto 0;
    background: var(--mv-green);
}

/* =========================
   DONATE STANDARD
   ========================= */

.mv-program-donate-standard {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px 82px;
    background: var(--mv-bg);
    overflow: visible;
    /*! margin-left: 237px; */
    left: 239px;
}

.mv-program-donate-standard > .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    border-radius: 8px;
    background: var(--mv-green);
    overflow: visible;
}

.mv-program-donate-standard .section-title,
.mv-program-donate-standard h2,
.mv-program-donate-standard .form-donate__title {
    color: var(--mv-white);
    font-size: 54px;
    font-weight: 400;
    line-height: 1.04;
    text-align: center;
}

.mv-program-donate-standard .form-donate,
.mv-program-donate-standard .form-donate--inline {
    position: relative !important;
    width: 100% !important;
    max-width: 1400px !important;
    min-height: 896px;
    margin: 0 auto !important;
    padding: 50px 40px 40px !important;
    background: var(--mv-green) !important;
    border-radius: 8px !important;
    color: var(--mv-white);
    overflow: visible !important;
    /*! padding-right: 500px; */
}

.mv-program-donate-standard .form-donate__content,
.mv-program-donate-standard .form-donate__inner,
.mv-program-donate-standard form {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

.mv-program-donate-standard input[type="text"],
.mv-program-donate-standard input[type="email"],
.mv-program-donate-standard input[type="tel"],
.mv-program-donate-standard input[type="number"],
.mv-program-donate-standard textarea {
    min-height: 50px;
    border: 0;
    border-radius: 5px;
    background: var(--mv-white);
    color: var(--mv-black);
    font-size: 16px;
}

.mv-program-donate-standard button[type="submit"],
.mv-program-donate-standard .form-donate__submit,
.mv-program-donate-standard .btn-donate {
    height: 58px;
    border-radius: 999px;
    background: var(--mv-orange);
    color: var(--mv-white);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

/* =========================
   NEWS
   ========================= */

.mv-news {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 74px 60px 80px;
    overflow: hidden;
    background: var(--mv-bg);
}

.mv-news__title {
    margin: 0 auto;
    color: var(--mv-black);
    font-size: 54px;
    font-weight: 400;
    line-height: 1.04;
    text-align: center;
    letter-spacing: -.02em;
}

.mv-news__slider {
    position: relative;
    margin-top: 62px;
}

.mv-news__viewport {
    overflow: hidden;
}

.mv-news__track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.mv-news-card {
    flex: 0 0 414px;
    width: 414px;
    min-height: 392px;
    border-radius: 8px;
    background: var(--mv-white);
    overflow: hidden;
}

.mv-news-card__link {
    display: block;
    height: 100%;
}

.mv-news-card__image {
    position: relative;
    display: block;
    height: 240px;
    margin: 8px 8px 0;
    border-radius: 3px;
    overflow: hidden;
    background: #EDEDED;
}

.mv-news-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mv-news-card__tag {
    position: absolute;
    left: 12px;
    top: 12px;
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--mv-white);
    color: var(--mv-gray);
    font-size: 10px;
    line-height: 1;
    text-transform: uppercase;
}

.mv-news-card__tag::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-right: 5px;
    border-radius: 50%;
    background: var(--mv-green);
}

.mv-news-card__body {
    padding: 20px 30px 28px;
}

.mv-news-card__title {
    margin: 0;
    color: var(--mv-black);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.18;
}

.mv-news-card__date {
    display: block;
    margin-top: 26px;
    color: #A0A0A0;
    font-size: 14px;
    line-height: 1.2;
}

.mv-news__arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transform: translateY(-50%);
}

.mv-news__arrow--prev { left: -58px; }
.mv-news__arrow--next { right: -58px; }

.mv-news__btn {
    display: flex;
    width: 214px;
    min-width: 214px;
    margin: 44px auto 0;
    background: var(--mv-green);
}

.mv-news__empty {
    max-width: 900px;
    margin: 50px auto 0;
    padding: 30px;
    border-radius: 8px;
    background: var(--mv-white);
    color: var(--mv-gray);
    text-align: center;
}

/* =========================
   SUBSCRIBE
   ========================= */

.mv-subscribe {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px 80px;
    background: var(--mv-bg);
}

.mv-subscribe__panel {
    display: grid;
    grid-template-columns: 1fr 532px;
    column-gap: 60px;
    width: 100%;
    max-width: 1400px;
    min-height: 190px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 8px;
    background: var(--mv-green-dark);
    color: var(--mv-white);
}

.mv-subscribe__title {
    margin: 0;
    color: var(--mv-white);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
}

.mv-subscribe__form {
    align-self: start;
}

.mv-subscribe__row {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 8px;
}

.mv-subscribe__input {
    width: 100%;
    height: 40px;
    padding: 0 18px;
    border: 0;
    border-radius: 5px;
    background: var(--mv-white);
    color: var(--mv-black);
    font-size: 14px;
}

.mv-subscribe__button {
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: var(--mv-orange);
    color: var(--mv-white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.mv-subscribe__check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
    color: rgba(255,255,255,.74);
    font-size: 12px;
    line-height: 1.22;
}

.mv-subscribe__check--mailing {
    margin-top: 8px;
}

.mv-subscribe__check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.mv-subscribe__box {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 3px;
}

.mv-subscribe__check input:checked + .mv-subscribe__box {
    background: var(--mv-green);
    box-shadow: inset 0 0 0 3px var(--mv-green-dark);
}

.mv-subscribe__check-text a {
    text-decoration: underline;
}

/* =========================
   FAQ
   ========================= */

.mv-faq {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px 80px;
    background: var(--mv-bg);
    left: 239px;
}

.mv-faq__panel {
    display: grid;
    grid-template-columns: minmax(0, 768px) 1fr;
    gap: 20px;
    max-width: 1400px;
    min-height: 832px;
    margin: 0 auto;
    padding: 58px 40px 78px;
    border-radius: 8px;
    background: var(--mv-green);
}

.mv-faq__title {
    grid-column: 1 / -1;
    margin: 0 0 46px;
    color: var(--mv-white);
    font-size: 54px;
    font-weight: 400;
    line-height: 1.04;
    text-align: center;
}

.mv-faq__component {
    grid-column: 1 / -1;
    margin: 0;
}

.mv-faq__component .form-faq,
.mv-faq__component form {
    width: 100%;
}

.mv-faq__component input[type="text"],
.mv-faq__component input[type="email"],
.mv-faq__component textarea {
    border: 0;
    border-radius: 5px;
    background: var(--mv-white);
}

.mv-faq__component button[type="submit"],
.mv-faq__component .form-faq__submit {
    border-radius: 999px;
    background: var(--mv-orange);
    color: var(--mv-white);
    text-transform: uppercase;
}

/* =========================
   OTHER PROGRAMS
   ========================= */

.mv-other-programs {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 70px 20px 90px;
    background: var(--mv-bg);
}

.mv-other-programs__title {
    margin: 0 auto;
    color: var(--mv-black);
    font-size: 54px;
    font-weight: 400;
    line-height: 1.04;
    text-align: center;
    letter-spacing: -.02em;
}

.mv-other-programs__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1180px;
    margin: 52px auto 0;
}

.mv-other-program-card {
    display: flex;
    align-items: center;
    min-height: 220px;
    padding: 30px;
    border-radius: 10px;
    background: var(--mv-white);
}

.mv-other-program-card__content {
    flex: 1 1 auto;
}

.mv-other-program-card__title {
    margin: 0 0 14px;
    color: var(--mv-black);
    font-size: 28px;
    line-height: 1.1;
    font-weight: 400;
}

.mv-other-program-card__text {
    margin: 0 0 24px;
    color: var(--mv-gray);
    font-size: 18px;
    line-height: 1.25;
}

.mv-other-program-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 40px;
    padding: 0 28px;
    border-radius: 999px;
    background: var(--mv-green);
    color: var(--mv-white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.mv-other-program-card__icon {
    flex: 0 0 120px;
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-left: 30px;
}

/* =========================
   REMAINING SCREENS / ADAPTIVE
   ========================= */

@media (max-width: 1400px) {
    .mv-partners__title,
    .mv-experts__title,
    .mv-news__title,
    .mv-faq__title,
    .mv-other-programs__title {
        font-size: 50px;
    }

    .mv-partners__track {
        transform: translateX(-130px);
    }

    .mv-partner-card {
        flex-basis: 330px;
        width: 330px;
        height: 252px;
    }

    .mv-expert-card {
        min-height: 430px;
        padding-left: 26px;
        padding-right: 26px;
    }

    .mv-expert-card__name {
        font-size: 24px;
    }

    .mv-news-card {
        flex-basis: 400px;
        width: 400px;
    }
}

@media (max-width: 1024px) {
    .mv-partners,
    .mv-experts,
    .mv-news,
    .mv-other-programs {
        padding-left: 20px;
        padding-right: 20px;
    }

    .mv-partners__track {
        transform: translateX(-190px);
    }

    .mv-experts__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 700px;
    }

    .mv-program-donate-standard .form-donate,
    .mv-program-donate-standard .form-donate--inline {
        min-height: auto;
    }

    .mv-news {
        padding-left: 48px;
        padding-right: 48px;
    }

    .mv-news-card {
        flex-basis: 360px;
        width: 360px;
    }

    .mv-news__arrow--prev { left: -44px; }
    .mv-news__arrow--next { right: -44px; }

    .mv-subscribe__panel {
        grid-template-columns: 1fr;
        row-gap: 28px;
    }

    .mv-faq__panel {
        min-height: auto;
        padding-left: 28px;
        padding-right: 28px;
    }
}

@media (max-width: 768px) {
    .mv-partners__track {
        transform: translateX(-260px);
    }

    .mv-experts__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .mv-expert-card {
        min-height: 410px;
    }

    .mv-news-card {
        flex-basis: 320px;
        width: 320px;
    }

    .mv-news-card__image {
        height: 210px;
    }

    .mv-other-programs__cards {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
}

@media (max-width: 755px) {
    .mv-partners {
        padding: 64px 0 80px;
    }

    .mv-partners__title,
    .mv-experts__title,
    .mv-news__title,
    .mv-faq__title,
    .mv-other-programs__title {
        font-size: 44px;
        line-height: 1;
    }

    .mv-partners__viewport {
        margin-top: 64px;
    }

    .mv-partners__track {
        transform: translateX(calc(50vw - 243px));
    }

    .mv-partner-card {
        flex: 0 0 486px;
        width: 486px;
        height: 344px;
        padding: 50px 36px 38px;
    }

    .mv-partner-card__logo {
        height: 110px;
        max-width: 190px;
        margin-bottom: 44px;
    }

    .mv-partner-card__name {
        font-size: 27px;
        line-height: 1.1;
    }

    .mv-experts {
        padding: 64px 0 72px;
    }

    .mv-experts__cards {
        display: flex;
        gap: 18px;
        width: max-content;
        margin-top: 52px;
        transform: translateX(calc(50vw - 170px));
    }

    .mv-expert-card {
        flex: 0 0 335px;
        width: 335px;
        min-height: 450px;
    }

    .mv-experts__more {
        margin-top: 38px;
    }

    .mv-program-donate-standard {
        padding: 0 20px 70px;
    }

    .mv-program-donate-standard > .container,
    .mv-program-donate-standard .form-donate,
    .mv-program-donate-standard .form-donate--inline {
        border-radius: 8px;
    }

    .mv-program-donate-standard .form-donate,
    .mv-program-donate-standard .form-donate--inline {
        padding: 44px 20px 32px !important;
    }

    .mv-program-donate-standard .section-title,
    .mv-program-donate-standard h2,
    .mv-program-donate-standard .form-donate__title {
        font-size: 44px;
        line-height: 1;
    }

    .mv-news {
        padding: 64px 20px 70px;
    }

    .mv-news__slider {
        margin-top: 52px;
    }

    .mv-news__viewport {
        overflow: visible;
    }

    .mv-news__track {
        transform: translateX(calc(50vw - 167px));
    }

    .mv-news-card {
        flex: 0 0 335px;
        width: 335px;
        min-height: 380px;
    }

    .mv-news-card__image {
        height: 210px;
    }

    .mv-news__arrow {
        display: none;
    }

    .mv-subscribe {
        padding: 0 20px 70px;
    }

    .mv-subscribe__panel {
        display: block;
        min-height: auto;
        padding: 30px 20px;
    }

    .mv-subscribe__title {
        font-size: 25px;
    }

    .mv-subscribe__row {
        grid-template-columns: 1fr;
        margin-top: 26px;
    }

    .mv-subscribe__button {
        height: 50px;
    }

    .mv-faq {
        padding: 0 20px 70px;
    }

    .mv-faq__panel {
        display: block;
        padding: 44px 20px 42px;
    }

    .mv-faq__title {
        margin-bottom: 34px;
    }

    .mv-other-programs {
        padding: 56px 20px 70px;
    }

    .mv-other-programs__cards {
        margin-top: 38px;
    }

    .mv-other-program-card {
        align-items: flex-start;
        min-height: 0;
        padding: 24px;
    }

    .mv-other-program-card__icon {
        width: 84px;
        height: 84px;
        flex-basis: 84px;
        margin-left: 18px;
    }

    .mv-other-program-card__title {
        font-size: 24px;
    }

    .mv-other-program-card__text {
        font-size: 16px;
    }
}

@media (max-width: 450px) {
    .mv-partners__track {
        transform: translateX(calc(50vw - 243px));
    }

    .mv-experts__cards {
        transform: translateX(calc(50vw - 167px));
    }

    .mv-news__track {
        transform: translateX(0);
    }

    .mv-news__viewport {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .mv-news__viewport::-webkit-scrollbar {
        display: none;
    }
}
@media (max-width: 1024px) {
    .mv-program-donate-standard,
    .mv-faq,
    .mv-subscribe {
        width: calc(100% - 32px);
        margin-top: 70px;
    }

    .mv-program-donate-standard,
    .mv-faq {
        padding: 52px 32px 64px;
    }

    .mv-subscribe__panel {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 755px) {
    .mv-program-donate-standard,
    .mv-faq,
    .mv-subscribe {
        width: calc(100% - 24px);
        margin-top: 56px;
    }

    .mv-program-donate-standard,
    .mv-faq {
        padding: 42px 16px 48px;
        left: 0px;
    }

    .mv-program-donate-standard h2,
    .mv-program-donate-standard .form-title,
    .mv-program-donate-standard .section-title,
    .mv-faq__title {
        margin-bottom: 36px;
        font-size: 36px;
    }

    .mv-subscribe__panel {
        padding: 32px 20px;
    }

    .mv-subscribe__title {
        font-size: 26px;
    }

    .mv-subscribe__row {
        flex-direction: column;
    }

    .mv-subscribe__button {
        flex-basis: 44px;
        width: 100%;
    }
}
/* =========================
   OTHER PROGRAMS
   ========================= */

.mv-other-programs {
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(70px, 8vw, 110px) 20px;
}

.mv-other-programs__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.mv-other-program-card {
    display: flex;
    align-items: center;
    min-height: 220px;
    padding: 30px;
    border-radius: 10px;
    background: var(--mv-white);
}

.mv-other-program-card__icon {
    flex: 0 0 120px;
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-left: 30px;
}

.mv-other-program-card__content {
    flex: 1 1 auto;
}

.mv-other-program-card__title {
    margin: 0 0 14px;
    color: var(--mv-black);
    font-size: 28px;
    line-height: 1.1;
    font-weight: 400;
}

.mv-other-program-card__text {
    margin: 0 0 24px;
    color: var(--mv-gray);
    font-size: 18px;
    line-height: 1.25;
}

.mv-other-program-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 40px;
    padding: 0 28px;
    border-radius: 999px;
    background: var(--mv-green);
    color: var(--mv-white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 755px) {
    .mv-other-programs {
        padding: 56px 20px 90px;
    }

    .mv-other-programs__title {
        margin: 0 0 40px;
        font-size: 44px;
        line-height: 1;
        text-align: left;
    }

    .mv-other-programs__cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 0;
    }

    .mv-other-program-card {
        display: flex;
        flex-direction: column;
        min-height: 0;
        padding: 34px 32px 36px;
        overflow: hidden;
        border-radius: 12px;
    }

    .mv-other-program-card__content {
        position: relative;
        z-index: 2;
    }

    .mv-other-program-card__title {
        margin: 0 0 22px;
        font-size: 38px;
        line-height: 1.08;
    }

    .mv-other-program-card__text {
        margin: 0;
        font-size: 28px;
        line-height: 1.18;
    }

    .mv-other-program-card__icon {
        align-self: flex-end;
        width: 210px;
        height: 160px;
        margin: 10px -35px 8px 0;
        object-fit: contain;
    }

    .mv-other-program-card__btn {
        width: 100%;
        max-width: 280px;
        height: 58px;
        margin-top: 18px;
        font-size: 18px;
    }
}

@media (max-width: 450px) {
    .mv-other-programs {
        padding-left: 20px;
        padding-right: 20px;
    }

    .mv-other-program-card {
        padding: 32px 40px 34px;
    }

    .mv-other-program-card__title {
        font-size: 36px;
    }

    .mv-other-program-card__text {
        font-size: 26px;
    }
}

/* =========================
   HELP
   ========================= */

.mv-help {
    position: relative;
    max-width: 1440px;
    min-height: 560px;
    margin: 0 auto;
    padding: 55px 20px 80px;
    overflow: hidden;
    background: var(--mv-bg);
}

.mv-help__line {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 80px;
    width: 1440px;
    height: auto;
    max-width: none;
    transform: translateX(-50%);
    pointer-events: none;
}

.mv-help__title {
    position: relative;
    z-index: 3;
    max-width: 520px;
    margin: 0 auto 34px;
    color: var(--mv-black);
    font-size: 54px;
    font-weight: 400;
    line-height: 1.04;
    text-align: center;
    letter-spacing: -.02em;
}

.mv-help__title span {
    color: var(--mv-green);
}

.mv-help__lead {
    position: relative;
    z-index: 3;
    max-width: 560px;
    margin: 0 auto 42px;
    color: var(--mv-gray);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
}

.mv-help__card {
    position: absolute;
    z-index: 3;
    left: calc(50% - 500px);
    top: 230px;
    width: 420px;
    min-height: 170px;
    padding: 32px;
    border-radius: 8px;
    background: var(--mv-white);
}

.mv-help__card p {
    margin: 0;
    color: var(--mv-gray);
    font-size: 18px;
    line-height: 1.25;
}

.mv-help__photo {
    position: absolute;
    z-index: 3;
    right: calc(50% - 500px);
    top: 190px;
    width: 330px;
    height: 330px;
    object-fit: cover;
    object-position: center;
    transform: rotate(5deg);
}

.mv-help__dot {
    position: absolute;
    z-index: 4;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--mv-green-dark);
    pointer-events: none;
}

.mv-help__dot--1 {
    left: calc(50% - 130px);
    top: 205px;
}

.mv-help__dot--2 {
    left: calc(50% + 140px);
    top: 380px;
}

.mv-help__dot--3 {
    left: calc(50% + 360px);
    top: 300px;
}

@media (max-width: 1400px) {
    .mv-help {
        min-height: 520px;
    }

    .mv-help__title {
        font-size: 48px;
    }

    .mv-help__line {
        width: 1280px;
    }

    .mv-help__card {
        left: calc(50% - 455px);
        top: 220px;
        width: 390px;
    }

    .mv-help__photo {
        right: calc(50% - 455px);
        top: 190px;
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 1024px) {
    .mv-help {
        min-height: 560px;
        padding-top: 60px;
    }

    .mv-help__title {
        font-size: 44px;
    }

    .mv-help__line {
        width: 1120px;
    }

    .mv-help__card {
        left: 60px;
        top: 245px;
        width: 360px;
    }

    .mv-help__photo {
        right: 70px;
        top: 215px;
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .mv-help {
        min-height: 560px;
        padding: 56px 16px 80px;
    }

    .mv-help__title {
        font-size: 38px;
    }

    .mv-help__line {
        width: 930px;
    }

    .mv-help__lead {
        max-width: 500px;
        font-size: 18px;
    }

    .mv-help__card {
        left: 36px;
        top: 240px;
        width: 320px;
    }

    .mv-help__photo {
        right: 36px;
        top: 230px;
        width: 260px;
        height: 260px;
    }
}

@media (max-width: 755px) {
    .mv-help {
        min-height: auto;
        padding: 56px 37px 80px;
    }

    .mv-help__line {
        left: 50%;
        top: 40px;
        width: 760px;
    }

    .mv-help__title {
        max-width: 335px;
        margin: 0 auto;
        font-size: 36px;
        line-height: 1.06;
    }

    .mv-help__lead {
        max-width: 335px;
        margin: 36px auto 0;
        font-size: 18px;
    }

    .mv-help__card,
    .mv-help__photo {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
    }

    .mv-help__card {
        width: 100%;
        max-width: 335px;
        margin: 50px auto 0;
        padding: 30px 28px;
    }

    .mv-help__photo {
        width: 270px;
        height: 270px;
        margin: 40px auto 0;
    }

    .mv-help__dot {
        display: none;
    }
}