:root {
	--bg-light-black: rgba(10, 10, 10, 1);
}

body,
.body-overlay {
    background-color: var(--theme-gradient);
}

.highlight-text {

    color: var(--theme-secondary);
}

.bg-light-black {
	background-color: var(--bg-light-black); 
}

.hero-section {
    background-image: url(../images/home-images/hero-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.button-primary img {
    transition: all 0.3s;
}



.button-primary:hover img {

    filter: invert();

}

/* Banner */

.hero-section {
    padding-top: 60px;
}

.banner-intro {

    background-image: url(../images/home-images/banner-intro.webp);

    background-repeat: no-repeat;

    background-size: cover;

    background-color: var(--theme-gradient);

}



.highlight-text {

    color: var(--theme-secondary);

}



.banner-title {

    font-size: 68px;

}



.button-block {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 20px;

}



.tick-list {

    display: flex;

    flex-direction: column;

    gap: 16px;

}



.tick-list li {

    font-size: 18px;

    padding: 0 0 0 30px;

    position: relative;

}



.tick-list li::before {

    content: '';

    background-image: var(--tick-icon);

    display: inline-block;

    position: absolute;

    inset: 5px auto 0 0;

    width: 20px;

    height: 20px;

    background-size: 20px;

    background-repeat: no-repeat;

}


/*Table Of Content*/
.table-section ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    list-style: none;
    column-gap: 80px;
    row-gap: 30px;
    /* border: 2px solid var(--theme-secondary); */
    padding: 0px;
}

.table-section ul li {
    border-bottom: 1px solid rgba(26, 26, 26, 1);
    padding-bottom: 30px;
}

.table-section ul li a {
    color: var(--white-color);
    font-weight: 600;
    position: relative;
    padding-left: 35px;
    display: block;
}

.table-section ul li a::before {
    content: "";
    /* background-image: url(../images/home-images/arrow-icon.webp); */
    background-image: var(--tick-icon);
    position: absolute;
    left: 0px;
    width: 22px;
    background-size: contain;
    height: 22px;
    background-repeat: no-repeat;
    top: 50%;
    transform: translate(0px, -50%);

}

.cta-1 {
    justify-content: end;
}

.cta-1 img {
    max-width: 55%;
}


/* Game Block */



.game-block {

    position: relative;

    width: 100%;

    height: 380px;

    overflow: hidden;

    border: 1px solid var(--theme-secondary);

    border-radius: 10px;

    transform: skew(0deg, 0deg);

    transition: all 0.3s;

}



.game-block img {

    position: absolute;

    inset: 0;

    margin: auto;

    z-index: -1;

    height: 100%;

    width: 100%;

    object-fit: cover;

}



.game-wrapper {

    background: transparent;

    height: 100%;

    padding: 20rem 30px 30px 30px;

    transition: all 0.3s;
    position: relative;

}

.game-wrapper::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3309698879551821) 0%, rgba(0, 0, 0, 1) 100%);
}


.game-wrapper h3,
.game-wrapper p {
    position: relative;
    z-index: 2;
}


.game-block p {

    opacity: 0;

    visibility: hidden;

    transition: all 0.3s;

}



.game-block:hover {

    transform: skew(1deg, -1deg);

}



.game-block:hover .game-wrapper {

    padding-top: 30px;

    background: #00000075;

}



.game-block:hover p {

    opacity: 1;

    visibility: visible;

}



/* App Block */



.app-intro {

    background-image: url(../images/home-images/app-intro.webp);

    background-repeat: no-repeat;

    background-size: cover;

    background-color: var(--theme-gradient);

}



.app-block {

    padding: 30px 30px;

    /* border: 1px solid var(--theme-secondary); */

    backdrop-filter: blur(12px);

    transition: all 0.3s;

    background: rgba(10, 10, 10, 1);

    height: 100%;

    border-radius: 10px;
}



.app-block:not(.app-account-card):hover {

    /* background-color: var(--black-color); */
    box-shadow: 0px 0px 11px 0px rgba(245, 245, 245, 0.19);
    transform: translateY(-5px);

}



/* Review Block */



.review-slider .swiper-slide {

    height: auto;

}



