@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Oxygen:wght@300;400;700&display=swap');



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  
}

body {
	font-family: "Oxygen", sans-serif;
}

a {
  text-decoration: none;
  display: inline-block;
}

img {
  width: 100%;
  display: block;
}

ul {
  padding: 0;
  margin: 0;
}

p {
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

:root {
  --c1: #0DDAFF;; /* Sky Blue */
  --c2: #fff; /* White */
  --c3: #171717; /* Red */
  --c4: #0b0b0b; /* Background Color */
  --c5: #6b6b6b; /* Background Color */
  --c6: #8e8e8e;
  --f1: arima_madurairegular;
}

.wrapper {
    overflow: hidden;
    position: relative;
}

/* ::selection {
  background: var(--c5);
} */

.position-relative {
	position: relative;
}

.position-absolute {
	position: absolute;
}

.a-i-c {
	align-items: center;
}

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

.spacer {
	padding: 80px 0;
}

.spacer-top {
	padding-top: 80px;
}

.spacer-bottom {
	padding-bottom: 80px;
}

.header {
  transition: all 0.4s ease-in-out;
}

.site-logo {
  max-height: 70px;
  transition: all 0.4s ease-in-out;
}

.marquee-container {
  background: linear-gradient(90deg, #0F223E 0%, #285AA4 100%);
  color: white;
  overflow: hidden;
  width: 100%;
  font-size: 16px;
  line-height: 40px;
  white-space: nowrap;
  position: relative;
}

.marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.track {
  display: flex;
  animation: scroll-left 30s linear infinite;
}

.track span {
  display: inline-block;
  padding: 0 50px;
}

/* move entire track */
@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}






/* Header */

header.header {
    background: #17162C;
    padding: 20px 0;
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: top 0.4s ease; /* Smooth movement */
}

header.header.sticky {
    top: 0;
}


.navigation {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}

.navigation nav ul {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}

.navigation a, .navigation nav ul li a {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
	transition: all 0.5s ease-in-out;
}

.navigation nav ul li a:hover {
    color: #0DDAFF;
}

.header-btn a {
    background: var(--c1);
	border: 2px solid var(--c1);
    line-height: 70px;
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    width: 100%;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    gap: 10px;
	transition: all 0.5s ease-in-out;
}

.header-btn a:hover, a.primery-btn:hover, .fill a:hover {
	background-color: transparent;
	color: var(--c1);
}

.un-fill a:hover{
    background: var(--c1);
    color: #fff;
}

.un-fill a:hover i {
    color: #fff;
    transform: translate(10px);
}

.header-btn a i, a.primery-btn i, .fill a i, .un-fill a i {
    transition: all 0.5s ease-in-out;
    color: #fff;
}

.header-btn a:hover i, a.primery-btn:hover i, .fill a:hover i {
    transform: translate(10px);
    color: var(--c1);
}

/* Home Page Banner */

.scrolling-animated-content p {
    font-family: Oswald,sans-serif;
    font-size: 8rem;
    font-weight: 700;
    line-height: 8rem;
	color: #fff;
}

.scrolling-animated-content p span {
    color: var(--c1);
}

/* General Styling */
.banner, .inner-banner {
    position: relative;
/*     overflow: hidden; */
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #17162C;
}

.rel {
    position: relative;
/*     display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 1s ease; */
}

.scrolling-animated-content {
    position: relative;
    z-index: 1;
}

.scrolling-animated-content p {
    font-size: 98px;
    font-weight: 700;
    line-height: 110px;
    opacity: 1;
    transition: all 0.5s ease;
    margin: 0;
/*     display: inline-block; */
/*     text-align: center; */
    transform: translateY(0px);
}

.scrolling-animated-video video {
    position: absolute;
    right: -13%;
    top: 0%;
    transform: translateY(-7.2%);
    width: 80%;
    height: 750px;
    object-fit: cover;
}

/* Scrolling Activated State */
.scrolled .scrolling-animated-content p {
    font-size: 2rem; /* Adjust final font size */
    opacity: 0.8;
    line-height: 2rem;
    transform: translateY(-20px);
}

.scrolled .scrolling-animated-video video {
    right: 50%;
    transform: translate(50%, -50%);
}

.bottom-peragraph p {
    width: 400px;
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    color: #fff;
	padding-top: 50px;
}

.bottom-peragraph {
    position: relative;
}

.bottom-peragraph:before {
    content: '';
    position: absolute;
    top: 65px;
    left: -15%;
    width: 180px;
    height: 2px;
    background: var(--c1);
}


/* WOrk Section */

.images-item {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 14px;
    position: relative;
    top: -75px;
    z-index: 1;
}

.images-item .image {
    width: 49.4%;
    overflow: hidden;
	position: relative;
}

/*.image-content {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: space-between;*/
/*    padding: 50px;*/
/*}*/

.image-title h4 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.image-category ul li {
    font-size: 17px;
    font-weight: 400;
    background: #fff;
    padding: 10px 20px;
    border-radius: 100px;
}

.image-category ul {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}

.image div a {
    width: 100%;
    display: block;
}

.bg-img {
    overflow: hidden;
}

.bg-img:hover img {
    transform: scale(1.1);
}

.bg-img img {
    transition: all 0.5s;
}

.brand p {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    padding: 0 0 50px 0;
}

section.work {
    background: #ebf3f5;
    padding-top: 120px;
    position: relative;
}

.content h2, .faq-title h2 {
    font-size: 47px;
    font-weight: 500;
    font-family: 'Oswald';
    color: #000;
    width: 70%;
	text-transform: uppercase;
}

.faq-title p {
    width: 50%;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    padding-top: 20px;
}

.accordion-item, .accordion-flush>.accordion-item:last-child {
    border-color: #0071BC !important;
}

.content p {
    font-size: 16px;
    font-weight: 700;
    width: 41%;
    padding: 20px 0;
}

a.primery-btn {
    background: #0DDAFF;
    border: 2px solid #0DDAFF;
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
    padding: 20px 40px;
}

.section-title p {
    position: absolute;
    top: 0px;
    right: 0;
    font-size: 511px;
    font-weight: 500;
    font-family: 'Oswald';
    text-transform: uppercase;
    color: #E2EEF0;
}

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

.images .image:hover img {
    transform: scale(1.1);
}

.images .image img {
    transition: all 0.5s ease-in-out;
}

.items-main {
    background: #17162C;
    padding: 200px 0 60px 0;
    position: relative;
    margin-top: -200px;
}

.item {
	width: 32%;
}

.item h5 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.item p {
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    padding-top: 20px;
}

/* Services Section */

.services-item-content h2 {
    font-size: 47px;
    font-weight: 500;
    font-family: 'Oswald';
    color: #000;
    width: 70%;
}

h2 span {
    color: var(--c1);
    font-size: 62px;
}

.services-item-content p {
    font-size: 16px;
    font-weight: 700;
    width: 72%;
    padding: 20px 0;
}

.services-tab-title {
    position: relative;
	width: max-content;
}

.services-tab-title-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    /* z-index: -1; */
}

