:root {
    --primary-color: #99ff00;
    --secondary-color: #0080ff;
    --white-color: #ffffff;
    --charcol-dark-color: #1e1e1e;
    --bg-theme-dark: #000000;
    --text-black: #1e1e1e;
    --grey-color: #1f1f1f;
    --custom-border-radius: 14px;

    --size: clamp(10rem, 1rem + 40vmin, 30rem);
    --gap: calc(var(--size) / 14);
    --duration: 60s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html,
body {
    background-color: var(--bg-theme-dark);
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poller One", serif;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none !important;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}


.loader-effect {
    text-align: center;
}

.text-typing-effect {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    font-size: 38px;
    text-transform: capitalize;
    padding: 16px 40px;
}

.text-change {
    min-width: 150px;
    display: inline-block;
    color: #fff;

}

.dud {
    /* opacity: 0.5; */
    color: var(--primary-color);
}

.text-themeprimary {
    color: var(--primary-color);
}

.cursor-pointer {
    cursor: pointer;
}

.common-section-spacing {
    padding: 140px 0;
}

.common-section-spacing-top {
    padding-top: 140px;
}

.common-section-spacing-bottom {
    padding-bottom: 140px;
}

.commom-heading {
    color: var(--white-color);
    font-size: 55px;
    line-height: 120%;
    letter-spacing: 0%;
}

.btn {
    padding: 5px 7px;
    border: 2px solid;
    border-radius: 40px;
    font-family: Poppins;
    font-weight: 700;
    font-size: 16px;
}

.btn .button-text {
    font-family: Poppins;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn.btn-primary,
.btn.btn-primary.outlined:hover {
    padding: 5px 7px;
    border: 2px solid var(--primary-color);
    color: var(--charcol-dark-color);
    transition: all 0.3s ease;
}

.btn.btn-primary.outlined {
    color: var(--white-color);
    transition: all 0.3s ease;
}

.button-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 14px;
    border-radius: 40px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding-right: 60px;
    transition: all 0.3s ease;
}

.button-content-wrapper::after {
    content: url("../imgs/icons/kairos-arrow.svg");
    max-height: 32px;
    position: absolute;
    right: 14px;
    transition: all 0.3s ease;
}

.btn.btn-primary.outlined .button-content-wrapper::after,
.btn.btn-secondary .button-content-wrapper::after {
    filter: brightness(1) invert(1);
}

.btn.btn-primary.outlined:hover .button-content-wrapper::after {
    filter: none;
}

.btn.btn-primary .button-content-wrapper::before,
.btn.btn-primary.outlined:hover .button-content-wrapper::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn.btn-secondary {
    padding: 5px 7px;
    border: 2px solid var(--secondary-color);
    color: var(--white-color);
    transition: all 0.3s ease;
}

.btn.btn-secondary .button-content-wrapper::before,
.btn.btn-secondary.outlined:hover .button-content-wrapper::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn.btn-primary.outlined .button-content-wrapper::before {
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn.btn-primary:hover {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn.btn-primary:hover .button-content-wrapper::before,
.btn.btn-secondary:hover .button-content-wrapper::before,
.btn.btn-secondary.outlined .button-content-wrapper::before {
    height: 54px;
    width: 54px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.partner-get-started-section .btn-secondary .button-text {
    color: #101828;
}

.partner-get-started-section .btn-secondary:hover .button-text {
    color: #fff;
}

.btn.btn-secondary:hover {
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.btn.btn-secondary.outlined:hover {
    color: var(--white-color) !important;
    transition: all 0.3s ease;
}

.secondary-commom-heading {
    font-family: Poller One;
    font-weight: 400;
    font-size: 34px;
    line-height: 140%;
}

.common-subheading {
    font-family: "Poller One", serif;
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    text-transform: lowercase;
}

.commom-description {
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    text-align: center;
}

.common-info-span {
    font-family: "poppins";
    font-weight: 600;
    font-size: 26px;
    line-height: 120%;
    text-transform: capitalize;
    color: #99ff00;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* transition: .4s ease-out; */
    background-color: transparent;
}

.header.scrolled .top-header {
    background-color: #000000da;
    z-index: 1049;
    position: fixed;
    animation: 0.7s ease-out slidedown;
}

@keyframes slidedown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

/* header.header.transparent-header {
    position: relative;
    z-index: auto;
} */

.head-menu-toggle.menu-active-mn::before {
    width: 224vw;
    height: 224vw;
    border-radius: 50%;
    background-color: var(--primary-color);
    transform-origin: center;
    transition: 0.6s;
    top: calc(90px - 112vw);
    right: calc(100px - 112vw);
}

.head-menu-toggle::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    top: -10px;
    right: -6px;
    background: var(--primary-color);
    border-radius: 50%;
    transition: 0.6s;
}

a.head-menu-toggle {
    position: relative;
    width: 28px;
    height: 20px;
    cursor: pointer;
    display: inline-block;
    z-index: 3;
}

a.head-menu-toggle img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 15px;
}

.head-menu-toggle.menu-active-mn .arrow,
.head-menu-toggle .cross {
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}

.head-menu-toggle .arrow,
.head-menu-toggle.menu-active-mn .cross {
    opacity: 1;
    visibility: visible;
    transition: all .4s ease;
}

a.head-menu-toggle.menu-active-mn span.toggleBars.bar1 {
    transform: rotate(-45deg);
    left: 14px;
    height: 15px;
}

a.head-menu-toggle.menu-active-mn span.toggleBars.bar2 {
    transform: rotate(45deg);
}

a.head-menu-toggle.menu-active-mn span.toggleBars.bar3 {
    opacity: 0;
}

.web-menu-mn {
    transition: 0.6s;
    position: absolute;
    top: 8rem;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: -1;
}

.customised-section-inner,
.video-overlay {
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.hero-banner .video-overlay::after {
    content: "";
    position: absolute;
    width: 100%;
    top: auto;
    height: 200px;
    bottom: 0;
    background: linear-gradient(0deg, #000000 0, rgba(17, 23, 29, 0) 80%);
}

.hero-banner .banner-bg-video {
    opacity: 0.6;
}

.web-menu-mn.menu-active-mn {
    display: block;
    z-index: 1049;
}

.header__inline-menu .menu-items {
    margin-bottom: 52px;
}

.header__inline-menu .menu-items .nav-link {
    font-weight: 400;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--charcol-dark-color);
    line-height: 0.9;
}

.header-social .social-icons .icon-list a,
.header__inline-menu .menu-items .nav-link,
.main-header hr.border-light {
    position: relative;
    display: inline-block;
    line-height: normal;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.475, 0.425, 0, 0.995) 0.1s,
        opacity 0.25s cubic-bezier(0.475, 0.425, 0, 0.995) 0.1s;
}

.menu-active-mn .header__inline-menu .menu-items .nav-link {
    transform: translateX(0);
    opacity: 1;
}

.menu-active-mn .header__inline-menu .menu-items:first-child .nav-link {
    transition-delay: 0.2s;
}

.menu-active-mn .header__inline-menu .menu-items:nth-child(2) .nav-link {
    transition-delay: 1.1s;
}

.menu-active-mn .header__inline-menu .menu-items:nth-child(9) .nav-link {
    transition-delay: 0.9s;
}

.menu-active-mn .header__inline-menu .menu-items:nth-child(3) .nav-link {
    transition-delay: 0.3s;
}

.menu-active-mn .header__inline-menu .menu-items:nth-child(4) .nav-link {
    transition-delay: 1.3s;
}

.menu-active-mn .header__inline-menu .menu-items:nth-child(5) .nav-link {
    transition-delay: 0.5s;
}

.menu-active-mn .header__inline-menu .menu-items:nth-child(6) .nav-link {
    transition-delay: 1.5s;
}

.menu-active-mn .header__inline-menu .menu-items:nth-child(7) .nav-link {
    transition-delay: 0.7s;
}

.menu-active-mn .header__inline-menu .menu-items:nth-child(8) .nav-link {
    transition-delay: 1.7s;
}

.menu-active-mn .main-header hr.border-light {
    transition-delay: 1.8s;
    transform: translateX(0);
    opacity: 1;
    width: 100%;
}

.menu-active-mn .main-header .social-icons .icon-list a {
    transform: translateX(0);
    opacity: 1;
}

.menu-active-mn .main-header .social-icons .icon-list:nth-child(1) a {
    transition-delay: 2s;
}

.menu-active-mn .main-header .social-icons .icon-list:nth-child(2) a {
    transition-delay: 2.1s;
}

.menu-active-mn .main-header .social-icons .icon-list:nth-child(3) a {
    transition-delay: 2.2s;
}

.menu-active-mn .main-header .social-icons .icon-list:nth-child(4) a {
    transition-delay: 2.3s;
}

.menu-active-mn .main-header .social-icons .icon-list:nth-child(5) a {
    transition-delay: 2.4s;
}

.menu-active-mn .main-header .social-icons .icon-list:nth-child(6) a {
    transition-delay: 2.5s;
}

.header__inline-menu .list-menu li.menu-items {
    flex: 0 0 49%;
    overflow: hidden;
    line-height: 1;
}

.header-social .social-icons a.icons {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--charcol-dark-color);
    padding: 0 1rem;
}

header.menu-active-mn {
    position: fixed;
    top: 0;
    width: 100%;
    /* height: 7vh; */
    z-index: 1049;
}

header.header .top-header,
.page-template-careers header.header .top-header,
.single-portfolio .top-header {
    position: absolute;
    width: 100%;
    z-index: 10;
    background: 0 0;
}

.top-header .logo {
    z-index: 2;
}

.hero-banner .content-box .banner-heading,
.what-we-do-banner .banner-heading {
    font-weight: 400;
    font-size: 75px;
    line-height: 120%;
    text-align: center;
}

.hero-banner .content-box .banner-heading .strock-text {
    color: black;
    -webkit-text-fill-color: transparent;
    /* Will override color (regardless of order) */
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: var(--primary-color);
}

.ratio::before {
    display: block;
    padding-top: 0;
    content: "";
}

.hero-banner .ratio {
    height: 100vh;
}

.rendom-moto-text {
    color: black;
    -webkit-text-fill-color: transparent;
    /* Will override color (regardless of order) */
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: var(--primary-color);
    font-weight: 400;
    font-size: 250px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    opacity: 0;
    transform: translateX(30%);
}

.mottotextsection.in-view .rendom-moto-text {
    animation: fadedmottoInLeft 3s ease-out forwards;
}

.rendom-moto-text.dream {
    top: 0%;
    right: -7%;
    z-index: 0;
}

.rendom-moto-text.code {
    top: -18%;
    left: -1%;
    z-index: 0;
}

.rendom-moto-text.realise {
    top: -4%;
    left: auto;
    right: -7%;
    z-index: 3;
}

@keyframes fadedmottoInLeft {
    to {
        opacity: 0.15;
        transform: translateX(0);
    }
}

.growing-company-section {
    padding: 64px;
}

.growing-companies-height {
    max-height: 300px;
}

.growing-company-section:before {
    background: linear-gradient(270deg, #fff0, #fff 78.84%);
    left: 0;
}

.growing-company-section:after,
.growing-company-section:before {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    width: 18%;
    z-index: 99;
}

.growing-company-section:after {
    background: linear-gradient(90deg, #fff0, #fff 78.84%);
    right: 0;
}

.growingCompScroller {
    max-width: 100%;
}

.growingCompScroller[data-animated="true"] .scroller__inner {
    animation: scroll var(--_animation-duration, 120s) var(--_animation-direction, forwards) linear infinite;
    column-gap: 70px;
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
}

.growingCompScroller[data-direction="right"] {
    --_animation-direction: reverse;
}

.growingCompScroller[data-direction="left"] {
    --_animation-direction: forwards;
}

.growingCompScroller[data-speed="fast"] {
    --_animation-duration: 60s;
}

.growingCompScroller[data-speed="slow"] {
    --_animation-duration: 20s;
}

@keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}

.scrolledtext-moto .marquee-item {
    font-family: Poller One;
    font-weight: 400;
    font-size: 140px;
    line-height: 200px;
    color: #fff;
    position: relative;
    display: block;
    padding-right: 80px;
    text-transform: uppercase;
}

.scrolledtext-moto .marquee-item::after {
    content: '';
    right: -10px;
    top: 38px;
    position: absolute;
    background-image: url("../imgs/icons/kairos-arrow-colored.svg");
    width: 70px;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
}

.scrolledtext-moto .marquee-item.outlined-text {
    color: black;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: var(--primary-color);
}

.scrolledtext-moto {
    rotate: -6deg;
}

.scrolledtext-moto.services-scrolled-text {
    rotate: 6deg;
}

.innerspace-y-90 {
    padding: 90px 0;
}

.space-b-90 {
    margin-bottom: 90px;
}

.services-cards {
    background: #1e1e1e1f;
    border: 2px solid #ceff844d;
    padding: 30px;
    border-radius: 18px;
    z-index: 10;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.services-cards:hover {
    background: url("../imgs/services-card-bg.png");
    transition: all 0.3s ease;
}

.services-cards::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    filter: blur(90px);
    background: #99ff00b2;
    width: 100px;
    height: 100px;
    z-index: -1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.services-cards .icon {
    width: 100px;
    height: 100px;
    background: #000000;
    margin-bottom: 45px;
    transition: all 0.3s ease;
}

.services-cards .services-card-heading {
    font-family: Poppins;
    font-weight: 600;
    font-size: 22px;
    line-height: 100%;
    color: var(--white-color);
    transition: all 0.3s ease;
}

.services-cards:hover {
    border: 2px solid #ceff84;
    transition: all 0.3s ease;
}

.services-cards:hover::before {
    filter: blur(70px);
    background: #99ff00;
    transition: all 0.3s ease;
}

.services-cards:hover .icon svg path {
    fill: #99ff00;
    transition: all 0.3s ease;
}

.services-cards .services-card-info-wrapper .commom-description {
    font-size: 14px;
    opacity: 0;
    transition: all .3s ease;
    max-width: 280px;
}

.services-cards:hover .services-card-info-wrapper .commom-description {
    opacity: 1;
    transition: all .3s ease;
}

.services-cards .services-card-info-wrapper .random-service-icon {
    position: absolute;
    top: 0;
    right: 10px;
}

/* .tour-cta-section {
    min-height: 90vh;
} */

.tour-cta-section .ratio {
    aspect-ratio: 2.2/1;
}

.techstack-section {
    /* background-color: var(--primary-color); */
    background-image: url("../imgs/techstack-bg.png");
    background-position: center;
    object-fit: cover;
    background-repeat: no-repeat;
}

.techstack-section .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.techstack-section .commom-heading {
    color: var(--primary-color);
}

.techstack-section:before {
    background: linear-gradient(270deg, #fff0, #000000 78.84%);
    left: 0;
}

.techstack-section:after,
.techstack-section:before {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    width: 12%;
    z-index: 99;
}

.techstack-section:after {
    background: linear-gradient(90deg, #fff0, #000000 78.84%);
    right: 0;
}

.techstack-section .marquee-item {
    line-height: 100% !important;
    display: block;
    margin: 0 20px;
}

.techstack-section .marquee-item img {
    max-width: 65px;
    min-width: 65px;
}

.techstack-section .marquee-item img.neon-icon {
    filter: invert(73%) sepia(95%) saturate(1000%) hue-rotate(35deg) brightness(120%) contrast(100%);
}

.techstack-section .marquee-item img.neon-icon,
.techstack-section .marquee-item:hover img.colored-icon {
    display: block;
}

.techstack-section .marquee-item:hover img.neon-icon,
.techstack-section .marquee-item img.colored-icon {
    display: none;
}

.techstack-section .marquee-item:hover {
    scale: 1.15;
}

.techstack-section li {
    padding-top: 10px !important;
    min-height: 110px;
}

.techstack-section .marquee-item .tech-name {
    font-size: 14px;
    font-weight: 400;
    font-family: poppins;
    margin-top: 5px;
    opacity: 0;
    transition: all 0.3s ease;
    line-height: 100% !important;
    text-transform: capitalize;
}

.techstack-section .marquee-item:hover .tech-name {
    opacity: 1;
    transition: all 0.3s ease;
}

.singleblog-card .blog-img {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
    margin-bottom: 32px;
}

.singleblog-card .blog-heading {
    font-family: Poppins;
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: var(--white-color);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.singleblog-card .author-name {
    font-family: Poppins;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: var(--primary-color);
    white-space: nowrap;
}

.singleblog-card .date-time {
    font-family: Poppins;
    font-weight: 500;
    font-size: 16px;
    white-space: nowrap;
}

/* testimonisal slider starts here */

.testimonials-slider-section .testimonials-badge img {
    height: 40px !important;
    width: 100%;
}

.testimonials-slider-section .testimonial-slider-container .signle-testimonial-card {
    border: 1.5px solid #ceff841f;
    box-shadow: 1px 3px 54px 3px #517c1024;
    background: #000000;
    border-radius: 18px;
    padding: 20px 25px;
}

.testimonials-slider-section .testimonial-slider-container .message-text {
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: var(--white-color);
}

.testimonials-slider-section .testimonial-slider-container .userImage img {
    border-radius: 50%;
    object-fit: cover;
}

.testimonials-slider-section .testimonial-slider-container .position,
.testimonials-slider-section .testimonial-slider-container .username {
    color: #101828;
    font-family: Poppins;
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    color: var(--white-color);
}

.testimonials-slider-section .testimonial-slider-container .username {
    font-size: 16px;
}

.testimonial-slider-container {
    max-height: 100vh;
    overflow: hidden;
}

.testimonial-slider-container:after {
    background: linear-gradient(0deg, #000000 20%, hsla(0, 0%, 100%, 0));
    bottom: 0;
    content: "";
    height: 230px;
    position: absolute;
    top: auto;
    width: 100%;
    z-index: 3;
}

.testimonial-slider-container:before {
    background: linear-gradient(180deg, #000000 20%, hsla(0, 0%, 100%, 0));
    content: "";
    height: 100px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 3;
}

.testimonials-slider-section .slick-vertical .slick-slide {
    padding: 16px;
}

.testimonial-slider-container .tickercontainer {
    transform: rotate(90deg);
}

.testimonial-slider-container .tickercontainer ul li {
    line-height: normal !important;
    max-width: 456px !important;
    transform: rotate(-90deg);
    white-space: break-spaces !important;
}

.testimonials-slider-section .testimonials-cards-list {
    column-count: 3;
}

@media (max-width: 1199.98px) {
    .testimonials-slider-section .testimonials-cards-list {
        column-count: 2;
    }
}

@media (max-width: 991.98px) {
    .testimonials-slider-section .testimonials-cards-list {
        column-count: 1;
    }
}

@media (max-width: 575.98px) {
    .testimonial-slider-container {
        max-height: 240vh;
    }
}

.testimonialsUpwardslide {
    animation-play-state: running;
}

.testimonialsUpwardslide:hover {
    animation-play-state: paused;
}

/* testimonisal slider ends here */

.partner-get-started-section .partner-get-started-card {
    padding: 90px 50px;
    background-color: var(--primary-color);
    border-radius: 18px;
}

.partner-get-started-card .get-started-para {
    font-family: Poppins;
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
}

.main-footer .footer-heading {
    font-family: Poppins;
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    color: var(--primary-color);
    text-transform: capitalize;
}

.main-footer .footer-details-content li,
.main-footer .footer-details-content li a,
.main-footer .founder-link,
.main-footer .founder-link a {
    font-family: Poppins;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    margin-bottom: 12px;
}

.footer .social-icons a.icons {
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    margin: 0 1.5rem;
}

.blogs-slider-section {
    min-height: 60vh;
    /* overflow: hidden; */
}

.blogs-slider-section .menu {
    overflow: hidden;
    cursor: -webkit-grab;
    cursor: grab;
    width: 100%;
    position: relative;
    z-index: 1;
    min-height: 50vh;
}

.blogs-slider-section .menu.is-dragging {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.blogs-slider-section .menu--wrapper {
    counter-reset: count;
    display: flex;
    position: absolute;
    z-index: 1;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
}

.blogs-slider-section .menu--item {
    counter-increment: count;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 30vw;
    height: 100%;
    padding: 0 1.5vw;
    overflow: hidden;
}

.blogs-slider-section #mySlickProgress {
    width: 100%;
    margin-top: 10px;
    -webkit-appearance: none;
    height: 2px;
    background: #ccc;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.blogs-slider-section #mySlickProgress::-webkit-slider-runnable-track {
    height: 2px;
    background: linear-gradient(to right, #000 0%, #000 var(--progress), #ccc var(--progress), #ccc 100%);
    border-radius: 2px;
    transition: background 0.3s ease;
}

.blogs-slider-section #mySlickProgress::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: url(../imgs/drag-slider-icon.png);
    cursor: pointer;
    margin-top: -49px;
    transition: transform 0.3s ease;
}


.blogs-slider-section .dragable-blogs-slick .singleblog-card .blog-heading {
    font-size: 16px;
}

.blogs-slider-section .dragable-blogs-slick .slick-prev,
.blogs-slider-section .dragable-blogs-slick .slick-next {
    display: none !important;
}


@media (max-width: 767px) {
    .blogs-slider-section .menu--item {
        width: 40vw;
        height: 40vw;
    }
}

.blogs-slider-section .menu--item:nth-child(n + 10):before {
    content: counter(count);
}

.blogs-slider-section .menu--item figure {
    position: absolute;
    z-index: 1;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    padding: 0;
    border: none;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    transform-origin: center;
}

.blogs-slider-section .menu--item figure img {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    vertical-align: middle;
    transform-origin: center;
}

.blogs-slider-section .menu--item figure:before {
    position: absolute;
    z-index: 2;
    bottom: 1vw;
    left: 1vw;
    display: inline-block;
    content: "0" counter(count);
    color: #ffffff;
    font-size: 3vw;
}

.blogs-slider-section .version {
    display: inline-block;
    position: fixed;
    text-align: center;
    z-index: 1;
    text-decoration: none;
    background: #333;
    font-family: sans-serif;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    border-radius: 10px;
    box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2);
    top: -30px;
    right: -50px;
    bottom: auto;
    transform: rotate(45deg);
    transform-origin: 0% 100%;
    border-radius: 0;
    padding: 8px 30px;
    font-size: 11px;
}

.blogs-slider-section .version:before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100px;
    bottom: 0;
    right: 0%;
    background: transparent;
}

.contact-modal .modal-dialog .modal-content {
    background-color: transparent;
}

.contact-modal .modal-dialog .modal-content {
    background-color: transparent;
}

.contact-modal .contact-form-outer {
    background-image: url("../imgs/contact-us-bg.png");
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 2/1.2;
}

.contact-modal .contact-form-outer .form-control {
    background-color: #060606;
    border-radius: 14px;
    padding: 11px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #9d9d9dc2;
    margin-bottom: 15px;
    color: #fff;
    font-family: poppins;
}

.contact-modal .contact-form-outer .form-control::placeholder {
    color: #ffffffb9;
}

.modal-backdrop {
    --bs-backdrop-opacity: 0.9;
}

.portfolio-wrapper,
.portfolio-wrapper .content {
    position: relative;
    width: 100%;
    z-index: 1;
}

.portfolio-wrapper .content .section {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-wrapper .content .section.hero .zoomed-img {
    background-image: url("../imgs/what-we-done-zoomed2.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
}

.portfolio-wrapper .image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2;
    perspective: 500px;
    overflow: hidden;
}

.portfolio-wrapper .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.portfolio-wrapper.common-innovative-banner .common-info-span {
    font-size: 16px;
}

.portfolio-wrapper.common-innovative-banner .commom-description {
    font-size: 10px;
}

.portfolio-wrapper.common-innovative-banner .testimonials-scn-area {
    bottom: auto;
    top: 50%;
    z-index: 1;
    left: 25%;
}

.portfolio-wrapper.common-innovative-banner .discription {
    max-width: 220px;
    right: 24%;
    bottom: auto;
    top: 65%;
}

#portfolios-id {
    scroll-margin-top: 100px;
}

.gsap-marker-end,
.gsap-marker-start,
.gsap-marker-scroller-end,
.gsap-marker-scroller-start {
    display: none !important;
}

.portfolioheading {
    opacity: 0;
    visibility: hidden;
    scale: .3;
    transition: all .6s ease;
}

.portfolioheading.scrolled {
    opacity: 1;
    visibility: visible;
    scale: 1;
    transition: all .6s ease;

}

.portfolioheading .filled-text {
    z-index: -1;
}

.portfolioheading .zoomed-strocked-text {
    z-index: 3;
}

.portfolioheading .zoomed-strocked-text .commom-heading {
    color: black;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: var(--white-color);
    /* margin-top: 20px; */
}

/* How we do it section css starts here */

.how-we-do-section .commom-heading {
    margin-bottom: 180px;
}

.howwedo_circle_outer .single-piece-outer {
    min-height: 820px;
}

.howwedo_circle_outer .single-piece {
    position: absolute;
}

.howwedo_circle_outer .single-piece:nth-child(1) {
    top: 0;
    left: calc(35% - 6px);
}

.howwedo_circle_outer .single-piece:nth-child(2) {
    top: 10%;
    left: auto;
    right: 25%;
}

.howwedo_circle_outer .single-piece:nth-child(3) {
    top: calc(45% - 2px);
    left: auto;
    right: calc(25% + 3px);
}

.howwedo_circle_outer .single-piece:nth-child(4) {
    top: calc(47% + 2px);
    left: calc(27% + 6px);
}

.howwedo_circle_outer .single-piece:nth-child(5) {
    top: 10%;
    left: 24%;
}

.howwedo_circle_outer .single-piece {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s ease-out;
}

.howwedo_circle_outer .single-piece.show {
    opacity: 1;
    transform: translateY(0);
}


.howwedo_circle_outer .single-piece .single-piece-para {
    font-size: 16px;
    color: #fff;
    font-family: poppins;
    font-weight: 500;
    position: absolute;
    max-width: 250px;
}

.howwedo_circle_outer .single-piece:nth-child(1) .single-piece-para {
    top: 0px;
    left: auto;
    right: -270px;
}

.howwedo_circle_outer .single-piece:nth-child(2) .single-piece-para {
    top: 40%;
    left: auto;
    right: -270px;
}

.howwedo_circle_outer .single-piece:nth-child(3) .single-piece-para {
    top: 70%;
    left: auto;
    right: -170px;
}

.howwedo_circle_outer .single-piece:nth-child(4) .single-piece-para {
    top: 70%;
    left: -170px;
}

.howwedo_circle_outer .single-piece:nth-child(5) .single-piece-para {
    top: 40%;
    left: -270px;
}

/* How we do it section css ends here */


/* what we do css starts here  */
/* 
.single-techstack-section {
  background-color: #F2F4F7;
} */

.single-techstack-section .image-translate-container {
    height: 784px;
}

.single-techstack-section .outline-text-marquee .outline-marquee {
    justify-content: flex-start;
    overflow: hidden;
}

.image-translate-container .center-img-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.image-translate-container .center-img-1 img {
    max-width: 556px !important;
}

.image-translate-container .center-img-2 {
    left: 20%;
    top: 22%;
    transform: translate(-22%, -20%);
    z-index: 16;
    transition: all .7s ease;
}

.image-translate-container:hover .center-img-2 {
    left: 15%;
    top: 15%;
    transform: translate(-15%, -15%);
    z-index: 16;
    transition: all .7s ease;
}


.image-translate-container .center-img-3 {
    left: 50%;
    top: 10%;
    transform: translate(-50%, -10%);
    z-index: 1;
    transition: all .7s ease;
}

/* .image-translate-container .center-img-2 img,
.image-translate-container .center-img-3 img,
.image-translate-container .center-img-4 img,
.image-translate-container .center-img-6 img,
.image-translate-container .center-img-7 img {
  max-width: 400px !important;
} */

.image-translate-container:hover .center-img-3 {
    left: 50%;
    top: 0%;
    transform: translate(-55%, -5%);
    transition: all .7s ease;
}

.image-translate-container .center-img-4 {
    right: 20%;
    top: 22%;
    transform: translate(22%, -30%);
    z-index: 2;
    transition: all .7s ease;
}

.image-translate-container:hover .center-img-4 {
    right: 15%;
    top: 15%;
    transform: translate(15%, -15%);
    transition: all .7s ease;
}

.image-translate-container .center-img-5 {
    right: 15%;
    top: 50%;
    transform: translate(32%, -50%);
    z-index: 15;
    transition: all .7s ease;
}

.image-translate-container .center-img-5 img {
    max-width: 375px !important;
}

.image-translate-container:hover .center-img-5 {
    right: 10%;
    top: 50%;
    transform: translate(10%, -50%);
    transition: all .7s ease;
}

.image-translate-container .center-img-6 {
    bottom: 18%;
    right: 20%;
    top: auto;
    transform: translate(33%, 24%);
    z-index: 15;
    transition: all .7s ease;
}

.image-translate-container:hover .center-img-6 {
    bottom: 10%;
    right: 18%;
    transform: translate(18%, 10%);
    transition: all .7s ease;
}

.image-translate-container .center-img-7 {
    bottom: 18%;
    left: 20%;
    top: auto;
    transform: translate(-32%, 24%);
    z-index: 5;
    transition: all .7s ease;
}

.image-translate-container:hover .center-img-7 {
    bottom: 10%;
    left: 15%;
    transform: translate(-15%, 10%);
    transition: all .7s ease;
}

.image-translate-container .center-img-8 {
    left: 15%;
    top: 50%;
    transform: translate(-15%, -50%);
    transition: all .7s ease;
    z-index: 5;
}

.image-translate-container .center-img-8 img {
    max-width: 340px !important;
}

.image-translate-container:hover .center-img-8 {
    left: 10%;
    top: 50%;
    transform: translate(-10%, -50%);
    transition: all .7s ease;
    z-index: 5;
}

.image-translate-container .icon-name {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
    color: var(--primary-color);
    opacity: 0;
    transition: all .8s ease;
}

.image-translate-container:hover .icon-name {
    transition: all .8s ease;
    opacity: 1;
}

.tech-stack-marque {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 0;
}

.tech-stack-marque .marquee-item {
    font-family: 'Poller One';
    font-style: normal;
    font-weight: 400;
    font-size: 70px;
    line-height: 1.5;
    color: black;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--primary-color);
    opacity: .2;
    margin: 0 20px;
    text-transform: uppercase;
}

.what-we-do-banner {
    background-image: url('../imgs/what-we-do-banner.png');
    background-size: 99%, cover, cover;
    background-position: center, top, bottom;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.techstackcarousel-section {
    margin: 0;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* height: 70vh; */
    overflow: hidden;
}

.techstackcarousel-section .carousel-wrapper {
    width: 300px;
    height: 300px;
    perspective: 1000px;
}

.techstackcarousel-section .carousel {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1s;
}

.techstackcarousel-section .carousel .services-cards {
    width: 90px;
    height: 90px;
    position: absolute;
    left: 105px;
    top: 105px;
    object-fit: cover;
    transition: transform 0.5s ease;
    padding: 10px;
    border-radius: 10px;
    background-color: #000000;
}

.techstackcarousel-section .carousel .services-cards:hover::before {
    background: #99ff00b2;
}

.techstackcarousel-section .carousel .services-cards .tech-name {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(-200px);
    opacity: 0;
    font-size: 10px;
    font-weight: 500;
    font-family: poppins;
    color: var(--white-color);
    text-align: center;
    transition: all 0.3s ease;
    line-height: 100% !important;
    text-transform: capitalize;
}

.techstackcarousel-section .carousel .services-cards:hover .tech-name {
    position: absolute;
    transform: translateY(0px);
    opacity: 1;
    transition: all .5s ease;
}

#horizontalScroll-sections {
    width: 200vw;
    height: 200vh;
    position: relative;
    transition: transform 0.6s ease-in-out;
    overflow: hidden;
}

.portfolios-section {
    /* width: 100vw; */
    /* height: 100vh; */
    /* position: absolute; */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .portfolios-section#s1 {
    top: 0;
    left: 0;
}

.portfolios-section#s2 {
    top: 0;
    left: 100vw;
}

.portfolios-section#s3 {
    top: 100vh;
    left: 100vw;
}

.portfolios-section#s4 {
    top: 100vh;
    left: 0;
} */

.portfolios-section .bg-img {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
    opacity: .5;
}

.portfolios-section.right .bg-img {
    right: 0;
    left: auto;
}

.portfolios-section.left .bg-img {
    right: auto;
    left: 0;
}

#whyChooseSection {
    scroll-margin-top: 200px;
}

.why-choose-us-section .right-bottom-b {
    border-right: 1px solid var(--primary-color);
}

.why-choose-us-section .single-choose-card {
    padding: 15px;
}

.why-choose-us-section .single-choose-card::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
    background: #99ff00ab;
    width: 120px;
    height: 120px;
    z-index: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0;
}

.why-choose-us-section .single-choose-card:hover::after {
    opacity: 1;
}

.why-choose-us-section .single-choose-card.bottom-border {
    border-bottom: 1px solid var(--primary-color) !important;
}

.why-choose-us-section .common-info-span {
    font-size: 30px;
}

.portfolios-section .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms linear;
    transform: scale(0.8);
}

.portfolios-section .swiper-slide.swiper-slide-active {
    transform: scale(1);
}

.portfolios-section .swiper-button-next {
    background-image: url('../imgs/icons/arrow_right.svg');
    top: 10px;
    width: 50px;
    display: none;
}

.portfolios-section .swiper-button-prev {
    background-image: url('../imgs/icons/arrow_left.svg');
    top: 10px;
    left: auto;
    right: 60px;
    width: 50px;
    display: none;
}

/* ===========How we do it section css starts here ======== */

.how-wedoit-section .scroll-path {
    display: block;
    margin: 0 auto;
}

.how-wedoit-section #sections-wrapper {
    position: absolute;
    top: 0;
    width: 1320px;
    left: 50%;
    transform: translateX(-50%);
}

