html, body {
  height: 100%;
  margin: 0;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
}

footer.footer__info {
  background-color: #ccc;
  text-align: center;
  margin-top: auto;
  flex-shrink: 0;
}

.text-black {
    color: #000000;
}
.text-orange {
    color: #FF6622;
}
.text-bold {
    font-weight: bold;
}

.top-greyback {
    background: #F5F5F5;
    padding: 0;
    /* height: 435px; */
}
.top-greyback.mobile {
    display: none;
}
.top-greyback .inner-content {
    max-width: 920px;
    margin: 0 auto;
    padding-top: 29px;
}
.top-greyback .inner-content .logo {
    margin-bottom: 24px;
}
.top-greyback .inner-content .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.top-greyback .inner-content .row .left-column {
    padding: 30px 0 59px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}
.top-greyback .inner-content .row .left-column .title {
    font-size: 40px;
    color: #000;
}
.top-greyback .inner-content .row .left-column .bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: space-between;
    color: #747983;
    font-size: 16px;
}
.top-greyback .inner-content .row .left-column .bottom .mc-downloads {
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: flex-start;
    align-items: center;
}
.top-greyback .inner-content .row .left-column .bottom .mc-downloads a {
    width: 132px;
    height: 44px;
}
.top-greyback .inner-content .row .left-column .bottom .mc-downloads a  img {
        object-fit: fill;
        width: 100%;
        height: 100%;
    }
.top-greyback .inner-content .row .left-column + img {
    position: absolute;
    right: -30px;
    bottom: -41px;
}

.content {
    max-width: 920px;
    margin: 0 auto;
    padding: 70px 0 100px 0;
    display: flex;
    flex-direction: column;
    align-items: start;
}
.content.mobile {
    display: none;
}
.content .store-block {
    display: flex;
    gap: 24px;
    flex-direction: column;
    justify-content: space-between;
}
.content .store-block .title {
    font-size: 32px;
    font-weight: bold;
    color: #000;
}
.content .store-block .stores {
    display: flex;
    gap: 16px;
    flex-direction: column;
    justify-content: space-between
} 
.content .store-block .stores .line {
    display: flex;
    gap: 16px;
    flex-direction: row;
    justify-content: flex-start;
}
.content .store-block .stores .line .store {
    display: block;
    width: 130px;
    height: 40px;;
}
.content .store-block .safety {
    font-size: 20px;
    color: #747983;
    display: flex;
    flex-direction: row;
    gap: 18px;
    justify-content: flex-start;
    align-items: center;
}
.content .store-block .safety img {
    width: 70px;
    height: 70px;
}

.content .why-block {
    margin-top: 24px;
    padding-top: 32px;
    display: flex;
    gap: 33px;
    flex-direction: column;
    justify-content: space-between;
}
.content .why-block .title {
    font-size: 40px;
    font-weight: bold;
    color: #000;
}
.content .why-block .options {
    display: flex;
    gap: 8px;
    flex-direction: column;
    justify-content: flex-start;
}
.content .why-block .options .option {
    padding: 12px 16px;
    display: flex;
    flex-direction: row;
    gap: 26px;
    justify-content: flex-start;
    align-items: start;
}
.content .why-block .options .option img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
.content .why-block .options .option .text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}
.content .why-block .options .option .text .title {
    font-size: 24px;
    color: #000;
    font-weight: normal;
}
.content .why-block .options .option .text .desc {
    font-size: 16px;
    color: #000;
}

.content .install-block {
    margin-top: 24px;
    padding-top: 24px;
    display: flex;
    gap: 33px;
    flex-direction: column;
    justify-content: space-between;
}
.content .install-block .top {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: flex-start;
}
.content .install-block .top .title {
    font-size: 36px;
    font-weight: bold;
    color: #000;
}
.content .install-block .top .text {
    color: #747983;
    font-size: 20px;
}
.content .install-block .steps {
    display: flex;
    /* gap: 24px 32px; */
    gap: 24px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    /* flex-wrap: wrap; */
}
.content .install-block .steps .steps-row {
    display: flex;
    gap: 32px;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
}
.content .install-block .steps .step {
    padding: 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
    align-items: start;
    background-color: #F3F3F3;
    border-radius: 14px;
    width: 412px;
}
.content .install-block .steps .last-step {
    width: calc(100% - 32px);
}
.content .install-block .steps .step .top {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: flex-start;
    align-items: center;
    font-weight: bold;
}
.content .install-block .steps .step .top img{
    width: 28px;
    height: 28px;
}
.content .install-block .steps .step .body-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
    align-items: start;
    margin-left: 44px;
}
.content .install-block .steps .step .body-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: flex-start;
    align-items: start;
    margin-left: 44px;
}