.services-tab-title h5 {
    font-size: 32px;
    position: relative;
    z-index: 1;
    color: #fff;
    font-weight: 400;
}

.services-tab {
    background: #17162C;
    height: 100%;
    padding: 50px 30px 50px 30px;
}

.services-tab-content p {
    font-size: 16px;
    color: #fff;
    padding: 60px 0 20px 0;
}

.services-tab-content ul li a {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.services-tab-content ul li a:before {
    content: '-';
    position: absolute;
    top: 0;
    left: -10px;
}

.services-tab-content ul li a:hover {
    color: #0ddaff;
}

.services-tab-content ul {
    display: flex;
    gap: 14px;
    flex-direction: column;
}

/* Testimonials Section */

section.testimonials {
    background-color: #EBF2F5;
    padding: 80px 0 80px 0;
}

.testimonials-content h3 {
    font-size: 33px;
    font-weight: 400;
}

.testimonials-content h3 span {
    font-weight: 700;
}

section.testimonials button.slick-prev.slick-arrow {
    visibility: hidden;
    opacity: 0;
    width: 0;
    height: 0;
    overflow: hidden;
}

.testimonials-content p {
    font-size: 18px;
    font-weight: 400;
	padding: 20px 0px;
}

.testimonials-content h5 {
    font-size: 16px;
    font-weight: 700;
}

.testimonials-content {
    width: 93%;
    position: relative;
    height: 100%;
    padding-left: 40px;
}

.testimonials-content:before {
    position: absolute;
    top: -230px;
    left: 0;
}

.testimonials-content span:nth-of-type(3) {
    font-size: 18px;
    font-weight: 400;
}

.testimonials-content h5 {
    font-size: 16px;
    font-weight: 700;
}

button.slick-arrow {
    font-size: 40px;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 5px 20px;
    color: #fff;
    background-color: var(--c1);
    transform: translateY(-82px);
	border: unset;
}

ul.slick-dots {
    position: absolute;
    bottom: 20px;
    right: 0;
    display: flex;
    gap: 14px;
}

ul.slick-dots li button {
    width: 100px;
	height: 11px;
    background-color: #fff;
    color: transparent;
	border: unset;
}

ul.slick-dots li.slick-active button {
    background: #0071BC !important;
}

.testimonial-item {
    height: 100%;
}

.testimonials-content:before {
    position: absolute;
    content: "";
    width: 5%;
    height: calc(150% + 130px);
    top: 70%;
    left: 0px;
    border-left: 9px solid var(--c1);
    border-top: 9px solid var(--c1);
    border-bottom: 9px solid var(--c1);
    transform: translateY(-50%);
}

.slick-slider .slick-list.draggable {
    padding: 85px 0 82px 0;
}

.testimonials-content:after {
    position: absolute;
    content: "";
    width: 5%;
    height: calc(150% + 130px);
    top: 70%;
    right: -100px;
    border-right: 9px solid var(--c1);
    border-top: 9px solid var(--c1);
    border-bottom: 9px solid var(--c1);
    transform: translateY(-50%);
}

.testimonial-image img {
    height: 570px;
    width: 100%;
    object-fit: cover;
}

/* Blogs Section */

section.blog-section {
    background-color: #EBF2F5;
}

section.blog-section ul.slick-dots {
    bottom: -77px;
    left: 136px;
}

.blog-btn {
    text-align: right;
    padding-top: 30px;
}

.blog-discripition {
    height: 140px;
}

.blog-title h5 {
    font-size: 22px;
    font-weight: 700;
}

.blog-thumnail img {
    height: 290px;
    object-fit: cover;
    object-position: top;
}

/* Footer */

footer.footer {
	background: #17162C;
	padding: 40px 0;
}

.footer-title h2 {
    font-size: 47px;
    font-weight: 500;
    font-family: 'Oswald';
    color: #fff;
    border-bottom: 1px solid #fff;
    padding-bottom: 50px;
}

.footer-connections {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
}

.footer-links {
    display: flex;
    width: 70%;
    gap: 70px;
}

.newsletter {
    width: 30%;
    background: #0071BC;
    height: max-content;
    padding: 40px 40px 20px 40px;
}

.frm_style_formidable-style.with_frm_style .frm_submit button {
    border-radius: 0;
    width: 100%;
    background-color: var(--c1);
    border-color: var(--c1);
    padding: 14px;
    box-shadow: unset;
}

.links-items h5, .newsletter-content h5 {
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    padding-bottom: 20px;
}

.links-items.wth ul li:nth-child(7) {
    padding-top: 10px;
}

.links-items ul li, .links-items ul li a {
    color: #fff;
    font-size: 17px;
	transition: all 0.5s ease-in-out;
}

.links-items ul li a:hover {
    color: #0ddaff;
    transform: translate(5px);
}

.links-items ul li span {
    color: #0ddaff;
    padding-right: 5px;
    font-size: 16px;
}

.links-items ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.links-items ul li p {
    font-weight: 700;
}

.links-items.wth {
    width: 30%;
}

.newsletter-content p {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    padding-bottom: 10px;
}

.frm_style_formidable-style.with_frm_style .frm_submit button {
    font-family: 'Oswald';
    font-weight: 500;
}

.brand-logos {
    display: flex;
    flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
	width: 62%;
}

.footer-body {
    display: flex;
    justify-content: space-between;
    padding-top: 120px;
}

.aut-logo {
    display: flex;
    gap: 50px;
    height: 110px;
    align-items: center;
}

.aut-logo div {
    width: 120px;
}

.autontication h5, .footer-body h5 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    padding-bottom: 30px;
}

.footer-discription p, .footer-discription ul li a, .footer-discription ul li {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.5s ease-in-out;
}

.pt, .pt ul {
    display: flex;
    gap: 10px;
}

.footer-logo {
    width: 50px;
}

.footer-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
}

.social-links ul {
    display: flex;
    gap: 20px;
}

.social-links ul li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #4ddbff;
    text-align: center;
    border-radius: 100px;
    color: #fff;
    font-size: 24px;
    border: 2px solid #4ddbff;
    transition: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd {
    display: flex;
    gap: 20px;
}
.social-links ul li a:hover {
    background: transparent;
    color: #4ddbff;
    transform: translate(0, -5px);
}

.footer-discription ul li a:hover {
    color: #4ddbff;
}

/* faqs section */

.faq-container .accordion-button::after {
    background-image: unset;
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    width: unset;
    transition: unset;
	font-size: 25px;
	color: var(--c1);
	display: flex;
    align-items: center;
    justify-content: center;
}