.how-wedoit-section .section {
    position: absolute;
    width: 100%;
    left: 0px !important;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease-out;
    display: flex;
    justify-content: space-between;
    z-index: 9;
}

.how-wedoit-section .section:nth-child(even) {
    flex-direction: row-reverse;
}

.how-wedoit-section .section.visible {
    opacity: 1;
    transform: scale(1);
}

.how-wedoit-section .moving-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #99FF00;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    /* content: url(../imgs/icons/arrow-head.svg);
    width: 30px;
    height: 30px; */
}

.how-wedoit-section .section .images {
    display: flex;
    gap: 70px;
    margin-top: 10px;
    align-items: anchor-center;
}

.how-wedoit-section .section .images img {
    object-fit: cover;
    border-radius: 8px;
    aspect-ratio: 2/3;
}

.how-wedoit-section .section .images img:first-child,
.how-wedoit-section .section .images img:nth-child(3) {
    width: 272px;
}

.how-wedoit-section .section .images img:nth-child(2) {
    width: 336px;
}

.how-wedoit-section ul {
    padding-left: 20px;
}

.how-wedoit-section li {
    font-family: poppins;
    font-size: 18px;
}

.how-wedoit-section .text-content p {
    font-family: poppins;
    font-size: 18px;
    max-width: 250px;
}

