:root {
    --web-primary-color: #2149A6;
    --web-primary-font: 'DM Sans', sans-serif;
    --web-secondary-font: 'Urbanist', sans-serif;
    --web-normal-text: 17px;
    --web-default-color: #000;
    --heading-1: 1.8rem;
    --heading-2: 1.5rem;
    --heading-3: 1.3rem;
    --global-padding-top: 4rem;
    --global-margin-top: 4rem;
    --global-padding-bottom: 4rem;
    --global-margin-bottom: 4rem;
    --global-inner-banner-bg: #e4ecf8;
}

body {
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--web-primary-font);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
button,
span,
div {
    color: var(--web-default-color);
}

p,
li,
input,
button,
span,
a,
textarea,
button {
    font-size: var(--web-normal-text);
    font-weight: 500;
    font-family: var(--web-secondary-font);
    line-height: 1.8;
}

.size-full {
    width: 100%;
    height: auto;
}

ul {
    margin: 0;
    padding: 0;
}

.primary-btn {
    background-color: var(--web-primary-color);
    color: #fff;
    border: 1px solid var(--web-primary-color);
    text-decoration: none;
    border-radius: 50px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    line-height: 28px;
    transition: 0.1s ease-in;
}

.primary-btn i {
    background-color: #fff;
    width: 22px;
    height: 22px;
    line-height: 22px;
    color: var(--web-primary-color);
    border-radius: 100%;
    text-align: center;
    font-size: 12px;
    margin-left: 8px;
    transition: 0.1s ease-in;
}

.primary-btn:hover {
    transition: 0.1s ease-in;
    color: var(--web-primary-color);
    background-color: #fff;
}

.primary-btn:hover i {
    transition: 0.1s ease-in;
    background-color: var(--web-primary-color);
    color: #fff;
}

.common-top-pad {
    padding-top: var(--global-padding-top);
}

.common-bottom-pad {
    padding-bottom: var(--global-padding-bottom);
}

.common-top-margin {
    margin-top: var(--global-margin-top);
}

.heading-1 {
    font-size: var(--heading-1);
    font-weight: 800;
    line-height: 2.4rem;
}

.heading-2 {
    font-size: var(--heading-2);
    font-weight: 800;
    line-height: 2rem;
}

.heading-3 {
    font-size: var(--heading-3);
    font-weight: 800;
    line-height: 2rem;
}

.no-link {
    text-decoration: none;
    color: var(--web-default-color);
	font-weight: 700;
}

header {
    border-radius: 100px;
    z-index: 99;
    max-width: 1320px;
}

.branding img {
    min-width: 100px;
    max-width: 120px;
}

.desktop__Menu {
    display: none;
}

.desktop__Menu ul {
    display: flex;
    display: -webkit-flex;
}

.desktop__Menu ul li {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.desktop__Menu ul li a {
    font-size: 14px;
    font-weight: 600;
    color: var(--web-default-color);
    text-decoration: none;
}

.desktop__Menu ul>li>a {
    padding: 16px 14px;
    position: relative;
    overflow: hidden;
    display: block;
}

.desktop__Menu ul.menu>li:not(:last-child)>a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--web-primary-color);
    left: 0;
    bottom: 0;
    transition: 0.3s width ease-in-out;
}

.desktop__Menu ul.menu>li:not(:last-child)>a:hover:after {
    width: 100%;
    transition: 0.3s width ease-in-out;
}

.desktop__Menu ul li.menu-item-has-children ul.sub-menu {
    position: absolute;
    background-color: #fff;
    flex-direction: column;
    visibility: hidden;
    min-width: 190px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    opacity: 0;
    z-index: -1;
    transform: scaleY(0);
    top: 60px;
    transform-origin: top center;
    transition: all 0.4s ease 0s;
}

.desktop__Menu ul li:hover ul.sub-menu {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    z-index: 99;
}

.desktop__Menu ul li.menu-item-has-children ul.sub-menu li {
    width: 100%;
}

.desktop__Menu ul li.menu-item-has-children ul.sub-menu li a {
    padding: 6px 15px;
    transition: 0.3s ease-in-out;
    width: 100%;
}

.desktop__Menu ul li.menu-item-has-children ul.sub-menu li a:hover {
    background-color: #ededed;
    transition: 0.3s ease-in-out;
}

.desktop__Menu ul.menu>li:last-child>a {
    background-color: var(--web-primary-color);
    color: #fff;
    border-radius: 50px;
    padding: 6px 10px;
}

