.container {
    max-width: 1300px;
    margin: 0 auto;
}

body {
    font-family: "Manrope", sans-serif;
    background-color: #f1f6ff;
}

body .inline-padding {
    padding-left: 16px;
    padding-right: 16px;
}

@media screen and (min-width: 768px) {
    body .inline-padding {
        padding-left: 20px;
        padding-right: 20px;
    }
}

body .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media screen and (min-width: 768px) {
    body .section-padding {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.hero-banner {
    position: relative;
}

.hero-banner__container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 26px 0 0;
}

.hero-banner__logo-link {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .hero-banner__logo-link {
        margin-bottom: 24px;
    }
}

.hero-banner__title {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 28px;
    line-height: 110%;
    letter-spacing: 0%;
    text-align: center;
    text-wrap: balance;
    color: #fdfeff;
    margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .hero-banner__title {
        font-size: 64px;
        margin-bottom: 21px;
    }
}

.hero-banner__subtitle {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 22px;
    line-height: 110%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 22px;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .hero-banner__subtitle {
        margin-bottom: 24px;
        font-size: 36px;
    }
}

.hero-banner__app-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.hero-banner__app-links a {
    display: flex;
    width: fit-content;
}

.hero-banner__image-app {
    display: flex;
    width: auto;
}

.hero-banner__image-bundle {
    margin-top: 50px;
    display: flex;
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}

@media screen and (min-width: 768px) {
    .hero-banner__image-bundle {
        max-width: 722px;
    }
}

.hero-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-color: #051f2c;
    z-index: 1;
}

.hero-banner__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    opacity: 0.1;
}

.hero-banner__blur {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    object-fit: contain;
    overflow: visible;
    z-index: 2;
    border-radius: 100%;
}

.qr-code {
    pointer-events: none;
    display: none;
}

@media screen and (min-width: 768px) {
    .qr-code {
        pointer-events: all;
        display: block;
    }
}

.qr-code.active .qr-code__button {
    right: -100%;
}

.qr-code.active .qr-code__block {
    right: 30px;
}

.qr-code__button {
    position: fixed;
    z-index: 20;
    right: 30px;
    bottom: 90px;
    box-shadow: -4px 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0 50px;
    column-gap: 14px;
    width: fit-content;
    border-radius: 20px;
    background-color: #ffffff;
    border: none;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: 0%;
    color: #021b45;
    transition: right 0.5s ease-in-out, left 0.3s ease-in-out, transform 0.3s ease;
}

.qr-code__button:hover {
    transform: scale(1.05);
}

.qr-code__block {
    position: fixed;
    z-index: 20;
    right: -100%;
    bottom: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 21px;
    padding: 20px 113px 20px 22px;
    border-radius: 20px;
    background-color: #ffffff;
    max-width: 450px;
    box-shadow: -4px 2px 10px rgba(0, 0, 0, 0.2);
    transition: right 0.5s ease-in-out, left 0.3s ease-in-out;
}

.qr-code__image {
    display: flex;
    width: 128px;
    height: 128px;
}

.qr-code__disclaimer {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: 0%;
    color: #021b45;
}

.showcase__top-description {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: 0%;
    text-align: center;
    display: flex;
    flex-direction: column;
    max-width: 720px;
    margin: 0 auto;
    color: #515562;
}

.showcase__top-description .bold {
    font-weight: 600;
    color: #021b45;
}

.showcase__list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 24px;
    column-gap: 30px;
    margin-top: 24px;
}

@media screen and (min-width: 600px) {
    .showcase__list {
        margin-top: 30px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 800px) {
    .showcase__list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (min-width: 1024px) {
    .showcase__list {
        grid-template-columns: repeat(4, 1fr);
    }
}

.showcase__item {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    padding: 32px 24px 38px;
    border-radius: 20px;
    background: linear-gradient(180deg, #051f2c 0%, #005663 100%);
}

.showcase__icon {
    display: flex;
    width: 64px;
    height: auto;
}

.showcase__title {
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 20px;
    line-height: 110%;
    letter-spacing: 0%;
    color: #ffffff;
}

.showcase__description {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: 0%;
    color: #fff;
}

.featured-list {
    background-color: #051f2c;
    position: relative;
}

.featured-list__container {
    position: relative;
    z-index: 3;
}

@media screen and (min-width: 768px) {
    .featured-list__container {
        display: grid;
        grid-template-columns: 0.5fr 1fr;
        column-gap: 30px;
    }
}

.featured-list__background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.05;
}

.featured-list__text-content {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .featured-list__text-content {
        margin-bottom: unset;
        row-gap: 21px;
    }
}

.featured-list__title {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 28px;
    line-height: 110%;
    letter-spacing: 0%;
    text-align: center;
    color: #fdfeff;
}

@media screen and (min-width: 768px) {
    .featured-list__title {
        font-size: 48px;
        text-align: start;
    }
}

.featured-list__description {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: 0%;
    text-align: center;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .featured-list__description {
        text-align: start;
    }
}

.featured-list__list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 24px;
    column-gap: 30px;
    margin-top: 24px;
}

@media screen and (min-width: 768px) {
    .featured-list__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1200px) {
    .featured-list__list {
        grid-template-columns: repeat(4, 1fr);
    }
}

.featured-list__item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 20px;
    column-gap: 20px;
    border: 1px solid #00bab6;
}