.how-wedoit-section h2 {
    font-size: 22px;
    color: #99FF00;
    margin: 10px 0 5px;
}

.how-wedoit-section.mobile {
    position: relative;
    z-index: 1;
}

.how-wedoit-section.mobile .scrolling-svg-path {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 367px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.how-wedoit-section.mobile .scrolling-svg-path svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3156px;
    transition: transform 0.05s linear;
}

.common-innovative-banner {
    min-height: 100vh;
    background-color: #000000;
    background-image: url('../imgs/services-card-bg-1.png');
    /* background-repeat: no-repeat;
    background-size: cover; */
}

.common-innovative-banner .floating-img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 2;
    width: 62%;
}

.common-innovative-banner .floating-text-filled {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-40%, -50%);
    z-index: 1;
    font-size: 140px;
    line-height: 120%;
    color: #FFFFFF;
    opacity: 0;
    animation: fadeInLeft 1s ease-out forwards;
}

.common-innovative-banner .floating-text-stroke {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-40%, -50%);
    z-index: 4;
    font-size: 140px;
    line-height: 120%;
    color: black;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: var(--white-color);
    opacity: 0;
    animation: fadeInLeft 1s ease-out forwards;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.common-innovative-banner .testimonials-scn-area {
    position: absolute;
    bottom: 120px;
    z-index: 1;
}