.review-block {

    position: relative;

    padding: 30px 30px;

    border: 1px solid rgba(61, 61, 61, 1);

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;

    height: 100%;
    border-radius: 10px;
    transition: all .3s ease;

}

.review-slider .swiper-slide.swiper-slide-active .review-block {
    background-color: var(--theme-secondary);
}


.review-sep {

    width: 30px;

    height: 30px;

    min-width: 30px;

}



.review-content {

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    height: 100%;

}



.review-details {

    display: flex;

    align-items: center;

    gap: 20px;

    justify-content: space-between;

}



.slider-button {

    display: flex;

    flex-direction: row-reverse;

    justify-content: center;

    gap: 20px;

    margin: 50px 0 0;

}



.slider-button .swiper-button-next,

.slider-button .swiper-button-prev {

    width: 44px;

    height: 44px;

    min-width: 44px;

    border: unset;

    border-radius: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: static !important;

    color: var(--white-color);

    margin: unset !important;

    z-index: 1 !important;

    border: 1px solid var(--white-color);

    transition: ease-in 0.3s;

}



.slider-button .swiper-button-next:hover,

.slider-button .swiper-button-prev:hover {

    background: var(--theme-secondary);

    border-color: var(--theme-secondary);

    color: var(--white-color);

    transition: ease-in 0.3s;

}



.slider-button .swiper-button-next:after,

.slider-button .swiper-button-prev:after {

    font-size: 18px;

}



/* Journey Block */



.services-intro {

    background-image: url(../images/home-images/journey-intro.webp);

    background-repeat: no-repeat;

    background-size: cover;

    background-color: var(--theme-primary);

}



.journery-listing {

    display: flex;

    flex-direction: column;

    gap: 40px;

}



.journery-listing li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid var(--theme-secondary);
    padding: 25px;
    transition: 400ms all;

}

.journery-listing li:hover {
    background: #000;
    transform: translateY(-10px);
}


.journery-listing li img {

    width: 100%;

    max-width: 30px;

}

.sticky-block {
    position: sticky;
    top: 194px;
    height: 100%;
}

/*Choose Section*/
.choose-block {
    border: 1px solid var(--theme-secondary);
    padding: 30px;
    transition: 400ms all;
    height: 100%;
}

.choose-block:hover {
    background: #000;
}

/* CTA Block */



.cta-wrapper {
    background-image: url(../images/home-images/cta-background-2.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: var(--theme-gradient);
    padding: 50px 90px;
    position: relative;
}

.cta-wrapper:not(.cta-3, .no-shadow)::before {
    content: '';
    background: rgba(10, 10, 10, .6);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}



.cta-wrapper.cta-2 {
    background-image: url(../images/home-images/cta-background.webp);
}

.cta-wrapper.cta-3 {
    background-image: unset;
    background-color: var(--theme-secondary);
}

.cta-wrapper.cta-3 a.button.button-primary {
    background: #fff;
    color: var(--theme-secondary);
}

.what-reddy-anna-section .cta-wrapper {
    padding: 0;
    background: transparent;
}

.app-block.app-account-card:hover {
    background-color: var(--theme-secondary);
}

/*Blog*/

.blog-grid {
    display: grid;
    gap: 20px;
    margin: 0 auto;
    grid-template-columns: repeat(3, 1fr);
}

.blog-card {
    background: #ffffff20;
    backdrop-filter: blur(8px);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.blog-image img {
    width: 100%;
    height: auto;
}

.blog-content {
    padding: 20px;
    text-align: left;
}

.blog-post-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--white-color);
}

.blog-card:hover {
    transform: scale(1.05);
}

.blog-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    margin: 0px auto;
    gap: 50px;
}

