*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    margin: 0;
    font-family: "Golos Text", sans-serif;
    color: #1d1d1f;
    background-color: #f7f7f7;
}

img {
    display: block;
    max-width: 100%;
}

iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

button,
input,
textarea {
    font: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

.main-section {
    overflow: hidden;
}
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    /*padding: 0 20px;*/
}
.family-hero {
    min-height: 700px;
    background:
            url("../img/hero-bg.png") center / cover no-repeat;
    overflow: hidden;
}
.family-hero__inner {
    min-height: 700px;
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    align-items: center;
    gap: 48px;
    padding: 50px 0;
}

.family-hero__content {
    width: 100%;
}

.family-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 34px;
}

.family-hero__badges span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 7px 16px;
    border: 1px solid #FFCD00;
    border-radius: 999px;
    /*color: #0040FF;*/
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    background: rgba(255, 196, 0, 0.35);
    white-space: nowrap;

    background: var(--Linear, linear-gradient(260deg, #FFCD00 -3.77%, #FFA800 104.83%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.family-hero__badges span svg {
    margin-right: 6px;
    width: 16px;
    height: 16px;
}

.family-hero__title {
    width: 590px;
    max-width: 100%;
    margin: 0 0 28px;
}

.family-hero__title img {
    display: block;
    width: 100%;
    margin-top: 50px;
    height: auto;
}

.family-hero__subtitle {
    margin: 0 0 30px;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 600;
    color: #fff;
}

.family-hero__form {
    width: 100%;
    max-width: 490px;
    padding: 24px;
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.30);

    backdrop-filter: blur(3px);
}

.family-hero__form input {
    width: 100%;
    height: 43px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.55);
    padding: 0 18px;
    font-family: "Golos Text", sans-serif;
    font-size: 14px;
    color: #171717;
    outline: none;
}

.family-hero__form input::placeholder {
    color: rgba(23, 23, 23, 0.75);
}

.family-hero__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 8px;
}

.family-hero__check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 12px;
    font-size: 10px;
    line-height: 1.2;
    color: #171717;
    cursor: pointer;
}

.family-hero__check input {
    width: 14px;
    height: 14px;
    padding: 0;
    border-radius: 4px;
    flex: 0 0 14px;
}

