:root{
    --primary-color: #fe9888;
    --primary-color-hover: #d47f71; 
    --secondary-color: #732bf7; 
    --secondary-color-hover: #6325d4;
    --third-color: #e8d234; 
    --black-shade1: #141418;
    --dark-blue:#111223;
    --font-family: "Poppins", sans-serif; 
    --gard1: linear-gradient(147deg,rgba(254, 152, 136, 1) 0%, rgba(208, 87, 208, 1) 61%, rgba(115, 43, 247, 1) 100%);
    --gard1-hover: linear-gradient(90deg,rgba(254, 152, 136, 1) 0%, rgba(208, 87, 208, 1) 61%, rgba(115, 43, 247, 1) 100%);
}
body {
    font-family: var(--font-family);
    overflow-x: hidden ;
    background-color: #0c0d21;
}
h2 {
    font-weight: 800;
    
}
main.main-wrapper{
    overflow-x: hidden;
}
.text-primary{
    color: var(--primary-color) !important;
}
.bg-dark {
    background-color: var(--black-shade1) !important;
}
.bg-dark-blue{
    background-color: var(--dark-blue);
}
.bg-grad1{
    background: var(--gard1);
}
.hero-section {
	position: relative;
	min-height: 600px;
	overflow: hidden;
	padding: 160px 0 100px;
    background: #0c0d21 ;
    background-image: url(../images/banner-bg2.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat   ;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
}
.home-banner .banner-text-cont {
	color: #fff;
}
.hero-content {
    position: relative;
    z-index: 1;
    color: white;
}
.home-banner .banner-text-cont h1 {
	font-size: 46px;
	font-weight: 800;
}
.home-banner .banner-text-cont .banner-tagline, .banner-text-cont .banner-tagline {
	font-size: 22px;
}
.home-banner .banner-text-cont .banner-feats-list,.banner-text-cont .banner-feats-list {
	margin: 20px 0;
}
.home-banner .banner-text-cont .banner-feats-list ul,.banner-text-cont .banner-feats-list ul {
	list-style: none;
	padding-left: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
    /* column-count: 2; */
	line-height: 30px;
    gap: 0 20px;
}

.home-banner .banner-text-cont .banner-feats-list ul li,.banner-text-cont .banner-feats-list ul li {
	display: flex;
	align-items: center;
	gap: 8px;
}
.home-banner .banner-text-cont .banner-feats-list ul li:before, .banner-text-cont .banner-feats-list ul li:before{
    content: '';
    background: url(../images/icons/check-icn.png) no-repeat;
    background-size: contain;
    width: 18px;
    height: 14px;

}
.grid-list ul {
	list-style: none;
	padding-left: 0;
	/* display: grid;
	grid-template-columns: repeat(2, 1fr); */
    column-count: 2;
	line-height: 24px;
}
.grid-list ul li .li-content {
	display: flex;
	gap: 8px;
}
.grid-list ul li .li-content:before{
    content: '';
    background: url(../images/icons/check-icn.png) no-repeat;
    background-size: contain;
    width: 18px;
    min-width: 18px;
    height: 14px;
    position: relative;
    top: 6px;

}
.grid-list ul li .list-head {
	font-weight: 600;
}
.hero-section.home-banner::before {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 62%;
	background: linear-gradient(-90deg,rgba(0, 0, 0, 1) 32%, rgba(0, 0, 0, 0) 100%);
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 0;
}

.navbar.navbar-expand-lg.im-nav {
	background: #000;
	background: linear-gradient(180deg,rgba(0, 0, 0, 1) 32%, rgba(0, 0, 0, 0) 100%);
	position: fixed;
	z-index: 9999;
	width: 100%;
	padding: 18px 0 20px;
    /* -webkit-backdrop-filter: blur(.65625em);
  backdrop-filter: blur(.65625em); */
}
.above-title{
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px;
}
.above-title:before{
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 1000%;
}
.im-nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .im-nav .navbar-toggler {
	border: 1px solid #999;
}
.navbar.navbar-expand-lg.im-nav .container {
	/* border-radius: 50px;
	border: 1px solid #fff; */
	padding: 12px 20px;
    /* max-width: 1000px;
    background:rgba(0,0,0,.3); */
  
}
.navbar.navbar-expand-lg.im-nav .nav-link{
    color: #fff;
}
.btn-secondary{
    background: var(--gard1);
    border: 0px ;
    color: #fff;
    transition: all 300ms ease-in-out;
}
.btn-secondary:hover{
    background: var(--gard1-hover);
    border: 0;
    color: #fff;
   
}

.btn-primary{
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #000;
}
.btn-primary:hover{
    background-color: var(--primary-color-hover);
    border: 1px solid var(--primary-color-hover);
    color: #000;
}
.as-seen-on {
	color: #fff;
	width: 100%;
	
}
.as-seen-on p{margin-bottom: 10px;}
.as-seen-on .img-fluid {
	min-width: auto;
	height: auto;
	object-fit: contain;
	max-width: none;
}

.stars ._star {
	width: 20px;
}
.stars ._star svg {
	fill: #ffc100;
    width: 100%;
}
._trusted p {
	margin: 0 !important;
    color: #fff;
}
.section-title {
	max-width: 800px;
	margin: 80px auto 0;
}
.section-title h2 {
	font-weight: 800;
	font-size: 40px;
}
.section-2{
    position: relative;
    /* background-image: url(../images/section2-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; */
    /* height: auto;
    min-height: 600px; */
    background-image: url(../images/section-bg-effect.webp);
    background-repeat: no-repeat;
    background-size: 30%;
    background-position: top right;
    overflow: hidden;
}
/* .section-2::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.section-2 > *{
    position: relative;
    z-index: 2;
    background: #242347;
    background: linear-gradient(125deg, rgba(36, 35, 71, 1) 0%, rgba(56, 88, 140, 1) 52%, rgba(57, 43, 92, 1) 100%);
} */
.partners-div {
	padding: 50px 20px;
	border-radius: 20px;
    background: #242347;
    background: linear-gradient(125deg, rgba(36, 35, 71, 1) 0%, rgba(56, 88, 140, 1) 52%, rgba(57, 43, 92, 1) 100%);
}
.partners-div ._heading {
	margin-bottom: 40px;
	font-size: 32px;
}
.feats-list .feat-box {
	background: rgba(0,0,0,.4);
	padding: 20px;
	border-radius: 15px;
	border: 1px solid #fff;
	min-height: 340px;
}
.py-80 {
    padding: 80px 0;
}
.section-title2 {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.section-title2 .title-text::before {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	background: var(--primary-color);
	border-radius: 1000%;
}
.section-title2 .title-text{
    display: flex;  
    align-items: center;
    gap: 4px;
}
.why-us-section .why-us-content {
	position: relative;
}
.why-us-section .why-us-content .content_img {
	position: relative;
	left: -220px;
	margin-top: -30px;
	margin-bottom: -125px;
}
.why-us-section .why-us-content .content_img img {
	width: 400px;
}
.why-us-section .why-us-content ._content {
	position: relative;
	z-index: 99;
}
.challange-boxes {
	margin-top: 60px;
}
.challange-boxes ._challange-box {
	background: #242347;
	background: linear-gradient(125deg, rgba(36, 35, 71, 1) 0%, rgba(56, 88, 140, 1) 52%, rgba(57, 43, 92, 1) 100%);
	padding: 20px;
	border-radius: 20px;
	min-height: 315px;
	display: flex;
	flex-direction: column;
	justify-content: end;
	gap: 5px;
}
.challange-boxes ._challange-box h3{
    font-weight: 800;
}
.stories-tabs .nav-tabs {
	border-bottom: 0px solid #dee2e6;
}
.stories-tabs .nav-tabs .nav-item {
	width: 140px;
	font-size: 12px;
}
.stories-tabs .nav-tabs .nav-item .nav-link {
	color: #fff;
    padding: 0;
}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
	border-color: transparent;
	isolation: isolate;
	color: var(--primary-color) !important;
}
.stories-tabs .nav-tabs .nav-item.show .nav-link,.stories-tabs .nav-tabs .nav-link.active {
	color: var(--primary-color);
	background-color: transparent;
	border-color: transparent;
}
.stories-tabs {
	margin: 40px 0 20px;
}
.stories-tabs h2 {
	font-weight: 800;
}
.stories-content h4 {
	font-weight: 300;
}
.why-us-box h3 {
	margin-top: 20px;
	font-weight: 800;
	font-size: 36px;
}
.list-check {
	list-style: none;
	padding-left: 0;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 15px;
	margin-top: 35px;
	font-size: 14px;
}
.list-check li::before {
	content: '';
	display: inline-block;
	min-width: 22px;
	min-height: 16px;
    background: url(../images/icons/check.png) no-repeat center center;
    background-size: contain;
    position: relative;
    top: 10px;
}
.list-check li {
	display: flex;
	gap: 8px;
    align-items: start;
}
.feat-box h3 {
	font-size: 24px;
	font-weight: 800;
	margin-top: 20px;
    background: var(--gard1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.feat-box p {
    font-size: 14px;
}
.footer-address ._info {
	display: flex;
	gap: 10px;
}
.footer-address ._info .icn {
	width: 15px;
}
.footer-address ._info .icn svg {
    width: 100%;
    fill: #fff;
}
.footer-address ._info a{
    color: #fff;
    text-decoration: none;
}
footer h4 {
	font-size: 18px;
}
.footer-menu ul {
	list-style: none;
	padding-left: 0;
    position: relative;
    z-index: 999;
}
.footer-menu ul li a{
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
}
.footer-menu ul li a:hover{
    color: #fff;
}
.footer-menu ul li{
    line-height: 24px;
}
.footer-logo {
	margin-bottom: 15px;
}
    .footer-top{
        position: relative;
        z-index: 999;
    }
.copyright {
	text-align: center;
	padding: 10px 0;
	background: var(--gard1);
	color: #fff;
	font-size: 14px;
	display: flex;
	justify-content: center;
	gap: 20px;
}
.copyright .privacy-nav {
	display: flex;
	gap: 20px;
}
.copyright .privacy-nav a{
    color: #fff;
    text-decoration: none;
}
.post-box {
	margin-bottom: 10px;
	display: flex;
	gap: 10px;
	align-items: center;
}
.post-box h5 a {
	color: #fff;
	text-decoration: navajowhite;
	font-size: 14px;
}
.post-box .post-time {
	display: flex;
	gap: 8px;
	color: #999;
}
.why-us-section {
	overflow: hidden;
}
.post-box .post-time span{
    width: 15px;
}
.post-box .post-time span svg {
    width: 100%;
    fill: #999;
}
.post-box .post-time p {
	margin-bottom: 0;
}
.post-box .post-img .img-fluid {
	min-width: 65px;
	border-radius: 5px;
}
.footer-lg-logo {
	margin-top: -170px;
}
.our-services-sec{
    background-image: url(../images/services-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}
.service-tabs {
	margin-top: 40px;
}
.service-tab-pills .nav-pills .nav-link {
	color: #fff;
	text-align: left;
}
.service-tab-pills .nav-pills .nav-link.active{
    background: transparent;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
} 
.service-tab-pills .nav-pills .nav-link:hover{
    color: var(--primary-color);
}
.service-tab-pills .nav-pills .nav-link.active:before{
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/active-pm.png) no-repeat;
    background-size: contain;
}
.service-tabs-content {
	background: rgba(0,0,0,0.4);
	border: 1px solid #fff;
	padding: 30px;
	border-radius: 40px 0 0 40px;
	border-right: 0;
	position: relative;
}
.service-tabs-content::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100.5%;
	background: rgba(0,0,0,0.4);
	right: -100%;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	top: -1px;
	padding: 30px;
	
}
.service-tabs-content ul {
	list-style: none;
	padding-left: 15px;
}
.service-tabs-content li{
    cursor: pointer;
    font-weight: 700;
}
.service-tabs-content li div a {
	visibility: hidden;
    pointer-events: none;
}
.service-tabs-content li:hover div a {
    visibility: visible;
    pointer-events: all;
}
.testim-item {
	background: #fff;
    color: #000;
	padding: 20px;
	border-radius: 30px;
	box-shadow: 3px 3px 12px rgba(0,0,0,0.29);
	margin: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	font-weight: 300;
}
.testim-item .img-box {
	width: 64px;
	height: 64px;
	background: #eaeaea;
	border-radius: 100%;
}
.footer-contact .banner-text-cont .banner-feats-list ul {
	column-count: 1;
}
.testim-item .user-info h4 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 0;
}
.testim-item .review {
	padding: 0 20px;
}
.testim-item .review::before {
	content: '';
	background: url("../images/icons/quote-open.png") no-repeat;
	width: 13px;
	height: 10px;
	position: relative;
	display: inline-block;
	top: -10px;
	background-size: contain;
}
.testim-item .review::after {
	content: '';
	background: url("../images/icons/quote-close.png") no-repeat;
	width: 13px;
	height: 10px;
	position: relative;
	display: inline-block;
	background-size: contain;
}
.stars ._star {
	width: 20px;
}
.stars ._star svg {
	fill: #ffc100;
}
.testi-title-section h5 {
	color: var(--primary-color);
}
.testi-title-section h2 {
    font-weight: 800;
    font-size: 40px;
}
.testimonials-sec{
    /* background-image: url(../images/testimonials-bg.jpg); */
    background-image: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}
.owl-carousel.comp-logos .owl-stage{
    display: flex;
    align-items: center;
    justify-content: center;
}
.owl-carousel.comp-logos .owl-item{
    text-align: center;
    display: flex;
    justify-content: center;
}
.owl-carousel.comp-logos .owl-item img {
	height: auto;
	max-width: 100px;
	object-fit: contain;
}
.clients-title-section {
	margin-bottom: 60px;
	max-width: 500px;
}
.clients-title-section h2 {
    font-weight: 800;
    font-size: 40px;
}
.clients-sec{
    background-image: url(../images/our-clients-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.blog-carousel h3 a {
	color: #fff;
	text-decoration: navajowhite;
	font-weight: 800;
}
.btn-default {
	background: #2c2c30;
	color: #fff;
	border: 1px solid #fff;
}
.btn-default:hover {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
}
.blog-item .category-cont {
	margin: 20px 0;
}
.faq-section .accordion-item {
	background-color: transparent;
	border: 1px solid #fff;
}
.faq-section .accordion-button:not(.collapsed) {
	color: var(--primary-color);
	background-color: transparent;
	box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
	border-bottom: 1px solid #fff;
}
.faq-section .accordion-button {
	background: transparent;
	color: #fff;
}
.faq-section .accordion-button::after {
    content: '+';
    background-image: none;
    color: fff;
    font-size: 20px;
    font-weight: 700;
    transform: rotate(0deg);
}
.faq-section .accordion-button:not(.collapsed)::after{
    content: '-';
    background-image: none;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    transform: rotate(0deg);
}
.success-section{
    background-image: url(../images/our-clients-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    height: 800px;
    overflow: hidden;
}
.success-section .container {
	display: flex;
	align-items: start;
    justify-content: space-between;
}
.success-section .pro-girl-img {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.success-section .section-title2 {
	width: 400px;
}
.success-section .success-content {
	width: 400px;
    position: relative;
    z-index: 9;
}
.success-section .success-content .btn-dark {
	border-color: #fff;
	background: #000;
}
.success-section .success-content .btn-dark:hover {
	border-color: #fff;
	background: #fff;
    color: #000;
}
.success-section .section-title2 h2 {
	font-size: 46px;
	font-weight: 800;
	line-height: 62px;
}
.success-section .pro-girl-img img {
	width: 80%;
}

.section-4{overflow: hidden;}
.blog-posts-home {
	overflow: hidden;
}

.vimi-box {
	padding: 30px;
	border-radius: 40px;
	display: flex;
	align-items: center;
	gap: 40px;
	min-height: 330px;
    position: relative;
     overflow: hidden;
}

.vimi-box > *{
    z-index: 2;
}
.vimi-box .vimi-icn img {
	width: 130px;
}
.vimi-box::before {
	content: '';
	position: absolute;
	width: 300px;
	height: 300px;
	border: 12px solid #ece9ff;
	z-index: 1;
	border-radius: 100%;
	left: -150px;
	top: -50px;
}
.all-chalanges {
	margin-top: 80px;
}
.all-chalanges .chalange-box {
	padding: 60px 20px 40px;
	background: rgba(0,0,0,0.8);
	color: #fff;
	border-radius: 15px;
	border: 1px solid #fff;
}
.all-chalanges .chalange-box h3 {
	font-size: 22px;
	font-weight: bold;
    background: var(--gard1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.chalanges-section {
	padding-bottom: 200px !important;
    background-image: url(../images/chalange-bg.png);
    background-repeat: no-repeat;
    background-position: bottom;
}
.text-light-orange{
    color: var(--primary-color);
}
.cta-box-cont .cta-box{
    background: var(--gard1);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 80px;
    margin-top: 60px;
}
.feat-box img {
	box-shadow: 0 0 20px #efefef;
	border-radius: 30px;
}
.chalanges-cont {
	margin-top: 40px;
}
.chalanges-cont .chalanges-headings {
	display: flex;
	justify-content: space-around;
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #fff;
}
.sub-heading.hd2 {
	position: relative;
}
.sub-heading.hd2::before {
	content: '';
	height: 26px;
	width: 1px;
	background: #fff;
	position: absolute;
	left: 50%;
	top: 28px;
}
.grad-bg1-left{
    position: relative;
}
.grad-bg1-left > * {
    position: relative;
    z-index: 99;
}
.grad-bg1-left:before{
    content: '';
    height: 400px;
    top: 10rem;
    left: -100px;
    display: block;
  background: linear-gradient(-70.54deg,#111223 0,#49236f 57.6%,#bd5b9f 98.96%);
  width: 50%;
  filter: blur(300px);
  z-index: 1;
  position: absolute;
}

.grad-bg1-right{
    position: relative;
}
.grad-bg1-right > * {
    position: relative;
    z-index: 99;
}
.grad-bg1-right:before{
    content: '';
    height: 400px;
    top: 10rem;
    right: 0;
    display: block;
  background: linear-gradient(70.54deg,#111223 0,#49236f 57.6%,#bd5b9f 98.96%);
  width: 50%;
  filter: blur(300px);
  z-index: 1;
  position: absolute;
}

.grad-bg1-center{
    position: relative;
}
.grad-bg1-center > * {
    position: relative;
    z-index: 99;
}
.grad-bg1-center:before{
    content: '';
    height: 400px;
    top: 10rem;
    right: 50%;
    display: block;
  background: linear-gradient(70.54deg,#111223 0,#49236f 57.6%,#bd5b9f 98.96%);
  width: 50%;
  filter: blur(300px);
  z-index: 1;
  position: absolute;
}
.chalange-boxes ._item {
	background: #1c1c28;
	margin-bottom: 25px;
	padding: 30px;
	text-align: center;
	border-radius: 15px;
	border: 1px solid #494a51;
}
.chalange-boxes ._item h3{
    font-weight: 800;
}
.pay-as-services-tabs .nav-pills .nav-link {
	background: transparent;
	border: 0;
    color: #000;
}
.pay-as-services-tabs .nav-pills .nav-link.active {
	background: #fff;
	color: var(--secondary-color);
	font-weight: 600;
	padding: 20px 10px;
	border-radius: 20px 0 0 20px;
	box-shadow: 0 0 12px rgba(0,0,0,0.4);
}
.pay-as-services-tabs .nav-pills .nav-link:focus{
    outline: none;
}
.pay-as-services-tabs .tab-pane.active {
	display: flex;
	gap: 20px;
}
.pay-as-services-tabs .tab-pane.active .pay-tab-content {
	background: #fff;
	width: 50%;
	border-radius: 0 20px 20px 20px;
	box-shadow: 32px 0 24px rgba(0,0,0,0.2);
	padding: 20px;
}
.pay-as-services-tabs .tab-pane.active ._service-img {
	width: 50%;
}
.pay-as-services-tabs .tab-pane.active ._service-img img{
    width: 100%;
}
.bg-elem {
	position: absolute;
    top: 100px;
}
.bg-elem._elem1 {
	right: 20px;
}
.bg-elem._elem2 {
	left: 20px;
}
.bg-elem img{
    width: 250px;
}
.blog-carousel h3 {
	margin-bottom: 30px;
	font-size: 20px;
}
.blog-carousel .blog-item {
	border: 1px solid #fff;
	padding: 20px;
	border-radius: 20px;
}
.blog-carousel .blog-item .blog-img img {
	border: 2px solid #fff;
	border-radius: 38px;
}
.blog-carousel .blog-btn {
	margin-top: 20px;
}
.all-biz-locations {
	display: grid;
	gap: 15px;
	grid-template-columns: repeat(7,1fr);
	margin-top: 20px;
}
.all-biz-locations ._location {
	background: #3b3b3b;
	border-radius: 10px;
	overflow: hidden;
	padding: 8px;
}
.all-biz-locations ._location ._body {
	padding: 10px;
}
.all-biz-locations h3 {
	font-size: 1.2rem;
	font-weight: 700;
}
.all-biz-locations ._location p {
	font-size: 14px;
}
.all-biz-locations ._location .img-fluid {
	border-radius: 10px;
}
.banner-form {
	width: 100%;
	border-radius: 40px;
	background: #fff;
	box-shadow: 0 11px 24px rgba(0,0,0,.30);
	overflow: hidden;
}
.form-header {
	text-align: center;
	padding: 20px 10px;
}
.form-header p {
	font-weight: 800;
	font-size: 2rem;
    color: #fff;
}
.banner-form .whatsapp-no {
	display: inline-block;
	background: yellow;
	padding: 10px 20px;
	border-radius: 30px;
	/* animation: shadow-pulse 1.5s infinite ease-in-out alternate; */
	animation: pulse 0.5s infinite ease-in-out alternate;
}
.form-header .whatsapp-no a {
	color: black;
	font-weight: 800;
	font-size: 14px;
    text-decoration: none;
}
.banner-form .whatsapp-no img {
	width: 30px;
}
.contact-form .form-control {
	background: #f5f5f5;
	border: 0;
	padding: 10px;
	height: 50px;
}
textarea.form-control {
	height: 100px !important;
}
.banner-form .form-group {
	margin-bottom: 10px;
}
.nuber-select select.form-control {
	border-right: 1px solid #ccc;
	border-radius: 5px 0 0 5px;
}

.footer-contact-img-sec {
	text-align: center;
}
.footer-contact-img-sec img {
	width: 400px;
}
.footer-contact-img-sec .img-caption-box {
	background: #fff;
	padding: 20px;
	border-radius: 20px;
	text-align: left;
}
.footer-contact-img-sec .img-caption-box h2{
    display: flex;
    flex-direction: column;
}
.footer-contact-img-sec .img-caption-box h2 .small-txtx {
	font-size: 20px;
	font-weight: 600;
}
.footer-about p {
	font-size: 13px;
	color: #ccc;
}
.column2 {
	column-count: 2;
}
.footer-bottom {
	display: flex;
	flex-direction: column;
	gap: 40px;
	border-top: 1px solid #fff;
	padding-top: 20px;
	margin-top: 40px;
    position: relative;
    z-index: 999;
}
.our-industries {
	margin-top: 80px;
}
.footer-bottom .join-us {
	display: flex;
	gap: 40px;
}
.footer-bottom .our-locations {
	display: grid;
	grid-template-columns: repeat(7,1fr);
	gap: 20px;
}
.footer-bottom .our-locations h3 {
	font-size: 20px;
}
.footer-bottom .join-us .join-title {
	font-weight: 600;
	font-size: 25px;
}
.footer-bottom .join-us a {
	color: #fff;
	text-decoration: navajowhite;
	
}

.footer-bottom .our-locations p {
	font-size: 13px;
}
.footer-socio {
	display: flex;
	gap: 10px;
}
.footer-socio a {
	width: 40px;
	height: 40px;
	background: #fff;
	border-radius: 100%;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer-socio a svg{
    fill: var(--primary-color);
    width: 100%;
}
.footer-socio a:hover{
    background: var(--primary-color);
}
.footer-socio a:hover svg{
    fill: #fff;
}
.footer-socio a.fb svg {
	width: 12px;
}
.modal {
	z-index: 9999;
}
.modal-content {
	background: transparent;
}
.modal-body.modal-form-body .btn-close {
	position: absolute;
	right: 30px;
	width: 25px;
	height: 25px;
	background: #fff;
	opacity: 1;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 30px;
	z-index: 999;
    font-size: 1.5rem;
	font-weight: 500;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
}
.modal-body.modal-form-body .btn-close .close-icn {
	position: relative;
	top: 0px;
}

/*-----------------------------About us--------------------------------*/
.about-banner-cont {
	display: flex;
	gap: 20px;
}

.about-banner-cont img {
	width: 240px;
}
.about-banner-cont ._content {
	width: 800px;
}
.about-banner-cont ._content .banner-text-cont {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.about-banner-cont ._trusted {
	background: #192144;
	padding: 20px 30px;
	border-radius: 40px;
}
.about-banner-img1 {
	align-self: end;
}
.section-2.welcome-to-im{
    background-image: url(../images/welcome-im-bg.jpg);
}
.welcome-to-im .feat-box img {
	box-shadow: none;
	border-radius: 0;
	width: 80px;
}
.our-work-cta {
	background: #0a0a0a;
	padding: 40px;
	border-radius: 60px;
}
.our-work-cta-img{
    text-align: center;
}
.our-work-cta-img img {
	max-width: 1000px;
}
ul.timeline-list {
	position: relative;
	margin: 0;
	padding: 0
}
ul.timeline-list:before {
	position: absolute;
	content: "";
	width: 2px;
	height: 100%;
	background-color: #fff;
	left: 50%;
	top: 0;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
}
ul.timeline-list li {
	position: relative;
	clear: both;
	display: table;
}
.timeline_content {
	border-right: 8px solid var(--primary-color);
	background-color: #fff;
	border-radius: 8px;
}
ul.timeline-list li .timeline_content {
	width: 45%;
	color: #333;
	padding: 30px;
	float: left;
	text-align: right;
}
ul.timeline-list li:nth-child(2n) .timeline_content {
	float: right;
	text-align: left;
    border-left: 8px solid var(--primary-color);
    border-right: 0;
}
.timeline_content h4 {
	font-size: 22px;
	font-weight: 600;
	margin: 10px 0;
}
ul.timeline-list li:before {
	position: absolute;
	content: "";
	width: 25px;
	height: 25px;
	background-color: #fff;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	border-radius: 50%;
}
.timeline_content span {
	font-size: 18px;
	font-weight: 500;
	font-family: poppins;
	color: #ff3636;
}
.time-year {
	text-align: center;
	margin-bottom: 10px;
}
.time-year span {
	background: #fff;
	display: inline-block;
	padding: 10px 30px;
	font-weight: 600;
	font-size: 22px;
	border-radius: 15px;
}
.text-capsule {
	background: #0f0f0f;
	padding: 10px;
	display: inline-block;
	border-radius: 30px;
	border: 1px solid #373846;
	margin-bottom: 10px;
}
.grad-text {
	background: var(--gard1);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.all-services-list {
	margin-top: 40px;
}
.all-services-list .service-box {
	background: #000;
	padding: 30px;
	color: #fff;
	text-align: center;
	border-radius: 60px 30px 60px 30px;
    transition: all 300ms ease-in-out;
    margin-bottom: 30px;
    min-height: 365px;
}
.all-services-list .service-box a{
    color: #fff;
    text-decoration: none;
}

.all-services-list .service-box .service-icn {
	display: inline-block;
	width: 80px;
	height: 80px;
    transition: all 300ms ease-in-out;
    background-repeat: no-repeat;
    background-position: top;
    background-size: 65px;
}
.all-services-list .service-box:hover .service-icn{
    background-position: bottom;
}
.all-services-list .service-box:hover{
    background: var(--gard1);
    box-shadow: 0 0 28px rgba(75,98,255, 0.8);
}
.all-services-list .service-box.per-mrkt .service-icn{background-image: url(../images/icons/services/performance-marketing.png);}
.all-services-list .service-box.aff-mrkt .service-icn{background-image: url(../images/icons/services/aff-marketing.png);}
.all-services-list .service-box.digi-med-buy .service-icn{background-image: url(../images/icons/services/digi-media-bying.png);}
.all-services-list .service-box.sma .service-icn{background-image: url(../images/icons/services/sma.png);}
.all-services-list .service-box.ecom-mrkt .service-icn{background-image: url(../images/icons/services/ecom-marketing.png);}
.all-services-list .service-box.b2b-mrkt .service-icn{background-image: url(../images/icons/services/b2b.png);}
.all-services-list .service-box.seo .service-icn{background-image: url(../images/icons/services/seo.png);}
.all-services-list .service-box.smm .service-icn{background-image: url(../images/icons/services/smm.png);}
.all-services-list .service-box.influencer-mrkt .service-icn{background-image: url(../images/icons/services/influencer-marketing.png);}
.all-services-list .service-box.pr-mrkt .service-icn{background-image: url(../images/icons/services/pr-outreach.png);}
.all-services-list .service-box.vid-prod .service-icn{background-image: url(../images/icons/services/vid-production.png);}
.all-services-list .service-box.vid-mrkt .service-icn{background-image: url(../images/icons/services/vid-mrkt.png);}
.all-services-list .service-box.branding .service-icn{background-image: url(../images/icons/services/branding.png);}
.all-services-list .service-box.comm-mgt .service-icn{background-image: url(../images/icons/services/community-management.png);}
.all-services-list .service-box.web-dev .service-icn{background-image: url(../images/icons/services/web-development.png);}
.all-services-list .service-box.app-dev .service-icn{background-image: url(../images/icons/services/app-developement.png);}
.all-services-list .service-box.web-design .service-icn{background-image: url(../images/icons/services/web-design.png);}
.all-services-list .service-box.graphics-design .service-icn{background-image: url(../images/icons/services/graphic-design.png);}
.all-services-list .service-box.block-dev .service-icn{background-image: url(../images/icons/services/blockchain.png);}
.all-services-list .service-box.ai .service-icn{background-image: url(../images/icons/services/ai.png);}

.service-detail-banner .banner-img {
	text-align: right;
}
.service-detail-banner .banner-img img {
	width: 400px;
}
.service-detail-banner .banner-text-cont .banner-tagline {
	font-size: 16px;
}
.hero-section.service-detail-banner {
    background: url(../images/service-detail-banner-bg.webp) no-repeat;
    background-position: center;
    background-size: cover;
}
._trusted.trusted-bg {
	background: #192144;
	padding: 20px 30px;
	border-radius: 40px;
    display: inline-flex !important;
}
.service-detail-section2{
    background: url(../images/service-detail-section2-bg.webp) no-repeat;
    background-size: cover;
}
.service-detail-section2 .feats-list .feat-box{margin-bottom: 30px;}
.service-detail-section5 {
background: url(../images/service-detail-section5-bg.webp) no-repeat;
/* background-position: center; */
background-attachment: fixed;
}
.faq-section .accordion-button h3 {
	font-size: 18px;
}
.stats-cont {
	margin-top: 60px;
	display: flex;
	justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}
.stats-cont ._stat {
	width: 200px;
	height: 200px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	flex-direction: column;
	border-radius: 100%;
	border: 3px solid #989898;
	cursor: pointer;
    box-shadow: 0 0 28px rgba(0,0,0,0.3);
    transition: all 300ms ease-in-out;
    text-align: center;
}
.stats-cont ._stat:hover{
    border-color: var(--primary-color);
}
.stats-cont ._stat .nos {
	font-size: 50px;
	font-weight: 800;
	line-height: 50px;
}
.time-line-cont {
	position: relative;
	z-index: 9;
}
.contact-section-2.contact-info {
	position: relative;
	z-index: 99;
}
.contact-cta {
	background: var(--gard1);
	padding: 30px;
	display: flex;
	justify-content: space-around;
	border-radius: 30px;
	position: relative;
	top: -120px;
	margin-bottom: -80px;
}
.hero-section.home-banner.contact-page-banner {
	padding-bottom: 200px;
}
.contact-section-2.contact-info ._info-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
    width: 50%;
}
.contact-section-2.contact-info ._info-box ._txt a{
    text-decoration: none;
    color: #fff;
    font-size: 40px;
}
.contact-section-2.contact-info ._info-box ._icn img {
	width: 100px;
}
.contact-section-2.contact-info .devider {
	width: 2px;
	background: #fff;
}
.blog-listing-banner .banner-text-cont h1 {
	font-size: 40px;
	font-weight: 800;
}
.blog-listing-banner .banner-text-cont .banner-tagline {
	font-size: 20px;
}
.all-blogs .blog-item{
    margin-bottom: 30px;
}
.all-blogs .blog-item h3 a {
	font-size: 20px;
	color: #fff;
	text-decoration: none;
}
.all-blogs .minutes-read {
	color: #fff;
	margin-bottom: 10px;
}
.all-blogs{
    margin-top: 60px;
}
.banner-bnt {
	display: grid;
}
.banner-bnt .btn{
    animation: pulse2 2s infinite ease-in-out alternate;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-weight: 700;
    font-size: 24px;
}
._trusted {
	font-size: 24px;
}
.services-listing-vimi-section .vimi-box {
	color: #fff;
    align-items: center;
    text-align: center;
}
.services-listing-vimi-section .vimi-box p {
	font-size: 14px;
}
.services-listing-vimi-section .vimi-cont {
	margin-top: 60px;
}
.services-listing-vimi-section .vimi-box.vim-box1{
    background: #3e1b6b;
}
.services-listing-vimi-section .vimi-box.vim-box2{
    background: #2e17ff;
}
.services-listing-vimi-section .vimi-box.vim-box3{
    background: #636eff;
}
.services-listing-vimi-section .vimi-box.vim-box1::before {
	content: '';
	position: absolute;
	width: 150px;
	height: 150px;
	border: 12px solid rgba(0,0,0,0.2);
	z-index: 1;
	border-radius: 100%;
	left: -50px;
	bottom: -50px;
    top: inherit;
}
.services-listing-vimi-section .vimi-box.vim-box1::after {
	content: '';
	position: absolute;
	width: 150px;
	height: 150px;
	border: 12px solid rgba(0,0,0,0.2);
	z-index: 1;
	border-radius: 100%;
	right: -50px;
	top: -50px;
    
}
.services-listing-vimi-section .vimi-box.vim-box2::after {
	content: '';
	position: absolute;
	width: 150px;
	height: 150px;
	border: 12px solid rgba(0,0,0,0.2);
	z-index: 1;
	border-radius: 100%;
	right: -50px;
	top: -50px;
    
}
.services-listing-vimi-section .vimi-box.vim-box2::before {
	content: '';
	display: none;
    
}
.services-listing-vimi-section .vimi-box.vim-box3::after {
	content: '';
	position: absolute;
	width: 150px;
	height: 150px;
	border: 12px solid rgba(0,0,0,0.2);
	z-index: 1;
	border-radius: 100%;
	right: 66px;
	top: -85px;
    
}
.services-listing-vimi-section .vimi-box.vim-box3::before {
	content: '';
	display: none;
    
}
.blog-detail-section {
	padding: 160px 0 100px;
    background-image: url(../images/blog-detail-bg.webp);
    background-color: #0d0818;
    color: #fff;
    background-repeat: no-repeat;
}
.blog-detail-section .blog-title h1 {
	font-weight: 800;
	margin-bottom: 40px;
}
.blog-meta-data {
	margin: 30px 0;
	padding-bottom: 25px;
	border-bottom: 1px solid #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.blog-meta-data .author-info {
	display: flex;
	gap: 15px;
	align-items: center;
}
.blog-meta-data .author-info img {
	width: 64px;
}
.blog-meta-data .author-info ._name {
	font-weight: 700;
}
.blog-meta-data .blog-read-time {
	display: flex;
	align-items: center;
	gap: 10px;
}
.blog-meta-data .blog-read-time::before {
	content: '';
	width: 10px;
	height: 10px;
	background: var(--primary-color);
	border-radius: 100%;
}
 .meta-socio {
	display: flex;
	align-items: center;
	gap: 15px;
}
 .meta-socio .share-btn a {
	color: #fff;
	text-decoration: none;
	display: flex;
	flex-direction: column;
}
 .meta-socio .share-btn a img {
	width: 17px;
	align-self: center;
}
.blog-content h2 {
	font-size: 18px;
}
.blog-content ol {
	padding-left: 15px;
}
.blog-detail-right {
	background: #1e1e1e;
	padding: 20px;
	border-radius: 20px;
}
.blog-detail-right .meta-socio {
	margin-bottom: 30px;
	justify-content: space-between;
}
.blog-detail-right .search-bar {
	background: #fff;
	margin-bottom: 30px;
	padding: 10px;
	border-radius: 30px;
}
.blog-detail-right .search-bar input {
	border: 0;
    width: 100%;
}
.blog-detail-right .search-bar .search-btn {
	border: 0;
	background: transparent;
}
.blog-detail-right .search-bar .search-field {
	display: flex;
	justify-content: space-between;
}
.blog-detail-right .search-bar input:focus {
    outline: none;
}
.blog-detail-right .search-bar .search-btn img {
	width: 16px;
}
.blog-detail-right .next-post {
	margin-bottom: 30px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.blog-detail-right .next-post .post-img {
	text-align: center;
	margin-bottom: 20px;
}
.blog-detail-right .next-post .post-title a {
	color: #fff;
	text-decoration: navajowhite;
	font-weight: 700;
}
.blog-detail-right .trending-posts {
	margin-top: 30px;
}
.blog-detail-right .trending-posts h3 {
	font-size: 24px;
	font-weight: 700;
}
.blog-detail-right .trending-posts .post-list {
	list-style: none;
	padding-left: 0;
	margin-top: 20px;
}
.blog-detail-right .trending-posts .post-list li {
	display: flex;
	margin-bottom: 20px;
	gap: 15px;
	align-items: center;
}
.blog-detail-right .trending-posts .post-list li .post-title {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
}
.blog-detail-right .trending-posts .post-list li .post-thumb a {
	display: block;
}
.blog-detail-right .trending-posts .post-list li .post-thumb .img-fluid {
	width: 60px;
	max-width: 60px;
	border-radius: 10px;
}
.blog-detail-right .newsletter-form {
	background: #000;
	padding: 20px;
	border: 2px solid #fff;
	border-radius: 30px;
}
.blog-detail-right .newsletter-form h3 {
	font-size: 16px;
	font-weight: 700;
}
.blog-detail-right .newsletter-form .form-field {
	display: flex;
	align-items: center;
	background: #000;
	padding: 10px;
	border: 2px solid #fff;
	border-radius: 34px;
    margin-top: 20px;
}
.blog-detail-right .newsletter-form .form-field input {
	width: 100%;
	background: transparent;
	border: 0;
	color: #fff;
}
.blog-detail-right .newsletter-form .form-field input:focus {
    outline: none;
}
.secure-page-section {
	padding: 160px 0 100px;
	background-image: url(../images/blog-detail-bg.webp);
	background-color: #0d0818;
	color: #fff;
	background-repeat: no-repeat;
    background-attachment: fixed;
}
.bread-crumbs ul {
	list-style: none;
	padding-left: 0;
}
.bread-crumbs ul li a{
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
.secure-page-section h1 {
	font-weight: bold;
}
.secure-page-section h2 {
	font-size: 1.8rem;
}
.footer-contact-island {
	margin-bottom: -80px;
	position: relative;
	z-index: 99;
}
.footer-island {
	border-radius: 15px;
	position: inherit;
	margin-top: -90px !important;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.15);
    background: var(--gard1);
}
.top-footer-call span {
	width: 28px;
	display: flex;
	align-items: start;
	position: relative;
	top: 12px;
}
.top-footer-call span svg {
	fill: #fff;
	width: 100%;
}
.footer-island a {
	color: #fff;
	font-weight: 600;
    text-decoration: none;
}
.abt-cta-info {
	background: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px 60px;
	border-radius: 100%;
    height: 260px;
    width: 260px;
    gap: 5px;
    margin-bottom: 30px;
}
.abt-cta-info ._icn img {
	width: 45px;
    max-width: 45px;
    min-width: 45px;
}
.abt-cta-info .nos {
	color: #000;
	font-size: 40px;
	font-weight: 700;
    line-height: 42px;
}
.abt-cta-info .txt-info {
	font-size: 13px;
	font-weight: 600;
}ul.timeline-list li.empty::before{
    display: none;
}
.section-5-left ._results {
	margin-top: 60px;
	display: flex;
	gap: 40px;
}
.section-5-left ._results .h3 {
	font-size: 45px;
	margin-bottom: 0;
}
.working-process-cont {
	color: #fff;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 80px;
	margin-bottom: 60px;
}
.working-process-cont .working-step {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 60px;
	padding: 20px;
	min-height: 550px;
}
.step-counter {
	padding: 5px;
	background: var(--primary-color);
	width: 100%;
	text-align: center;
	color: #000;
	font-weight: 700;
	font-size: 30px;
	border-radius: 12px;
}
.working-process-cont .working-step.step-2, .working-process-cont .working-step.step-4 {
	flex-direction: column-reverse;
}
.working-process-cont .working-step.step-1 {
	border: 2px dashed #fff;
	border-bottom: 0;
	padding-top: 0;
	position: relative;
	/* border-radius: 20px 20px 0 0; */
}
.working-process-cont .working-step .step-title {
	font-size: 30px;
	font-weight: 800;
	text-align: center;
}
.working-process-cont .working-step.step-2 {
	border: 2px dashed #fff;
	border-left: 0;
	border-top: 0;
	padding-bottom: 0;
	/* border-radius: 0 0 20px 0px; */
}
.working-process-cont .working-step.step-3 {
	border: 2px dashed #fff;
	border-left: 0;
	border-bottom: 0;
	padding-top: 0;
}
.working-process-cont .working-step.step-4 {
	border: 2px dashed #fff;
	border-left: 0;
	border-top: 0;
	padding-bottom: 0;
	position: relative;
}
.working-process-cont .working-step.step-1 .step-counter,.working-process-cont .working-step.step-3 .step-counter {
	margin-top: -30px;
}
.working-process-cont .working-step.step-2 .step-counter,.working-process-cont .working-step.step-4 .step-counter {
	position: relative;
	top: 30px;
	margin-top: -30px;
}
.working-process-cont .working-step.step-1::before {
	content: '';
	position: absolute;
	width: 60px;
	height: 60px;
	background: url(../images/icons/arrow-head.png) no-repeat center center;
	background-size: contain;
	left: -30px;
	bottom: -23px;
}
.working-process-cont .working-step.step-4::before {
	content: '';
	position: absolute;
	width: 60px;
	height: 60px;
	background: url(../images/icons/arrow-head.png) no-repeat center center;
	background-size: contain;
	right: -31px;
	top: -10px;
}
#toTop {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: transparent; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 0; /* Some padding */
  border-radius: 0; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}
/* 
#toTop:hover {
  background-color: #555; 
} */
#toTop svg {
	width: 40px;
	opacity: 1;
    fill: var(--primary-color);
}
#toTop:hover svg {
	opacity: 1;
}
/*--------------------------Animation------------------------------*/

.pulse {
    animation: pulse 1.5s infinite ease-in-out alternate;
  }
  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0px rgba(255, 255, 255, 0.7);
    }
    50% {
      transform: scale(1.05);
      box-shadow: 0 0 25px rgba(255, 255, 255, 1);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0px rgba(255, 255, 255, 0.7);
    }
  } 
  @keyframes pulse2 {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0px rgba(255, 255, 255, 0.7);
    }
    50% {
      transform: scale(1.02);
      box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0px rgba(255, 255, 255, 0.7);
    }
  } 
/******************************* Responsive CSS ***********************************/

@media(min-width: 1200px){
    h2 {
         font-size: 2.5rem;
    }
}
@media (min-width: 992px) {
   .navbar.navbar-expand-lg.im-nav .navbar-collapse {
	flex-grow: 0;
    }
    /* .testimonials-sec .container {
        max-width: 800px;
    } */
    .vimi-box .vimi-icn {
	    align-self: end;
    }
    .all-chalanges .chalange-box{
        min-height: 300px;
    }
    .banner-bnt{
        width: 80%;
    }
}
@media(max-width: 1400px){
    .abt-cta-info{
       height: 220px;
    width: 220px; 
    }
}
@media (max-width: 1199px) {
    .service-tabs-content::after{
        display: none;
    }
    .stories-tabs .nav-tabs .nav-item {
        width: 100px;
        font-size: 12px;
    }
    .all-biz-locations {
        grid-template-columns: repeat(5,1fr);
    }
    .about-banner-cont {
        display: flex;
        gap: 20px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    } 
    .about-banner-img1 {
    	align-self: center;
    }  
    .our-work-cta-img img {
	    max-width: 100%;
    }
    .contact-section-2.contact-info ._info-box ._txt a {
       font-size: 26px;
    }
    .form-header p {
        font-weight: 800;
        font-size: 1.5rem;
        color: #fff;
    }
    .side-form .form-fields.bg-white.p-4 {
	padding: 10px !important;
    }
    
    .abt-cta-info{
        height: 200px;
        width: 200px; 
    }

}

@media (max-width: 991px) {
    .all-biz-locations {
        grid-template-columns: repeat(4,1fr);
    }
    .hero-section {
        height: auto;
    }
    .hero-video {
        min-width: 100%;
        min-height: 100%;
    }
    .hero-content {
        text-align: center;
    }
    .hero-content h1 {
        font-size: 30px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .hero-content .btn-primary{
        margin-top: 20px;
    }
    .hero-content .btn-secondary{
        margin-top: 20px;
    }
    .as-seen-on-logos img{
        max-width: 80%;
    }
    .section-2{
        background-position: right;
    }
    .stories-tabs .nav-tabs .nav-item {
        width: 115px;
        font-size: 12px;
    }
    .story-img {
        margin-top: 40px;
    }
    .why-us-box {
        margin-bottom: 30px;
    }
    /* .section-5.py-5 {
        padding: 0 !important;
    } */
    .section-5 ._feat-img .img-fluid {
        width: 100%;
    }
    .feat-box {
        margin-bottom: 30px;
    }
    .service-tabs-content {
        background: rgba(0,0,0,0.4);
        border: 1px solid #fff;
        padding: 30px;
        border-radius: 40px;
        border-right: 1px solid #fff;
        position: relative;
        margin-top: 20px;
    }
    .success-section .container {
        display: flex;
        align-items: start;
        justify-content: space-between;
        flex-direction: column;
    }
    .success-section .section-title2 {
        width: 100%;
    }
    .success-section .success-content {
        width: 400px;
        position: relative;
        z-index: 9;
    }
    .success-section .pro-girl-img {
        position: relative;
        order: 1;
    }
    .success-section .success-content {
        width: 100%;
        position: relative;
        z-index: 9;
    }
    .success-section{height: auto; padding-bottom: 0;}
    .home-banner .banner-text-cont h1{font-size: 36px;}
   .banner-text-cont {
	    margin-bottom: 60px;
    }
    .feats-list .feat-box{min-height: auto;}
    .why-us-section .why-us-content .content_img{display: none;}
    .why-us-section .why-us-content ._content{margin-top: 40px;}
    .all-chalanges .chalange-box {
        padding: 20px;
        background: rgba(0,0,0,0.8);
        color: #fff;
        border-radius: 15px;
        border: 1px solid #fff;
        margin-bottom: 20px;
    }
    .pay-as-services-tabs .tab-pane.active {
	display: flex;
	gap: 20px;
	flex-direction: column;
    }
    .pay-as-services-tabs .tab-pane.active .pay-tab-content{width: 100%;}
    .pay-as-services-tabs .tab-pane.active ._service-img{width: 100%;}
    .bg-elem {
        position: absolute;
        top: 100px;
        display: none;
    }
    .footer-contact-img-sec {
        text-align: center;
        margin-bottom: 60px;
    }
    .footer-bottom .our-locations{grid-template-columns: repeat(4,1fr);}
    .service-detail-section3 .why-us-img {
	    margin-top: 20px;
    }
    .contact-section-2.contact-info ._info-box ._txt a {
	    font-size: 20px;
    }
    .navbar-nav.centered-nav {
        background: rgba(0,0,0,.8);
        padding: 20px;
        border-radius: 20px;
        border: 2px solid #fff;
        margin-top: 15px;
    }
    .services-listing-vimi-section .vimi-box {
        color: #fff;
        align-items: center;
        text-align: center;
        min-height: auto;
        margin-bottom: 30px;
    }
    .abt-cta-info{
        margin: 0 auto 30px;
        height: 260px;
        width: 260px;
    }
	.challange-boxes ._challange-box {
		min-height: auto;
		margin-bottom: 30px;
	}
	.all-industries-img {
		margin-bottom: 30px;
	}
}
@media(max-width: 767px){
    .section-2{
        height: auto;
        padding-bottom: 0;
    }
    .section-2 .container {
        padding: 0 15px;
    }
    .section-2 ._feat-img .img-fluid {
        width: 100%;
    }
    .as-seen-on-logos {
        justify-content: center;
        flex-wrap: wrap;
        padding: 0 0px;
    }
    .banner-bnt {
	    text-align: center;
    }
    .as-seen-on{
        padding: 0 15px;
    }
    .stories-tabs .nav-tabs {
        border-bottom: 0px solid #dee2e6;
        flex-direction: column;
    }
    .stories-tabs .nav-tabs .nav-item {
        width: 100%;
        font-size: 12px;
        border-bottom: 1px dashed #Fff;
        padding-bottom: 6px;
        margin-bottom: 6px;
    }
    .section-title {
        max-width: 800px;
        margin: 20px auto 0;
    }
    .section-title h2 {
        font-weight: 800;
        font-size: 30px;
    }
    .list-check{
        grid-template-columns: repeat(1,1fr);
    }
    .section-title2 {
        flex-direction: column;
        gap: 10px;
        align-items: start;
    }
    .footer-lg-logo {
        margin-top: -30px;
    }
    .all-biz-locations {
        grid-template-columns: repeat(2,1fr);
    }
    .home-banner .banner-text-cont .banner-feats-list ul{
        grid-template-columns: repeat(1, 1fr);
        column-count: 1;
    }
    .grid-list ul{grid-template-columns: repeat(1, 1fr);}
    .vimi-box {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
    }
    .cta-box-cont .cta-box {
        flex-direction: column-reverse;
        text-align: center;
    }
    .pay-as-services-tabs .nav-pills .nav-link.active{border-radius: 20px;}
    .pay-as-services-tabs .col-12.col-md-3.pe-0 {
	    padding-right: 15px !important;
    }
    .pay-as-services-tabs .col-12.col-md-9.ps-0 {
	    padding-left: 15px !important;
    }
    .pay-as-services-tabs .tab-pane.active .pay-tab-content {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0px 0 24px rgba(0,0,0,0.2);
    }
    .footer-bottom .our-locations {
	    grid-template-columns: repeat(2,1fr);
    }
    .home-banner .banner-text-cont h1 {
        font-size: 28px;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    .home-banner .banner-text-cont .banner-tagline {
        font-size: 20px;
        text-align: center;
    }
    .home-banner .banner-text-cont .banner-feats-list ul li{
        justify-content: center;
    }
    ._trusted {
	    justify-content: center;
    }
    .as-seen-on p {
        margin-bottom: 10px;
        text-align: center;
    }
    .footer-socio {
	    margin-bottom: 20px;
    }
    .copyright {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }
    ul.timeline-list li .timeline_content {
        width: 45%;
        color: #333;
        padding: 30px;
        float: right;
        text-align: left;
        margin-bottom: 20px;
    }
    .timeline_content {
        border-left: 8px solid var(--primary-color);
        background-color: #fff;
        border-radius: 8px;
    }
    ul.timeline-list li::before{
        left: 0;
        -webkit-transform: translate(-100%, -50%);
        transform: translate(-100%, -50%);
    }
    ul.timeline-list::before{
        left: -11px;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    ul.timeline-list li .timeline_content{
        width: 97%;
    }
    .feats-list .feat-box {
	min-height: auto;
        text-align: center;
    }
   .contact-cta {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .we-work {
        position: relative;
        z-index: 999;
    }
    .contact-section-2.contact-info .devider {
        width: 100%;
        background: #fff;
        height: 2px;
        display: none;
    }
    .contact-section-2.contact-info ._info-box{
        width: 100%;
    }
    .blog-listing-banner .read-time {
	    text-align: center;
    }
    .all-blogs .blog-item {
        margin-bottom: 30px;
        text-align: center;
    }
	.footer-contact-island {
		margin-bottom: -36px;
	}
	.working-process-cont{
		grid-template-columns: 1fr;
	}
	.working-process-cont .working-step {
		min-height: auto;
		border: 2px dashed #fff !important;
		border-radius: 20px;
		margin-bottom: 60px;
		gap: 40px;
	}
	.working-process-cont .working-step.step-2, .working-process-cont .working-step.step-4 {
		flex-direction: column;
	}
	.working-process-cont .working-step.step-1::before,.working-process-cont .working-step.step-4::before{
		display: none;
	}
	.working-process-cont .working-step.step-2 .step-counter, .working-process-cont .working-step.step-4 .step-counter {
		position: relative;
		top: 0;
		margin-top: 0;
	}
	.working-process-cont .working-step.step-2,.working-process-cont .working-step.step-4{
		padding-bottom: 20px;
		padding-top: 0;
	}
	.working-process-cont .working-step.step-1 .step-counter,.working-process-cont .working-step.step-2 .step-counter, .working-process-cont .working-step.step-3 .step-counter,.working-process-cont .working-step.step-4 .step-counter {
		margin-top: -30px;
	}
	.banner-text-cont .banner-feats-list ul{
		column-count: 1;
	}
	.section-5-left ._results{
		flex-wrap: wrap;
	}
	.working-process-cont .working-step .step-icn img {
		width: 80px;
	}
	
}

@media(max-width: 575px){
    .footer-contact-img-sec img {
	    width: 100%;
    }
    .footer-bottom .join-us {
        display: flex;
        gap: 20px;
        flex-direction: column;
    }
    .about-banner-cont ._trusted {
        background: #192144;
        padding: 10px 10px;
        border-radius: 40px;
    }
    ._trusted p{font-size: 13px;}
    .stars ._star {
	    width: 14px;
    }
    .blog-meta-data {
	justify-content: center;
    }
}



  /* validation error colors, all 3 needed */
.is-invalid, .is-invalid-custom { 
    border-color: #dc3545 !important;
    background-image: none !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
    padding-right: calc(1.5em + 0.75rem) !important;
    background-repeat: no-repeat !important;
    background-position: right calc(0.375em + 0.1875rem) center !important;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) !important;
}

.error-message {
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 0.25rem;
    display: block;
    width: 100%;
}
.modal-body.modal-form-body .close {
	position: absolute;
	right: 30px;
	width: 25px;
	height: 25px;
	background: #fff;
	opacity: 1;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 30px;
	z-index: 999;
	border: 0px;
}
#myExitModalForm .modal-content {
	border: 0px;
}