.common-innovative-banner .star-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 14%;
    z-index: 1;
}

.common-innovative-banner .discription {
    max-width: 320px;
    right: 13%;
    position: absolute;
    bottom: 120px;
    z-index: 1;
}

.common-innovative-banner .fadded-bg-text {
    position: absolute;
    top: 45%;
    transform: translateY(-45%);
    left: 0;
    /* animation: fadedbgInLeft 7s ease-out forwards; */
}

/* .common-innovative-banner .fadded-bg-text .tickercontainer {
    height: 300px !important;
} */


.common-innovative-banner .fadded-bg-text .fadded-bg-text-inner {
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 280px;
    color: rgba(255, 255, 255, 0.05);
    z-index: 0;
    white-space: nowrap;
    opacity: 1;
}

/* @keyframes fadedbgInLeft {
    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
} */

.pulse-dot {
    position: absolute;
    top: -20px;
    left: 49%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    /* neon green */
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary-color), 0 0 30px var(--primary-color);
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 1.5s ease-out infinite;
    opacity: 0.5;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    70% {
        transform: translate(-50%, -50%) scale(1.3);
        /* ~15px expansion */
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}


/* =========== How we do it section css ends here ======== */

/* ========== founder page css starts here ======= */
.founder-section .founder-name {
    font-family: 'Poller One';
    font-weight: 400;
    font-size: 85px;
    line-height: 100%;
    color: #FFFFFF;
    position: absolute;
    bottom: -10px;
    right: 0;
}