.faq-container .accordion-button:not(.collapsed)::after {
    background-image: unset;
    content: "\f068";
    font-family: "Font Awesome 5 Pro";
}

.strategies-faq .accordion-button::after {
    background-image: unset;
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    width: unset;
    transition: unset;
	font-size: 25px;
	color: var(--c1);
	display: flex;
    align-items: center;
    justify-content: center;
}

.strategies-faq .accordion-button:not(.collapsed)::after {
    background-image: unset;
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
	transform: rotate(0deg);
}

.strategies-faq .accordion-flush>.accordion-item:last-child {
    border: 0;
}

button.accordion-button {
	background: #EBF2F5;
    padding: 40px 0;
}

.accordion-body {
	padding: 0 0 20px 0;
}

.accordion-item {
    background: #EBF2F5;
}

button.accordion-button.collapsed {
    background: #EBF2F5;
}

.about-patner-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* .about-patner-logos div {
    width: 17%;
} */


.about-patner-bottom h5 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    font-family: 'Oxygen';
    padding-top: 50px;
    padding-bottom: 20px;
}

.about-patner-top-left h2 {
    font-size: 47px;
    font-weight: 500;
    color: #000;
    font-family: 'Oswald';
    line-height: 62px;
    padding: 10px 0 20px 0;
}

.about-patner-top-left h6 {
    position: relative;
    padding-left: 90px;
    color: #0DDAFF;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Oxygen';
}

.about-patner-top-left h6:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translate(0px, -50%);
    left: 0;
    width: 70px;
    height: 2px;
    background: #0DDAFF;
}

.about-patner-top {
    display: flex;
    justify-content: space-between;
}

.about-patner-top-left {
    width: 62%;
}

.about-patner-top-right {
    width: 18.5%;
	text-align: center;
	position: relative;
}

.about-patner-top-right h3 {
    font-size: 64px;
    font-weight: 700;
    font-family: 'Oswald';
	position: relative;
}

.about-patner-top-right:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 100%;
    border-left: 8px solid #0ddaff;
    border-top: 8px solid #0ddaff;
    border-bottom: 8px solid #0ddaff;
}

.about-patner-top-right:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 25px;
    height: 100%;
    border-right: 8px solid #0ddaff;
    border-top: 8px solid #0ddaff;
    border-bottom: 8px solid #0ddaff;
}

.about-patner-top-right h3:before {
    content: '';
    position: absolute;
    top: 130%;
    left: -100%;
    width: 100%;
    height: 4px;
    background: #0ddaff;
}

.about-patner-top-right p {
    font-size: 29px;
    font-weight: 600;
    text-align: center;
}

.accordion-button:not(.collapsed) {
    background: unset;
    box-shadow: unset;
}

.accordion-flush>.accordion-item:last-child {
    background-color: var(--bs-accordion-bg);
    border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
	border-top: 0;
	border-right: 0;
	border-left: 0;
}

.accordion-button:focus {
	box-shadow: unset;
}

.faq-details {
    display: flex;
}

.faq-details h5 {
    font-size: 24px;
    font-weight: 400;
    width: 260px;
}

.faq-details h5 span {
	font-weight: 700;
}

button.accordion-button {
    font-size: 26px;
    font-weight: 400;
}

.faq-container {
    padding: 10px 0 60px 0;
}

/* Case Section */
.case-item.case-item-1 {
	position: absolute;
	top: 130px;
	left: 100px;
}

.case-item.case-item-2 {
	position: absolute;
	top: 0;
	right: 0;
}

section.case-studay {
	padding: 120px 0;
	height: 2150px;
}

.case-item.case-item-4 {
	position: absolute;
	top: 700px;
	left: -30px;
}

.case-item.case-item-5 {
	position: absolute;
	top: 580px;
	right: -140px;
}

.case-item.case-item-6 {
	position: absolute;
	top: 1200px;
	left: 160px;
}

.case-item.case-item-7 {
	position: absolute;
	top: 1200px;
	right: 0px;
}

/*.case-item.case-item-3 .case-image svg {*/
/*	position: absolute;*/
/*	top: 450px;*/
/*	left: 468px;*/
/*	background: #01030E;*/
/*	padding: 20px 30px;*/
/*	width: 360px;*/
/*	z-index: 1;*/
/*	height: 120px;*/
/*}*/


.case-item.case-item-3 .case-image svg {
    position: absolute;
    left: 468px;
    background: #01030E;
    padding: 20px 30px;
    width: 360px;
    z-index: 1;
    height: 120px;

    /* transition smoothness */
    transition: transform 0.1s linear;
}



.case-btn a {
	font-size: 16px;
	font-weight: 700;
	color: #000;
	text-align: end;
	display: block;
	margin-top: 15px;
}

.case-btn a span i {
	transform: rotate(-45deg);
}

.case-item-2 .case-btn a,
.case-item-5 .case-btn a,
.case-item-7 .case-btn a {
	text-align: justify;
}

/* About Us */

