/*!
Theme Name: Webometry Theme
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: webometry-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Webometry Theme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
:root {
    --font-16: 16px;
    --font-18: 18px;
    --font-20: 20px;
    --font-22: 22px;
    --font-26: 26px;
    --font-36: 36px;
    --font-42: 42px;
    --font-62: 62px;
    --font-76: 76px;
    --primary-color: #3b3b3b;
    --secondary-color: #1151fe;
    --yellow-color: #f5c000;
    --white-color: #ffffff;
    --black-color: #000;
    --body-color: #66666C;
    --font-phudu: "Phudu", sans-serif;
    --font-inter: "Inter", sans-serif;
    --purple: #9DA3F5;
    --gap-size: 25px;
    --line-thickness: 1px;
    --line-color: #333;

}

* {
    box-sizing: border-box;
}

body,
html {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-inter);
    color: var(--body-color);
    font-size: var(--font-16);
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--white-color);
    transition: 0.5s all;
}

a:hover {
    color: var(--yellow-color);
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-phudu);
    margin: 0;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: 0;
}

.title {
    font-size: var(--font-76);
    color: var(--black-color);
}

.heading {
    font-size: var(--font-62);
    color: var(--black-color);
    text-transform: capitalize;
}

.small-heading {
    font-size: var(--font-22);
    margin-bottom: 10px;
    text-transform: uppercase;
    background: var(--white-color);
    padding: 10px 20px;
    /* display: inline-block; */
    border-radius: 20px;
    font-weight: 600;
    color: var(--black-color);
    border: 1px solid #61616A;
    width: fit-content;
}

.button {
    display: inline-block;
    position: relative;
    font-family: var(--font-inter);
    font-size: var(--font-16);
    line-height: 1;
    font-weight: 400;
    text-align: center;
    text-transform: capitalize;
    outline: none;
    border-radius: 5px;
    padding: 20px;
    background: var(--yellow-color);
    color: var(--black-color);
    cursor: pointer;
    transition: 0.5s all ease-in-out;
    border: 1px solid transparent;
    z-index: 0;
    overflow: hidden;
}

.button.black {
    background: var(--white-color);
}

.button:hover {
    color: var(--white-color);
    background: var(--secondary-color)
}

.button.black:hover {
    background: var(--secondary-color);
}

