.newapps .section .grid {
    margin: 0 auto;
    max-width: 904px;
    width: auto;
    padding: 0 60px;
}

body {
    margin: 0;
}

.appsInfoHolder.expanded .app.topDesc {
    margin-bottom: 72px;
    border-bottom: none;
}

.appImage video {
    width: 100%;
}

.text ul li, ul.text li {
    list-style-position: outside;
}

article ul {
    list-style: disc outside;
    margin-left: 16px;
    padding-left: 0;
}

.newapps .whatsappBtn {
    height: 54px;
    width: 54px;
    bottom: 27px;
    right: 27px;
    position: absolute;
    z-index: 9999;
    transition: transform 0.2s;
}

.newapps .whatsappBtn:before {
    content: '';
    top: 0;
    left: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: url(/img/WA_icon.svg);
    background-repeat: no-repeat;
    z-index: 1;
}
.newapps .whatsappBtn:after {
    content: '';
    position: absolute;
    top: 23px;
    right: 23px;
    height: 0;
    width: 0;
    z-index: -1;
    background-color: #53BA63;
    border-radius: 50px;
    color: transparent;
    border: 2px solid white;
}

.newapps .whatsappBtn:hover:after {
    color: white;
    width: 240px;
    content: '';
    line-height: 64px;
    padding-left: 16px;
    font-weight: 700;
    overflow: hidden;
    animation: whatsapp 2s forwards;
    font-size: 32px;
}

@keyframes whatsapp {
    0% {
        color: transparent;
        height: 0;
        width: 0;
    }
    50% {
        top: -8px;
        right: -8px;
        height: 64px;
        width: 46px;
    }
    80% {
        width: 240px;
        background-image: none;
    }
    100% {
        top: -8px;
        right: -8px;
        height: 64px;
        background-image: url("img/whatsapp_text.svg");
        background-repeat: no-repeat;
        background-size: 65%;
        background-position: 25% 54%;
    }
}



.newapps .borderHolder {
    background-image: url(img/white_dot.svg);
    background-size: 100%;
    max-width: 1024px;
    margin: 0 auto;
    width: auto;
    position: relative;
    display: block;
    height: 4px;
}

.newapps .demoContent .title {
    font-size: 36px;
    /*margin-top: 50px;*/
    /*padding: 5vw 7% 0;*/
    font-weight: 700;
    color: #77a3dd;
    z-index: -1;
    position: relative;
    width: 75%;
    margin: 50px auto;
    line-height: 1.2;
    text-align: center;
}

.newapps .demoContent .btn {
    background: #77a3dd;
    min-width: 97.5px;
    width: auto;
    height: auto;
    text-align: center;
    color: white;
    font-size: 15px;
    font-weight: 100;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    z-index: 1;
    line-height: 1.2;
    padding: 18px 25px;
    margin: 0 auto;
    display: block;
    width: 160px;
}

.apps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

article {
    margin-left: 0;
}

.apps .app {
    cursor: pointer;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
}

.apps .app .icon {
    width: 160px;
    height: 160px;
    background-size: cover;
    transition: opacity 1s;
    position: relative;
}

.apps .app[data-app='city'] .icon {
    background-image: url("img/mainIcons/city.svg");
}

.apps .app[data-app='monitor'] .icon {
    background-image: url("img/mainIcons/monitor.svg");
}

.apps .app[data-app='billing'] .icon {
    background-image: url("img/mainIcons/billing.svg");
}

.apps .app[data-app='predict'] .icon {
    background-image: url("img/mainIcons/predict.svg");
}

.apps .app .icon::after {
    background-size: cover;
    opacity: 0;
    transition: opacity 1s;
    pointer-events: none;
    content: "";
    position: absolute;
    inset: 0;
}

.apps .app[data-app='city'] .icon::after {
    background-image: url("img/mainIcons/city.on.svg");
}

.apps .app[data-app='monitor'] .icon::after {
    background-image: url("img/mainIcons/monitor.on.svg");
}

.apps .app[data-app='billing'] .icon::after {
    background-image: url("img/mainIcons/billing.on.svg");
}

.apps .app[data-app='predict'] .icon::after {
    background-image: url("img/mainIcons/predict.on.svg");
}

.apps .app:hover .icon::after {
    opacity: 1;
}

.apps .app:hover .info {
    color: white;
}

.apps .app .info {
    color: #77A3DD;
    transition: color 1s;
}

