html,
body {
    font-family: "Poppins", "Roboto", "Helvetica Neue", "Arial", sans-serif, -apple-system, BlinkMacSystemFont;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /** Prevent iOS text size adjust after orientation change, without disabling user zoom. **/
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    font-size: 14px;
    /* min-width: 320px; */
    position: relative;
    line-height: 1.6;
}

@supports (padding-top: constant(safe-area-inset-top)) {
    body {
        padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    }
}

body {
    min-width: 320px;
    display: flex;
    flex-direction: column;
    background: #F2F8FF;
    color: #4F4F4F;
}

.mobile-show {
    display: none;
    visibility: hidden;
}

.btn.btn-primary {
    background-color: #0078D4;
    border-color: #0078D4;

    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    padding: 10px 20px;
    text-align: center;
}

.btn.btn-primary:hover {
    background-color: #134DCD;
    border-color: #134DCD;
}

.main {
    /* min-width: 320px; */
    width: 100%;
    flex: 1 0 auto;
}

section {
    padding: 24px;
}

header {
    width: 100%;
    padding: 0 24px;
    height: 110px;
    background: #ffffff;
}

.header-logo {
    padding-top: 24px;
    display: flex;
    align-items: baseline;
    color: #0078D4;
    text-decoration: none;
}

.header-logo:hover {
    text-decoration: none;
}

.header-logo-icon {
    width: 60px;
    height: 60px;
}

.header-logo-text {
    font-weight: 500;
    font-size: 40px;
    line-height: 75px;
    letter-spacing: -0.015em;
}

.btn-header-download {
    width: 136px;
}

.nr-apps-download {
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.15px;

    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nr-apps-download .apps-title {
    font-weight: 400;
    font-size: 60px;
    line-height: 60px;
    letter-spacing: -0.5px;
    color: #0B1770;
    margin-bottom: 64px;
}

.nr-apps-download .apps-subtitle {
    margin: 0 auto;
    max-width: 540px;
    letter-spacing: 0.15px;
    color: #005EB7;
}

.nr-apps-download .apps-img {
    width: 320px;
    min-height: 540px;
    padding: 24px;
    flex-shrink: 0;
    margin-left: 100px;
}

.nr-apps-download .apps-img img {
    width: 100%;
    border-radius: 64px;
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.04);
}

.nr-apps-download .apps-rate {
    margin-top: 44px;
    margin-bottom: 64px;
}

.nr-apps-download .btn-footer-download {
    width: 360px;
}


.nr-apps-qr {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.08);

    display: none;
}
.nr-apps-qr .apps-qr-card {
    width: 366px;
    border-radius: 24px;
    background: white;
    box-shadow: 0 0 24px 5px rgba(0, 0, 0, 0.08);
}
.nr-apps-qr .apps-qr-header {
    width: 100%;
    padding: 0 8px;
    height: 44px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}
.nr-apps-qr .apps-qr-title {
    width: calc(100% - 32px);
    padding-left: 32px;
    text-align: center;
    font-size: 20px;
    line-height: 24px;
    color: #0B1770;
    font-weight: 500;
}
.nr-apps-qr .apps-qr-close {
    width: 32px;
    height: 32px;
    padding: 4px;
}
.nr-apps-qr .apps-qr-close .icon-close {
    width: 24px;
    height: 24px;
}
.nr-apps-qr .apps-qr-body {
    width: 100%;
    padding: 14px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.nr-apps-qr .apps-qr-body img {
    width: 318px;
    height: 318px;
}

@media only screen and (max-width: 1399.98px) {}

@media only screen and (max-width: 1199.98px) {
    .nr-apps-download .apps-title {
        font-size: 50px;
        line-height: 50px;
    }

    .nr-apps-download .apps-img {
        margin-left: 64px;
    }
}

@media only screen and (max-width: 991.98px) {
    .nr-apps-download .apps-title {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 44px;
    }

    .nr-apps-download .apps-img {
        width: 280px;
        margin-left: 44px;
    }

    .nr-apps-download .apps-rate {
        margin-top: 44px;
        margin-bottom: 44px;
    }
}

@media only screen and (max-width: 767.98px) {
    .nr-apps-download {
        flex-direction: column;
    }

    .nr-apps-download .apps-info {
        margin: 44px 0;
    }

    .nr-apps-download .apps-img {
        width: 320px;
        margin-left: 0;
    }
}

@media only screen and (max-width: 575.98px) {
    body {
        background: white;
    }

    section {
        padding: 24px;
    }

    header {
        height: 57px;
        background: #ffffff;
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    }

    .header-logo {
        padding-top: 15px;
        height: 57px;
    }

    .header-logo-icon {
        width: 28px;
        height: 28px;
    }

    .btn-header-download {
        width: 130px;
    }

    .mobile-hide {
        display: none;
        visibility: hidden;
    }

    .mobile-show {
        display: block;
        visibility: visible;
    }

    .nr-apps-download {
        font-size: 16px;
        line-height: 24px;
    }

    .nr-apps-download .apps-info {
        margin: 10px 0;
    }

    .nr-apps-download .apps-title {
        font-size: 33px;
        line-height: 36px;
        letter-spacing: 0.25px;
        margin-bottom: 24px;
    }

    .nr-apps-download .apps-subtitle {
        margin: 0 auto;
        width: 100%;
        max-width: 500px;
        font-weight: 400;
    }

    .nr-apps-download .apps-img {
        width: 100%;
        max-width: 360px;
        padding: 24px;
        flex-shrink: 0;
        margin-left: 0;
    }

    .nr-apps-download .apps-rate {
        margin-top: 32px;
        margin-bottom: 32px;
        font-weight: 400;
    }

    .nr-apps-download .apps-rate > p:last-of-type {
        font-weight: 500;
    }

    .nr-apps-download .btn-footer-download {
        width: 280px;
        margin-bottom: 16px;
    }

}

@media only screen and (min-width: 576px) {}

@media only screen and (min-width: 768px) {}

@media only screen and (min-width: 992px) {}

@media only screen and (min-width: 1200px) {}

@media only screen and (min-width: 1400px) {
    .container-fluid {
        max-width: 1320px;
    }
}