.button:after {
    content: " \f178";
    font-family: 'fontAwesome';
    font-weight: 400;
    margin-left: 10px;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.wrapper {
    max-width: 1630px;
    margin: 0 auto;
    position: relative;
    padding: 0 15px;
}

.wrapper.small {
    max-width: 1360px;
}

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

section.pt-0 {
    padding-top: 0 !important;
}

section.pb-0 {
    padding-bottom: 0 !important;
}

section.p-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

p {
    margin: 0 0 20px 0;
}

p:last-child {
    margin: 0;
}

::placeholder {
    color: #857878;
}

input,
textarea,
select {
    font-family: var(--font-inter);
    font-size: var(--font-16);
    font-weight: 400;
    color: var(--black-color);
    line-height: 1.2;
    appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    outline: 0;
    border: 1px solid #E3E3E8;
    background: var(--white-color);
    display: block;
}

select {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="512" height="512" x="0" y="0" viewBox="0 0 24 24" style="enable-background:new 0 0 512 512" xml:space="preserve" class="hovered-paths"><g><path d="M12 16a1 1 0 0 1-.71-.29l-6-6a1 1 0 0 1 1.42-1.42l5.29 5.3 5.29-5.29a1 1 0 0 1 1.41 1.41l-6 6a1 1 0 0 1-.7.29z" data-name="16" fill="%23d9d9d9" opacity="1" data-original="%23000000" class="hovered-path"></path></g></svg>');
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center right 18px;
}

textarea {
    max-height: 150px;
}

.wpcf7-spinner {
    visibility: hidden;
    display: inline-block;
    background-color: #d9d9d9;
    opacity: 0.75;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 100%;
    padding: 0;
    margin: 0 7px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.form-btn {
    position: relative;
    width: fit-content;
}

input.wpcf7-submit {
    width: fit-content;
    margin-top: 20px;
    text-align: center;
    /* border-radius: 50px; */
    white-space: break-spaces;
}

.wpcf7-spinner::before {
    top: 3px;
    left: 3px;
    width: 6px;
    height: 6px;
    transform-origin: 7px 7px;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.heading-group {
    margin-bottom: 20px;
}

.intro-description {
    margin-bottom: 20px;
}

.d-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

a.scrolltotop {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    bottom: 10px;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-20);
    height: 50px;
    position: fixed;
    right: 20px;
    text-align: center;
    width: 50px;
    transition: 0.5s all;
    z-index: 99;
}

a.whatsapp-link {
    background: #25d366;
    border-radius: 50%;
    bottom: 70px;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    position: fixed;
    right: 20px;
    text-align: center;
    width: 50px;
    z-index: 99;
    transition: 0.5s all;
    font-size: 30px;
    border: 1px solid transparent;
}

a.whatsapp-link:hover {
    color: #25d366;
    background: var(--white-color);
    border: 1px solid #25d366;
}

a.scrolltotop:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.mb-0 {
    margin-bottom: 0 !important;
}

/* HEADER */
.site-header {
    /*     position: absolute;
    width: 100%;
    z-index: 2; */
    background: var(--black-color);
    padding: 10px 0;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* flex-wrap: wrap; */
}

.site-branding {
    width: fit-content;
    /* flex: 0 0 auto; */
    /* margin-right: 15px; */
}

.site-branding img {
    max-width: 245px;
}

.header-btn {
    line-height: 1;
    flex: 0 0 auto;
    margin-left: 35px;
}

.menu {
    display: flex;
}

.menu li:not(:last-child) {
    margin-right: 50px;
}

/* .menu {
    margin-right: 50px;
} */
.menu li a {
    font-size: var(--font-20);
    font-weight: 600;
    font-family: var(--font-phudu);
}

.header-right {
    display: flex;
    justify-content: space-between;
    /* width: 70%; */
    align-items: center;
}

.toggle {
    display: none;
    z-index: 99;
}

.bar {
    width: 34px;
    height: 3px;
    background-color: var(--white-color);
    margin: 3px 0;
    display: inline-block;
    margin-left: auto;
    border-radius: 5px;
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    cursor: pointer;
    z-index: 99;
}

.bar:first-child {
    width: 24px;
}

.bar:last-child {
    width: 17px;
}

.bar.animate.bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

span.bar.animate.bar:nth-child(2) {
    opacity: 0;
}

.bar.animate {
    background-color: var(--primary-color);
}

.bar.animate.bar:nth-child(3) {
    transform: rotate(45deg) translate(-7px, -8px);
    width: 24px;
}

.bars {
    display: flex;
    flex-direction: column;
}

/* BANNER */
.hero-banner {
    background: #f2f2f2;
    /* overflow: visible; */
    /* z-index: 1; */
}

.banner-content .heading {
    color: var(--white-color);
}

/* MARQUEE */
.marquee-content {
    width: 240%;
    display: flex;
    justify-content: flex-end;
    animation: marquee-reverse 30s linear infinite;
    position: relative;
    padding: 30px 0;
    background: #fff;
    box-shadow: 0 0 20px 0 #000;
}

.marquee-block {
    margin-right: 30px;
    display: flex;
    flex: 0 0 auto;
}

.marquee-text {
    color: var(--black-color);
    line-height: 1.2;
    font-size: var(--font-18);
    font-weight: 500;
    position: relative;
    display: inline-flex;
}

.marquee-text:before {
    content: "\f111";
    font-family: 'Font Awesome 7 free';
    margin-right: 30px;
}

@keyframes marquee-reverse {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

/* base circle */
.circle {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(17, 81, 254, 0.5) 0%,
            rgba(17, 81, 254, 0.40) 20%,
            rgba(17, 81, 254, 0) 50%);
}

/* positions + animation speed */
.c1 {
    top: 65%;
    left: 0;
    animation: move1 6s linear infinite alternate;
}

.c2 {
    top: 0%;
    left: 80%;
    animation: move2 3s linear infinite alternate;
}

.c3 {
    top: 5%;
    left: 35%;
    animation: move3 5s linear infinite alternate;
}

.c4 {
    top: 55%;
    left: 85%;
    animation: move4 7s linear infinite alternate;
}

.c5 {
    top: 65%;
    left: 45%;
    animation: move5 7s linear infinite alternate;
}

.c6 {
    top: 0%;
    left: 5%;
    animation: move6 2s linear infinite alternate;
}

/* keyframes */
@keyframes move1 {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-100px, -150px);
    }
}