@media (max-width: 920px) {
    .top-greyback {
       display: none;
    }
    .top-greyback.mobile {
        background: #F5F5F5;
        padding: 0;
        /* height: 362px; */
        display: block;
        margin-bottom: 16px;
        width: 100%;
    }

    .top-greyback.mobile .inner-content {
        margin: 0 auto;
        padding: 19px 16px 16px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        height: 100%;
    }
    .top-greyback.mobile .inner-content .logo {
        margin-bottom: 19px;
    }
    .top-greyback.mobile .inner-content .center-column {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        /* height: 100%; */
        text-align: center;
        padding-top: 16px;
        gap: 16px;
    }
    .top-greyback .inner-content .center-column .title {
        font-size: 32px;
        color: #000;
        line-height: 120%;
    }
    .top-greyback .inner-content .center-column .bottom {
        display: flex;
        flex-direction: column;
        gap: 16px;
        justify-content: space-between;
        color: #747983;
        font-size: 16px;
    }
    .top-greyback .inner-content .center-column .bottom .mc-downloads {
        display: flex;
        flex-direction: row;
        gap: 8px;
        justify-content: center;
        align-items: center;
    }
    .top-greyback .inner-content .center-column .bottom .mc-downloads a {
        width: 141px;
        height: 48px;
    }
    .top-greyback .inner-content .center-column .bottom .mc-downloads a  img {
        object-fit: fill;
        width: 100%;
        height: 100%;
    }
    .top-greyback .inner-content .center-column .bottom
    .top-greyback .inner-content .row .left-column + img {
        position: absolute;
        right: -30px;
        bottom: -41px;
    }
    .top-greyback .inner-content .center-column .bottom .apk img{
        width: 141px;
        height: 48px;
    }

    .content {
        display: none;
    }
    .content.mobile {
        width: calc(100% - 32px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 16px;
        padding: 24px 16px 16px;
    }
    .content.mobile .center-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .content.mobile .store-block {
        display: flex;
        gap: 16px;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    .content.mobile .store-block .title {
        font-size: 24px;
        font-weight: bold;
        color: #000;
        text-align: center;
    }
    .content.mobile .store-block .stores {
        display: flex;
        gap: 16px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    } 
    .content.mobile .store-block .stores .line {
        display: flex;
        gap: 16px;
        flex-direction: row;
        justify-content: flex-start;
    }
    .content.mobile .store-block .stores .line .store {
        display: block;
        width: 130px;
        height: 40px;;
    }
    .content.mobile .store-block .safety {
        font-size: 16px;
        color: #747983;
        display: flex;
        flex-direction: row;
        gap: 18px;
        justify-content: flex-start;
        align-items: center;
        padding: 16px 0;
    }
    .content.mobile .store-block .safety img {
        width: 70px;
        height: 70px;
    }

    .content.mobile .why-block {  
        margin-top: 24px;
        padding-top: 0;
        display: flex;
        gap: 24px;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    .content.mobile .why-block .title {
        font-size: 36px;
        font-weight: bold;
        color: #000;
    }
    .content.mobile .why-block .options {
        display: flex;
        gap: 8px;
        flex-direction: column;
        justify-content: flex-start;
    }
    .content.mobile .why-block .options .option {
        padding: 12px 8px;
        display: flex;
        flex-direction: row;
        gap: 12px;
        justify-content: flex-start;
        align-items: start;
    }
    .content.mobile .why-block .options .option img {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    .content.mobile .why-block .options .option .text {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 8px;
    }
    .content.mobile .why-block .options .option .text .title {
        font-size: 20px;
        color: #000;
        font-weight: normal;
    }
    .content.mobile .why-block .options .option .text .desc {
        font-size: 16px;
        color: #000;
    }

    .content.mobile .install-block {
        margin-top: 24px;
        padding-top: 0;
        display: flex;
        gap: 33px;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    .content.mobile .install-block .top {
        display: flex;
        flex-direction: column;
        gap: 16px;
        justify-content: flex-start;
        align-items: center;
    }
    .content.mobile .install-block .top .title {
        font-size: 24px;
        font-weight: bold;
        color: #000;
        text-align: center;
    }
    .content.mobile .install-block .top .text {
        color: #747983;
        font-size: 20px;
        text-align: center;
    }
    .content.mobile .install-block .steps {
        display: flex;
        gap: 16px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    .content.mobile .install-block .steps .step {
        padding: 16px 16px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        justify-content: flex-start;
        align-items: start;
        background-color: #fff;
        border-radius: 14px;
        max-width: 328px;
        width: auto;
        box-shadow: 0 4px 30px 0 #F3F3F3;
    }
    .content.mobile .install-block .steps .last-step {
        width: calc(100% - 32px);
    }
    .content.mobile .install-block .steps .step .top {
        display: flex;
        flex-direction: row;
        gap: 16px;
        justify-content: flex-start;
        align-items: center;
        font-weight: bold;
    }
    .content.mobile .install-block .steps .step .top img{
        width: 28px;
        height: 28px;
    }
    .content.mobile .install-block .steps .step .body-column {
        display: flex;
        flex-direction: column;
        gap: 12px;
        justify-content: flex-start;
        align-items: start;
        margin-left: 0;
    }
    .content.mobile .install-block .steps .step .body-row {
        display: flex;
        flex-direction: row;
        gap: 12px;
        justify-content: flex-start;
        align-items: start;
        margin-left: 0;
    }
}