@media screen and (min-width: 768px) {
    .featured-list__item {
        padding: 38px 15px 33px;
        row-gap: 40px;
        flex-direction: column;
        align-items: flex-start;
        min-height: 300px;
    }
}

.featured-list__text {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: 0%;
    color: #ffffff;
    text-wrap: balance;
}

.promo-grid__container {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 60px;
}

@media screen and (min-width: 768px) {
    .promo-grid__container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 30px;
    }
}

@media screen and (min-width: 1024px) {
    .promo-grid__container {
        column-gap: 72px;
    }
}

.promo-grid__content {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 768px) {
    .promo-grid__content {
        align-items: flex-start;
        justify-content: flex-start;
    }
}

.promo-grid__title {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 28px;
    line-height: 110%;
    letter-spacing: 0%;
    text-align: center;
    color: #021b45;
}

@media screen and (min-width: 768px) {
    .promo-grid__title {
        font-size: 36px;
        text-align: start;
    }
}

.promo-grid__subtitle {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 110%;
    letter-spacing: 0%;
    text-align: center;
    color: #515562;
}

@media screen and (min-width: 768px) {
    .promo-grid__subtitle {
        font-size: 36px;
        text-align: start;
    }
}

.promo-grid__description {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: 0%;
    text-align: center;
    color: #515562;
    margin-top: 20px;
}

@media screen and (min-width: 768px) {
    .promo-grid__description {
        text-align: start;
    }
}

.promo-grid__app-links {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
}

.promo-grid__app-links a {
    display: flex;
    width: fit-content;
}

@media screen and (min-width: 400px) {
    .promo-grid__app-links {
        justify-content: center;
        gap: 40px;
        width: fit-content;
    }
}

@media screen and (min-width: 768px) {
    .promo-grid__app-links {
        justify-content: flex-start;
        gap: 15px;
    }
}

.promo-grid__action-btn {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, #052633 0%, #01515e 100%);
    padding: 11.5px;
    border-radius: 20px;
    transition: transform 0.3s ease;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 110%;
    letter-spacing: 0%;
    color: #fff;
    text-decoration: none;
    max-width: 400px;
    margin: 0 auto;
}

.promo-grid__action-btn:hover {
    transform: scale(1.05);
}

@media screen and (min-width: 768px) {
    .promo-grid__action-btn {
        margin: unset;
    }
}

.promo-grid__image-app {
    display: flex;
    width: auto;
}

.promo-grid__image-container {
    display: flex;
    width: 100%;
}

.promo-grid__image {
    display: flex;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.footer {
    position: relative;
    background-color: #051f2c;
    padding: 80px 0 100px 0;
}

.footer__container {
    position: relative;
    z-index: 3;
    display: flex;
    width: 100%;
    flex-direction: column;
}


.footer__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.05;
}

.footer .footer-socials {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #FFFFFF99;
}

.footer .footer__link {
    background: linear-gradient(180deg, #052633 0%, #01515E 100%);
    width: 245px;
    height: 50px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 45px;

    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-transform: capitalize;
    color: #FFFFFF;
    text-decoration: none;
    margin-top: 12px;
}

.footer__text-content {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}


.footer__bottom-text-wrap {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.footer .footer__content {
    width: 100%;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}

.footer .footer__content .footer__wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
}

.all-rights-reserved {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    color: #FFFFFF99;
}

.footer__text {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: 0%;
    color: #ffffff;
    font-style: normal;
}

.footer__text a {
    color: #fff;
    text-decoration: none;
}

.footer__text a:hover {
    text-decoration: underline;
}

.footer .divider {
    width: 100%;
    max-width: 1230px;
    background: #00C0E8;
    height: 1px;
    margin: 42px auto;
}

.privacy-policy-first-screen {
    background: url("images/privacy-policy-first-screen-bg.png") no-repeat, #051F2C;
    padding: 80px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.privacy-policy-first-screen img {
    display: block;
    margin: 0 auto;
    margin-bottom: 24px;
}

.privacy-policy-first-screen h1 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 64px;
    line-height: 100%;
    text-align: center;
    color: #FDFEFF;
}

section.privacy-policy {
    padding: 80px 16px 100px 16px;
}

section.privacy-policy .text {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: #515562;
}

section.privacy-policy h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 100%;
    color: #021B45;
}

ul.text-list {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
}

ul.text-list li {
    list-style-type: disc;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    color: #515562;
}

ul.text-list li .text {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    color: #515562;
}

.mb-16 {
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .privacy-policy-first-screen h1 {
        font-size: 28px;
    }

    section.privacy-policy {
        padding: 40px 16px;
    }

    .privacy-policy-first-screen {
        padding: 40px 16px;
    }

    .footer {
        padding: 40px 0 80px 0;
    }
}