.apps .app .info .title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    transition: color 1s;
}
.newapps .demoContent a.btn:hover {
    color: #002030;
}
.demoContent {
    margin-bottom: 30px;
}

.apps .app:hover .info .title {
    color: white;
}

.apps .app .info .subTitle {
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.apps .app .info .description {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
    width: 95%;
}

.subApps {
    margin-top: 72px;
    padding: 42px 0;
    border-top: 1px solid #77A3DD;
    border-bottom: 1px solid #77A3DD;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.subApps .app .icon {
    width: 75px;
    height: 75px;
    background-size: cover;
    transition: background-image 1s;
}

.subApps .app[data-app='data'] .icon {
    background-image: url("img/mainIcons/Data_ELearn-01.svg");
}

.subApps .app[data-app='elearning'] .icon {
    background-image: url("img/mainIcons/Data_ELearn-02.svg");
}

.subApps .app {
    cursor: pointer;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
}

.subApps .app .info .title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    color: white;
}

.subApps .app .info .description {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
    width: 100%;
    color: #77A3DD;
}

.useCasesHolder.expanded {
    border-top: 1px solid #77A3DD;
    border-bottom: 1px solid #77A3DD;
}

.useCasesHolder {
    padding: 36px 0;
    padding-bottom: 42px;
}

.useCasesHolder .title {
    font-weight: 300;
    font-size: 24px;
    color: #77A3DD;
    padding-bottom: 28px;
    text-transform: uppercase;
}