.desktop__Menu ul li.menu-item-has-children ul.sub-menu li:not(:last-child) a {
    border-bottom: 1px solid #dddddd;
}

button.ToggleMenu {
    display: flex;
    flex-direction: column;
    width: 50px;
    cursor: pointer;
    background-color: transparent;
    border: none;
}

button.ToggleMenu span {
    background: var(--web-default-color);
    border-radius: 10px;
    height: 4px;
    margin: 4px 0;
    transition: .4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

button.ToggleMenu span:nth-of-type(1) {
    width: 50%;

}

button.ToggleMenu span:nth-of-type(2) {
    width: 100%;
}


button.ToggleMenu span:nth-of-type(3) {
    width: 75%;

}

button.ToggleMenu.toggleAnimate span:nth-of-type(1) {
    transform-origin: bottom;
    transform: rotatez(45deg) translate(4px, 2px);
}


button.ToggleMenu.toggleAnimate span:nth-of-type(2) {
    transform-origin: top;
    transform: rotatez(-45deg)
}

button.ToggleMenu.toggleAnimate span:nth-of-type(3) {
    transform-origin: bottom;
    width: 50%;
    transform: translate(17px, -6px) rotatez(45deg);
}

.mobile-cta {
    z-index: 9;
}

.mobile-cta a {
    padding: 10px 0;
    font-size: 14px;
}

.mobile-cta a i {
    display: inline-block;
    margin-right: 8px;
}

.mobile-cta a:not(:last-child) {
    border-right: 1px solid #fff;
}

.mobile-menu {
    z-index: 10;
    transform: translateY(100%);
    transition: 0.4s ease-in-out;
}

.mobile-menu.show-menu {
    transform: translateY(0);
    transition: 0.4s ease-in-out;
}

.mobile-menu a {
    font-size: 15px;
    padding: 10px 18px;
    border-top: 1px solid #2f2f2f;
}

.mobile-menu .accordion-item {
    box-shadow: none;
    border-top: none !important;
}

.mobile-menu .accordion-item .accordion-collapse,
.mobile-menu .accordion-item button.accordion-button {
    background-color: #212529;
    border-radius: 0;
}

.mobile-menu .accordion-item .accordion-collapse a {
    padding-left: 30px;
}

.mobile-menu .accordion-item button.accordion-button {
    color: #fff;
    box-shadow: none;
    padding: 10px 18px;
    border: none;
    font-size: 15px;
}

.mobile-menu .accordion-item .accordion-button::after {
    background-image: none;
    content: none;
}

.mobile-menu .accordion-item .accordion-button.collapsed i {
    transform: rotate(180deg);
    transition: 0.2s ease-in-out;
}

.mobile-social-icon {
    border-top: 1px solid #2f2f2f;
}

.mobile-social-icon a {
    border: none;
    font-size: 30px;
    display: inline-block;
}

.mobile-social-icon a i.fa-facebook {
    color: #1178f2;
}

.mobile-social-icon a i.fa-square-instagram {
    color: #ee2a7b;
}

.mobile-social-icon a i.fa-linkedin {
    color: #0077b7;
}

.hero-banner {
    background-color: #f2f8f8;
    padding-top: 2rem;
}

.hero-content {
    margin-top: 5.5rem;
}

.slide-title {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--web-primary-font);
    line-height: 36px;
}

.slide-description {
    font-size: 1.2rem;
    font-family: var(--web-secondary-font);
}

.hero-slider figure img {
    width: 400px;
    aspect-ratio: 1;
    -o-object-fit: contain;
    object-fit: contain;
}

.badgeStyle {
    background-color: #fff;
    color: var(--web-default-color);
    font-weight: 600;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    font-size: 14px;
    line-height: 25px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    box-shadow: 2px 6px 15px -9px #00000045;
    padding: 8px 12px;
    z-index: 9;
}

.badgeStyle i {
    display: inline-block;
    background-color: var(--web-primary-color);
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 100%;
    font-size: 17px;
    margin-right: 8px;
}

figure span.badgeStyle:nth-child(2) {
    top: 0;
    right: 25px;
}

figure span.badgeStyle:nth-child(3) {
    top: 100px;
}

figure span.badgeStyle:nth-child(4) {
    top: 200px;
    right: 25px;
}

.tech-we-use {
    padding-top: var(--global-padding-top);
    background: url('../images/technologies-bg.webp') no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
}

.tech-we-use .build-with p:nth-child(2) {
    font: var(--heading-1);
    line-height: 48px;
}