.family-hero__form button {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 14px;
    background: var(--Linear, linear-gradient(260deg, #FFCD00 -3.77%, #FFA800 104.83%));
    color: #222;
    font-family: "Golos Text", sans-serif;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(0, 38, 150, 0.25);
}

.family-hero__image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.family-hero__image img {

    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-60%, -50%) scale(1.5);
    /*max-width: 610px;*/

}

@media (max-width: 992px) {


    .family-hero__image {

        position: relative;
        left: 0px;
    }

    .family-hero__badges {
        justify-content: center;
    }

    .container {
        padding: 0 20px;
    }
    .family-hero__inner {
        min-height: auto;
        display: flex;
        flex-direction: column-reverse;
        gap: 28px;
        padding: 32px 0 40px;
    }

    .family-hero__image img {
        position: relative;
        top: 0;
        left: 0;
        transform: inherit;
    }
    .family-hero__title img {
        display: block;
        width: 83%;
        margin: 30px auto;
        height: auto;
    }
    .family-hero__image {
        order: -1;
    }

    .family-hero__image img {
        max-width: 420px;
    }

    .family-hero__badges {
        margin-bottom: 28px;
    }

    .family-hero__subtitle {
        font-size: 22px;
    }

    .family-hero__form {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .family-hero__inner {
        padding: 28px 0 36px;
    }

    .family-hero__badges span {
        font-size: 12px;
        padding: 7px 12px;
    }

    .family-hero__title {
        margin-bottom: 22px;
    }

    .family-hero__subtitle {
        font-size: 22px;
        text-align: center;
    }
    .family-hero__subtitle br {
        display: none;
    }

    .family-hero__form {
        padding: 18px;
        border-radius: 18px;
    }

    .family-hero__form-row {
        grid-template-columns: 1fr;
    }

    .family-hero__form button {
        font-size: 18px;
    }

    .family-hero__image img {
        max-width: 100%;
    }
}


.family-about {
    position: relative;
    padding: 100px 0 ;
    padding-bottom: 50px;
    background: #F5F5F5;
    /*overflow: hidden;*/
}

.family-about .container {
    position: relative;
    z-index: 2;
}


.family-about__decor {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.family-about__decor--left {
    left: -574px;
    bottom: -700px;

}

.family-about__decor--right {
    right: -400px;
    bottom: -600px;

}

.family-about__top {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: center;

    margin: 0 auto;
}

.family-about__photo {
    /*width: 220px;*/
}

.family-about__photo img {
    display: block;
    width: 100%;
    height: auto;
}

.family-about__text h2 {
    margin: 0 0 18px;
    font-size: 40px;
    line-height: 1.08;
    font-weight: 700;
    color: #171717;
}

.family-about__text p {

    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.32;
    font-weight: 400;
    color: #171717;
}

.family-about__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.family-about__tags--blue {
    max-width: 720px;
    margin-top: 22px;
}

.family-about__tags--blue span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 8px 16px;
    border: 1.5px solid #0040FF;
    border-radius: 999px;

    /*color: #0047ff;*/
    font-size: 15px;
    font-weight: 500;
    line-height: 1;

    background: linear-gradient(72deg, #0040FF 0%, #002699 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.family-about__bottom {
    display: grid;
    grid-template-columns: 380px 34px 1fr;
    gap: 50px;
    align-items: center;

    margin: 100px auto;
    margin-bottom: 0;
}

.family-about__bottom h3 {
    margin: 0;
    font-size: 40px;
    line-height: 1.05;
    font-weight: 700;
    color: #171717;
}

.family-about__brace {
    color: #0047ff;
    font-size: 138px;
    line-height: 0.8;
    font-weight: 300;
    transform: scaleX(0.60) translateY(-11px);
}

.family-about__tags--white {
    gap: 12px 14px;
}

.family-about__tags--white span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 8px 18px;
    border-radius: 999px;
    background: #fff;
    color: #171717;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.1;
}

.family-about__tags--white b {
    color: #ffc400;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}

@media (max-width: 992px) {
    .family-about {
        padding: 48px 0;
    }

    .family-about__top {
        grid-template-columns: 180px 1fr;
        gap: 40px;
        margin-bottom: 54px;
    }

    .family-about__photo {
        width: 180px;
        display: none;
    }

    .family-about__bottom {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .family-about__brace {
        display: none;
    }

    .family-about__decor--left {
        width: 230px;
        opacity: 0.7;
    }

    .family-about__decor--right {
        width: 260px;
        opacity: 0.7;
    }
    .family-about__text {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .family-about {
        padding: 40px 0;
        padding-bottom: 0;
    }

    .family-about__top {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 48px;
    }

    .family-about__photo {
        width: 190px;
        margin: 0 auto;
    }

    .family-about__text h2 {
        font-size: 32px;
    }

    .family-about__text p {
        font-size: 14px;
    }


    .family-about__bottom h3 {
        font-size: 27px;
    }

    /*.family-about__tags--blue span,*/
    /*.family-about__tags--white span {*/
    /*    width: 100%;*/
    /*}*/

    .family-about__tags--blue span {
        display: flex;
        font-size: 11px;
        padding: 8px 6px;
    }
    .family-about__tags {
        justify-content: center;
        gap: 5px;
    }
}

.family-headliner {
    padding: 50px 0;
    position: relative;
    z-index: 999;


}

.family-headliner__inner {
    display: grid;
    grid-template-columns: 285px 415px 1fr;
    align-items: center;
    gap: 36px;
}

.family-headliner__left h2 {
    margin: 0 0 36px;
    font-size: 31px;
    line-height: 1.05;
    font-weight: 600;
    color: #171717;
}

.family-headliner__fest-logo {
    display: block;
    width: 230px;
    max-width: 100%;
    height: auto;
}

.family-headliner__photo {
    display: flex;
    justify-content: center;
}

.family-headliner__photo img {
    display: block;
    width: 100%;
    max-width: 360px;
    height: auto;
}

.family-headliner__right {
    padding-top: 14px;
}

.family-headliner__name {
    display: block;
    width: 470px;
    max-width: 100%;
    height: auto;
    margin-bottom: 34px;
}

.family-headliner__right p {
    margin: 0;
    max-width: 540px;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 500;
    color: #171717;
}

@media (max-width: 992px) {
    .family-headliner {
        padding: 50px 0;
    }

    .family-headliner__inner {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .family-headliner__left h2 {
        margin-bottom: 24px;
        font-size: 28px;
    }

    .family-headliner__fest-logo {
        margin: 0 auto;
    }

    .family-headliner__photo img {
        max-width: 320px;
    }

    .family-headliner__right {
        padding-top: 0;
    }

    .family-headliner__name {
        width: 420px;
        margin: 0 auto 24px;
    }

    .family-headliner__right p {
        margin: 0 auto;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .family-headliner__photo img {
        max-width: 280px;
    }

    .family-headliner__name {
        width: 100%;
    }

    .family-headliner__right p br {
        display: none;
    }
}

.family-map {
    padding: 70px 0 90px;

}

.family-map__notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 92px;
}

.family-map__notice-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 50%;
    background: #0047ff;
    color: #ffc400;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
}

.family-map__notice p {
    margin: 0;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 600;
    color: #171717;
}

.family-map__inner {
    display: grid;
    grid-template-columns: 460px 130px 1fr;
    align-items: center;
    gap: 28px;
}

.family-map__left img {
    display: block;
    width: 100%;
    max-width: 460px;
    height: auto;
}

.family-map__route img {
    display: block;
    width: 100%;
    max-width: 120px;
    height: auto;
}

.family-map__content {
    max-width: 520px;
}

.family-map__content h2 {
    margin: 0 0 22px;
    font-size: 32px;
    line-height: 1.08;
    font-weight: 600;
    color: #171717;
}

.family-map__content p,
.family-map__content li {
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
    color: #171717;
}

.family-map__content p {
    margin: 0 0 10px;
    font-weight: 500;
}

.family-map__content ul {
    margin: 0;
    padding-left: 22px;
}

@media (max-width: 992px) {
    .family-map {
        padding: 50px 0;
    }

    .family-map__notice {
        justify-content: flex-start;
        margin-bottom: 50px;
    }

    .family-map__inner {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .family-map__left img {
        max-width: 420px;
        margin: 0 auto;
    }

    .family-map__route {
        display: none;
    }

    .family-map__content {
        max-width: 620px;
        margin: 0 auto;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .family-map__notice {
        align-items: flex-start;
        gap: 14px;
    }

    .family-map__notice-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 28px;
    }

    .family-map__notice p {
        font-size: 16px;
    }

    .family-map__content h2 {
        font-size: 27px;
    }

    .family-map__content p,
    .family-map__content li {
        font-size: 15px;
    }
}
.family-register {
    background-image: url("../img/bg.png");
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    overflow: hidden;

}

.family-register__inner {
    min-height: 430px;
    display: grid;
    grid-template-columns: 740px 1fr;
    align-items: center;
    gap: 40px;
    padding: 50px 0;
}

.family-register__content {
    position: relative;
    z-index: 2;


}


.family-register__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 50px;
}
.family-register__badges span svg {
    margin-right: 6px;
    width: 16px;
    height: 16px;
}
.family-register__badges span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 7px 14px;
    border: 1px solid #ffc400;
    border-radius: 999px;
    /*color: #ffc400;*/
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;

    background: var(--Linear, linear-gradient(260deg, #FFCD00 -3.77%, #FFA800 104.83%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.family-register__heading {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 50px;
}

.family-register__heading img {
    display: block;
    width: 180px;
    height: auto;
}

.family-register__heading span {
    width: 5px;
    height: 74px;
    background: var(--Linear, linear-gradient(260deg, #FFCD00 -3.77%, #FFA800 104.83%));
    transform: skewX(-18deg);
}

.family-register__heading h2 {
    margin: 0;
    /*color: #ffc400;*/
    font-size: 36px;
    line-height: 1.05;
    font-weight: 600;
    background: var(--Linear, linear-gradient(260deg, #FFCD00 -3.77%, #FFA800 104.83%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;



}

.family-register__form {
    width: 100%;
    max-width: 450px;
    padding: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.28);
}

.family-register__form input {
    width: 100%;
    height: 43px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.55);
    padding: 0 18px;
    font-family: "Golos Text", sans-serif;
    font-size: 14px;
    color: #171717;
    outline: none;
}

.family-register__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 8px;
}

.family-register__check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 12px;
    font-size: 10px;
    line-height: 1.2;
    color: #171717;
    cursor: pointer;
}

.family-register__check input {
    width: 14px;
    height: 14px;
    padding: 0;
    border: 0;
    flex: 0 0 14px;
}

.family-register__form button {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 14px;
    background:  linear-gradient(260deg, #FFCD00 -3.77%, #FFA800 104.83%);
    color: #171717;
    font-family: "Golos Text", sans-serif;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

.family-register__image {
    align-self: end;
    display: flex;
    justify-content: flex-end;
    position: relative;
    min-height: 500px;
}

.family-register__image img {
    display: block;
    width: 100%;
    position: absolute;
    right: 90px;
    bottom: 0;
    transform: scale(1.7);

}

@media (max-width: 992px) {


    .family-register__inner {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 50px 0 0;
    }

    .family-register__form {
        max-width: 100%;
    }

    .family-register__image {
        justify-content: center;
    }

    .family-register__image img {
        max-width: 480px;
        width: 100%;
        position: relative;
        right: 0;
        bottom: 0;
        transform: inherit;
    }
    .family-register__image {
        min-height: fit-content;
    }
}

@media (max-width: 576px) {
    .family-register__heading {

        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 14px;
    }

    .family-register__heading img {
        width: 100%;
    }

    .family-register__heading span {
        height: 60px;
        display: none;
    }

    .family-register__heading h2 {
        font-size: 20px;
        font-weight: 500;
        text-align: center;
    }
    .family-register__badges {
        justify-content: center;
    }
    .family-register__badges span {
        justify-content: center;
        font-size: 10px;
    }
    .family-register__badges span:last-child {
        display: none;
    }

    .family-register__form {
        padding: 18px;
    }

    .family-register__form-row {
        grid-template-columns: 1fr;
    }
}

.family-partners {

    padding: 50px 0;

    overflow: hidden;
}

.family-partners__title {
    margin: 0 0 44px;
    text-align: center;
    font-size: 40px;
    line-height: 1.08;
    font-weight: 700;
    color: #171717;
}

.family-partners__main_container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.family-partners__main {
    width: 100%;
    max-width: 490px;
    min-height: 88px;
    /*margin: 0 auto 52px;*/
    padding: 18px 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    border: 1px solid rgba(23, 23, 23, 0.12);
    border-radius: 18px;
    background: var(--Red-Gradient, linear-gradient(250deg, #750117 1.45%, #E70000 98.55%));
    position: relative;
    overflow: hidden;
}
.family-partners__main-gray {
    width: 100%;
    max-width: 450px;
    min-height: 88px;
    /*margin: 0 auto 52px;*/
    padding: 18px 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    border-radius: 18px;
    border: 1px solid #DADADA;
    background: var(--Grey-Gradient, linear-gradient(250deg, #DADADA 1.45%, #EEE 98.55%));
    position: relative;
    overflow: hidden;
}
.family-partners__main::after {
    content: url("../img/partners/decor.svg");
    position: absolute;
    top: 0;
    right: 0;

}

.family-partners__main-gray span {
    font-size: 16px;
    line-height: 1.05;
    font-weight: 400;
    color: #222;
}

.family-partners__main-gray img {
    display: block;
    max-width: 280px;
    width: 100%;
    position: relative;
    z-index: 99;
    height: auto;
}

.family-partners__main img {
    display: block;
    max-width: 280px;
    width: 100%;
    position: relative;
    z-index: 99;
    height: auto;
}

.family-partners__main span {
    font-size: 16px;
    line-height: 1.05;
    font-weight: 400;
    color: #fff;
}

.family-partners__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.family-partners__card {
    height: 75px;
    padding: 0px;
    border-radius: 16px;
    /*background: #fff;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.family-partners__card img {
    display: block;
    /*max-width: 90%;*/
    /*max-height: 50px;*/
    width: auto;
    height: auto;
}

/*.family-partners__card:nth-child(1) {*/
/*    width: 220px;*/
/*}*/

/*.family-partners__card:nth-child(2) {*/
/*    width: 420px;*/
/*}*/

/*.family-partners__card:nth-child(3) {*/
/*    width: 380px;*/
/*}*/

/*.family-partners__card:nth-child(4) {*/
/*    width: 236px;*/
/*}*/

/*.family-partners__card:nth-child(5) {*/
/*    width: 270px;*/
/*}*/

/*.family-partners__card:nth-child(6) {*/
/*    width: 400px;*/
/*}*/

/*.family-partners__card:nth-child(7) {*/
/*    width: 266px;*/
/*}*/

/*.family-partners__card:nth-child(8) {*/
/*    width: 230px;*/
/*}*/

/*.family-partners__card:nth-child(9) {*/
/*    width: 260px;*/
/*}*/

@media (max-width: 992px) {
    .family-partners {
        padding: 50px 0;
        padding-bottom: 0;
    }

    .family-partners__title {
        font-size: 34px;
        margin-bottom: 32px;
    }

    .family-partners__main {
        margin-bottom: 36px;
    }

    .family-partners__grid {
        gap: 0px;
    }

    .family-partners__card {
        width: calc(50% - 7px) !important;
        height: 82px;
        padding: 0px;
        background: transparent;
    }
}

@media (max-width: 576px) {
    .family-partners__main_container {
        flex-direction: column;
        gap: 0;
    }
    .family-partners__title {
        font-size: 30px;
    }

    .family-partners__main {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        text-align: center;
        min-height: 140px;
    }
    .family-partners__main-gray {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        margin-bottom: 20px;
        text-align: center;
    }
    .family-partners__main {
        margin-bottom: 20px;
    }

    .family-partners__main-gray img {
        display: block;
        max-width: 230px;
    }

    .family-partners__main img {
        max-width: 230px;
        position: relative;
        z-index: 99;
    }
    .family-partners__main span {
        position: relative;
        z-index: 99;
    }

    .family-partners__card {
        width: 100%
    }
}
.family-partner-cta {
    padding: 50px 0;

}

.family-partner-cta__inner {
    display: grid;
    grid-template-columns: 500px 1fr;
    align-items: center;
    gap: 70px;
}

.family-partner-cta__image img {
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
}

.family-partner-cta__content {
    max-width: 760px;
}

.family-partner-cta__content h2 {
    margin: 0 0 32px;
    font-size: 32px;
    line-height: 1.08;
    font-weight: 500;
    color: #171717;
}

.family-partner-cta__content h3 {
    margin: 0 0 24px;
    font-size: 24px;
    line-height: 120%;
    font-weight: 500;
    color: #171717;
}

.family-partner-cta__content p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 400;
    color: #171717;
}

.family-partner-cta__btn {
    width: 425px;
    max-width: 100%;
    min-height: 60px;
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(260deg, #FFCD00 -3.77%, #FFA800 104.83%);
    color: #222;
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(0, 38, 150, 0.25);
}

@media (max-width: 992px) {
    .family-partner-cta {
        padding: 50px 0;
    }

    .family-partner-cta__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .family-partner-cta__image {
        order: -1;
        display: none;
    }

    .family-partner-cta__image img {
        max-width: 300px;
        margin: 0 auto;
    }

    .family-partner-cta__content {
        max-width: 100%;
        text-align: center;
    }

    .family-partner-cta__content h2 {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .family-partner-cta__content h3 {
        font-size: 21px;
    }

    .family-partner-cta__content p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .family-partner-cta__content h2 {
        font-size: 30px;
    }

    .family-partner-cta__btn {
        width: 100%;
        min-height: 56px;
        font-size: 21px;
    }
}
.family-location {
    padding: 50px 0;
    position: relative;
    z-index: 99;
}

.family-location__inner {
    display: grid;
    grid-template-columns: 330px 1fr;
    align-items: center;
    gap: 72px;
}

.family-location__content h2 {
    margin: 0 0 46px;
    font-size: 40px;
    line-height: 1.08;
    font-weight: 700;
    color: #171717;
}

.family-location__pin {
    display: block;
    width: 150px;
    height: auto;
    margin: 0 0 46px;
}

.family-location__content p {
    margin: 0;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 400;
    color: #171717;
}

.family-location__map {
    border-radius: 28px;
    overflow: hidden;
}

.family-location__map img {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
}

@media (max-width: 992px) {

    .family-location__content {
        position: relative;
    }

    .family-location {
        padding: 50px 0;
    }

    .family-location__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .family-location__content h2 {
        margin-bottom: 28px;
        font-size: 34px;
    }

    .family-location__pin {
        width: 60px;
        position: absolute;
        right: 0;
        margin-bottom: 28px;
    }

    .family-location__content p {
        font-size: 26px;
    }

    .family-location__map img {
        height: 360px;
    }
}

@media (max-width: 576px) {
    .family-location__content h2 {
        font-size: 30px;
    }

    .family-location__content p {
        font-size: 22px;
    }

    .family-location__map {
        border-radius: 20px;
    }

    .family-location__map img {
        height: 300px;
    }
}
.family-route {
    position: relative;
    padding: 70px 0 90px;


}

.family-route .container {
    position: relative;
    z-index: 2;
}

.family-route__decor {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.family-route__decor--left {
    left: -370px;
    bottom: 50px;

}

.family-route__decor--right {
    right: -400px;
    top: 40px;

}

.family-route__title {
    margin: 0 0 50px;
    font-size: 40px;
    line-height: 1.08;
    font-weight: 600;
    color: #171717;
}

.family-route__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.family-route__card {
    min-height: 280px;
    padding: 24px;
    border-radius: 16px;
    background: #fff;
    height: fit-content;

    display: flex;
    flex-direction: column;
}

.family-route__card-soldout > img {
    width: fit-content!important;
    height: fit-content!important;
}

.family-route__card > img {
    display: block;

    width: 90px;
    height: 90px;
    object-fit: contain;

    flex: 0 0 85px;
    object-fit: contain;
    margin: 25px auto 28px;
}

.family-route__card h3 {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 600;
    color: #171717;
}

.family-route__card p {
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 400;
    color: #171717;
}

.family-route__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.family-route__tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 7px 14px;
    border: 1.5px solid #0047ff;
    border-radius: 999px;
    color: #0047ff;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
}

.family-route__btn {
    width: 100%;
    min-height: 34px;
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(72deg, #0040FF 0%, #002699 100%);
    color: #fff;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(0, 38, 150, 0.22);
}
.family-route__btn svg {
    margin-right: 6px;
    width: 12px;
    height: 12px;
}

.family-route__small {
    font-size: 16px !important;
    line-height: 1.2 !important;
}

.family-route__transfers {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 10px 0;
}

.family-route__transfers span {
    min-height: 22px;
    padding: 9px 9px;
    border: 1.5px solid #ffc400;
    border-radius: 999px;
    color: #ffc400;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.family-route__transfers span.is-blue {
    border-color: #0047ff;
    color: #0047ff;
}

.family-route__transfers b {
    font-weight: 800;
}

.family-route__note {
    font-size: 10px !important;
    line-height: 1.2 !important;
    margin: 8px 0 10px !important;
}

@media (max-width: 1100px) {
    .family-route__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .family-route {
        padding: 50px 0;
    }

    .family-route__title {
        font-size: 28px;
    }

    .family-route__decor--left,
    .family-route__decor--right {
        width: 260px;
        opacity: 0.7;
    }
}

@media (max-width: 576px) {
    .family-route__grid {
        grid-template-columns: 1fr;
    }

    .family-route__card {
        min-height: auto;
    }
}

.family-route__banner {
    margin-top: 70px;
    padding: 22px 54px;
    min-height: 140px;
    border-radius: 30px;
    background: #fff;

    display: grid;
    grid-template-columns: 130px 1fr 30px 130px;
    align-items: center;
    gap: 29px;
}

.family-route__banner-heart {
    position: relative;
}

.family-route__banner-heart img {
    display: block;
    width: 170px;
    height: auto;
    margin: -42px 0 -34px;
}

.family-route__banner-text h3 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.12;
    font-weight: 600;
    color: #171717;
}

.family-route__banner-text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 400;
    color: #171717;
}

.family-route__banner-line {
    width: 6px;
    height: 96px;
    background: #ffb800;
    transform: skewX(-18deg);
    justify-self: center;
}

.family-route__banner-note {
    font-size: 16px;
    line-height: 1.12;
    font-weight: 500;
    text-align: right;
    color: #171717;
}

@media (max-width: 992px) {
    .family-route__banner {
        margin-top: 50px;
        grid-template-columns: 120px 1fr;
        gap: 22px;
        padding: 24px;
    }

    .family-route__banner-heart img {
        width: 120px;
        margin: 0;
    }

    .family-route__banner-line {
        display: none;
    }

    .family-route__banner-note {
        grid-column: 2;
        text-align: center;
        border-top: 2px solid #FFCD00;
        padding-top: 12px;
    }
    .family-route__banner-note br {
        display: none;
    }

    .family-route__banner-text h3 {
        font-size: 24px;
    }

    .family-route__banner-text p,
    .family-route__banner-note {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .family-route__banner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .family-route__banner-heart img {
        margin: 0 auto;
    }

    .family-route__banner-note {
        grid-column: auto;
    }
}

/*/faq/*/
.family-faq {
    padding: 50px 0;
    overflow: hidden;
}

.family-faq__title {
    margin: 0 0 44px;
    font-size: 40px;
    line-height: 1.08;
    font-weight: 600;
    color: #171717;
}

.family-faq__inner {
    display: grid;
    grid-template-columns:  1fr minmax(0, 690px);
    gap: 70px;
    align-items: center;
}

.family-faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.family-faq__item {
    border-radius: 20px;
    background: #fff;
    padding: 0 36px 0 28px;
}

.family-faq__question {
    width: 100%;
    min-height: 78px;
    border: 0;
    background: transparent;
    padding: 18px 0;
    display: grid;
    grid-template-columns: 50px 1fr 18px;
    gap: 22px;
    align-items: center;
    text-align: left;
    font-family: "Golos Text", sans-serif;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 500;
    color: #171717;
    cursor: pointer;
}

.family-faq__icon img {
    display: block;
    width: 46px;
    height: auto;
}

.family-faq__arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 9px solid #171717;
    justify-self: end;
}

.family-faq__item.is-open .family-faq__arrow {
    border-top: 0;
    border-bottom: 9px solid #171717;
}

.family-faq__answer {
    display: none;
    margin: -8px 0 20px;
    padding-left: 72px;
    max-width: 610px;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 400;
    color: #171717;
}

.family-faq__item.is-open .family-faq__answer {
    display: block;
}

.family-faq__image {
    display: flex;
    justify-content: center;
}

.family-faq__image img {
    display: block;
    width: 100%;
    max-width: 460px;
    height: auto;
}

@media (max-width: 992px) {
    .family-faq {
        padding: 50px 0;
    }

    .family-faq__title {
        font-size: 34px;
        margin-bottom: 32px;
    }

    .family-faq__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .family-faq__image {
        order: -1;
    }

    .family-faq__image img {
        max-width: 360px;
    }
}

@media (max-width: 576px) {
    .family-faq__title {
        font-size: 30px;
    }

    .family-faq__item {
        padding: 0 18px;
        border-radius: 16px;
    }

    .family-faq__question {
        min-height: 66px;
        grid-template-columns: 38px 1fr 16px;
        gap: 14px;
        font-size: 19px;
    }

    .family-faq__icon img {
        width: 36px;
    }

    .family-faq__answer {
        padding-left: 52px;
        font-size: 16px;
    }
}

.family-footer {
    padding: 54px 0 46px;


}

.family-footer__inner {
    display: grid;
    grid-template-columns: 220px 220px 1fr auto;
    align-items: start;
    gap: 70px;
}

.family-footer__brand img {
    display: block;
    width: 88px;
    height: auto;
    margin-bottom: 8px;
}

.family-footer__brand p {
    margin: 0;
    font-size: 11px;
    line-height: 1.2;
    color: #171717;
}

.family-footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.family-footer__contacts a,
.family-footer__links a {
    color: #171717;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
}

.family-footer__links {
    margin: 0;
    padding-left: 18px;
}

.family-footer__links li {
    margin-bottom: 10px;
}

.family-footer__socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

.family-footer__socials a,
.family-footer__socials img {
    display: block;
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .family-footer {
        padding: 40px 0;
    }

    .family-footer__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .family-footer__inner {
        text-align: center;
    }
    .family-footer__brand img {
        margin:  0 auto;
    }
    .family-footer__socials {
        justify-content: center;
    }
}

.family-day {
    padding: 80px 0 0px;

}

.family-day__title {
    margin: 0 0 34px;
    text-align: center;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 600;
    color: #171717;
}

.family-day__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 16px;
}

.family-day__card {
    min-height: 300px;
    padding: 18px 18px 22px;
    border-radius: 28px;
    background: #fff;
    height: fit-content;
}

.family-day__photo {
    display: block;
    width: 100%;

    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 18px;
}

.family-day__head {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.family-day__head img {
    display: block;
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.family-day__head h3 {
    margin: 0;
    font-size: 32px;
    line-height: 100%;
    font-weight: 600;
    color: #171717;
}

.family-day__card p {
    margin: 0;
    font-size: 20px;
    line-height: 130%;
    font-weight: 400;
    color: #171717;
}

@media (max-width: 1100px) {
    .family-day__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .family-day {
        padding: 50px 0;
    }

    .family-day__title {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .family-day__grid {
        grid-template-columns: 1fr;
    }
}

.festival-day {
    padding: 24px 0 0;
    background: #f6f6f6;
    overflow: hidden;
}

.festival-day__title {
    margin: 0 0 36px;
    text-align: center;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 700;
    color: #171717;
}

.festival-day__viewport {
    width: 100%;

    overflow: hidden;
}

.festival-day__map {
    position: relative;
    width: 1180px;
    margin: 0 auto;

}
.festival-day__viewport {
    position: relative;
}
.decorfest {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
}

.festival-screen {
    position: relative;
    z-index: 2;
    height: 960px;
}

.festival-card {
    position: absolute;
    z-index: 4;
    width: 350px;
    min-width: 350px;
    padding: 14px 14px 24px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.festival-card--top-left {
    top: 20px;
    left: 300px;
    transform: rotate(-3deg);
}

.festival-card--top-right {
    top: 20px;
    left: 720px;
    transform: rotate(3deg);
}

.festival-card--bottom-left {
    top: 490px;
    left: 120px;
    transform: rotate(3deg);
}

.festival-card--bottom-right {
    top: 490px;
    left: 550px;
    transform: rotate(-3deg);
}

.festival-card__image {
    display: block;
    width: 100%;
    height: 210px;
    margin-bottom: 18px;
    border-radius: 12px;
    object-fit: cover;
}

.festival-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.festival-card__icon {
    display: block;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    object-fit: contain;
}

.festival-card__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 10px;
    line-height: 1;
    font-weight: 500;
    color: #151515;
}

.festival-card__info span {
    position: relative;

    display: flex;
}

.festival-card__info span svg {
    margin-right: 10px;
}



.festival-card h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.05;
    font-weight: 600;
    color: #171717;
}

.festival-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.16;
    color: #171717;
}

.festival-day__note {
    position: absolute;
    right: 0px;
    bottom: 90px;
    z-index: 4;
    width: 250px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
    line-height: 1.2;
    color: #171717;
}

.festival-day__note strong {
    font-size: 24px;
    line-height: 1;
}

.festival-day__note p {
    margin: 0;
}

@media (max-width: 768px) {
    .festival-day {
        padding: 24px 0 40px;
    }

    .festival-day__title {
        font-size: 32px;
        margin-bottom: 22px;
    }

    .festival-day__viewport {
        height: auto;
        overflow: visible;
    }

    .festival-day__map {
        width: 100%;
        padding: 0 15px;
        background-size: auto;
    }

    .festival-day__map::before {
        display: none;
    }

    .festival-screen {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 0px;
    }

    .festival-screen + .festival-screen {
        margin-top: 0px;
    }

    .festival-card,
    .festival-card--top-left,
    .festival-card--top-right,
    .festival-card--bottom-left,
    .festival-card--bottom-right {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        min-width: 0;
        max-width: 350px;
        margin: 0 auto;
    }

    .festival-screen .festival-card:nth-child(odd) {
        transform: rotate(-2deg);
    }

    .festival-screen .festival-card:nth-child(even) {
        transform: rotate(2deg);
    }

    .festival-card__image {
        height: 200px;
    }

    .festival-day__note {
        flex-direction: row;
    }

    .festival-day__note {
        position: static;
        width: 100%;
        max-width: 350px;
        margin: 24px auto 0;
    }
}


/*//thank*/
.questionnaire-screen {
    position: relative;
    min-height: 100vh;
    padding: 58px 0;
    overflow: hidden;
    background: url("../img/hero-bg.png");
    background-size: cover;
    background-position: 50% 50%;
    color: #fff;
}

.questionnaire-screen .container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.questionnaire-screen__content {
    display: grid;
    grid-template-columns: 540px 1fr;
    align-items: center;
    gap: 70px;
}
.questionnaire-screen__content-bot {
    display: flex!important;
    justify-content: center;
}
.questionnaire-screen__logo {
    display: block;
    width: 160px;
    margin-bottom: 46px;
}

.questionnaire-screen h1 {
    max-width: 520px;
    margin: 0 0 22px;
    font-size: 56px;
    line-height: 1.08;
    font-weight: 600;
}

.questionnaire-screen__left > p {
    margin: 0 0 46px;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 600;
}

.form_questionnaire {
    width: 100%;
    max-width: 650px;
    padding: 32px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.form_questionnaire .item {
    margin-bottom: 12px;
}

.form_questionnaire label:not(.questionnaire-agree) {
    display: none;
}

.form_questionnaire select,
.form_questionnaire input[type="text"] {
    width: 100%;
    height: 52px;
    padding: 0 50px 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    background-color: rgba(255, 255, 255, 0.42);
    color: #111;
    font-size: 16px;
    outline: none;
}

.form_questionnaire select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23111' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.form_questionnaire input::placeholder {
    color: rgba(17, 17, 17, 0.85);
}

.questionnaire-agree {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 14px;
    font-size: 13px;
    color: #111;
}

.questionnaire-agree input {
    width: 18px;
    height: 18px;
    margin: 0;
}

.questionnaire-button {
    width: 100%;
    height: 64px;
    border: none;
    border-radius: 18px;
    background: #ffbd00;
    color: #111;
    font-size: 24px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.questionnaire-screen__right {
    position: relative;
}

.questionnaire-screen__photo {
    position: relative;
    max-width: 620px;
    margin-left: auto;
}



.questionnaire-screen__photo img {
    display: block;
    width: 100%;

}

.questionnaire-screen__decor {
    position: absolute;
    pointer-events: none;
    opacity: 0.18;
    border: 14px solid #fff;
}

.questionnaire-screen__decor--left {
    left: 40px;
    top: 150px;
    width: 560px;
    height: 560px;
    border-radius: 34% 66% 53% 47% / 42% 45% 55% 58%;
}

.questionnaire-screen__decor--star-1,
.questionnaire-screen__decor--star-2 {
    width: 150px;
    height: 150px;
    border-radius: 35%;
    transform: rotate(20deg);
}

.questionnaire-screen__decor--star-1 {
    right: 240px;
    top: 40px;
}

.questionnaire-screen__decor--star-2 {
    right: 90px;
    top: 260px;
}

@media (max-width: 900px) {

    .questionnaire-screen__right {
        order: 1;
    }

    .questionnaire-screen__left {
        order: -1;
    }
    .questionnaire-screen__content {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .questionnaire-screen__right {
        order: -1;
    }

    .questionnaire-screen__photo {
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {

    .questionnaire-screen {
        padding: 34px 0;
    }

    .questionnaire-screen .container {
        padding: 0 15px;
    }

    .questionnaire-screen__logo {
        width: 130px;
        margin-bottom: 30px;
    }

    .questionnaire-screen h1 {
        font-size: 38px;
    }

    .questionnaire-screen__left > p {
        margin-bottom: 28px;
        font-size: 18px;
    }

    .form_questionnaire {
        padding: 20px;
    }
}