section.about {
    position: relative;
    width: 100%;
    height: 1080px;
    background-image: url(/wp-content/uploads/2025/04/Mask.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	margin: 100px 0 0 0;
}

.main_word {
    font-size: 80px;
    font-weight: 600;
    font-family: 'Oswald';
    color: #fff;
	position: absolute;
}

.word_form {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
	position: absolute;
}

.n {
    top: 170px;
    left: 200px;
}

.navigates {
    right: 400px;
    top: 190px;
}

.o {
    top: 300px;
    left: 270px;
}

.opportunities {
    top: 326px;
    right: 120px;
}

.for-l {
    top: 450px;
    left: 320px;
}
.for-r {
    top: 450px;
    right: 320px;
}

.v {
    top: 550px;
    left: 380px;
}

.drived {
    top: 577px;
    right: 30px;
}
.a {
    top: 680px;
    left: 430px;
}

.ability {
    top: 705px;
    right: 170px;
}

.your {
    top: 830px;
    left: 480px;
}

/* Initial state (hidden off-screen) */
.about .from-left {
  position: absolute;
  transform: translateX(-150px); /* left side se bahar */
  opacity: 0;
  transition: all 1s ease;
}
.about .from-right {
  position: absolute;
  transform: translateX(150px); /* right side se bahar */
  opacity: 0;
  transition: all 1s ease;
}

/* Active state (actual position) */
.about .animate {
  transform: translateX(0);
  opacity: 1;
}

.container-fluid.g-0 {
    width: 1735px;
    margin: 0 0 0 auto;
}

section.blog-section {
    padding-bottom: 140px;
}

.blog-title h5 a {
    font-size: 22px;
    font-weight: 700;
	color: #000;
}

.blog-discripition p {
    font-size: 17px;
    font-weight: 400;
    padding: 20px 0 30px 0;
}

.blog-fr {
    display: flex;
    gap: 20px;
}

.blog-item {
	padding-left: 20px;
}

button.slick-prev.pull-left.slick-arrow {
    right: 110px;
}

section.blog-section button.slick-arrow {
    top: 0px;
    height: 70px;
    right: 303px;
}

section.blog-section button.slick-prev.pull-left.slick-arrow {
    right: 400px;
}

.blog-section-title p {
    font-size: 16px;
    font-weight: 700;
}

.blog-section-title h2 {
    font-size: 47px;
    font-weight: 500;
    font-family: 'Oswald';
    text-transform: uppercase;
}

.blog-section-title {
    width: 70%;
}

section.blog-section .slick-slider .slick-list.draggable {
    padding: 40px 0 0 0;
    margin-left: 116px;
}

/* Contact Us */

.contact-us-banner {
    /*padding-top: 50px;*/
    height: 100vh;
}

ul.breadcrumb li, ul.breadcrumb li a {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

ul.breadcrumb {
    gap: 20px;
}

ul.breadcrumb li {
    position: relative;
}

ul.breadcrumb li:before {
    content: '>';
    position: absolute;
    top: 0;
    right: -14px;
}

ul.breadcrumb li:last-child:before {
    content: unset;
}

ul.breadcrumb li, ul.breadcrumb li a {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

ul.breadcrumb {
    gap: 20px;
}

ul.breadcrumb li {
    position: relative;
}

ul.breadcrumb li:before {
    content: '>';
    position: absolute;
    top: 0;
    right: -14px;
}

ul.breadcrumb li:last-child:before {
    content: unset;
}

.inner-content {
    width: 90%;
}

.inner-content h1 {
    font-size: 70px;
    font-family: 'Oswald';
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
}

.contact-form {
   	background: #fff;
    padding: 50px 50px 30px 50px;
    position: relative;
    z-index: 1;
}

.inner-content p {
    color: #fff;
    font-size: 17px;
    font-weight: 400;
}

.inner-banner-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
}

.inner-banner-image img {
    object-fit: cover;
    height: 100%;
}

.contect-details label {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--c1);
}

.contect-details a {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}

.map iframe {
    width: 100%;
    height: 600px;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
    align-items: center;
}

.where {
    width: 50%;
}

.establish p {
    font-size: 22px;
    font-weight: 400;
}

.establish p span {
    font-weight: 700;
}

.establish {
    display: flex;
    height: max-content;
    align-items: center;
    gap: 20px;
}

.establish i {
    font-size: 40px;
    color: #eb6030;
}

.where h2, .lets-main h2 {
    font-size: 47px;
    font-family: 'Oswald';
    font-weight: 700;
    text-transform: uppercase;
}

.where p {
    font-size: 17px;
    font-weight: 400;
    padding: 20px 0 30px 0;
}

.where-bottom p {
    padding: 0;
}

.where span, .lets-main span {
    position: relative;
    color: var(--c1);
    font-size: 20px;
    font-weight: 700;
    padding-left: 100px;
}

.where span:before, .lets-main span:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 70px;
    height: 2px;
    background-color: #4ddbff;
}


/* About Us Page */

section.inner-banner.about-us-banner {
    display: block;
    height: 800px;
    padding-top: 160px;
}

section.inner-banner.about-us-banner .inner-content {
    width: 60%;
}

section.inner-banner.about-us-banner .inner-content h1 span {
    color: var(--c1);
    font-size: 100px;
    font-weight: 300;
}

section.inner-banner.about-us-banner .inner-content p, section.inner-banner.blogs-banner .inner-content p, section.inner-banner.services-banner .inner-content p {
    position: relative;
    padding-left: 100px;
    padding-top: 50px;
}

section.inner-banner.about-us-banner .inner-content p:before, section.inner-banner.blogs-banner .inner-content p:before, section.inner-banner.services-banner .inner-content p:before {
    content: '';
    position: absolute;
    top: 81%;
    left: 0;
    width: 70px;
    height: 4px;
    background-color: #4ddbff;
}

section.inner-banner.services-banner .inner-content p:before {
    top: 60px;
}

.image-slider {
    display: flex;
    justify-content: space-between;
    transform: translate(0px, -420px);
}

.image.image-3, .image.image-4 {
    transform: translate(0px, 150px);
}

.image.image-2 {
    transform: translate(0px, 60px);
}

.image.image-1 {
    transform: translate(0px, 30px);
}

.image.image-6 {
    transform: translate(0px, 100px);
}

.image.image-7 {
    transform: translate(0px, 250px);
}

.image.image-8 {
    transform: translate(0px, 180px);
}

.image.image-9 {
    transform: translate(0px, 220px);
}

.image.image-10 {
    transform: translate(0px, 140px);
}

.image.image-10 {
    transform: translate(0px, 150px);
}

.image.image-11 {
    transform: translate(0px, 190px);
}

.image.image-12 {
    transform: translate(0px, 50px);
}

/* Let's Section */

section.lets-go {
    position: relative;
    height: 535px;
    display: flex;
    align-items: center;
}

.sec-video {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
}

.lets-main h2 span:before {
    content: unset;
}

.lets-main h2 span {
    padding-left: 0;
    font-size: 57px;
    font-weight: 400;
}

.lets-main h2 {
    padding: 20px 0;
}

.lets-main p {
    font-size: 16px;
    font-weight: 700;
	padding-bottom: 20px;
}

a.primery-btn span {
    padding-left: 0;
}

a.primery-btn span:before {
    content: unset;
}

/* Blogs Page */
.blogs-filter {
    display: flex;
    justify-content: space-between;
    background: #EBEDF5;
    padding: 30px 80px;
    margin-bottom: 60px;
}

.filter-list ul {
    display: flex;
    gap: 24px;
}

.blogs-item-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.blogs-item-row .blog-item {
    padding: 0;
    overflow: hidden;
    width: 32.3%;
}

.blog-further ul {
    display: flex;
    gap: 14px;
}

li.post-category {
    padding-right: 30px;
}

/*.blog-btn a {*/
/*    background: #4ddbff;*/
/*    display: block;*/
/*    padding: 10px;*/
/*    color: #fff;*/
/*    font-size: 16px;*/
/*    font-weight: 400;*/
/*    text-transform: uppercase;*/
/*    transform: translateY(44px);*/
/*}*/

.blogs-item-row .blog-item:hover .blog-details {
    transform: translateY(-44px);
}

.blog-details {
    transition: all 0.3s ease-in-out;
    background: #fff;
    padding: 20px;
}

.blogs-item-row .blog-item .blog-title, .blogs-item-row .blog-item .blog-further {
    padding: 0 20px;
}

.blogs-item-row .blog-item .blog-further {
    padding-top: 20px;
}

.filter-title h5 {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: #000;
}

.filter-list ul li a {
    font-size: 17px;
    font-weight: 400;
    color: #000;
}