@keyframes move2 {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-100px, 10px);
    }
}

@keyframes move3 {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(250px, -140px);
    }
}

@keyframes move4 {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-160px, -120px);
    }
}

@keyframes move5 {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(180px, 0px);
    }
}

@keyframes move6 {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-200px, 140px);
    }
}

.banner-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.banner-image {
    width: 45%;
    transform: translatey(50px);
}

.banner-content {
    width: 44%;
}

.animated-line {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
}

.banner-image img {
    width: 100%;
    height: 100%;
    border-radius: 15px 15px 120px 15px;
}

.banner-content .small-heading {
    font-family: var(--font-inter);
    background: rgb(255 255 255 / 10%);
    color: var(--white-color);
    border-radius: 5px;
    font-size: var(--font-16);
}

.purple {
    color: var(--purple);
}

.yellow {
    color: var(--yellow-color);
}

.banner-content .intro-description {
    width: 75%;
}

.banner-content .intro-description p {
    color: var(--white-color);
    text-transform: uppercase;
}

.btn-group {
    display: inline-flex;
    line-height: 1;
}

.btn-left {
    margin-right: 15px;
}

.banner-wrap {
    position: relative;
    /* background: var(--black-color); */
    padding-top: 50px;
}

/* .btn-right .button.black {
    background: rgb(255 255 255 / 0.06);
    backdrop-filter: blur(10px);
    color: var(--white-color);
} */
/* SERVICE */
.service-top .small-heading {
    margin: 0 auto;
    margin-bottom: 10px;
}

.service {
    /* padding-top: 150px; */
    background: #f2f2f2;
}

ul.service-list {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
    justify-content: space-evenly;
    margin-top: 50px;
}

ul.service-list li {
    width: 33.33%;
    padding: 0 10px;
    margin: 10px 0;
}

.category-image img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.category-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: var(--font-20);
    color: var(--white-color);
    padding: 10px 20px;
    backdrop-filter: blur(10px);
    /*     background: rgb(255 255 255 / 6%); */
    background: var(--black-color);
    transition: 0.5s all;
    width: max-content;
}

ul.service-list li>div {
    height: 100%;
    position: relative;
}

.category-top {
    position: relative;
}

.category-list {
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    transform: translateY(-30px);
    width: 85%;
    margin: 0 auto;
    box-shadow: 8px 12px 8px -7px rgb(0 0 0 / 25%);
}

.post-block a {
    color: var(--primary-color);
    font-size: var(--font-26);
    width: 100%;
    display: block;
    padding: 20px 10px;
    border-bottom: 1px solid var(--primary-color);
    font-family: var(--font-phudu);
    font-weight: 600;
    position: relative;
    display: flex;
    justify-content: space-between;
    transition: 0.5s all;

}

.post-block:last-child a {
    border: none;
}

.category-image:after {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: 0.5s all;
}

.category-image {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.post-block a:after {
    content: "\f061";
    font-family: 'FontAwesome';
    font-weight: 600;
    /* transform: rotate(-45deg); */
    opacity: 0;
    transition: 0.5s all;
}

.post-block a:hover:after {
    opacity: 1;
    transform: rotate(-45deg);
}

.category-top:hover .category-image:after {
    height: 100%;
}

/* .category-top:hover .category-name{
       background:var(--black-color);
} */

span.img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
}

/* ADDITIONAL SERVICE */
.asset-service {
    background: var(--black-color);
}

.asset-service-left .heading,
.asset-service-left .intro-description p {
    color: var(--white-color);
}

.asset-service-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.asset-top {
    margin-bottom: 30px;
    width: 62%;
    padding-left: 50px;
}

.asset-service-left {
    width: 45%;
}

.asset-image img {
    width: 128%;
    max-width: 128%;
    margin-left: -190px;
    height: 100%;
}

.asset-image {
    width: 100%;
    /* max-width: 35vw; */
}

.asset-right {
    width: 52%;
}

ul.asset-service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: -10px;
}

ul.asset-service-list li {
    width: 50%;
    padding: 0 10px;
    margin: 10px 0;
}