.sup-text {
    font-weight: 600;
    display: inline-block;
    margin-bottom: 8px;
    color: var(--web-primary-color);
}

.grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px
}

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

.grid .grid-item p {
    margin: 0;
}

.web-process {
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.web-process i {
    position: absolute;
    font-size: 80px;
    right: 6px;
    bottom: 0px;
    color: #f2f8f8;
    z-index: -1;
}

.web-process:hover {
    transition: 0.3s ease-in-out;
    background-color: var(--web-primary-color);
}

.web-process:hover h3,
.web-process:hover p {
    color: #fff;
    transition: 0.3s ease-in-out;
}

.we-are-expert {
    background-image: url('../images/rounded-cricle-yellow.webp');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
}

.home-services {
    background-color: #27272e;
}

.web-grid {
    transition: 0.3s ease-in-out;
}

.web-grid:hover {
    transition: 0.3s ease-in-out;
    background-color: #2a2a32;
}

.web-grid span {
    font-size: 40px;
    margin-right: 18px;
}

.color-1 {
    color: #fbef8c;
}

.color-2 {
    color: #a2daf8;
}

.color-3 {
    color: #f5e0ed;
}

.color-4 {
    color: #ebebeb;
}

.color-5 {
    color: #dfa9b4;
}

.color-6 {
    color: #807de8;
}

.web-grid a {
    width: 35px;
    height: 35px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 100%;
    font-size: 20px;
    bottom: 0;

    color: var(--web-primary-color);
}

.dm-home {
    background-image: url('../images/digital-marketing-solutions.webp');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
}

.dm-home h2 {
	position: relative;
	z-index: 2;
}

.dm-grid {
    padding: 25px 35px;
    overflow: hidden;
}

.dm-grid:before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    background-color: #dfa9b4;
    top: -30px;
    right: -50px;
}

.dm-grid a {
    color: var(--web-default-color);
}

.dm-grid a i {
    background-color: var(--web-primary-color);
    width: 22px;
    height: 22px;
    line-height: 22px;
    color: #fff;
    border-radius: 100%;
    text-align: center;
    font-size: 12px;
    margin-left: 8px;
}

.digi-img {
    right: 0;
    bottom: 0;
}

.icon-circle {
    width: 65px;
    height: 65px;
    line-height: 65px;
    background-color: var(--web-primary-color);
    border-radius: 100%;
    font-size: 25px;
    color: #fff;
    text-align: center;
}

.why-choose-content {
    width: 88%;
    padding-left: 25px;
}

.contact-dt {
    z-index: 2;
}

.contact-dt form input::-webkit-input-placeholder {
    font-size: 15px;
}

.contact-dt form input::-moz-placeholder {
    font-size: 15px;
}

.contact-dt form input:-ms-input-placeholder {
    font-size: 15px;
}

.contact-dt form input::-ms-input-placeholder {
    font-size: 15px;
}

.contact-dt form input,
.contact-dt form input::placeholder,
.contact-dt form select,
.contact-dt form label {
    font-size: 15px;
}


footer {
    background-color: #27272e;
    z-index: 1;
}

.ft-about p,
.ft-about p a,
.ft-links a,
.ft-get-in-touch a,
.copyright {
    font-size: 15px;
}

a.whatsapp-call-icon {
    position: fixed;
    right: 15px;
    bottom: 20px;
    z-index: 1;
    background-color: #32c752;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border-radius: 100%;
    color: #fff;
    font-size: 30px;
}

.social-icon a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    border: 1px solid #858585;
    text-align: center;
    border-radius: 4px;
    color: #858585;
    transition: 0.1s ease-in;
}

.social-icon a+a {
    margin-left: 12px;
}

.social-icon a:hover {
    background-color: var(--web-primary-color);
    border: 1px solid var(--web-primary-color);
    color: #fff;
    transition: 0.1s ease-in;
}


/*Inner page CSS*/
.inner-banner-bg {
    background-color: var(--global-inner-banner-bg);
}

.inner-banner figure, .inner-banner figure img {
    height: 100%;
    width: 100%;
	object-fit: cover;
	-webkit-object-fit: cover;
	object-position: center center;
}

.beadcrumb ul li {
    color: var(--web-default-color);
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: baseline;
}

.beadcrumb ul li a {
    color: var(--web-default-color);
    display: inline-flex;
    font-weight: 500;
}

.beadcrumb ul li span {
    display: inline-flex;
    margin-right: 6px;
	margin-left: 6px;
    font-size: 12px;
}