.founder-section.inverted .founder-name {
    right: auto;
    left: 0;
}

.founder-section .founder-name span {
    font-family: 'Poller One';
    font-weight: 400;
    font-size: 45px;
    line-height: 100%;
    color: #FFFFFF;
}

.founder-section .founder-img {
    max-width: 450px;
}

.founder-section .fadded-bg-text-inner {
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 280px;
    line-height: 100%;
    color: rgba(255, 255, 255, 0.05);
    z-index: 0;
    white-space: nowrap;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.founder-quotes .quote-text {
    max-width: 345px;
    font-family: 'Poppins';
    font-size: 18px;
    line-height: 150%;
    color: #A9A9A9;
}

.founder-quotes .quote-text .quote-icon {
    top: -10px;
    left: -25px;
    position: absolute;
}


.inverted .founder-quotes .quote-text .quote-icon {
    left: -35px;
}

.founder-section .singleNumb {
    border-right: 2px solid rgba(255, 255, 255, 0.25);
    text-align: center;
}

.founder-section .singleNumb:last-child {
    border-right: 0px;
}


/* ======== founder page css ends here ======== */

/* what we do css ends here  */

.blogsearch-input {
    max-width: 400px;
    border: 1.5px solid #bebebe !important;
    border-radius: 50px;
    padding: 15px;
    font-size: 16px;
    line-height: 1.5;
    font-family: poppins;
    color: #fff !important;
}

.blogsearch-input::placeholder {
    color: var(--primary-color);
}

.blogbanner {
    padding: 8rem 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.blogbanner-heading {
    font-size: 2.25rem;
    line-height: 2.5rem;
    text-transform: uppercase;
    color: var(--primary-color);
}

.blog-details-section .card {
    background-color: rgb(24 24 27);
}

.blog-details-section .commom-description h3 {
    font-size: 22px;
}

.blog-details-section .tags-list a {
    padding: 2px 10px;
    background-color: var(--secondary-color);
    font-size: 12px;
    color: #fff;
    border-radius: 4px;
}

.two-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pginat-list svg.pagination-icon {
    height: 20px;
    width: 20px; 
}

.pginat-list a.active
.pginat-list a {
    color: var(--primary-color) !important;
}

.custom-pagination {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  gap: 0.75rem;
}

.custom-pagination .page-item {
  list-style: none;
}

.custom-pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.custom-pagination .page-link:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.05);
}

