* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: 'SF Pro Text';
    font-style: normal;
    font-weight: 600;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

button {
    border: none;
}

.link-wrapper {
    list-style-type: none;
}

ul {
    list-style-type: none;
}

body {
    background: #F5F5F5;
    margin-top: 24px;
}

.container {
    max-width: 1392px;
    margin: 0 auto;
    padding: 0 16px;
}

.block__title {
    max-width: 1130px;
    margin: 0 auto 48px;
    font-family: 'SF Pro Display';
    font-style: normal;
    font-weight: 600;
    font-size: 96px;
    line-height: 96px;
    text-align: center;
    color: #1D1D1D;
}


/*Conditions
===========================*/
.conditions {
    margin-bottom: 57px;
}

.conditions__wrapper {
    background: #FFFFFF;
    border-radius: 40px;
    padding: 96px 115px;
}

.conditions__text-wrapper,
.additional-text {
    max-width: 100%;
    margin: 0 auto 48px;
}

.additional-text:last-child {
   margin-bottom: 0;
}

.conditions__text,
.conditions__text-additional {
    font-family: 'SF Pro Display';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #1D1D1D;
    margin-bottom: 14px;
}

.conditions__text:last-child,
.conditions__text-additional:last-child {
    margin-bottom: 0;
}

.additional-text__title {
    font-family: 'SF Pro Display';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #1D1D1D;
    margin-bottom: 8px;
}

.conditions__list-items {
    margin-bottom: 14px;
}

.list-item {
    list-style: disc;
    margin-left: 30px;
    font-weight: 400;
    font-family: 'SF Pro Display';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #1D1D1D;
}

/*Header
===========================*/
.header {
    position: -webkit-sticky;
    position: sticky;
    top: 24px;
    margin-bottom: 24px;
    z-index: 3;
}

.header-wrapper {
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    font-family: 'SF Pro Display';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #2F90FC;
    display: flex;
    align-items: center;
    column-gap: 14px;
}

.header__navigation {
    display: flex;
    align-items: center;
    column-gap: 47px;
}

.header__navigation_link {
    font-size: 24px;
    line-height: 32px;
    transition: all 0.3s linear;
    cursor: pointer;
    color: #1D1D1D;
}

.header__navigation_link:hover,
.header__navigation_link:active {
    color: #2F90FC;
    transition: all 0.3s linear;
}

/*Footer
===========================*/
.footer {
    padding-bottom: 24px;
}

.copyright {
    text-align: center;
}




/*Button
===========================*/
.button {
    display: flex;
    background: #1D1D1D;
    border-radius: 1000px;
    padding: 16px 0;
    align-items: center;
    max-width: 168px;
    width: 100%;
}

.button__apple-icon {
    margin-right: 14px;
}

.button__text {
    font-family: 'SF Pro Display';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

.button__content-wrapper {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__button-download {
    max-width: 100%;
    padding: 24px 0;
}

.footer__button-download:hover,
.footer__button-download:active,
.button:hover,
.button:active {
    background: #3C3C43;
}

.footer__button-text {
    font-size: 24px;
    line-height: 32px;
}

.footer__button__apple-icon {
    width: 32px;
    height: 32px;
    margin-right: 8px;
}


@media (max-width: 900px) {
    .container {
        max-width: 375px;
        margin: 0 auto;
        padding: 0 16px;
    }

    .header-wrapper {
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header__logo {
        width: 40px;
    }

    .header__navigation {
        column-gap: 21px;
    }

    .header__logo_text {
        display: none;
    }

    .header__navigation_link {
        font-size: 16px;
        line-height: 20px;
    }

    .block__title {
        max-width: 343px;
        font-size: 40px;
        line-height: 48px;
        margin: 0 auto 32px;
    }


    /*Conditions
    ===========================*/
    .conditions__wrapper {
        padding: 56px 16px;
    }

    .conditions {
        margin-bottom: 27px;
    }


    /*Footer
    ===========================*/
    .copyright {
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 16px;
    }
}

.disabled {
    color: #c0bdbd;
    cursor: no-drop;
}

.disabled:hover {
    color: #c0bdbd;
    cursor: no-drop;
}