/**About Page*/
.flow-sec .flow-num {
    border-radius: 50%;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 24px;
    font-family: var(--web-secondary-font)
}

.flow-sec .flow-num:after {
    content: "";
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    left: -7px;
    top: -14px;
    transition: 0.3s ease-in-out;
}

.flow-sec:hover .flow-num:after {
    top: -7px;
    transition: 0.3s ease-in-out;
}

.flow-sec .flow-num.num-1 {
    background-color: #3eb9ff;
}

.flow-sec .flow-num.num-1:after {
    border: 1px solid #3eb9ff;
}

.flow-sec .flow-num.num-2 {
    background-color: #abbf78;
}

.flow-sec .flow-num.num-2:after {
    border: 1px solid #abbf78;
}

.flow-sec .flow-num.num-3 {
    background-color: #ffb876;
}

.flow-sec .flow-num.num-3:after {
    border: 1px solid #ffb876;
}

.flow-sec .flow-num.num-4 {
    background-color: #dfa9b4;
}

.flow-sec .flow-num.num-4:after {
    border: 1px solid #dfa9b4;
}

.about-modern-web {
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.about-see-services .see-sr-top span {
    width: 50px;
    height: 50px;
    background-color: #ececec;
    border-radius: 100%;
    padding: 0 18px;
    align-items: center;
    justify-content: center;
}

.sr-top-content p, .sr-top-content p a {
    font-size: 14px;
    line-height: 1.4;
}

.sr-top-content p a {
	color: var(--web-default-color);
	text-decoration:none;
}

.about-modern-text {
    background-color: #fff;
    padding: 25px;
    border-radius: 50px;
}

.ab-cta>span:first-child {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: var(--web-primary-color);
    color: #fff;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.ab-cta>span>span:first-child {
    font-size: 14px;
    line-height: 1.2;
}

.ab-cta>span>span:last-child {
    font-size: 20px;
    font-weight: 700;
}

/*About What we provide*/
.about_wwp .Box_num p {
    font-size: 45px;
    font-weight: 700;
    opacity: 0.3;
    color: #bebebe;
    line-height: 1;
}

.animated-bar {
    height: 100%;
    width: 1px;
    background-color: #bebebe;
    position: absolute;
    top: 0;
    right: 0;
}

.Box_num {
    height: 100%;
}

.Box_text h3 {
    font-size: 18px;
    font-weight: 700;
}

.Box_text p {
    font-size: 15px;
    line-height: 1.4;
    padding-right: 25px;
}

.Box_text i {
    color: var(--web-primary-color);
    font-size: 30px;
    margin-top: 12px;
}

.animated-bar:before {
    content: "";
    position: absolute;
    width: 2px;
    height: 30px;
    background-color: var(--web-primary-color);
    left: 0;
}

.animate-topToBottom:before {
    -webkit-animation: topToBottom 5s infinite;
    animation: topToBottom 5s infinite;
}

@-webkit-keyframes topToBottom {
    0% {
        top: 0;
    }

    50% {
        top: calc(100% - 30px);
        /* Adjust this value based on your layout */
    }

    100% {
        top: 0;
    }
}

@keyframes topToBottom {
    0% {
        top: 0;
    }

    50% {
        top: calc(100% - 30px);
        /* Adjust this value based on your layout */
    }

    100% {
        top: 0;
    }
}

.animate-bottomToTop:before {
    -webkit-animation: bottomToTop 5s infinite;
    animation: bottomToTop 5s infinite;
}

@-webkit-keyframes bottomToTop {
    0% {
        top: calc(100% - 30px);
        /* Start from the bottom */
    }

    50% {
        top: 0;
        /* Go to the top */
    }

    100% {
        top: calc(100% - 30px);
        /* Return to the bottom */
    }
}

@keyframes bottomToTop {
    0% {
        top: calc(100% - 30px);
        /* Start from the bottom */
    }

    50% {
        top: 0;
        /* Go to the top */
    }

    100% {
        top: calc(100% - 30px);
        /* Return to the bottom */
    }
}

/*Website Designing Company*/
.services-container i {
    font-size: 40px;
    color: var(--web-primary-color);
}

.services-container h3 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
}

.services-container {
    border: 1px solid #f3f3f3;
    padding: 25px;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 3px 8px 14px -9px #0000003b;
}