.custom-pagination .page-item.active .page-link {
  background-color: var(--primary-color);
  color: #000;
  border-color:  var(--primary-color);
}

/* ======== media query ============= */

@media (min-width: 992px) {
    .contact-modal .modal-dialog {
        max-width: 900px;
    }
}

@media (min-width: 1200px) {
    .contact-modal .contact-modal .modal-dialog {
        max-width: 1100px;
    }

    .contact-img {
        position: absolute;
        width: 50%;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
    }
}

@media (max-width: 1399.98px) {

    .common-innovative-banner,
    .what-we-do-banner {
        min-height: 85vh;
    }

    .common-innovative-banner .discription {
        right: 5%;
    }

    .common-innovative-banner .floating-text-filled,
    .common-innovative-banner .floating-text-stroke {
        font-size: 110px;
    }

    .how-wedoit-section .section {
        position: static;
        opacity: 1;
        transform: scale(1);
        margin-bottom: 60px;
    }

    .how-wedoit-section .section .images {
        gap: 0px;
    }
}

@media (max-width: 1199.98px) {

    .hero-banner .content-box .banner-heading,
    .what-we-do-banner .banner-heading {
        font-size: 55px;
    }

    .common-info-span {
        font-size: 24px;
    }

    .header__inline-menu .menu-items .nav-link {
        font-size: 40px;
    }

    .header__inline-menu .menu-items {
        margin-bottom: 24px;
    }

    .commom-heading {
        font-size: 45px;
    }

    .singleblog-card .author-name {
        font-size: 16px;
    }


    .common-section-spacing {
        padding: 120px 0;
    }

    .common-section-spacing-top {
        padding-top: 120px;
    }

    .common-section-spacing-bottom {
        padding-bottom: 120px;
    }

    .common-innovative-banner,
    .what-we-do-banner {
        min-height: 75vh;
    }

    .common-innovative-banner .floating-img {
        width: 100%;
    }

    .tour-cta-section .ratio {
        aspect-ratio: auto;
        padding: 60px 0;
    }
}