.blog-image a {display: block;}

.blog-image a img {
    height: 250px;
    object-fit: cover;
}

/* Style for the current category */
.filter-list ul li a.current-category {
    color: var(--c1);
}

section.inner-banner.blogs-banner .inner-content {
    width: 70%;
}

.featured-article {
    display: flex;
    overflow: hidden;
}

.featured-article .featured-post-image, .featured-article .featured-post-details {
    width: 50%;
    position: relative;
}

/*.badge {*/
/*    position: absolute;*/
/*    top: -10px;*/
/*    right: -45px;*/
/*    z-index: 1;*/
/*}*/

.featured-post-image a {
    display: block;
}

.featured-post-title h5 {
    font-size: 46px;
    font-weight: 600;
    font-family: "Oswald", sans-serif;
    color: #fff;
    padding-bottom: 30px;
    padding-left: 50px;
}

.featured-post-details-content a {
    font-size: 22px;
    font-weight: 700;
    color: #000;
}

.featured-post-details-content p {
    font-size: 17px;
    font-weight: 400;
    color: #000;
    padding: 10px 0 30px 0;
}

section.blogs-section.spacer-bottom {
    transform: translateY(-250px);
}

.featured-post-detail {
    background: #fff;
    padding-top: 30px;
    padding-right: 50px;
    height: 100%;
}

.featured-post-image a img {height: auto;}

/* Services Page */

section.inner-banner.services-banner .inner-content h1 span {
    color: var(--c1);
}

.ready p {
    font-size: 37px;
    font-weight: 500;
    font-family: 'Oswald';
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

.ready a {
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    display: block;
}

.ready {
    position: relative;
}

.ready:before {
    position: absolute;
    content: "";
    width: 5%;
    height: calc(90% + 50px);
    top: 50%;
    left: 50px;
    border-left: 9px solid var(--c1);
    border-top: 9px solid var(--c1);
    border-bottom: 9px solid var(--c1);
    transform: translateY(-50%);
}

.ready:after {
    position: absolute;
    content: "";
    width: 5%;
    height: calc(90% + 50px);
    top: 50%;
    right: 50px;
    border-right: 9px solid var(--c1);
    border-top: 9px solid var(--c1);
    border-bottom: 9px solid var(--c1);
    transform: translateY(-50%);
}

.work-content h2 {
    font-size: 47px;
    font-weight: 500;
    font-family: 'Oswald';
}

.work-content {
    padding-left: 50px;
}

.services-graph {
    padding-left: 50px;
}

section.ho-we-work {
    background: #EBF2F5;
}

.work-content p {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    padding-bottom: 10px;
}

.brand-logo img {
    width: 160px;
}

.work-with {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.brand-logo {
    width: 20%;
}

.slider-image, .slider-content {
    width: 50%;
}

.how-we-do-slider.slick-initialized.slick-slider.slick-dotted ..slick-list.draggable .slick-track .slick-initialized .slick-slide{
    display: flex;
}

.how-we-do-slider button.slick-prev.slick-arrow {
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

.item-work {
    position: relative;
	overflow: hidden;
}

.work-image {
    transition: all 0.5s ease-in-out;
}

.item-work:hover .work-image {
    transform: scale(1.1);
}

.content-work {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding: 30px 40px 0 40px;
	background: linear-gradient(180deg, #080808 0%, rgba(115, 115, 115, 0) 100%);
}

.content-work h3, .content-work h3 span {
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    padding: 10px 0;
}

.pro-info ul {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.pro-info ul li {
    background: #fff;
    padding: 10px 10px;
    border-radius: 100px;
}

.pro-info {
    position: absolute;
    bottom: 40px;
    right: 40px;
}

.content-work h5 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.content-work p {
    color: #fff;
    font-size: 28px;
    font-weight: 400;
}

.content-work p span {
    font-weight: 700;
}

.content-work h6 {
    color: #fff;
    font-weight: 700;
    font-size: 17px;
}

.how-we-do-slider ul.slick-dots li button {
	background-color: #DDDDDD;
}

.how-we-do-slider ul.slick-dots {
	left: 52%;
	bottom: 70px;
}

.slider-content h5 {
    font-size: 50px;
    font-weight: 700;
    color: #1C3F74;
    padding-bottom: 30px;
}

.slider-content {
	position: relative;
	padding-left: 90px;
}

.slider-content span {
    position: absolute;
    top: -50px;
    left: 60px;
    font-size: 100px;
    font-weight: 500;
    color: #e1e5f0;
    font-family: 'Oswald';
    z-index: -1;
}

.how-we-do-slider-row .slick-list .slick-track {
    display: flex;
    align-items: center;
}

.how-we-do-slider button.slick-arrow {
	right: 693px;
}
/* Services Details Page */

.servies-banner-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 700px;
}

.inner-content h1 span {
    font-size: 86px;
    color: #4ddbff;
    font-weight: 400;
}

/* .services-item a {
    display: flex;
    justify-content: space-between;
} */

section.get-started {
    background-color: #EBF2F5;
    position: relative;
}

.se-im {
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
}

.con-form {
    position: relative;
    z-index: 1;
}

body.services-template-default section.faq {
    background-color: #EBF2F5;
}

body.services-template-default section.faq .accordion {
    background: transparent;
}

body.services-template-default section.faq .accordion .accordion-item, body.services-template-default section.faq .accordion .accordion-item .accordion-button {
    background: transparent;
}

section.faq {
    background: #EBF2F5;
}

span.sec-lab {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    color: #0DDAFF;
    padding-left: 90px;
    padding-bottom: 5px;
    display: block;
}

span.sec-lab:before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0px;
    width: 75px;
    height: 2px;
    background: #0DDAFF;
}

.ser-con h2, .need-head h2 {
    font-size: 47px;
    font-weight: 500;
    font-family: 'Oswald';
    padding-bottom: 14px;
}

.ser-con {
    padding-right: 70px;
}

.ser-con p {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    padding-bottom: 10px;
}

.ser-img img {
    height: 720px;
    object-fit: cover;
}

.need-item h6 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    padding: 30px 0 10px 0;
}

.need-item p {
    font-size: 17px;
    font-weight: 400;
    color: #000;
}

.need-body {
    display: flex;
    flex-wrap: wrap;
}

.need-item {
    width: 50%;
    padding-right: 100px;
}

.need-row {
    background: #EBF3F5;
    position: relative;
}

.need-row:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #EBF3F5;
    z-index: -1;
}

section.cta {
    background: #17162C;
    position: relative;
    /* height: 630px; */
    /* display: flex; */
    align-items: center;
    padding-top: 380px;
    padding-bottom: 140px;
    top: -180px;
}

.cat-image {
    position: absolute;
    bottom: 0;
    right: 0px;
    width: 1000px;
}

.cta-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    padding: 10px 0 20px 0;
}