img.attachment-large.size-large.wp-post-image {
    margin-bottom: 30px;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.single-post h1 {
    text-align: left;
    max-width: 100% !important;
    margin-bottom: 30px;
}

.single-post h2 {
    margin-top: 45px;
}

.recent-post h3.recent-posts-title {
    margin-bottom: 40px;
}

.recent-post ul li a {
    color: var(--white-color);
    transition: 400ms all;
}

.recent-post ul li a:hover,
.single-post p a:hover {
    color: var(--theme-secondary) !important;
}

.single-post p a {
    color: var(--white-color) !important;
    text-decoration: underline !important;
    transition: 400ms all;
    font-weight: 600 !important;
}

.blog-content p.blog-date {
    color: var(--white-color) !important;
}

.post-cta-block {
    margin-top: 30px;
    padding: 30px;
    background: #ffffff20;
    border-radius: 10px;
    text-align: center;
}

.journery-listing li ul li {
    border: none;
    padding: 0px;
    padding-left: 30px;
}

.app-block-inner {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(2, 1fr);
}

.center-line {
    background: #ffffffb8;
    height: 1px;
    width: 100%;
    margin-block: 70px;
}

p a,
.blog-wrapper li a {
    color: #fff !important;
    text-decoration: underline !important;
}

.app-block .count {
    height: 50px;
    width: 50px;
    border-radius: 50px;
    background-color: var(--theme-secondary);
    color: #FFF;
    font-size: 30px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.platform-wrap {
    display: flex;
    gap: 20px;
}

.platform-card {
    width: 30%;
    height: 656px;
    padding: 52px 39px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    transition: all .3s ease;
    cursor: pointer;
}

.platform-card:nth-child(1) {
    background-image: url(../images/home-images/platform-img-1.webp);
}

.platform-card:nth-child(2) {
    background-image: url(../images/home-images/platform-img-2.webp);
}

.platform-card:nth-child(3) {
    background-image: url(../images/home-images/platform-img-3.webp);
}

.platform-card:nth-child(4) {
    background-image: url(../images/home-images/platform-img-4.webp);
}

.platform-card:nth-child(5) {
    background-image: url(../images/home-images/platform-img-5.webp);
}

.platform-card:nth-child(6) {
    background-image: url(../images/home-images/platform-img-6.webp);
}

.platform-card .platform-content {
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.platform-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.platform-card.active {
    width: 100%;
}

.platform-card.active .platform-content {
    opacity: 1;
    visibility: visible;
}

/* App List */
.single-app {
    display: flex;
    align-items: center;
    column-gap: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(50px);
    padding: 20px 20px;
}
.image-nd-name img {
    max-width: 100px;
    max-height: 100%;
}
.image-nd-name {
    display: flex;
    align-items: center;
    column-gap: 20px;
	width:30%;
}
.image-block {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px;
    width: 120px;
    height: 70px;
    max-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-nd-name h6 {
    font-size: 25px;
}
.btn-group {
    display: flex;
    margin-left: auto;
    column-gap: 20px;
    width: 290px;
    flex-shrink: 0;
    justify-content: flex-end;
}
.btn-group a {
	width:100%;
}
.single-app h4 {
    font-weight:300;
}
.list-apps {
    display: flex;
    flex-flow: column;
    row-gap: 20px;
}
.single-app > span {
    font-size: 60px;
    font-weight: bold;
    line-height: 1;
    width: 60px;
    flex-shrink: 0;
    text-align: center;
    background: linear-gradient(178deg,rgba(1, 114, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* App List End */

section#section-2 .app-block {
    background-color: #000;
}

.sections-on-page ul {
    border: 2px solid #fff;
    padding: 40px;
    margin: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
}
.sections-on-page ul li {
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #fff;
}
.sections-on-page ul li a {
    white-space: nowrap;
    color: #fff;
    font-size: 18px;
}
.app-block {
    width: 100%;
}


.modal-header h5 {
    font-size: 20px;
    color: #000;
    text-align: center;
    width: 100%;
}
.modal-header h5 {
    font-size: 20px;
    color: #000;
    text-align: center;
    width: 100%;
}

.form-fields {
    display: flex;
    width: 100%;
    flex-flow: column;
    row-gap: 20px;
}
.single-form-field label {
    font-size: 18px;
    color: #fff;
    width: 100%;
    font-weight: 600;
}

.single-form-field input {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    font-size: 16px;
    border: hidden;
}

.single-form-field input[type="submit"] {
    border: hidden;
    background-color: var(--theme-primary);
    color: #fff;
}
.modal-content .close {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: #fff;
    z-index: 2;
    border: hidden;
    font-size: 30px;
    line-height: 1;
}
.single-form-field p {
    margin: 0;
}
.modal-backdrop {
    z-index: 9999;
}
.modal {
    z-index: 99999;
}
.wpcf7-response-output {
    margin: 0 !important;
    color: #000;
    text-align: center;
}

.recent-post ul {
    padding: 0px 15px;
    margin: 0;
}
.recent-post li {
    margin-bottom: 15px;
    border-bottom: 1px solid #d5d5d5;
    padding-bottom: 15px;
}
.post-title a, .recent-post li a {
    text-decoration: none !important;
}


.inner-signup-modal {
    display: flex;
}

.left-image-signup {
    width: 40%;
    text-align: center;
    padding: 30px 40px;
}

.right-form-signup {
    width: 60%;
    display: flex;
    align-items: center;
    background-color: var(--theme-secondary);
    border-radius: 50px 0 0 50px;
    padding: 50px;
}

.modal-dialog {
    max-width: 800px;
}
.modal-dialog .modal-body {
    padding: 0;
}

@media screen and (max-width: 1599px) { 
    .platform-card {
        width: 10%;
    }
}

@media screen and (max-width: 991px) {
    .game-block {

        height: 300px;

    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-wrapper {

        padding: 15rem 20px 20px 20px;

    }

    .blog-wrapper {
        grid-template-columns: 1fr;
    }

    .recent-post h3.recent-posts-title {
        margin-bottom: 20px;
    }

    .cta-wrapper {

        padding: 50px 20px;

    }



    .banner-title {

        font-size: 32px;

    }



    .tick-list {

        width: fit-content;

        margin-inline: auto;

        text-align: left;

    }



    .button-block {

        justify-content: center;

    }



    .journery-listing {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        text-align: left;

    }

    .journery-listing li img {
        display: none;
    }

    .app-block-inner .tick-list {
        width: 100%;
    }

    .platform-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .platform-wrap .platform-card {
        width: 100%;
        height: auto;
    }

    .platform-wrap .platform-card .platform-content {
        opacity: 1;
        visibility: visible;
    }

    .platform-card::before {
        background: linear-gradient(180deg, rgb(0 0 0 / 50%) 0%, #000000 100%);
    }
	
	.single-app {
    flex-flow: column;
	padding: 10px;
}
.image-nd-name {
    width: 100%;
    flex-flow: column;
    row-gap: 10px;
}
.btn-group {
    justify-content: center;
    width: 100%;
}
.list-apps {
    display: grid;
    row-gap: 20px;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
}
.single-app h4 {
    font-size: 20px;
}
}



@media screen and (max-width: 767px) {

    .blog-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .tick-list li {
        font-size: 16px;
        padding: 0 0 0 30px;
        position: relative;
    }

    .review-sep {

        width: 20px;

        height: 20px;

        min-width: 20px;

    }

    .app-block-inner {
        grid-template-columns: repeat(1, 1fr);
    }

    .app-block-inner .tick-list {
        width: 100%;
    }

    .center-line {
        margin-block: 50px;
    }

    .app-block,

    .review-block {

        padding: 20px 20px;

    }



    .review-details {

        align-items: flex-start;

        gap: 15px;

        flex-direction: column-reverse;

        justify-content: left;

    }



    .slider-button {

        margin: 30px 0 0;

    }



    .login-block {

        display: none;

    }

    .journery-listing {
        grid-template-columns: repeat(1, 1fr);
    }

    .table-section ul {
        grid-template-columns: repeat(1, 1fr);
    }

    .platform-card {
    padding: 30px;
    cursor: auto;
    }
	.list-apps {
    grid-template-columns: 1fr;
}
.sections-on-page ul {
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr;
}
.three-left-right .row {
    row-gap: 20px;
}
.three-left-right .row:nth-child(2) {
    flex-flow: column-reverse;
}
.three-left-right {
    display: flex;
    flex-flow: column;
    row-gap: 40px;
}
}

@media (max-width: 575px) {
    .platform-wrap {
        grid-template-columns: repeat(1, 1fr);
    }
}