.page h1 {
    font-family: Roboto, Arial, sans-serif;
    line-height: 2.75rem;
    font-size: 2.25rem;
    letter-spacing: 0;
    font-weight: 400;

}
.page h2 {
    font-size: 1.125rem;
}
.page .back {
    text-decoration: none;
}
.page .back svg {
    width: 36px;
    height: 36px;
}
.page .apk-div {

}
.page .apk {
    display: flex;
    width: 240px;
    height: 48px;
    color: white;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background-color: #01875f;
    border-radius: var(--corner-radius);
    transition: all ease 0.3s;
}
.page .apk:hover {
    background-color: #095943;
}
.page .download .apk {
    display: none;
}

.page small {
    font-size: 0.8em;
    color: #cccccc;
}

.page .banner {
    display: flex;
    justify-content: center;
}
.page .banner img {
    width: 100%;
}
.page .icon {
    width: 240px;
    height: 240px;
}

.page section {
    display: flex;
    gap: 16px;
}

.page section .content {
    max-width: calc(100% - 388px - 16px);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.page .screens {
    overflow-x: auto;
    display: flex;
    gap: 8px;
    padding: 4px 0;
}
.page .screens img {
    max-height: 296px;
    border-radius: 6px;
}
.page .apps {
    min-width: 388px;
}

.page .descr {
    font-size: .875rem;
}

.page .apps .app {
    display: flex;
    gap: 16px;
    padding: 10px 16px 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: rgb(32,33,36);;
}
.page .apps .app:hover {
    background-color: #CFCFCF;
}
.page .apps .app img {
    width: 48px;
    height: 48px;
}
.page .apps .app .short {
    font-size: 0.7em;
    line-height: 1.2em;
}
.page .site a {
    color: #bbbbbb;
    transition: all ease 0.3s;
}
.page .site a:hover {
    color: #0d6efd;
}

@media (max-width: 990px) {
    .page h1 {
        line-height: 2rem;
        font-size: 1.5rem;
        letter-spacing: 0;
        font-weight: 400;
    }
    .page .back svg {
        width: 24px;
        height: 24px;
        margin-bottom: 4px;
    }
    .page .icon {
        width: 72px;
        height: 72px;
    }
    .page .apk {
        display: none;
    }
    .page .download .apk {
        display: flex;
        height: 36px;
        width: 100%;
    }
    .page .tech img {
        width: 32px;
        height: 32px;
    }

    .page section {
        display: flex;
        flex-direction: column;
    }
    .page section .content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .page .screens {
        width: 100%;
    }
    .page .screens img {
        max-height: 296px;
    }
}