.cta-content p {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.cta-content span {
    position: relative;
    padding: 0 0  10px 100px;
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.cta-content span:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 75px;
    height: 2px;
    background: #fff;
}

.cta-btn {
    padding-top: 30px;
    display: flex;
    gap: 20px;
}

.project-btn a {
    background: var(--c1);
    border: 2px solid var(--c1);
    line-height: 70px;
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    width: 100%;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    gap: 10px;
    transition: all 0.5s ease-in-out;
}

.project-btn {
    width: 30%;
}

.contact-btn {
    width: 30%;
}

.contact-btn a {
    border: 2px solid #fff;
    line-height: 70px;
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    width: 100%;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    gap: 10px;
    transition: all 0.5s ease-in-out;
}

section.need {
    position: relative;
    z-index: 1;
}

.sec-title h2 {
    font-size: 47px;
    font-weight: 700;
	padding-bottom: 30px;
}

.services-item {
/*     background: #17162C; */
/*     padding: 40px; */
}

.services-item a {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-decoration: underline;
/*     padding-bottom: 10px; */
}

.offer-item h5 {
	color: #000;
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 10px;
}

.services-item p {
/*     color: #fff; */
    font-size: 17px;
    font-weight: 400;
    padding-bottom: 10px;
}

.offer-item p {
	color: #000;
    font-size: 17px;
    font-weight: 400;
    padding-bottom: 10px;
}

.services-item a span {
    color: #0DDAFF;
}

.offer-item {
    padding-right: 120px;
}

section.offer {
    transform: translateY(-90px);
}

.aim-content h5 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    padding-bottom: 10px;
}

.aim-content p {
    font-size: 17px;
    font-weight: 400;
    color: #000;
    padding-bottom: 20px;
}

.aim-btn {
    transition: all 0.5s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.aim-item:hover .aim-btn {
    visibility: visible;
    opacity: 1;
}

section.aim {
    background: #EBF2F5;
}

.aim-item {
    margin-top: 30px;
}

.how-we-do-head h2 {
    font-size: 47px;
    font-weight: 700;
}

.how-we-do-head h2, .get-started-content h2 {
    font-size: 47px;
    font-weight: 700;
    font-family: 'Oswald';
    padding-bottom: 10px;
	text-transform: uppercase;
}

.how-we-do-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

section.how-we-do {
    padding: 100px 0 40px 0;
}

section.inner-banner.services-detail-banner {
    height: 335px;
}

section.inner-banner.services-detail-banner .inner-content p {
    width: 80%;
    padding-left: 100px;
    position: relative;
    padding-top: 30px;
}

section.inner-banner.services-detail-banner .inner-content p:before {
    position: absolute;
    content: '';
    top: 42px;
    left: 0;
    width: 80px;
    height: 2px;
    background: #fff;
}

.how-we-do-head p {
    font-size: 16px;
    font-weight: 700;
}

.how-we-do-head {
    width: 80%;
}

.get-started-content p {
    font-size: 17px;
    font-weight: 400;
    color: #000;
}

.get-started-content ul li {
    color: #1C3F74;
    font-size: 20px;
    font-weight: 700;
}

.get-started-content ul li a {
    font-size: 22px;
    color: #000;
    padding-bottom: 10px;
}

.get-started-content ul {
    padding-top: 20px;
}

section.our-work {
    padding-top: 100px;
}

section.our-work .how-we-do-main {
    padding-bottom: 80px;
}

.n.main_word:before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: -200px;
    width: 245px;
    height: 2px;
    background-color: #0ddaff;
}

.o.main_word:before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: -300px;
    width: 345px;
    height: 2px;
    background-color: #0ddaff;
}

.v.main_word:before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: -400px;
    width: 440px;
    height: 2px;
    background-color: #0ddaff;
}

.a.main_word:before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: -500px;
    width: 550px;
    height: 2px;
    background-color: #0ddaff;
}

.your.main_word:before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: -500px;
    width: 545px;
    height: 2px;
    background-color: #0ddaff;
}

.partner-logo img {
    width: auto;
}

.partner-slider .slick-list.draggable {
    padding: 0;
}

.partner-logo {
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.image-content {
    position: absolute;
    top: 30px;
    left: 40px;
}

.image-category {
    position: absolute;
    bottom: 40px;
    right: 40px;
}

.image-title p {
    color: #fff;
    padding-top: 20px;
    font-size: 28px;
    font-weight: 400;
    padding-right: 60px;
}

.image-stats {
    position: absolute;
    top: 200px;
    left: 40px;
}

.image-stat div span {
    color: #fff;
    font-size: 66px;
    font-weight: 600;
}

.image-stat span {
    color: #fff;
    font-size: 17px;
}

.partner-logo.b9 img {width: 200px;}

.custom-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: #17162C;
}
.hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: #fff;
    margin-top: 50px;
}
.hero-title h1 span {
    display: block;
    font-size: 4rem;
    font-weight: bold;
}

span.c-b {
    color: var(--c1);
}

.hero-video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease-out;
    backface-visibility: hidden;
    perspective: 1000px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}
.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-title p {
    font-size: 28px;
    padding-top: 20px;
}

.hero-video-container,
.hero-title h1 span {
    will-change: transform, opacity;
}

.hero-title h1 span {
    font-size: 100px;
    font-weight: 600;
    font-family: 'Oswald';
    letter-spacing: 1px;
}


/*.graph {*/
/*    position: relative;*/
/*}*/

/*.position-image {*/
/*    position: absolute;*/
/*    max-width: fit-content;*/
/*    height: auto;*/
/*}*/

/*.position-image.position-image-1 {*/
/*    top: 0;*/
/*    left: 0;*/
/*}*/

/*.position-image.position-image-2 {*/
/*    top: 107px;*/
/*    left: -28px;*/
/*}*/

/*.position-image.position-image-3 {*/
/*    top: 107px;*/
/*    right: 123px;*/
/*}*/


.from-right {
    position: relative;
}

.navigates:before {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -430px;
    width: 535px;
    height: 2px;
    background-color: #0ddaff;
}

.opportunities:before {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -120px;
    width: 445px;
    height: 2px;
    background-color: #0ddaff;
}

.for-r:before {
    content: '';
    position: absolute;
    bottom: 0px;
    right: -320px;
    width: 388px;
    height: 2px;
    background-color: #0ddaff;
}

.drived:before {
    content: '';
    position: absolute;
    bottom: 0px;
    right: -30px;
    width: 355px;
    height: 2px;
    background-color: #0ddaff;
}

.ability:before {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -170px;
    width: 325px;
    height: 2px;
    background-color: #0ddaff;
}

.your.main_word:after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: -460px;
    width: 505px;
    height: 2px;
    background-color: #0ddaff;
}