.perfect-plan-content {
    max-width: 325px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
    -webkit-filter: drop-shadow(0px 4px 30px rgba(0, 0, 0, 0.04));
    filter: drop-shadow(0px 4px 30px rgba(0, 0, 0, 0.04));
    padding: 20px 20px 55px 20px;
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
}

.perfect-plan figure {
    position: relative;
    overflow: hidden;
    margin-bottom: -132px;
}

.perfect-plan-content:before,
.perfect-plan-content:after {
    content: "";
    position: absolute;
    inset: 0;
    -webkit-mask-image: url('../images/hexagon-white.png');
    mask-image: url('../images/hexagon-white.png');
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    background-color: #E7ECF0;
    z-index: -1;
}

.perfect-plan-content:after {
    inset: 1px;
    background-color: #fff;
}

.perfect-plan-icon {
    background-color: var(--web-primary-color);
    display: inline-block;
    border-radius: 100%;
    color: #fff;
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 15px;
}

.perfect-plan-content h2 {
    font-size: 20px;
    font-weight: 700;
}

.perfect-plan-content p {
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.read__More {
    display: inline-block;
    border: 1px solid #efefef;
    font-size: 13px;
    color: #747474;
    padding: 4px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.read__More:hover {
    background-color: var(--web-primary-color);
    color: #fff;
}

.popupClose {
    position: absolute;
    top: -6px;
    right: -8px;
    cursor: pointer;
    font-size: 28px;
    color: #cf2a2a;
    transition: 0.4s all;
}

.popupClose:hover {
    transform: rotate(360deg);
}

.stunning-section {
    position: relative;
    overflow: hidden;
    background-color: #eee;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: translateZ(0);
    /* Ensure layering works properly for parallax effect */
    z-index: -1;
}

.jarallax-keep-img {
    position: relative;
    z-index: 0;
}

.jarallax-keep-img>.jarallax-img {
    position: relative;
    display: block;
    max-width: 100%;
    height: auto;
    z-index: -100;
    opacity: 0;
}

.overlay-content {
    position: absolute;
    top: 92px;
    width: 100%;
}

.overlay-content .content {
    width: 100%;
    padding-left: 3%;
    padding-right: 3%;
    order: 1;
}

.overlay-content h2 {
    width: 100%;
    font-size: 40px;
    padding-left: 3%;
    font-weight: 900;
    color: #fff;
    text-shadow: -4px 4px var(--web-primary-color);
    order: 0;
}

.overlay-content p {
    color: #fff;
    font-size: 20px;
    line-height: 1.6;
}

.linker {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 60px;
    transform: rotate(-45deg);
    color: #fff;
    text-shadow: -4px 4px var(--web-primary-color);
    transition: 0.4s all;
}

.linker:hover {
    top: 14px;
    text-shadow: unset;
    color: #fff;
}

.web-dev-sec-1 img {
    border-top-right-radius: 45px;
    border-bottom-left-radius: 45px;
    position: relative;
}

.expertises {
    background-color: var(--web-default-color);
    overflow: hidden;
    position: relative;
}

.sectionText {
    z-index: 2;
    position: relative;
}

.marqueelist {
    position: relative;
    z-index: 2;
    width: 100%;
}

.marqueelist li {
    display: inline;
    font-family: var(--web-primary-font);
    font-size: 28px;
    font-weight: bold;
    line-height: 1.6;
    color: #fff;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    text-align: center;
}

.left-piller,
.right-piller {
    position: absolute;
    display: inline-block;
    width: 200px;
}

.left-piller {
    left: 5%;
    top: 0;
    transform: skewX(32deg);
}

.right-piller {
    right: 10%;
    bottom: 150px;
    transform: skewX(32deg);
}

.left-piller::before,
.left-piller::after,
.right-piller::before,
.right-piller::after {
    position: absolute;
    content: "";
    width: 80px;
}

.left-piller::before,
.right-piller::before {
    height: 150px;
    background-color: #1e1e1e;
}

.left-piller::after,
.right-piller::after {
    height: 100px;
    background-color: #363636;
}

.left-piller::after,
.right-piller::before {
    right: 0;
}

.right-piller::after {
    top: 50px;
}

.web-development {
    background-color: var(--global-inner-banner-bg);
}

.dev-box .num {
    width: 100%;
    font-family: var(--web-primary-font);
    font-size: 40px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--web-default-color);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--web-default-color);
}

.dev-box .dev-content p {
    font-size: 15px;
}

.why-choose-box {
    width: 100%;
}

.why-choose-box p {
    font-size: 15px;
}