@media (max-width: 991.98px) {
    .head-menu-toggle.menu-active-mn::before {
        border-radius: 0 !important;
        height: 200vh !important;
    }

    .header__inline-menu .menu-items .nav-link {
        font-size: 30px;
    }

    .rendom-moto-text.dream {
        top: 3%;
    }

    .rendom-moto-text {
        -webkit-text-stroke-width: 2px;
        font-size: 180px;
    }

    .commom-heading {
        font-size: 35px;
    }

    .services-cards .services-card-heading {
        font-weight: 500;
        font-size: 18px;
    }

    .single-techstack-section {
        padding-bottom: 160px !important;
    }

    .single-techstack-section .image-translate-container {
        height: auto;
    }

    .possibilitymarquee {
        top: auto;
        transform: none;
        bottom: 15px;
    }

    .scrolledtext-moto .marquee-item::after {
        max-width: 40px;
        max-height: 100px;
        right: 0px;
        top: 28px;
    }


    .common-section-spacing {
        padding: 80px 0;
    }

    .common-section-spacing-top {
        padding-top: 80px;
    }

    .common-section-spacing-bottom {
        padding-bottom: 80px;
    }

    .common-innovative-banner .floating-text-filled,
    .common-innovative-banner .floating-text-stroke {
        font-size: 80px;
    }

    .how-wedoit-section .section .images {
        justify-content: end;
    }

    .tech-stack-marque .marquee-item {
        font-size: 40px;
    }

    .tech-stack-marque {
        top: 85%;
        transform: none;
    }
}