.useCasesHolder .useCases {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.useCasesHolder .useCases .useCase:hover .title {
    color: white;
}

.useCasesHolder .useCases .useCase .title {
    font-size: 16px;
    font-weight: 700;
    padding: 0;
    text-transform: none;
    line-height: 1;
    margin-bottom: 5px;
}

.useCasesHolder .useCases .useCase .type {
    font-size: 16px;
    font-weight: 300;
    padding: 0;
    color: white;
    text-transform: uppercase;
    margin-bottom: 5px;
    line-height: 1;
}

.useCasesHolder .useCases .useCase .description {
    font-size: 16px;
    font-weight: 200;
    padding: 0;
    color: white;
    width: 100%;
    line-height: 1.2;
}

.appsInfoHolder .app {
    border-top: 1px solid #77A3DD;
    padding: 48px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.appsInfoHolder.expanded .app {
    border-top: none;
    display: block;
    padding-top: 0;
    border-bottom: 1px solid #77A3DD;
    text-align: center;
}

.appsInfoHolder.expanded .app .title {
    text-transform: uppercase;
    font-weight: 200;
    font-size: 60px;
}

.appsInfoHolder.expanded .app .subTitle {
    font-size: 32px;
    margin-bottom: 18px;
}

.appsInfoHolder.expanded .app .description {
    font-size: 24px;
    width: 80%;
    margin: 0 auto;
    margin-top: 24px;
    line-height: 1.2;
}

.appsInfoHolder.expanded .app .appImage .image {
    width: 100%;
    aspect-ratio: 3 / 1;
}

.appsInfoHolder .app .appImage .image {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #77A3DD;
    background-size: contain;
    background-repeat: no-repeat;
}

.appsInfoHolder .app[data-app='city'] .appImage .image {
    background-image: url('/img/apps/2025/city.png');
}

.appsInfoHolder .app[data-app='monitor'] .appImage .image{
    background-image: url('/img/apps/2025/monitor.png');
}

.appsInfoHolder .app[data-app='billing'] .appImage .image{
    background-image: url('/img/apps/2025/billing.png');
}

.appsInfoHolder .app[data-app='fail'] .appImage .image{
    background-image: url('/img/apps/2025/fail.png');
}

.newapps {
    [data-app='predict'] {
        [data-idx='0'] .appImage .image {
            background-image: url('/img/apps/2025/innerApps/predBanner.png');
            background-size: cover;
            background-position: center center;
        }

        [data-idx='1'] .appImage .image {
            background-image: url('/img/apps/2025/innerApps/pred1.png');
        }

        [data-idx='2'] .appImage .image {
            background-image: url('/img/apps/2025/innerApps/pred2.png');
        }

        [data-idx='3'] .appImage .image {
            background-image: url('/img/apps/2025/innerApps/pred3.png');
        }

        [data-idx='4'] .appImage .image {
            background-image: url('/img/apps/2025/innerApps/pred4.png');
        }
    }
    [data-app='monitor'] {
        [data-idx='0'] .appImage .image {
            background-image: url('/img/apps/2025/innerApps/monitorBanner.png');
            background-size: cover;
            background-position: center center;
        }

        [data-idx='1'] .appImage .image {
            background-image: url('/img/apps/2025/innerApps/pred1.png');
        }

        [data-idx='2'] .appImage .image {
            background-image: url('/img/apps/2025/innerApps/pred2.png');
        }

        [data-idx='3'] .appImage .image {
            background-image: url('/img/apps/2025/innerApps/pred3.png');
        }

        [data-idx='4'] .appImage .image {
            background-image: url('/img/apps/2025/innerApps/pred4.png');
        }
    }
    [data-app='city'] {
        [data-idx='0'] .appImage .image {
            background-image: url('/img/apps/2025/innerApps/cityBanner.png');
            background-size: cover;
            background-position: center center;
        }

        [data-idx='1'] .appImage .image {
            background-image: url('/img/apps/2025/innerApps/pred1.png');
        }

        [data-idx='2'] .appImage .image {
            background-image: url('/img/apps/2025/innerApps/pred2.png');
        }

        [data-idx='3'] .appImage .image {
            background-image: url('/img/apps/2025/innerApps/pred3.png');
        }

        [data-idx='4'] .appImage .image {
            background-image: url('/img/apps/2025/innerApps/pred4.png');
        }
    }
    [data-app='billing'] {
        [data-idx='0'] .appImage .image {
            background-image: url('/img/apps/2025/innerApps/billingBanner.png');
            background-size: cover;
            background-position: center center;
        }

        [data-idx='1'] .appImage .image {
            background-image: url('/img/apps/2025/innerApps/pred1.png');
        }

        [data-idx='2'] .appImage .image {
            background-image: url('/img/apps/2025/innerApps/pred2.png');
        }

        [data-idx='3'] .appImage .image {
            background-image: url('/img/apps/2025/innerApps/pred3.png');
        }

        [data-idx='4'] .appImage .image {
            background-image: url('/img/apps/2025/innerApps/pred4.png');
        }
    }
}

/*.appsInfoHolder.expanded .app[data-app='fail'] .appImage .image{*/
/*    background-image: url('/img/apps/2025/predictBanner.png');*/
/*    background-size: cover;*/
/*    background-position: center center;*/
/*}*/

/*.appsInfoHolder .app[data-app='fail0'] .appImage .image{*/
/*    background-image: url('/img/apps/2025/fail0.png');*/
/*}*/

/*.appsInfoHolder .app[data-app='fail1'] .appImage .image{*/
/*    background-image: url('/img/apps/2025/fail1.png');*/
/*}*/

/*.appsInfoHolder .app[data-app='fail2'] .appImage .image{*/
/*    background-image: url('/img/apps/2025/fail2.png');*/
/*}*/

.appsInfoHolder .app:nth-of-type(2n) .appImage {
    order: 1;
}

.appsInfoHolder .app:nth-of-type(2n) .appInfo {
    order: 2;
}

.appsInfoHolder .app .title {
    font-size: 36px;
    color: white;
    font-weight: 900;
    line-height: 1.2;
}

.appsInfoHolder .app .subTitle {
    font-size: 21px;
    color: #77A3DD;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 6px;
}

.appsInfoHolder .app .text ul li{
    margin-bottom: 8px;
}

.appsInfoHolder .app .text {
    font-size: 18px;
    color: white;
    font-weight: 300;
    line-height: 1.2;
}

@media (max-width: 1023px) {
    .apps {
        grid-template-columns: 1fr;
    }
    .subApps {
        grid-template-columns: 1fr;
    }
    .appsInfoHolder .app {
        grid-template-rows: auto 1fr;
        grid-template-columns: auto;
        .appInfo {
            order: 1;
        }
        .appImage {
            order: 2;
        }

        &:nth-of-type(2n) .appInfo {
            order: 1;
        }
    }
    .useCasesHolder .useCases {
        grid-template-columns: repeat(2, 1fr);
    }
    .newapps .demoContent .title {
        width: 100%;
    }
}
@media (max-width: 767px)  {
    .appsInfoHolder.expanded .app.topDesc {
        margin-bottom: 0;
    }
    .newapps .section .grid {
        padding: 0 30px;
    }
}
@media (max-width: 500px)  {
    .useCasesHolder .useCases {
        grid-template-columns: repeat(1, 1fr);
    }
}