.arrow-link i {
    background-color: var(--web-primary-color);
    border: 1px solid var(--web-primary-color);
    color: #fff;
    font-size: 25px;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    transition: 0.3s all;
}

.arrow-link i:hover {
    background-color: transparent;
    color: var(--web-primary-color);
}

span.icon-box {
    font-size: 18px;
    background-color: var(--web-primary-color);
    color: #fff;
    width: 50px;
    height: 50px;
    display: inline-block;
    text-align: center;
    line-height: 50px;
    border-radius: 100%;
    margin-bottom: 18px;
}

.sr_BOX {
    overflow: hidden;
    cursor: pointer;
}

.sr_BOX::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(38, 50, 56, .8);
    opacity: 0.8;
    top: 0;
    left: 0;
    transition: 0.3s all;
}

.sr_box_content {
    position: absolute;
    bottom: 0;
    padding: 0 15px;
    background: rgb(38, 50, 56);
    background: linear-gradient(0deg, rgba(38, 50, 56, 1) 0%, rgba(38, 50, 56, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#263238", endColorstr="#263238", GradientType=1);
    transition: 0.3s all;
}

.sr_box_content p {
    color: #d5d5d5;
}

.sr-box-header {
    position: absolute;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    width: 100%;
    top: 0;
    transition: 0.3s all;
}

.sr-box-header>i {
    font-size: 32px;
    color: #ffdd60;
}

.sr-box-header a i {
    color: var(--web-primary-color);
    width: 42px;
    height: 42px;
    line-height: 42px;
    background-color: #fff;
    border-radius: 100%;
    text-align: center;
    font-size: 20px;
    transition: 0.3s all;
}

.sr-box-header a i:hover {
    transform: rotate(-45deg);
}

.hero-2023 {
    background-color: #0D152E;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.hero-2023 figure img {
    width: 100%;
    height: auto;
}

.CS_btn {
    border-radius: 6px;
    color: #fff;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    text-decoration: none;
    background-color: #416ff4;
    border: 1px solid #416ff4;
    padding: 14px 24px;
    margin-top: 1.2rem;
    display: inline-block;
    transition: .3s ease-in-out;
    box-shadow: 0px 5px 0px #1641bd;
    transform: translateY(-5px);
}

.CS_btn:hover {
    transition: .3s ease-in-out;
    background-color: #fff;
    color: #416ff4;
    transform: translateY(0px);
    box-shadow: 0px 0px 0px #1641bd;
}

.InnerWrapper {
    border-radius: 10px;
    padding: 35px;
    min-height: 423px;
    box-shadow: 0px 5px 0px #ddddddb8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.InnerWrapper h3 {
    font-size: 18px;
    font-weight: 600;
}

.card_1 {
    background-color: rgba(65, 111, 244, 0.2);
}

.card_2 {
    background-color: rgba(43, 214, 123, 0.2);
}

.card_3 {
    background-color: rgba(247, 227, 109, 0.2);
}

.card_4 {
    background-color: rgb(247 109 109 / 20%);
}

.card_5 {
    background-color: rgb(109 171 247 / 20%);
}

.InnerWrapper h3 {
    color: #0D152E;
}

.card_icon_1 {
    color: rgb(49 83 185 / 75%);
}

.card_icon_2 {
    color: rgb(43 214 123);
}

.card_icon_3 {
    color: #f9e98d;
}

.card_icon_4 {
    color: #cf9c9c;
}

.card_icon_5 {
    color: #0d124cc7;
}

.InnerWrapper p {
    font-size: 15px;
    transition: 0.3s ease-in-out;
}

.InnerWrapper p.truncate_text {
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    transition: 0.3s ease-in-out;
}

.InnerWrapper .card-icon {
    padding: 0px 0px 0px;
    border-radius: 10px;
    width: 75px;
    height: 66px;
    line-height: 75px;
    margin-bottom: 2.5rem;
}

.InnerWrapper .card-icon i {
    font-size: 32px;
}

span.readMore {
    cursor: pointer;
    background-color: #fff;
    display: inline-block;
    width: 40px;
    height: 36px;
    line-height: 40px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s ease-in-out;
    margin-top: 1.5rem;
}

.AnimateRotate {
    transform: rotateZ(180deg);
    transition: 0.3s ease-in-out;
}

.exp_wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    margin-top: 2rem;
}


.exp_icon {
    background-color: #416ff4;
    color: #fff;
    font-size: 28px;
    border-radius: 10px;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 22px;
}

.exp_content h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 16px;
    margin-bottom: 1rem;
}