.fill a {
    background: var(--c1);
    border: 2px solid var(--c1);
    line-height: 70px;
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    width: 100%;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    gap: 10px;
    transition: all 0.5s ease-in-out;
    padding: 0 30px;
}

.un-fill a {
    background: transparent;
    border: 2px solid var(--c1);
    line-height: 70px;
    color: var(--c1);
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    width: 100%;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    gap: 10px;
    transition: all 0.5s ease-in-out;
    padding: 0 30px;
}

.un-fill a i {
    color: var(--c1);
}

.banner-btn {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 30px;
}

.testimonials-content h6 {
    font-size: 20px;
    font-weight: 700;
    padding-top: 20px;
}

.calculator {
    position: fixed;
    bottom: 0;
    left: 10px;
    z-index: 99;
    background: #1C3F74;
    padding: 20px 10px 10px 10px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    width: 210px;
    transition: all 0.5s ease-in-out;
}

.calculator-image img {
    width: fit-content;
}

.calculator-image {
    display: flex;
    justify-content: center;
}

.calculator-title h6 {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    font-family: "Oswald", sans-serif;
    text-align: center;
    text-transform: uppercase;
    line-height: 22px;
    padding: 5px 0;
}

.calculator-btn a {
    background: var(--c1);
    border: 2px solid var(--c1);
    line-height: 50px;
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 15px;
    width: 100%;
    font-weight: 500;
    text-transform: uppercase;
     display: flex; 
    justify-content: center;
    gap: 10px;
    transition: all 0.5s ease-in-out;
    padding: 0 30px;
}

.calculator-btn a:hover {
    background: transparent;
    color: var(--c1);
}

.calculator-btn a i {
    transition: all 0.5s ease-in-out;
}

.calculator-btn a:hover i, .calculator:hover {
    transform: translate(10px);
}

.calculator:hover {
    transform: translate(0px , -10px);
}

.calculator-image {
  position: relative; /* zaroori hai movement ke liye */
  animation: moveDown 2.5s ease-in-out infinite;
}

/* Keyframes */
@keyframes moveDown {
  0% {
    top: -50px;   /* thoda upar se start kare */
    opacity: 0;
  }
  50% {
    top: 0;       /* apni normal position pe aa jaye */
    opacity: 1;
  }
  100% {
    top: 10px;    /* neeche move kare */
    opacity: 0;
  }
}

.graph {
    position: relative;
}

.graph svg.top-svg {
    position: absolute;
    top: -20px;
    left: 0;
}

.graph svg.bottom-left-svg {
    position: absolute;
    top: 108px;
    left: -39px;
}

.graph svg.bottom-right-svg {
    position: absolute;
    top: 108px;
    right: 113px;
}

.strategise, .engage {
    padding: 200px 0;
}

.stra-con h3 {
    font-family: 'Oswald';
    font-size: 32px;
    line-height: 62px;
    font-weight: 400;
    text-transform: uppercase;
}

.stra-con {
    width: 70%;
}

section.case-studay .content p {
    width: 100%;
}

section.case-studay .content h2 {
    width: 60%;
}

section.case-studay .section-btn {
    text-align: right;
}

.container.cs {
    padding-bottom: 40px;
}

.container.cs {
    padding-bottom: 40px;
}

.content > span {
    position: relative;
    color: #0ddaff;
    font-size: 20px;
    font-weight: 600;
    padding-left: 100px;
    font-family: 'Oxygen';
}

.content > span:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0px;
    width: 80px;
    height: 2px;
    background: #0ddaff;
    transform: translate(0px, -50%);
}

.container.cs .row {
    align-items: center;
}

.inner-banner-form {
    background: #fff;
    padding: 40px 50px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

label.frm_primary_label {
    padding: 10px 0 5px 0 !important;
}

button.frm_button_submit {
    margin-top: 30px !important;
    width: max-content !important;
    font-family: 'Oswald' !important;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.inner-banner-title h1 {
    color: #fff;
    font-size: 70px;
    font-weight: 500;
    font-family: 'Oswald';
    text-transform: uppercase;
}

.banner-left {
    padding-right: 200px;
}

section.inner-banner.about-us-banner .banner-left {
    padding-right: 100px;
}

.inner-banner-title p {
    color: #fff;
    padding: 20px 0 20px 110px;
    position: relative;
}

.inner-banner-title p:before {
    content: '';
    position: absolute;
    top: 32px;
    left: 0;
    width: 90px;
    height: 2px;
    background: #0ddaff;
}

.inner-banner-title h1 span {
    color: #0ddaff;
}

.banner-content-main-itm h6, .banner-content-main-itm a {
    color: #0ddaff;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Oxygen';
    line-height: 30px;
}

.banner-content-main-itm a {
    color: #fff;
}

.banner-content-main-itm {
    padding-bottom: 10px;
}

.inner-banner-bg {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

section.inner-banner.about-us-banner .about-inner-banner-bg {
    position: absolute;
    bottom: -450px !important;
    right: 0;
}

.inner-banner-bg img {
    height: 100%;
    object-fit: cover;
}

.location-inner-item.flx img {
    width: 30px;
    padding-top: 10px;
}

.content-main {
    display: flex;
    padding: 50px 0;
}

.location-inner-item {
    width: 50%;
}

.location-inner-item.flx {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 80px;
}

section.location {
    padding-bottom: 50px;
}

.location-inner-item h2 {
    font-size: 47px;
    font-weight: 500;
    font-family: 'Oswald';
    color: #000;
    line-height: 62px;
}

.location-inner-item p {
    padding-top: 14px;
}

.banner-left.ow {
    padding-right: 0;
}

.our-work-banner-btn {
    position: relative;
    width: 50%;
	padding: 10px 0;
}

body.page-id-192 .banner-right {
    margin-right: 80px;
}

body.page-id-192 .banner-right .our-work-banner-btn {
    width: 40%;
    padding: 10px 0;
}

.banner-right {
    display: flex;
    justify-content: flex-end;
}

.our-work-banner-btn:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 100%;
    border-left: 8px solid #0ddaff;
    border-top: 8px solid #0ddaff;
    border-bottom: 8px solid #0ddaff;
}

.our-work-banner-btn:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 25px;
    height: 100%;
    border-right: 8px solid #0ddaff;
    border-top: 8px solid #0ddaff;
    border-bottom: 8px solid #0ddaff;
}

.our-work-banner-btn h5 {
    font-size: 37px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Oswald';
    padding: 0 0px;
    text-align: center;
    color: #fff;
}

.our-work-banner-btn a {
    font-size: 17px;
    color: #fff;
    font-weight: 500;
    text-align: center;
    display: block;
    text-decoration: underline;
    margin-top: 10px;
}

section .panel .container .row .col-md-12 {
    padding: 24px 12px;
}

.tablist {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	/*padding: 10px;*/
	overflow: auto hidden;
	scroll-snap-type: x mandatory;
	background: rgba(255, 255, 255, .02);
}

.tablist::-webkit-scrollbar {
	height: 8px
}

.tablist::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, .15);
	border-radius: 10px
}