@media (max-width: 767.98px) {
    .blogs-slider-section .version {
        transform: scale(0.6) rotate(45deg);
        right: -100px;
    }

    .header__inline-menu .menu-items .nav-link {
        font-size: 26px;
    }

    .hero-banner .content-box .banner-heading {
        font-size: 45px;
    }

    .hero-banner .content-box .banner-heading .strock-text {
        -webkit-text-stroke-width: 1px;
    }

    .rendom-moto-text {
        -webkit-text-stroke-width: 1px;
        font-size: 80px;
    }

    .secondary-commom-heading {
        font-size: 26px;
    }

    .space-b-90 {
        margin-bottom: 50px;
    }

    .footer-bottom .footer-bottom-links {
        flex-direction: column;
        gap: 6px;
    }

    .tour-cta-section .ratio {
        aspect-ratio: 1/1;
    }

    .single-techstack-section {
        padding-bottom: 100px !important;
    }

    .possibilitymarquee {
        transform: none;
    }

    .possibilitymarquee .marquee-content {
        margin-bottom: 20px;
    }

    .possibilitymarquee .marquee-content .tickkertext {
        font-size: 40px;
        padding: 0 15px !important;
    }

    .scrolledtext-moto .marquee-item {
        font-size: 80px;
        line-height: 120px;
    }


    .common-section-spacing {
        padding: 60px 0;
    }

    .common-section-spacing-top {
        padding-top: 60px;
    }

    .common-section-spacing-bottom {
        padding-bottom: 60px;
    }

    .partner-get-started-section .partner-get-started-card {
        padding: 50px 16px;
    }

    .common-innovative-banner,
    .what-we-do-banner {
        min-height: 60vh;
    }

    .common-innovative-banner .floating-text-filled,
    .common-innovative-banner .floating-text-stroke {
        font-size: 70px;
    }

    .common-innovative-banner .fadded-bg-text {
        top: 70px;
        transform: none;
    }

    .common-innovative-banner .fadded-bg-text .fadded-bg-text-inner {
        font-size: 130px;
    }

    .portfolios-section .bg-img {
        top: auto;
        bottom: 0;
        width: 100%;
        height: 50%;
        opacity: .4;
    }

    .how-wedoit-section .text-content p {
        max-width: 100%;
    }

    .how-wedoit-section .text-content h2 {
        text-align: center;
    }
}

@media (max-width: 575.98px) {

    .hero-banner .content-box .banner-heading,
    .what-we-do-banner .banner-heading {
        font-size: 35px;
    }

    .common-info-span {
        font-size: 18px;
    }

    .secondary-commom-heading {
        font-size: 20px;
    }

    .commom-description {
        font-size: 16px;
    }

    .rendom-moto-text.realise {
        top: -2%;
    }

    .blogs-slider-section .menu {
        min-height: 25vh;
    }

    .scrolledtext-moto .marquee-item {
        font-size: 60px;
        line-height: 80px;
    }

    .scrolledtext-moto .marquee-item::after {
        top: 8px;
    }


    .common-innovative-banner,
    .what-we-do-banner {
        min-height: 45vh;
    }

    .common-innovative-banner .floating-text-filled,
    .common-innovative-banner .floating-text-stroke {
        font-size: 40px;
    }

    .why-choose-us-section .right-bottom-b {
        border-right: 0;
        border-bottom: 1px solid var(--primary-color);
    }

    .common-innovative-banner .floating-text-stroke {
        -webkit-text-stroke-width: 2px;
    }
}