.service-block {
    padding: 40px 30px;
    background: rgb(255 255 255 / 50%);
    border: 2px solid #DEF7F0;
    border-radius: 15px;
    display: flex;
    position: relative;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.service-block:after {
    content: "";
    background: var(--white-color);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: 0.5s all;
    z-index: -1;
}

.service-block a {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.asset-icon {
    width: 75px;
    height: 75px;
    background: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    flex: 0 0 auto;
    margin-right: 15px;
    transition: 0.5s all;
}

.asset-icon img {
    width: 25px;
}

.service-heading {
    font-size: var(--font-18);
    color: #160647;
    font-family: var(--font-inter);
    margin-bottom: 10px;
}

.asset-detail p {
    color: #160647;
}

.service-block:hover:after {
    width: 100%;
}

.service-top {
    width: 62%;
    margin: 0 auto;
}

.service-block:hover .asset-icon {
    background: var(--secondary-color);
}

.service-block:hover .asset-icon img {
    filter: invert(1);
}

/* COUNTER */
ul.counter-list {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

ul.counter-list li {
    width: 33.33%;
    padding: 0 15px;
    margin: 15px 0;
}

.counter-block {
    height: 100%;
    background: #EFF0FF;
    padding: 30px;
    border-radius: 65px;
    text-align: center;
}

.counter-image img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.counter-image {
    margin-bottom: 40px;
}

.counter-heading {
    font-size: var(--font-26);
    color: var(--black-color);
    font-weight: 400;
    line-height: 1.2;
}

/* BLOG */
.blog {
    background: #2B1C50;
    z-index: 1;
}

.blog-top {
    color: var(--white-color);
    width: 58%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 50px;
}

.blog-top .heading {
    color: var(--white-color);
}

.blog-grid {
    display: flex;
    flex-wrap: wrap;
}

.blog-card {
    width: 33.33%;
    padding: 0 15px;
    margin: 15px 0;
}

.blog-card>div {
    position: relative;
    height: 100%;
    padding: 30px;
    background: var(--white-color);
    border-radius: 35px;
    box-shadow: 0 5px 50px 10px rgb(0 0 0 / 40%);
    transition: 0.5s all;
}

.blog-card>div a {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.blog-image.image img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
}

.blog-image.image {
    margin-bottom: 20px;
}

.blog-title {
    font-size: var(--font-22);
    color: var(--black-color);
    margin-bottom: 20px;
}

.blog-bottom-cta {
    padding: 50px;
    background: var(--white-color);
    border-radius: 70px;
    text-align: center;
    margin-top: 70px;
    box-shadow: 0 0 20px 0px #ccc;
}

.blog-bottom-cta .heading {
    color: #3D2E7C;
    font-size: var(--font-42);
    width: 72%;
    margin: 0 auto;
}

.blog:after {
    content: "";
    background: #EFF0FF;
    width: 100%;
    height: 250px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(0, -130%);
    z-index: -1;
}

.blog-card>div:hover {
    transform: translate(0px, -10px);
}

/* CTA */
.cta-left {
    width: 48%;
    background: #F6F5F2;
    padding: 50px;
    border-radius: 24px;
}

.cta-row {
    position: relative;
    padding: 50px;
    border-radius: 65px;
    overflow: hidden;
}

.contact-image {
    position: absolute;
    inset: 0;
    z-index: -1;
}

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

.form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-col:nth-child(-n+4) {
    width: 48%;
}

.form-col {
    margin-bottom: 20px;
    width: 100%;
}

.form-col input,
.form-col textarea {
    margin-top: 5px;
}

/* FOOTER */
.site-footer {
    padding: 130px 0;
    position: relative;
    background: var(--black-color);
    overflow: hidden;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-block {
    max-width: 300px;
}

.footer-heading {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--white-color);
}

.footer-block .site-branding {
    margin-bottom: 30px;
}

.footer-block p {
    color: var(--white-color);
}

.review {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255 255 255 / 3%);
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 15px;
    width: fit-content;
}

.review-number {
    font-size: var(--font-42);
    color: var(--white-color);
    font-weight: 600;
    flex: 0 0 auto;
    margin-right: 10px;
}

.review-link {
    font-size: var(--font-16);
    color: var(--white-color);
    border-bottom: 1px solid #fff;
    padding-right: 10px;
}

.stars {
    display: flex;
    margin-bottom: 5px;
}

.stars i {
    color: var(--yellow-color);
    margin-right: 3px;
}

.footer-menu {
    list-style: disc;
    padding-left: 20px;
}

.footer-menu li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-menu li a {
    color: #CED4E9;
}

.contact-block:not(:last-child) {
    margin-bottom: 30px;
}

.contact-info-heading {
    font-size: var(--font-16);
    color: #CED4E9;
    margin-bottom: 10px;
    font-family: var(--font-inter);
    font-weight: 400;
}

.contact-block a {
    font-size: var(--font-16);
    font-family: var(--font-inter);
    font-weight: 600;
}

.news-btn {
    height: 100%;
    position: relative;
}

.news-btn .button {
    margin: 0;
    border-radius: 0;
    line-height: 1;
    padding: 12px 20px;
    height: 100%;
}

.news-row {
    display: flex;
}

.news-col input {
    padding: 10px;
    position: relative;
    background: transparent;
    border-radius: 0;
    border: 1px solid rgb(255 255 255 / 50%);
    color: var(--white-color);
}

/* STICKY */
.sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    background-color: #000;
    width: 100%;
    z-index: 99;
    padding: 20px 0 !important;
    transition: 0.5s all;
    animation: slideDown 0.55s ease-out;
    box-shadow: 0px 4px 20px 4px rgba(0, 0, 0, 0.2);
}


@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.counter-btn {
    margin-top: 50px;
}

/* SERVICE PAGE */

.inner-banner {
    position: relative;
    z-index: 1;
    background: var(--black-color);
    /* overflow: hidden; */
    background-image:
        repeating-linear-gradient(var(--line-color) 0 var(--line-thickness), transparent var(--line-thickness) var(--gap-size)),
        repeating-linear-gradient(90deg, var(--line-color) 0 var(--line-thickness), transparent var(--line-thickness) var(--gap-size));
    background-size: 100% var(--gap-size), var(--gap-size) 100%;
    animation: scroll 3s linear infinite;
}

@keyframes scroll {
    0% {
        /* background-position: X X, Y Y */
        background-position: 0 0, 0 0;
    }

    100% {
        /* background-position: X X, Y Y */
        background-position: 0 var(--gap-size), var(--gap-size) 0;
    }
}

.inner-banner .title {
    color: #ffffff;
}

.inner-title {
    color: var(--secondary-color);
    display: block;
}

.inner-banner .intro-description p {
    font-size: var(--font-18);
    color: #9aa4b2;
}

.tech-supporting {
    margin-bottom: 20px;
}

.tech-supporting p {
    font-size: var(--font-20);
    color: #e6eaf0;
}

.inner-banner-row {
    width: 80%;
}

/*  */
.intro-heading {
    font-size: var(--font-36);
    text-align: center;
}

.service-page-top {
    background: #f8f8f8;
}

.service-page-row {
    margin-bottom: 50px;
}

ul.service-page-list>li:not(:last-child) {
    margin-bottom: 50px;
    border-bottom: 1px solid #ccc;
}

.service-list-block {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* border-bottom: 1px solid #ccc; */
    padding-bottom: 70px;
}

.service-left {
    width: 30%;
    border-right: 1px solid #ccc;
    padding: 20px 0;
    padding-right: 50px;
}

.service-right {
    width: 65%;
    padding: 10px;
}

.number {
    font-size: var(--font-62);
    font-weight: 900;
    margin-bottom: 10px;
    color: #ccc;
    line-height: 1;
}

.number {}

.service-small-heading {
    font-size: var(--font-26);
    font-weight: 400;
}

.service-main-heading {
    font-size: var(--font-42);
    color: var(--black-color);
    margin: 10px 0;
}

.core-idea {
    font-size: var(--font-26);
    color: var(--black-color);
    margin-bottom: 20px;
}

.service-description {
    margin-bottom: 30px;
}

.inner-banner:after {
    content: "";
    width: 50px;
    height: 50px;
    background: rgb(157 163 245 / 35%);
    position: absolute;
    left: 5%;
    top: 15%;
    border-radius: 100%;
    box-shadow: 0 0 150px 200px rgb(157 163 245 / 35%);
    animation: moveleft 20s alternate infinite;
    transition: 0.1s all;
}

@keyframes moveleft {
    0% {
        top: 5%;
        left: 15%;
    }

    25% {
        top: 50%;
        left: 50%;
    }

    50% {
        top: 10%;
        left: 90%;
    }

    75% {
        top: 30%;
        left: 40%;
    }

    100% {
        top: 5%;
        left: 15%;
    }
}

.inner-banner:before {
    content: "";
    width: 50px;
    height: 50px;
    background: rgb(157 163 245 / 35%);
    position: absolute;
    right: 10%;
    bottom: 15%;
    border-radius: 100%;
    box-shadow: 0 0 150px 200px rgb(157 163 245 / 35%);
    animation: moveright 30s alternate infinite;
    transition: 0.5s all;
}

@keyframes moveright {
    0% {
        bottom: 15%;
        right: 10%;
    }

    10% {
        bottom: 30%;
        right: 20%;
    }

    20% {
        bottom: 20%;
        right: 35%;
    }

    40% {
        bottom: 50%;
        right: 50%;
    }

    60% {
        bottom: 80%;
        right: 70%;
    }

    80% {
        bottom: 50%;
        right: 50%;
    }

    100% {
        bottom: 15%;
        right: 10%;
    }
}

.system {
    background: rgb(238, 240, 242);
}

ul.system-list,
ul.why-choose-list {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

ul.system-list li {
    width: 25%;
    padding: 0 10px;
    margin: 10px 0;
}

ul.system-list li>div,
ul.why-choose-list li>div {
    height: 100%;
    background: var(--white-color);
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid #ccc;
    text-align: center;
    box-shadow: 0 0 5px 0 #ccc;
    transition: 0.5s all;
}

.system-top-heading {
    font-size: var(--font-20);
    margin-bottom: 10px;
    text-align: center;
    color: var(--black-color);
}

.support-heading {
    font-size: var(--font-16);
    font-weight: 500;
    margin-bottom: 10px;
}

.support-to-heading {
    font-size: var(--font-22);
    color: var(--secondary-color);
}

ul.system-list li>div:hover,
.why-choose-list li>div:hover {
    box-shadow: 0 0 10px 10px #ccc;
}

.system-row .small-heading {
    margin: 0 auto;
    margin-bottom: 10px;
}

.system-bot {
    margin: 50px 0;
}

/* FAQ */
.faq-row .small-heading {
    margin: 0 auto;
    margin-bottom: 10px;
}

.faq-right {
    width: 80%;
    margin: 0 auto;
    margin-top: 50px;
}

.accordian-part {
    border-bottom: 1px solid #000;
    padding: 0 10px;
    padding-bottom: 20px;
}

.accordion i {
    margin-left: 10px;
    margin-top: 5px;
    font-weight: 600;
    transition:0.5s all;
}

.accordion {
    text-transform: capitalize;
    display: flex;
    justify-content: space-between;
    color: var(--black-color);
    cursor: pointer;
    align-items: start;
}

ul.faq-list li:not(:last-child) {
    margin-bottom: 20px;
}

.accordion.active i {
    transform: rotate(180deg);
}

.accordion.active {
    background: #fff;
    color: #000;
}

.accordion-content {
    display: none;
    border-width: 0px;
    font-weight: 400;
    /* padding: 10px 20px; */
    color: #2f2f2f;
    padding-top: 20px;
}

.service-description ul {
    list-style: disc;
    padding-left: 20px;
}

.service-description ul li:not(:last-child) {
    margin-bottom: 10px;
}

/* CONTACT PAGE */
.contact-page-row {
    display: flex;
    flex-wrap: wrap;
}

.contact-left {
    width: 50%;
}

.contact-right {
    width: 50%;
}

.contact-right iframe {
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
    border-radius: 15px;
}

.contact-box {
    padding: 20px;
    border: 1px solid;
}

ul.contact-list>li:not(:last-child) {
    margin-bottom: 30px;
}

ul.contact-list>li {
    width: 60%;
    margin: 0 auto;
}

.contact-box {
    display: flex;
}

.contact-icon i {
    font-size: var(--font-26);
    color: var(--black-color);
}

.contact-icon {
    margin-right: 10px;
}

.contact-heading {
    font-size: var(--font-22);
    color: var(--black-color);
    margin-bottom: 10px;
}

.cta-info {
    color: var(--black-color);
    font-size: var(--font-20);
}

ul.social-media-list {
    display: flex;
}

ul.social-media-list li a {
    font-size: var(--font-20);
    color: var(--black-color);
}

ul.social-media-list li:not(:last-child) {
    margin-right: 20px;
}

ul.why-choose-list li {
    width: 33.33%;
    padding: 0 10px;
    margin: 10px 0;
}