.tab {
	scroll-snap-align: center;
	position: relative;
	appearance: none;
	border: none;
	background: transparent;
	color: var(--muted);
	font-weight: 600;
	letter-spacing: .2px;
	padding: 0 12px;
	border-radius: 14px;
	cursor: pointer;
	transition: color .25s ease, transform .2s ease;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 10px;
}

.tab:hover {
	color: #0ddaff;
	transform: translateY(-1px)
}

.tab[aria-selected="true"] {
	color: #0ddaff
}

.tab:focus-visible {
	outline: 2px solid var(--ring);
	outline-offset: 2px;
	border-radius: 16px
}


/* Ink slider */
.ink {
	position: absolute;
	height: 36px;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--brand), var(--brand-2));
	filter: drop-shadow(0 10px 20px rgba(106, 166, 255, .35));
	transition: transform .35s cubic-bezier(.2, .8, .2, 1), width .35s cubic-bezier(.2, .8, .2, 1);
	z-index: 0;
	will-change: transform, width;
	opacity: .95;
}


.tablist .tab {
	z-index: 1
}


.panels {
	position: relative;
	background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .01));
}


.panel {
	background: linear-gradient(180deg, var(--glass), rgba(255, 255, 255, .02));
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 18px;
	/*padding: 26px;*/
	box-shadow: var(--shadow);
	position: absolute;
	inset: 22px;
	opacity: 0;
	transform: translateY(12px) scale(.98);
	pointer-events: none;
	transition: opacity .35s ease, transform .5s cubic-bezier(.2, .8, .2, 1);
}

.panel.active {
	position: relative;
	inset: auto;
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}


.panel h3 {
	margin: 0 0 8px;
	font-size: 22px
}

.grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(12, 1fr)
}

.card {
	grid-column: span 6;
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 16px;
	padding: 16px;
	box-shadow: var(--shadow);
}

.card h4 {
	margin: 0 0 6px
}

.card p {
	margin: 0;
	color: #cbd4ee
}


@media (max-width: 840px) {
	.panel {
		inset: 12px
	}

	.panels {
		padding: 12px
	}

	.card {
		grid-column: span 12
	}
}


/* Subtle entrance on page load */
.tabs {
	animation: pop .5s ease .05s both
}

@keyframes pop {
	from {
		transform: translateY(8px) scale(.99);
		opacity: 0
	}

	to {
		transform: none;
		opacity: 1
	}
}

.case-tab-item img {
    height: 720px;
    object-fit: cover;
}

section.inner-banner.contact-us-banner .banner-right {
    display: unset;
}

.approch-image img {
    width: 50px;
}

section.our-approch {
    background: #17162c;
}

.approch-row {
    display: flex;
    padding: 60px 0 40px 0;
}

.approch-item {
    width: 33.33%;
}

.approch-title h2 {
    color: #fff;
    font-size: 47px;
    font-weight: 500;
    font-family: 'Oswald';
    text-transform: uppercase;
}

.approch-content h5 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    padding: 20px 0;
}

.approch-content p {
    color: #fff;
    padding-right: 10px;
}

section.our-story { 
    margin-top: 500px;
}



.stra-svg {
    position: relative;
}

.stra-top-svg svg.top-svg {
    position: absolute;
    top: -20px;
    left: 0;
}

.stra-bottom-left-svg svg.bottom-left-svg {
    position: absolute;
    top: 108px;
    left: -28px;
}

.stra-bottom-right-svg svg.bottom-right-svg {
    position: absolute;
    top: 108px;
    right: 123px;
}

.strategies-faq button.accordion-button, .strategies-faq .accordion-item {
    background: transparent;
}

.strategies-faq button.accordion-button {font-family: 'Oxygen';font-size: 16px;font-weight: 400;color: #000;padding: 20px 0 20px 10px;}

.strategies-faq {
    padding-top: 30px;
}

.create-svg {
    position: relative;
}

.create-top-svg {
    position: absolute;
    top: 0px;
    left: 0;
}

.create-bottom-left-svg {
    position: absolute;
    top: 107px;
    left: -28px;
}

.create-bottom-right-svg {
    position: absolute;
    top: 117px;
    right: 107px;
}

.engage-svg {
    position: relative;
}

.engage-top-svg {
    position: absolute;
    top: 0;
    left: 0;
}

.engage-bottom-left-svg {
    position: absolute;
    top: 122px;
    left: -48px;
}

.engage-bottom-right-svg {
    position: absolute;
    top: 107px;
    right: 123px;
}

.content.w1 h2, .content.w1 p {
    width: 100%;
}

.work-btn.nb {
    text-align: end;
}

.row.sb {
    justify-content: space-between;
	margin-bottom: 110px;
}

section.ideas {
    background: #EBF2F5;
}

.ideas-content h2 {
    font-size: 47px;
    font-weight: 500;
    font-family: 'Oswald';
    color: #000;
    width: 85%;
    text-transform: uppercase;
    padding: 10px 0 20px 0;
}

.ideas-content {
    padding-left: 70px;
}

.services-item-content h6, .ideas-content h6 {
    position: relative;
    padding-left: 100px;
    color: #0ddaff;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Oxygen';
}

.services-item-content h6:before, .ideas-content h6:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0px;
    width: 80px;
    height: 2px;
    background: #0ddaff;
    transform: translate(0px, -50%);
}

.ideas-content p {
    padding-bottom: 10px;
    font-weight: bold;
}

.row.slider-inner {
    display: flex;
    align-items: center;
}

.how-content h3 {
    position: relative;
    font-size: 50px;
    font-weight: bold;
    color: #1C3F74;
    padding-bottom: 40px;
}

.how-content h3 span {
    position: absolute;
    top: -60px;
    left: -40px;
    font-size: 138px;
    color: #E2E5F0;
    font-family: 'Oswald';
    font-weight: 500;
    z-index: -1;
}

.how-content {
    padding-left: 60px;
}

.how-content p {
    font-size: 17px;
    font-weight: 400;
    color: #000;
}

.how-slider ul.slick-dots li button {
    background-color: #ddd;
}

section.wwa {
    background: #17162C;
}

.wwa-con {
    color: #fff;
    width: 95%;
}

.wwa-con h2 {
    font-size: 62px;
    font-weight: 600;
    font-family: 'Oswald';
}

section.wwa .row {
    align-items: center;
}

.wwa-con p {
    padding-top: 10px;
}

.wwa-btn {
    margin-top: 30px;
}

.right-video video {
    height: 300px !important;
    object-fit: cover;
}