.exp_content {
    padding-left: 2rem;
}

.whySec {
    background-color: #f7fafc;
    margin-top: 8rem;
    padding-top: 8rem;
    padding-bottom: 8rem;

}

.gSpeedSlider {
    margin-top: 3rem;
}

.gSpeedSlider .slideItem {
    background-color: #fff;
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0px 0px 14px -5px #00000040;
    margin: 18px 0;
    min-height: 390px;
}

.gSpeedSlider .slideItem h3 {
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    color: #0D152E;
    margin-bottom: 1.2rem;
}

.gSpeedSlider .slideItem p {
    font-size: 15px;
    text-align: center;
    margin-bottom: 0;
}

.gSpeedSlider .slideItem .slide-icon {
    background-color: #416ff4;
    color: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 28px;
    border-radius: 10px;
    box-shadow: 0px 5px 0px #1641bd;
    margin: 0 auto 1.5rem;
    display: table;
}

.owl-carousel.gSpeedSlider .owl-nav button {
    background-color: #0d152e;
    color: #fff;
    display: inline-block;
    width: 32px;
    height: 32px;
}

.owl-carousel.gSpeedSlider .owl-nav {
    display: flex;
    justify-content: flex-end;
}

.g_algorithms {
    position: relative;
    margin-top: 8rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.g_algorithms:after {
    content: "";
    position: absolute;
    width: 75%;
    height: 100%;
    background-color: #416ff4;
    right: 0;
    top: 0;
    border-top-left-radius: 100px;
    z-index: -1;
}

.g_text_wrapper h2,
.g_text_wrapper p {
    color: #fff;
}


.g_text_wrapper {
    padding-top: 2rem;
    padding-left: 4rem;
}

.g_text_wrapper ul {
    padding: 0;
}

.g_text_wrapper ul li {
    list-style: none;
    display: flex;
    align-items: baseline;
    color: #fff;
    margin-top: 0.3rem;
}

.g_text_wrapper ul li i {
    color: #2bd67b;
}

.g_text_wrapper ul li p {
    margin-left: 10px;
    color: #fff;
    margin-bottom: 0;
}

.let_start {
    background-color: #0d152e;
    margin-top: 8rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

form.URLFORM {
    padding: 10px 18px 12px;
    background-color: #101a38;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 6px;
}

form.URLFORM input.WebURL {
    background: transparent;
    border: none;
    color: #687497;
    outline: none;
    display: inline-block;
    padding: 18px 6px;
}

form.URLFORM input.WebURL::-webkit-input-placeholder {
    color: #687497;
}

form.URLFORM input.WebURL::-moz-placeholder {
    color: #687497;
}

form.URLFORM input.WebURL:-ms-input-placeholder {
    color: #687497;
}

form.URLFORM input.WebURL::-ms-input-placeholder {
    color: #687497;
}

form.URLFORM input.WebURL::placeholder {
    color: #687497;
}

.submitURL {
    background-color: #416ff4;
    color: #fff;
    outline: none;
    border: none;
    font-size: 15px;
    padding: 14px 24px;
    border-radius: 6px;
    box-shadow: 0px 5px 0px #1641bd;
    display: inline-block;
    transition: 0.3s ease-in-out;
}

.let_start h2 {
    font-size: 1rem;
}

.flipBox {
    background-color: #fff;
    border: 1px solid #ededed;
    border-radius: 6px;
    padding: 30px;
    box-shadow: 0px 0px 30px -9px #0000003b;
}

.flipBox h5 {
    font-size: 22px;
    color: #0D152E;
    text-align: center;
    margin-bottom: 2rem;
}

.flipBox .inn-score span:first-child {
    color: #0D152E;
    font-size: 14px;
    font-weight: 400;
}

.flipBox .inn-score span {
    display: block;
}

.flipBox .inn-score span:last-child {
    color: #49db47;
    font-weight: 600;
    font-size: 3rem;
}

.flipBox .inn-score {
    width: 50%;
    text-align: center;
}

.flipBox .inn-score+.inn-score {
    border-left: 1px solid #ededed;
}

.bg-cs-blue {
    background-color: #dae4ff;
    border: 1px solid #416ff4;
}

.cs-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 9;
}

.popup-left {
    background-color: #f6f8ff;
    height: 100%;
    padding-top: 35px;
}

.popup-right {
    padding: 32px;
}

.popup-left div p:first-child {
    background-color: #416ff4;
    color: #fff;
    width: 45px;
    height: 45px;
    line-height: 50px;
    text-align: center;
    font-size: 22px;
    border-radius: 10px;
    box-shadow: 0px 5px 0px #1641bd;
    margin-right: 1rem;
}

.popup-left div p span {
    font-size: 14px;
    font-weight: 500;
    color: #0d152e;
    display: block;
    line-height: 15px;
}

.popup-left div p a {
    font-weight: 700;
    font-size: 14px;
    color: #0d152e;
    outline: none;
    text-decoration: none;
}

#wpcf7-f55-o1 .form-group p label {
    font-size: 15px;
}

