body {
    margin: 0;
}

header {
    background: #0A0A0B;
}

.header__block {
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.header__block1 {
    display: flex;
    height: 100%;
    width: 80%;
    flex-direction: row;
    justify-content: space-around;
}

.header__text-block {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
}

.header__text {
    padding-top: 15px;
    padding-bottom: 15px;
    color: #FFF;
    text-align: right;
    font-family: Arial;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.header__button {
    height: 65%;
    width: 15%;
    margin-right: 3%;
    margin-top: 10px;
    border-radius: 3px;
    background: #F0C000;
}

.button__text {
    color: #000;
    text-align: center;
    font-family: Arial;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.main-screen {
    width: 100%;
    height: 0;
    padding-bottom: 62%;; /* Пропорция высоты к ширине, например, 1000 / 2000 = 0.5 (или 50%) */
    background: url("../images/autobus.jpg") center/cover no-repeat;
}

.main-screen__block {
    padding-left: 8%;
    padding-top: 15%;
    display: flex;
    flex-direction: column;
}

.main-screen__text-upper {
    color: #FFF;
    font-family: Arial;
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: 55px;
}

.main-screen__text-down {
    color: #FFF;
    font-family: Arial;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 39px;
}

.main-screen__buttons {
    padding-top: 3%;
    display: flex;
    flex-direction: column;
    width: fit-content;
}

.main-screen__black-button {
    border-radius: 7px;
    background: #000;
    display: inline-flex;
    padding: 15px 45px;
    align-items: flex-start;
}

.main-screen__black-button-text {
    color: #FFF;
    text-align: center;
    font-family: Arial;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 34.1px;
}

.main-screen__orange-button {
    border-radius: 7px;
    background: #F0C000;
    display: inline-flex;
    padding: 15px 30px;
    align-items: flex-start;
}

.main-screen__orange-button-text {
    color: #000;
    text-align: center;
    font-family: Arial;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 34.1px;
}

.help-screen {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, #FFF 0%, #EFEFEF 100%);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.help-screen__main-text {
    color: #000;
    text-align: center;
    font-family: Open Sans;
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: 56px;
}

.help-screen__window {
    width: 30%;
    background: linear-gradient(180deg, #FFF 0%, #EFEFEF 100%);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3%;
    margin-bottom: 4%;
}

.help-screen__text {
    color: #000;
    text-align: center;
    font-family: Open Sans;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}

.help-screen__button {
    border-radius: 35px;
    background: linear-gradient(155deg, #000 0%, #0E0E0E 100%);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 12.95px 64.05px 12.05px 62.95px;
}

.help-screen__button-text {
    color: #FFF;
    text-align: center;
    font-family: Open Sans;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 34.1px;
}

.family-info {
    background: linear-gradient(164deg, #FFCE22 0%, #FFA722 100%);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.family-info__block {
    display: flex;
    flex-direction: column;
    margin-top: 6%;
    margin-bottom: 8%;
}

.family-info__block-info {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.family-info__block-info-text {
    color: #000;
    text-align: center;
    font-family: Roboto Condensed;
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: 51px;
    padding-left: 15px;
}

.family-info__block-text {
    color: #000;
    text-align: center;
    font-family: Open Sans;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 29px;
}

.info {
    display: flex;
    justify-content: center;
    background: linear-gradient(180deg, #EFEFEF 0%, #FFF 100%);
}

.info-block {
    margin-top: -4%;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.25);
    width: 90%;
    display: flex;
    flex-direction: row;
    padding: 5% 2%;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-text-header {
    color: #000;
    font-family: Inter;
    font-size: 31px;
    font-style: normal;
    font-weight: 500;
    line-height: 39.6px; /* 127.742% */
}

.info-text-main {
    color: #000;
    font-family: Inter;
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin-top: 3%;
}

.info-text-main1 {
    color: #000;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.help-block {
    margin-top: -4%;
    background: linear-gradient(152deg, #FFA800 0%, #FFC700 100%);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.help-block-text {
    margin-top: 8%;
    color: #000;
    font-family: Open Sans;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 56px;
}

.help-block-container {
    display: flex;
    justify-content: center;
    width: 80%;
}

.help-block-blocks {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 5%;
    margin-bottom: 5%;
}

.help-block__table {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    border: 2px solid #FFF;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    align-items: center;
    padding: 1%;
}

.help-block__table-text {
    color: #000;
    text-align: center;
    font-family: Open Sans;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}

.help-block__table-button {
    margin-top: 13%;
    margin-bottom: 8%;
    border-radius: 35px;
    background: #000;
    width: 70%;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 4% 0%;
}

.help-block__table-button-text {
    color: #FFF;
    text-align: center;
    font-family: Open Sans;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 34.1px; /* 155% */
}

.partners-block {
    display: flex;
    justify-content: center;
}

.partners {
    width: 80%;
    background: #FFF;
    display: flex;
    flex-direction: column;
}

.partners-text {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 44.28px;
}

.partners-name {
    margin-top: 5%;
    color: #000;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 112.5% */
    text-decoration-line: underline;
}

.partners-name__description {
    margin-top: 1%;
    color: #000;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.reviews {
    background: #000;
    display: flex;
    justify-content: center;
}

.reviews-block {
    display: flex;
    flex-direction: row;
    margin-top: 10%;
    width: 70%;
    margin-bottom: 6%;
}

.reviews__text-block {
    margin-top: -8%;
    margin-left: -3%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews__text-block-header {
    color: #FFF;
    text-align: center;
    font-family: Arial;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 65px;
    border-bottom: 3px solid #FFF;
}

.reviews__text-block-main {
    color: #FFF;
    text-align: center;
    font-family: Arial;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 115.385% */
}

.reviews__text-block-button {
    margin-top: 10%;
    border-radius: 4px;
    background: #FFF;
    padding: 3% 1%;
    width: 60%;
}

.reviews__text-block-button-text {
    color: #000;
    text-align: center;
    font-family: Arial;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.footer {
    background: #000;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.footer__block {
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer__text {
    color: #FFF;
    text-align: center;
    font-family: Arial;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    width: 16%;
}

/*style for mission*/
.content {
    display: flex;
    justify-content: center;
}

.content__block {
    display: flex;
    flex-direction: column;
    width: 60%;
}

.content__text-header {
    color: #000;
    font-family: Inter;
    font-size: 41px;
    font-style: normal;
    font-weight: 500;
    line-height: 56.58px;
}

.content__text {
    color: #000;
    font-family: Arial;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 34.8px;
}

.popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(67, 38, 38, .553);
    z-index: 2;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: .2s ease-in-out
}

.popup.active {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    transition: .2s ease-in-out
}

.popup__contain.active {
    visibility: visible;
    transform: scale(1)
}

.popup__contain {
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 16px 48px rgba(60, 0, 61, .48);
    border-radius: 12px;
    width: 40%;
    transform: scale(.5);
    transition: .2s ease-in-out;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.popup__close {
    width: 98%;
    display: flex;
    flex-direction: row-reverse;
    padding: 3% 0 0;
    cursor: pointer
}

.popup__text {
    color: #000;
    font-family: Inter;
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-top: 2%;
}

.header__menu-trigger {
    display: none;
}

.header__text-block {
    opacity: 1;
}

@media ( max-width: 1200px ) {
    .header__text-block {
        display: none;
        position: absolute;
        background-color: black;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        width: 100%;
        z-index: -1;
    }

    .header__text-block {
        opacity: 0;
        transform: scale(1);
    }

    .header__text-block {
        display: flex;
        flex-direction: column;
        padding-top: 10px;
        padding-bottom: 10px;
        text-decoration: none;
        color: black;
    }

    .header__button {
        display: none;
    }

    .header__menu-trigger {
        display: block;
        margin-top: 10px;
        border: none;
        background: none;
        cursor: pointer;
        font-size: 20px;
    }

    .show-menu .header__text-block {
        display: block;
    }

    .header__block {
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
}

@media screen and (max-width: 768px) {
    .main-screen__text-upper {
        font-size: 20px;
        line-height: 25px;
    }

    .main-screen__text-down {
        font-size: 14px;
        line-height: 18px;
    }

    .main-screen__black-button-text {
        font-size: 10px;
    }

    .main-screen__orange-button-text {
        font-size: 10px;
    }

    .main-screen__black-button {
        padding: 0px 16px;
    }

    .main-screen__orange-button {
        padding: 0px 10px;
    }

    .main-screen__block {
        padding-top: 3%;
    }

    .info-house {
        width: 245px;
        height: 230px;
    }

    .info-block {
        flex-direction: column;
        align-items: center;
    }

    .family-info {
        flex-direction: column;
    }

    .family-info__block {
        padding: 0% 3%;
    }

    .info-text-main {
        margin-top: 6%;
        padding: 0% 3%;
    }

    .info-text-main1 {
        padding: 0% 3%;
    }

    .info-text-header {
        font-size: 25px;
        padding: 0% 3%;
    }

    .help-block-text {
        font-size: 25px;
    }

    .help-block-blocks {
        flex-direction: column;
    }

    .help-block__table {
        margin-top: 7%;
    }

    .reviews__image {
        padding-top: 9%;
        width: 150px;
        height: 80px;
    }

    .reviews__text-block-header {
        font-size: 21px;
        line-height: 27px;
    }

    .reviews__text-block-main {
        font-size: 12px;
        line-height: 17px;
    }

    .reviews__text-block-button-text {
        font-size: 14px;
    }

    .footer__block {
        width: 95%;
    }

    .partners-name {
        font-size: 25px;
    }

    .partners-name__description {
        font-size: 16px;
    }

    .family-info__block-info-text {
        font-size: 28px;
        line-height: 40px;
    }

    .family-info__block-text {
        font-size: 21px;
        line-height: 20px;
    }

    .help-block__table-button-text {
        font-size: 17px;
        line-height: 12.1px;
    }

    .help-block__table-text {
        font-size: 18px;
        line-height: 19px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1400px) {
    .help-block__table-text {
        font-size: 15px;
        line-height: 21px;
    }

    .help-block__table-button-text {
        font-size: 13px;
        line-height: 20.1px;
    }

    .help-block-blocks {
        flex-direction: column;
        width: 70%;
    }

    .help-block__table {
        margin-top: 7%;
    }

    .info-block {
        flex-direction: column;
        align-items: center;
    }

    .info-house {
        width: 500px;
        height: 300px;
    }

    .family-info__line {
        width: 250px;
    }

    .family-info__block-info-text {
        font-size: 23px;
        line-height: 43px;
    }

    .family-info__block-text {
        font-size: 14px;
        line-height: 16px;
    }

    .reviews__image {
        width: 300px;
        height: 174px;
    }

    .reviews__text-block-header {
        font-size: 21px;
        line-height: 23px;
    }

    .reviews__text-block-main {
        font-size: 18px;
        line-height: 30px;
    }

    .reviews__text-block-button-text {
        font-size: 18px;
    }

    .help-block__table-button {
        margin-top: 8%;
    }
}

@media screen and (min-width: 1080px) and (max-width: 1400px) {
    .help-block__table-text {
        font-size: 27px;
        line-height: 32px;
    }

    .help-block__table-button-text {
        font-size: 18px;
    }

    .reviews__image {
        width: 400px;
        height: 204px;
    }

    .reviews__text-block-header {
        font-size: 36px;
    }

    .reviews__text-block-main {
        font-size: 23px;
        line-height: 37px;
    }
}

@media screen and (max-width: 1200px) {
    .help-screen__window {
        width: 65%;
    }

    .help-screen__main-text {
        margin-top: 3%;
        font-size: 25px;
        line-height: 28px;
    }

    .help-screen__text {
        font-size: 14px;
        line-height: 19px;
    }

    .help-screen__button-text {
        font-size: 10px;
        line-height: 17.1px;
    }
}

.helping__blocks {
    margin-top: 5%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.helping__block {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    border: 2px solid #FFF;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    align-items: center;
    padding: 1%
}

.popup-info {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(67, 38, 38, .553);
    z-index: 2;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: .2s ease-in-out
}

.popup-info.active {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    transition: .2s ease-in-out
}

.popup-info__contain.active {
    visibility: visible;
    transform: scale(1)
}

.popup-info__contain {
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 16px 48px rgba(60, 0, 61, .48);
    border-radius: 12px;
    width: 40%;
    transform: scale(.5);
    transition: .2s ease-in-out;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.popup-info__close {
    width: 98%;
    display: flex;
    flex-direction: row-reverse;
    padding: 3% 0 0;
    cursor: pointer
}

.popup-info__text {
    text-align: center;
    color: #000;
    font-family: Inter;
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-top: 2%;
}

.form {
    display: flex;
    flex-direction: column;
    width: 60%;
    margin-bottom: 4%
}

.form__input, .form__select {
    padding: 15px;
    margin: 10px 0;
    border-radius: 4px;
    box-sizing: border-box;
    border: 1.4px solid silver;
    appearance: none;
    background-size: 15px 7px, 5px 5px, 2.5em 2.5em;
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) 50%, calc(100% - 15px) calc(1em + 2px), 100% 0
}

.form__agree {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.form__agree_checkbox {
    width: 20px;
    height: 20px
}

.form__agree_text {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    display: flex;
    align-items: center
}

.form__button {
    padding: 7.5821px .4665px;
    height: 64px;
    background: #000;
    border-radius: 5.39553px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #fff;
    margin-top: 5%
}

@media screen and (max-width: 768px) {
    .popup-info__contain {
        width: 80%
    }

    .popup-info__text {
        font-size: 20px;
    }

    .form__agree_text {
        font-size: 13px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
    .popup-info__contain {
        width: 60%
    }

    .popup-info__text {
        font-size: 30px;
    }

    .form__agree_text {
        font-size: 18px;
    }
}

@media screen and (max-width: 850px) {
    .helping__blocks {
        flex-direction: column;
    }

    .helping__block {
        margin-top: 3%;
    }
}
.popup__block
{
    margin-top: 2%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.popup__block-text
{
    margin-left: 3%;
    font-family: Open Sans;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
}
.popup__img
{
    width: 30px;
    height: 30px;
}

@media screen and (max-width: 768px) {
    .popup__contain
    {
        width: 80%;
    }
}