        /* Landing base */

        .index-grid .item {
            background: var(--content-bg);
            flex: 1;
            display: flex;
            flex-direction: column;
            padding: 40px;
            text-align: center;
            justify-content: center;
            position: relative;
            border-radius: 12px;
            min-height: 260px;
            outline: 5px solid #0000001f;
            overflow: hidden;
        }

        .app-inner {
            width: 100%;
        }

        .index-grid {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .index-grid .top-row,.index-grid .bottom-row {
            flex: 1;
            display: flex;
        }

        .index-grid, .index-grid .top-row,.index-grid .bottom-row {
            gap: 40px;
        }

        .app-inner .container {
            max-width: 1140px;
        }

        @media only screen and (min-width: 768px) {
            .index-grid .top-row .item:first-child {
                max-width: 340px;
            }
        }
        @media only screen and (max-width: 768px) {
            .index-grid, .index-grid .top-row, .index-grid .bottom-row {
                flex-direction: column;
                gap: 30px !important;
            }
        }
body {
    font-family: 'Gilroy-Medium', sans-serif;
}
.logo {
    max-width: 126px;
    margin: 0 auto;
}

img {
    max-width: 100%;
}

.index-grid .item {
    position: relative;
}

.copy {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--primary-btn-color);
    width:60px;
    height:60px;
    border-bottom-left-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size:21px;
}
.item.logo-item {
    background: linear-gradient(225deg, #0a212e, #1988c7);
}
.logo-bottom {
    position: absolute;
    margin: 0 25px !important;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-bottom h1 {
    font-size: 26px;
}

.logo img {
    padding-bottom: 40px;
}

.logo-bottom h1 {
    background: #000f143d;
    height: 60px;
    padding: 0 30px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.item .icon {
    width: 72px;
    height: 72px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin: 0 auto;
    margin-bottom: 15px;
    background: #ffffff1a;
    font-size: 24px;
    position:relative;
}
.item .count {
    position: absolute;
    bottom: 0;
    background: #11acf8;
    color: white;
    font-size: 12px;
    margin: -10px;
    padding: 4px 9px;
    border-radius: 100px;
    font-weight: bold;
}
.icon.no-count {
    margin-bottom:5px;
}
.index-grid .bottom-row .item {
    cursor: pointer;
}
.item-text p {
    opacity: .75;
}

.item-text {
    margin-top: 5px;
}
.floating-icon {
    position: absolute;
    top: 0;
    right: 0;
    background: #11acf8;
    color: white;
    width: 60px;
    height: 60px;
    border-bottom-left-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
}

.item.with-bg .icon {
    background: var(--primary-color);
    color: var(--primary-btn-color);
}

.item.with-bg p {
    opacity: 1;
    color:  var(--primary-color);
}

.item.with-bg .floating-icon {
    background: var(--primary-color);
    color: var(--primary-btn-color);
}

/* */
.bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .05;
}

.index-grid .item > div:not(.bg) {
    z-index: 5;
}

.bg:After {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(181deg, #0a212e, transparent);
    height: 100%;
}

.item .count {
    background: var(--primary-color);
    color: var(--primary-btn-color);
}