.post-list img {
    width: 100%;
    height: 180px;
    aspect-ratio: 1;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog-header {
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    height: 400px;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    position:relative;
}

.blog-header:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    top: 0;
    left: 0;
    opacity: 0.4;
    z-index: 0;
}

.blog-header-content {
    position: relative;
    z-index: 1;
}

.post-list article {
    padding: 15px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0px 0px 10px -9px #000;
}

.post-list .entry-title a {
    color: var(--web-default-color);
    text-decoration: none;
    line-height: 1.5;
    display: inline-block;
    font-weight: 600;
    margin-top: 10px;
    transition: 0.3s all;
}

.entry-meta i {
    color: var(--web-primary-color);
}

.post-list .entry-title a:hover {
    color: var(--web-primary-color);
}

.blog-single-post .post-thumbnail img {
    width: 100%;
}

.sidebar_left .widget-area {
    background-color: #f7f7f7;
    padding: 15px;
    border-radius: 6px;
    position: -webkit-sticky;
    position: sticky;
    top: 110px;
}

.widget-area .widget+.widget {
    margin-top: 30px;
}

.sidebar_left .widget-area .widget form .wp-block-search__input {
    width: 70%;
    padding: 5px 5px;
    border: none;
    outline: none;
}

.sidebar_left .widget-area .widget form button {
    width: 30%;
    margin-left: 0;
    background-color: var(--web-primary-color);
    border: 1px solid var(--web-primary-color) !important;
    color: #fff;
    border: none;
    line-height: 1.2;
    transition: 0.3s all;
}
.sidebar_left .widget-area .widget form button:hover {
    background-color: #fff;
    color: var(--web-primary-color);
}


.sidebar_left .widget-area .widget .wp-block-latest-posts li a {
    color: var(--web-default-color);
    font-size: 15px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.2;
    transition: 0.3s all;
}
.sidebar_left .widget-area .widget .wp-block-latest-posts li a:hover {
    color: var(--web-primary-color);
}

.connect-with {
    padding: 35px;
    border: 1px solid #ddd;
    border-radius: 10px;
}
.connect-with span {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 100%;
    background-color: var(--web-primary-color);
    color: #fff;
    font-size: 25px;
    text-align: center;
}

.portfolio figure {
    overflow: hidden;
	height: 300px;
}

.portfolio figure img{
  	height: 100%;
	object-fit: cover;
    object-position: top left;
}
.portfolio figure a {
    position: absolute;
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--web-primary-color);
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    bottom: -60px;
    transition: 0.3s all;
}


.portfolio-box:hover figure a {
    bottom: 0;
    
}
.entry-header {
    z-index: 98;
}

.thank-you .btn__CallNow, .thank-you .btn__back{
    border: 1px solid var(--web-primary-color);
    border-radius: 50px;
    padding: 6px 18px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s all;
}

.thank-you .btn__CallNow{
    background-color: var(--web-primary-color);
    color: #fff;
    margin-right:15px;
}

.thank-you .btn__CallNow:hover {
    background-color: #fff;
    color: var(--web-primary-color);
}

.thank-you .btn__back{
    color: var(--web-primary-color);
}

.thank-you .btn__back:hover{
    background-color: var(--web-primary-color);
    color: #fff;
}

.footer__Form br {
    display: none;
}

.footer__Form label {
    margin-bottom: 8px;
}

.accordion_item {
    border: 1px solid #ddd;
    border-radius: 6px;
}

.accordion_item .faq_title {
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}
.accordion_item .faq_title:after {
    content: "\2b";
    position: absolute;
    right: 15px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.accordion_item .faq_title.open:after{
	content: "\f068";
}

.accordion_item + .accordion_item {
    margin-top: 15px;
}

.accordion_item .faq_title, .accordion_item .faq_des {
    padding: 15px;
}

.faq_des {
    display: none;
}