:root {
	--color-c1: linear-gradient(95deg, #9b4591 0%, #ff263a 38%);
	--color-c2: linear-gradient(95deg, #9b459156 0%, #ff263c50 38%);
	--color-c3: linear-gradient(45deg, #9b4591 20%, #ff263a 78%);
	--color-light: #fff;
	--color-dark: #000000;
	--color-dark-low: #000000b3;
	--ass: #a3a3a3;
	--back: #212121;
	--purple:#9d4490;

	--bg: #000000;
	--clr: #fff;

	--marquee-width:100%;
	--marquee-height: 20vh;
	/* --marquee-elements: 12; */ /* defined with JavaScript */
	--marquee-elements-displayed: 5;
	--marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
	--marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

html {
	scroll-behavior: smooth;
}


body{
	color:var(--color-light);
	background-color: var(--color-dark);
	overflow-x: hidden;
}


.navbar-expand-lg .navbar_right {
	justify-content:flex-end;
}
.navbar-brand img{
	height: 40px;
	width: auto;
}
.dropdown:hover .dropdown-menu {
	display: block;
	margin-top: 0;
 }
 .dropdown-menu {
    min-width: 13rem;
	padding: 0rem 0;
	background-color:var(--color-dark-low);
	backdrop-filter: blur(5px); 
 }
.dropdown-item {
    color:var(--color-light);
}
.dropdown-item:focus, .dropdown-item:hover {
    color:var(--color-light);
    background:var(--color-c1);
}
.dropdown-toggle::after {
    display: none;
}
.dropdown_li a{
	display: block;
	position: relative;
	text-decoration: none;
	font-family: "Helvetica", sans-serif;
	color: var(--color-light);
	background: transparent;
	padding:10px 20px;
	font-size: 16px;
	font-weight: bold;
	width:100%;
	overflow: hidden;
}
.dropdown_li a span{
	z-index: 5;
	position: relative;
	transition: color 350ms ease;
}
.dropdown_li a:hover span{
	color: white;
  }
 
 .dropdown_li a::after, .dropdown_li a::before{
	content: " ";
	display: block;
	position: absolute;
	width: 100%;
	top: 0;
	bottom: 0;
	right: 0;
	background-image: var(--color-c1);
	z-index: -1;
  }
  
 .dropdown_li a::before {
	transform: translateX(-100%);
	z-index: 1;
  }
  
 .dropdown_li a:hover:before {
	transform: translateX(0);
	transition: transform 350ms ease;
  }
  
 .dropdown_li a::after {
	 z-index: 0;
	transform: translateX(100%);
	transition: none;
	transition: transform 350ms ease;
  }
  
 .dropdown_li a:hover:after {
	opacity: 1;
	transform: translateX(0);
   transition: transform 350ms 360ms ease;
  } 
.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-image:var(--color-c1);
}




.solution-sec-left{
        display: none;
    }


/* .btn {
	border: none !important;
	text-align: center !important;
	cursor: pointer !important;
	text-transform: uppercase !important;
	outline: none !important;
	overflow: hidden !important;
	position: relative !important;
	color: #fff !important;
	font-weight: 700 !important;
	font-size: 22px !important;
	background-color: #222 !important;
	padding: 17px 60px !important;
	box-shadow: 0 5px 15px rgba(0,0,0,0.20)!important;
	border-radius: 30px !important;
  } */
  .btn {
	border: none;
	text-align: center;
	cursor: pointer;
	text-transform: uppercase;
	outline: none;
	overflow: hidden;
	position: relative;
	color:var(--color-light);
	font-weight: 700;
	font-size: 22px;
	background-color: #222;
	padding: 17px 60px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.20);
	border-radius: 30px;
  }
  
  .btn span {
	color:var(--color-light);
	position: relative; 
	z-index: 1;
  }
  
  .btn:after {
	content: "";
	position: absolute;
	left: -18px;
	top: -56px;
	height: 490%;
	width: 140%;
	background: var(--color-c1);
	-webkit-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	-webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
	/* transform: translateX(-98%) translateY(-25%) rotate(45deg); */
	transform: translateX(-150%) translateY(-25%) rotate(147deg);
  }
  
  .btn:hover:after {
	-webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
	/* transform: translateX(-9%) translateY(-25%) rotate(45deg); */
	transform: translateX(-9%) translateY(-25%) rotate(152deg);
  }

/* home page start here */

/* header part start here */
header{
	position: fixed;
	width: 100%;
	z-index: 99;
}
header.active{
	background-color: var(--color-dark-low);
}
header.active .navbar-expand-lg{
	background: none;
	background-image: none !important;
}
header.active .navbar-expand-lg img{
	filter: brightness(10);
}
.navbar-expand-lg{
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.navbar-collapse{
	justify-content: space-around;
}
.navbar-collapse .navbar-nav .nav-item .nav-link{
	color: var(--color-light);
	font-size: 20px;
	font-weight: 600;
	padding: 10px 25px;
}
.navbar-collapse .navbar-nav .nav-item .nav-link i{
	margin-left: 5px;
}
.navbar-collapse .navbar-nav .nav-item .nav-link.active{
	background: var(--color-c1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 700;
}
.navbar-collapse .navbar-nav .nav-item .nav-link:hover{
	color: var(--color-light);
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: var(--color-light);
}
/* header part end here */

/* banner part start here */
.banner{
	position: relative;
}
.banner-pattern{
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -9999;
}
.banner .banner-img{
	width: 100%;
}
.banner .written-div{
	position: absolute;
	bottom: 0%;
	left: 7%;
}
.banner .written-div h1{
	font-size: 85px;
	color: var(--color-light);
	text-transform: uppercase;
	font-weight: 700;
}
.banner .blink {
	animation: blink 0.5s infinite;
  }
  @keyframes blink{
	to { opacity: .0; }
  }
  .flex {
	  display: flex;
  }
  .banner .header-sub-title {
	background: var(--color-c1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 85px;
	padding-left: 20px;
  }
/* banner part end here */

/* solution section start here */
.solution-sec-main{
	position: relative;
}
.solution-sec{
	margin-bottom: 80px;
}
.solution-sec-right {
    position: absolute;
    bottom: 0;
    left: -181px;
    z-index: -9999;
}
.solution-sec-left {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -9999;
}
.solution-sec h3{
	font-size: 60px;
	color: var(--color-light);
	margin-top: 80px;
	margin-bottom: 25px;
	text-transform: uppercase;
}
.solution-sec h3 span{
	background: var(--color-c1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.solution-sec .card-solution{
	background-color:var(--color-dark);
	border-radius: 10px;
	border: 1px solid var(--color-light);
	height: 415px;
	transition: transform .8s;
}
.solution-sec .card-solution img{
	width: 90px;
	height: 90px;
}
.solution-sec .card-solution h5{
	font-size: 30px;
	line-height: 40px;
	margin-top: 20px;
	margin-bottom: 30px;
	background: var(--color-c1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: ease-in-out .3s;
}
.solution-sec .card-solution p{
	font-size: 20px;
	color: var(--color-light);
}
.solution-sec .card-solution p.all{
	font-size: 17px;
}
.solution-sec .card-solution .card-body{
	padding: 40px 25px 50px 25px;
}
.solution-sec .card-solution:hover{
	background: var(--color-c1);
	border: 1px solid var(--color-dark);
	transform: scale(1.05);
	transition: ease-in-out .3s;
}
.solution-sec .card-solution:hover h5{
	background: var( --color-dark);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
/* solution section end here */

/* highlight sec start here */
.highlight-sec{
	margin-top: 80px;
}
/* .highlight-sec{
	margin-top: 80px !important;
} */
.highlight-sec a{
	text-decoration: none;
}
.highlight-sec .card-highlight-left {
    background: var(--color-dark) !important;
    position: relative;
    border-radius: 15px;
}
.highlight-sec .card-highlight-left:hover{
    border-radius: 15px;
}
.card-highlight-left img{
	background-color: transparent;
}
.card-highlight-left .card-img-overlay{
	bottom: 0;
	top: auto;
	padding: 20px 40px 60px 40px;
	border-radius: 9px;
	left: 0;
	right: 0;
}
/* .card-highlight-left .card-img-overlay{
	bottom: 0 !important;
	top: auto !important;
	padding: 20px 40px 60px 40px !important;
	border-radius: 9px;
	left: 0;
	right: 0;
} */
.card-highlight-left .card-img-overlay .card-title{
	font-size: 60px;
	color: var(--color-light);
	font-weight: 300;
}
.card-highlight-left .card-img-overlay .card-title span{
	font-weight: 600;
}
.card-highlight-left .card-img-overlay p{
	font-size: 22px;
	color: var(--color-light);
	line-height:30px;
	margin-top: 10px;
}
.highlight-right-sec h3{
	font-size: 60px;
	color: var(--color-light);
	font-weight: 300;
}
.highlight-right-sec h3 span{
	font-weight: 600;
	background: var(--color-c1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.highlight-right-sec p{
	font-size: 22px;
	color: var(--color-light);
	line-height: 23px;
	margin-top: 10px;
}
.high-right-card{
	margin:0 10px;
	background: var(--color-dark) !important;
	transition: transform .8s;
}
.highlight-sec .carousel-control-prev{
	left: 75% !important;
    top: -118% !important;
}
.highlight-sec .carousel-control-next{
	right: 0% !important;
    top: -118% !important;
}
@media (max-width: 767px) {
	.highlight-sec .carousel-inner .carousel-item > div {
		display: none;
	}
	.highlight-sec .carousel-inner .carousel-item > div:first-child {
		display: block;
	}
}

.highlight-sec .carousel-inner .carousel-item.active,
.highlight-sec .carousel-inner .carousel-item-next,
.highlight-sec .carousel-inner .carousel-item-prev {
	display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {

	.highlight-sec .carousel-inner .carousel-item-end.active,
	.highlight-sec .carousel-inner .carousel-item-next {
		transform: translateX(25%);
	}

	.highlight-sec .carousel-inner .carousel-item-start.active, 
	.highlight-sec .carousel-inner .carousel-item-prev {
		transform: translateX(-25%);
	}
}

.highlight-sec .carousel-inner .carousel-item-end,
.highlight-sec .carousel-inner .carousel-item-start { 
	transform: translateX(0);
}

.high-right-card .card-img-overlay h5{
	color: var(--color-light);
	font-size: 22px;
	/* font-size: 26px; */
	font-weight: 700;
}
.high-right-card .card-img-overlay p{
	color: var(--color-light);
	font-size: 20px;
	font-weight: 400;
}
.btn-high{
	display: inline-block !important;
	padding: 6px 23px !important;
	font-size: 17px !important;
}

.btn-high:after {
    top: -34px !important;
}
.highlight-sec .card-over {
    top:98%;
    overflow: hidden;
	transition: 0.8s;
  transform: translateY(4%);
}
.highlight-sec .card:hover .card-over{
	top: 48% !important;
	transform: translateY(0);
}  
/* highlight sec end here */

/* challenges part start here */
.challenges{
	margin: 80px 0;
	position: relative;
}
.challenges .challenge-left h3{
	font-size: 60px;
    color: var(--color-light);
    font-weight: 600;
	line-height: 65px;
	text-transform: uppercase;
}
.challenges .challenge-left h3 span{
	font-weight: 600;
	background: var(--color-c1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.challenges .challenge-left p{
	font-size: 22px;
    color: var(--color-light);
    line-height: 29px;
    margin: 25px 0;
}
.challen-btn{
	display: inline-block !important;
}
.indicators-high{
	bottom: -50px !important;
}
.carousel-indicators button.active {
    width: 40px !important;
	height: 8px !important;
	border-radius:20px;
	background-color: #ff263a !important;
}
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
	width:8px;
    height: 8px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
	border-radius: 50%;
    opacity: 1;
    transition: opacity .6s ease;
}
/* challenges part end here */

/* industry part start here */

.industry h3{
	font-size: 60px;
    color: var(--color-light);
    font-weight: 600;
	line-height: 65px;
	text-transform: uppercase;
	text-align: center;
}
.industry h3 span{
	font-weight: 600;
	background: var(--color-c1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;	
}
.industry p{
	font-size: 22px;
    color: var(--color-light);
    line-height: 29px;
    margin: 25px 0 50px 0;
	text-align: center;
}
.industries-all{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.industries-all .same-div{
	width:20%;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.industries-all .same-div img{
	width: 100%;
	filter: blur(6px);
}
.industries-all .same-div:hover img{
	filter: blur(0);
}
.industries-all .same-div .overlay-same-indi{
	background: #0000003f;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--color-light);
    opacity: 1;
    font-weight: 700;
    transform: translateY(0);	
}
.industries-all .same-div:hover .overlay-same-indi{
	bottom: -106%;
	transition: 1s;
  transform: translateY(100%);
}
/* industry part end here */

/* technology part start here */
.technology{
	margin: 80px 0;
	position: relative;
}
.technology h3{
	font-size: 60px;
    color: var(--color-light);
    font-weight: 600;
	line-height: 65px;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 40px;
}
.technology h3 span{
	font-weight: 600;
	background: var(--color-c1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;	
}
.tag-scrollers {
	width: 100%;
	overflow: hidden;
}

.tag-scroller {
	display: grid;
	gap: 1.5rem;
	mask: linear-gradient(90deg, #0000, var(--background) 15%, var(--background) 85%, #0000);
}

.tag-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;

	gap: 1.5rem;
}

@media (prefers-reduced-motion) {
	.tag-list {
		flex-flow: row nowrap;
		overflow: auto;
		scrollbar-width: none;
		scrollbar-color: transparent transparent;
	}
	.tag-list::-webkit-scrollbar-track {
		background: transparent;
	}
	.tag-list::-webkit-scrollbar-thumb {
		background: transparent;
	}
	.tag-list::-webkit-scrollbar {
		display: none;
		width: 0;
		height: 0;
	}
}

.tag-list li {
    font-family: system-ui;
    font-size: 55px;
    font-weight: 700;
    line-height: 1;
    padding: 0.625rem 1.375rem;
    border-radius: 10ch;
    white-space: nowrap;
	text-transform: uppercase;
}
.tag-list li:hover{
	background: var(--color-c1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;	
}

.tag-scroller.scrolling .tag-list {
    width: max-content;
    flex-wrap: nowrap;
    animation: horizontal-scroll var(--duration) var(--direction, normal) linear infinite;
    border: 1px solid #919191;
	padding: 15px 0;
}

.tag-scroller.scrolling .tag-list:nth-child(even) {
	--direction: reverse;
}

.tag-scroller:hover .tag-list {
	animation-play-state: paused;
}

@keyframes horizontal-scroll {
	to {
		transform: translateX(calc(-50% - .75rem));
	}
}
/* technology part end here */

/* how we work start here */
.we-work h3{
	font-size: 60px;
    color: var(--color-light);
    font-weight: 600;
	line-height: 65px;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 40px;
}
.we-work h3 span{
	font-weight: 600;
	background: var(--color-c1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;	
}
.we-work p{
	font-size: 22px;
    color: var(--color-light);
    line-height: 29px;
    margin: 25px 0 50px 0;
	text-align: center;
}

/* how we work end here */

/* work-list start here */
/*@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&display=swap");
body {
  padding: 0;
  margin: 0;
  color: white;
   font-family: "DM Mono", monospace;
  background-color: #17141d; 
}*/
.work-card-list .card-header{
	display: flex;
	justify-content: left;
	flex-direction: column;
}
.work-card-list .card-header img{
	height: 85px;
	width: 100px;
}
.work-card-list {
  display: flex;
  padding: 2rem;
  overflow-x: scroll;
}
.work-card-list::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.work-card-list::-webkit-scrollbar-thumb {
  background: var(--color-c1);
  border-radius: 5px;
  box-shadow: inset 2px 2px 2px rgba(255, 255, 255, 0.25), inset -2px -2px 2px rgba(0, 0, 0, 0.25);
}
.work-card-list::-webkit-scrollbar-track {
  background: linear-gradient(90deg, #201c29, #201c29 1px, #17141d 0, #17141d);
}
.work-card-list .card {
  position: relative;
  height: 485px;
  width: 30%;
  min-width: 250px;
  border-radius: 10px;
  background: #17141d;
  padding: 25px;
  margin: 0;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  clear: both;
  transition: 0.2s;
  box-shadow: -1rem 0.5rem 1.5rem #000;
}
.work-card-list .card:focus-within ~ .card, .work-card-list .card:hover ~ .card {
  transform: translateX(120px);
}
.work-card-list .card:hover {
  transform: translateY(-1rem) rotate(-5deg);
}
.work-card-list .card:hover h4 {
  /* background: linear-gradient(90deg, #ff8a00, #dc3545); */
  background: var(--color-c1);
  text-shadow: none;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.work-card-list .card:not(:first-child) {
  margin-left: -120px;
}
.work-card-list .card .card-header {
  font-size: 14px;
  margin: 0 0 1rem;
  color: #7a7a8c;
background: transparent;
border: none;
}
.work-card-list .card .card-header h4 {
  font-size: 40px;
  line-height: 50px;
  margin: 0.25rem 0 auto;
  text-decoration: none;
  color: var(--color-light);
  border: 0;
  display: inline-block;
  cursor: pointer;
}

.work-card-list .card .card-author .avatar {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
    background: var(--color-c1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.work-card-list .card .card-author .avatar h5{
	font-size: 30px;
	color: var(--color-light);
	font-weight: 800;
	margin: 0;
}

.work-card-list .card .tags {
  margin: 10px 0;
  flex: 1;
}
.work-card-list .card .tags p {
    font-style: normal;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-light);
}
.work-card-list .card .tags p:not(:last-child) {
  margin-right: 5px;
}
.work-card-list .card .tags p:hover {
  opacity: 0.75;
}

@media only screen and (max-width: 768px) {
  .container {
    display: block;
  }
  .container .banner-card {
    width: initial;
    height: 140px;
    display: block;
    margin-bottom: 20px;
  }
}
/* work-list end here */

/* home-testi start here */
.home-testi{
	margin: 30px 0;
	padding: 110px 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.home-testi .col-lg-4{
	padding: 0 40px;
}
.home-testi h3{
	font-size: 60px;
    color: var(--color-light);
    font-weight: 600;
	line-height: 65px;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 40px;
}
.home-testi h3 span{
	font-weight: 600;
	background: var(--color-c1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;	
}
.home-testi .item {
	height: 16rem;
	padding: 25px;
	opacity: 0.4;
	transition: .4s ease all;
	margin: 0 20px;
	transform: scale(0.9);
	background: var(--color-light);
	border-radius: 15px;
  }

  .home-testi .active .item{
	opacity: 1;
	transform: scale(1);
  }
  .home-testi .item  p{
	font-style: normal;
    font-size: 20px;
    font-weight: 500;
    color: #7a7a8c;
	margin-bottom: 35px;
  }
  .home-testi .item .img-div{
	display: flex;
	justify-content: left;
	align-items: center;
	column-gap: 10px;
  }
  .home-testi .item .img-div .testi-img{
	height: 60px;
	width: 60px;
	border-radius: 50%;
	background: var(--color-c1);
	display: flex;
	align-items: center;
	justify-content: center;
  }
  .home-testi .item .img-div .testi-img img{
	width: 100%;
  }
  .home-testi .active .item .img-div span{
	background: var(--color-c1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
  }
  .home-testi .item .img-div span{
	font-size: 22px;
	font-weight: 700;
	color: #000;
  }
.home-testi .tesi-right{
	border-right: 1px solid #ff263a !important;
    border-left: 1px solid #ff263a !important;
	padding: 0 !important;
}
.home-testi .tesi-right .owl-dots{
	display: none !important;
}
.home-testi .tesi-right2{
	border-right: 1px solid #ff263a !important;
    border-left: 1px solid #ff263a !important;
	padding: 0 !important;
	display: none;
	
}
.home-testi .tesi-right2 .owl-dots{
	display: none !important;
}
/* home-testi end here */

/* trusted client start here */
.trusted-client{
	margin: 80px 0;
}
.trusted-client .container-fluid{
	margin: 0;
	padding: 0;
}
.trusted-client h3{
	font-size: 60px;
    color: var(--color-light);
    font-weight: 600;
	line-height: 65px;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 40px;
}
.trusted-client h3 span{
	font-weight: 600;
	background: var(--color-c1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;	
}
.trusted-client .trust-clint-img{
	display: flex;
	align-items: center;
	justify-content: space-around;
	background-color: #363636;
	flex-wrap: wrap;
}
.news_ticker { 
	padding:50px 0;
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	width: 100%;
	background-color: #363636;
}
.news_ticker .item{
	display: flex;
    align-items: center;
    justify-content: center;
}
.news_ticker img{
	filter: grayscale(0%);
	cursor: pointer;
	width:70% !important;
	margin: 0;
}
.news_ticker img:hover{
	filter: grayscale(100%);
} 

.news_ticker .owl-four .owl-dots{
	display: none;
}

/* .news-group {
	position: relative;
	white-space: nowrap;
	will-change: transform;
}

.news-group li {
	list-style-type:none;
	display: inline-block;
	padding:30px;
	margin-right: 20px;
}
.news-group li img{
	filter: grayscale(100%);
	cursor: pointer;
	width: 100%;
	height:70%;
}
.news-group li img:hover{
	filter: grayscale(0%);
}  */
  








/* trusted client end here */

/* get started form start here */

.get-start{
	margin-bottom: 80px;
	position: relative;
	margin-top: 30px;
}
.get-start h3{
	font-size: 60px;
    color: var(--color-light);
    font-weight: 600;
	line-height: 65px;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 30px;
}
.get-start h3 span{
	font-weight: 600;
	background: var(--color-c1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;	
}
.get-start p{
	font-size: 22px;
    color: var(--color-light);
    line-height: 29px;
    margin: 25px 0 50px 0;
	text-align: center;
}
/* .get-start form{
	background: var(--color-c1);
	padding: 40px 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 15px;
	border-radius: 20px;
} */
.get-start form {
    background: var(--color-c1);
    padding: 40px 25px;
    column-gap: 15px;
    border-radius: 20px;
}
.get-start form input{
	padding: 15px;
	border-radius: 20px;
	/* background-color:none !important; 
	border: 1px solid #fff;*/
	/* margin-bottom: 15px; */
}     
.get-start form input:focus{
	background-color:none !important;
	/* box-shadow: none !important;
	border-color: transparent !important; */
} 
.get-start form input::placeholder{
	color: #fff;
}
.get-start form input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}




.get-start form textarea{
	color: #fff;
	padding: 15px;
	border-radius: 20px;
	background-color: transparent;
	border: 1px solid #fff;
	resize: none;
	height: 76px;
	margin-bottom: 15px;
}     
.get-start form textarea:focus{
	box-shadow: none !important;
	/* border-color: transparent !important;*/
}  
.get-start form textarea::placeholder{
	color: #fff;
}

/* .get-start form button{
	height: 76px;
    width: 100% !important;
    padding: 10px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 15px;
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 15px;
	transition: ease-in-out .2s;
}
.get-start form button:hover svg{
	margin-bottom: 15px;
} */
.btn__theme {
	display: flex;
    background-color: #fff;
    width: 100%;
    height: 76px;
    border-radius: 20px;
    font-size: 18px;
    align-content: center;
    align-items: center;
    justify-content: space-around;
	cursor: pointer;
  }
  .btn__theme button{
	background-color: #fff;
	border:none;
	cursor: pointer;
  }
  /* :hover.btn__theme, :hover button {
	color:#fff;
	cursor: pointer;
	background-color: #f00;
  } */
  .btn__theme:hover svg {
	transform: translateX(12px);
	opacity: 0;
	animation: arrow__slide-ltr 600ms ease-out;
  }
  
  .btn__content {
	font-family: "Open Sans", sans-serif;
    color: #ff263a;
    font-weight: 700;
    margin: auto;
    text-align: center;
    transition: color 300ms ease;
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
  }
  .btn__content span {
	vertical-align: middle;
	margin-top: -2px;
  }
  .btn__content svg {
	transition: opacity 600ms ease;
  }


  @keyframes arrow__slide-ltr {
	0% {
	  transform: translateX(1px);
	  opacity: 1;
	}
	100% {
	  transform: translateX(12px);
	  opacity: 0;
	}
  }

/* get started form end here */

/* footer start here */
footer{
	background-image: url('../images/homepage/footer/footer-bg.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
footer .upper-footer{
	padding: 40px 0;
}
footer .upper-footer img{
    width:150px;
}
footer .upper-footer p{
	font-size: 18px;
    color: var(--color-light);
    line-height: 29px;
	margin: 15px 0;
	text-align: left;
}
footer .upper-footer ul {
	padding-left: 0;
}
footer .upper-footer ul li{
	list-style: none;
	padding-left: 0;
	margin-bottom: 5px;
}
footer .upper-footer ul li a{
	text-decoration: none;
	font-size: 18px;
	color: var(--color-light);
	transition: all ease-in-out .30s;
}
/* .resourses-link {
	display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
} */
.resourses-link h4{
	font-size: 22px;
	color: var(--color-light);
	font-weight: 700;
	margin-bottom: 20px;
}
.resourses-link ul li{
	margin-bottom: 15px;
}
.subs-foot form{
	position: relative;
}
.subs-foot form input{
	background-color: transparent;
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-radius: 0;
	padding: 8px 35px;
	color: #fff;
}
.subs-foot form input::placeholder{
	font-size: 18px;
	color: #ffffff80;
}
.subs-foot form input:focus{
	background-color: transparent;
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-bottom: 1px solid  var(--color-light);
	border-radius: 0;
	box-shadow: none;
}
.subs-foot form button{
	position: absolute;
	right: 0;
	top: 7px;
	background-color: transparent;
	border: 0;
}
.subs-foot form .email-sub{
	position: absolute;
	left: 0;
	top: 7px;
	background-color: transparent;
	border: 0;
}
.subs-foot h4{
	font-size: 22px;
	color: var(--color-light);
	font-weight: 700;
	margin-bottom: 20px;
}
.subs-foot .form-control{
	color: #fff !important;
}
.subs-foot ul li{
	margin-left: 2px;
	margin-right: 2px;
}

.resourses-link ul li {
	position: relative;
    overflow: hidden;
	transition: all 0.5s ease;
}
.resourses-link ul li span {
    position: absolute;
    left: -20px;
}
.resourses-link ul li a:hover{
	padding-left: 20px;
}
.resourses-link ul li a:hover span{
	left: 0;
}
 .subs-foot ul {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: left;
	align-items: center;
	column-gap: 15px;
	margin-top: 20px;
  }
  
   .subs-foot ul li {
	list-style: none;
	margin: 0 2px;
  }
  
  .subs-foot ul li a {
    position: relative;
    display: block;
    text-align: center;
    background: transparent;
    border-radius: 50%;
    font-size: 30px;
	flex-wrap: wrap;
    color: #000;
    transition: .5s;
    display: flex;
    align-items: center;
    justify-content: center;
	border-radius: 5px;
	transition: transform 0.8s;
  	transform-style: preserve-3d;
}
.subs-foot ul li a:hover{
	transform: rotateY(360deg);
}
  .subs-foot ul li a i{
	font-size: 20px;
  }
footer .footer-bottom{
	background-color: #000;
	padding: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	row-gap: 10px;
	flex-wrap: wrap;
	color: var(--color-light);
	font-size: 20px;
}
footer .footer-bottom h6{
	font-size: 20px;
	margin: 0;
}
footer .footer-bottom a{
	text-decoration: none;
	color: var(--color-light);
}
/* footer end here */

/* home page end here */


/* about page start here */

.about-banner{
	position: relative;
}
.about-banner .banner-pattern{
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -9999;
}
.banner .banner-img{
	width: 100%;
}
.about-banner .written-div{
	position: absolute;
	bottom: 8%;
	right: 7%;
	text-align: right;
}
.about-banner .written-div h1{
	font-size: 85px;
	color: var(--color-light);
	text-transform: uppercase;
	font-family: "Hanken Grotesk", sans-serif;
	font-weight: 700;
	
}
.about-banner .written-div p{
	font-size: 24px;
	color: var(--color-light);
}
.about-banner .written-div h1 span{
	background: var(--color-c1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.story-vision{
	margin: 80px 0;
}
.story-vision .our-story h3{
	font-size: 60px;
	color: var(--color-light);
	font-weight: 500;
	text-transform: uppercase;
}
.story-vision .our-story p{
	font-size: 22px;
	color: var(--color-light);
	line-height: 30px;
	margin-top: 10px;
}

.story-vision .our-story h3 span{
	font-weight: 600;
	background: var(--color-c1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.story-vision .our-vision h3{
	font-size: 60px;
	color: var(--color-light);
	font-weight: 500;
	text-transform: uppercase;
	text-align: right;
}
.story-vision .our-vision p{
	font-size: 22px;
	color: var(--color-light);
	line-height: 30px;
	margin-top: 10px;
	text-align: right;
}

.story-vision .our-vision h3 span{
	font-weight: 600;
	background: var(--color-c1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.story-vision .our-vision-part2{
	display: none;
}
.we-belive{
	margin-bottom: 80px;
}
.we-belive h3{
	font-size: 60px;
	color: var(--color-light);
	font-weight: 500;
	text-transform: uppercase;
	text-align: center;
}
.we-belive h3 span{
	font-weight: 600;
	background: var(--color-c1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.we-belive .belive-row {
    padding: 40px 25px !important;
    background-color: #161616 !important;
    border-radius: 30px;
    margin-top: 40px;
    row-gap: 50px;
}
.we-belive .belive-row .belive-group{
	display: flex;
	align-items: start;
	justify-content: center;
	column-gap: 15px;
}
.we-belive .belive-row .belive-group img{
	width: 70px;
	height: 70px;
}
.we-belive .belive-row .belive-group h5{
	font-size: 30px;
	font-weight: 700;
	background: var(--color-c1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.we-belive .belive-row .belive-group p{
	font-size: 22px;
	color: var(--color-light);
	line-height: 26px;
	margin-top: 10px;
}
/* about page end here */

/* faq page start here */
.faq-banner{

}
.faq-banner{
	position: relative;
}
.faq-banner .banner-pattern{
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -9999;
}
.faq-banner .banner-img{
	width: 100%;
}

.faq-banner .written-div {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}
.faq-banner .written-div h1{
	font-size: 85px;
	color: var(--color-light);
	text-transform: uppercase;
	font-family: "Hanken Grotesk", sans-serif;
	font-weight: 700;
}
.faq-banner .written-div h1 span {
    background: var(--color-c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* .faq-banner .written-div {
    position: absolute;
    bottom: 0;
    right: -13%;
    text-align: right;
    transform: translate(-50%, -50%);
} */
/* .faq-banner .written-div h1{
	font-size: 85px;
	color: var(--color-light);
	text-transform: uppercase;
	font-family: "Hanken Grotesk", sans-serif;
	font-weight: 700;
} */
.faq-section{
	margin: 80px 0 50px 0;
}

.accordion-button {
    font-size: 20px !important;
    font-weight: 600 !important;
}
.accordion-item{
    margin-bottom: 30px;
	padding: 15px;
	border-radius: 30px !important;
	background-color: #1d1d1d !important;
}

.accordion-item .accordion-button {
    border-radius: 0 !important;
	background-color: transparent;
	color: var(--color-light);
	box-shadow: none !important;
	border-color: transparent !important;
	padding: 12px 40px !important;
}
.accordion-button:not(.collapsed) {
    color: var(--color-light)!important;
    background-color: transparent !important;
    box-shadow: none !important;
	border-bottom: 1px solid var(--color-light) !important;
}
.accordion-body{
	color: var(--color-light);
}
.accordion-button:not(.collapsed)::after {
    background-image: url("../images/faq/down.png") !important;
    transform: rotate(-180deg);
}
.accordion-button::after {
    background-image: url("../images/faq/down.png") !important;
}
.accordion-button:focus {
    border-color: var(--color-light) !important;
    box-shadow: none !important;
}
.accordion-header{
	position: relative !important;
}
.accordion-header .img-div{
	position: absolute;
	left: 0;
	top: 0;
}
.accordion-header .img-div img{
	height: 30px;
}
/* faq page end here */

/* contact-banner start here */
.contact-banner{
	position: relative;
}
.contact-banner .banner-pattern{
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -9999;
}
.contact-banner .banner-img{
	width: 100%;
}
.contact-banner .written-div{
	position: absolute;
  left: 50%;
  top: 50%;
  -moz-transform: translate(-50%, -50%); /* Firefox */
  -ms-transform: translate(-50%, -50%);  /* IE 9 */
  -webkit-transform: translate(-50%, -50%); /* Safari and Chrome*/
  -o-transform: translate(-50%, -50%); /* Opera */
  transform: translate(-50%, -50%);
  text-align: center;
}
.contact-banner .written-div h1{
	font-size: 85px;
	color: var(--color-light);
	text-transform: uppercase;
	font-family: "Hanken Grotesk", sans-serif;
	font-weight: 700;
	
}
.contact-banner .written-div p{
	font-size: 24px;
	color: var(--color-light);
}
.contact-banner .written-div h1 span{
	background: var(--color-c1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.contact-form-left h3{
	font-size: 60px;
	color: var(--color-light);
	font-weight: 500;
	text-transform: uppercase;
	text-align:left;
	margin-bottom: 30px;
}
.contact-form-left h3 span{
	font-weight: 600;
	background: var(--color-c1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.contact-form{
	padding-bottom: 80px;
}
.contact-form-left .form-control {
    padding: 12px 25px !important;
	background: transparent !important;
	border-radius: 10px !important;
	color: #d6d6d6cb !important;
}
.contact-service{
	color: var(--color-light);
	border:var(--color-light) 1px solid;
	border-radius: 8px;
	padding:20px 20px 10px 20px;
}
.contact-service h4{
	font-size: 30px;
	font-weight: 600;
}
.form-check-input:checked {
    background-color: #ff263a !important;
    border-color: #ff263a !important;
}
.form-check label{
	color: #fff !important;
	font-size: 20px;
}
.form-check-input {
    width: 20px !important;
    height: 20px !important;
    margin: 6px !important;
}
.form-check-label{
	font-size: 20px !important;
}
.form-check-label a{
	/* color: #0d6efd !important; */
	text-decoration: none !important;
	background: var(--color-c1) !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
}
/* .contact-form-left button{
	padding: 10px !important;
	border-radius: 10px !important;
	font-size: 20px !important;
	background-color: #fff !important;
	color: #000 !important;
	border-color: #fff !important;
	font-weight: 600 !important;
}
.contact-form-left button:focus{
	box-shadow: none !important;
} */

.contact-form-left input[type=submit]{
	padding: 10px !important;
	border-radius: 10px !important;
	font-size: 20px !important;
	background-color: #fff !important;
	color: #000 !important;
	border-color: #fff !important;
	font-weight: 600 !important;
	transition:ease-in-out .3s;
}
.contact-form-left input[type=submit]:hover{
	color:#fff !important;
	background-color: #ff263a !important;
	border-color: #ff263a !important;
	transition:ease-in-out .3s;
}
.contact-form-left input[type=submit]:focus{
	background-color: #ff263a !important;
	border:none !important;
}


.contact-form-right{
	padding-left: 40px !important;
	margin-top: 80px !important;
}
.contact-form-right .same-div{
	display: flex;
	align-items: baseline;
	padding: 15px 0;
}
.contact-form-right .same-div .left-div{
	width: 10%;
}
.contact-form-right .same-div .right-div{
	width: 90%;
}
.contact-form-right .same-div .right-div h5{
	font-size: 24px;
	color: #fff;
	font-weight: 500;
}
.contact-form-right .same-div .right-div p{
	font-size: 18px;
	color: #fff;
	font-weight: 300;
	margin-bottom: 10px;
}
.contact-form-right .same-div .right-div a{
	font-size: 20px;
	text-decoration: none;
	background: var(--color-c1) !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
}

/* contact-banner start here */


/* blog page start here */
.contact-banner{
	position: relative;
}
.contact-banner .banner-pattern{
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -9999;
}
.banner .banner-img{
	width: 100%;
}
.contact-banner .written-div {
    position: absolute;
    bottom: 14%;
    right: -34%;
    text-align: right;
}
.contact-banner .written-div h1{
	font-size: 85px;
	color: var(--color-light);
	text-transform: uppercase;
	font-family: "Hanken Grotesk", sans-serif;
	font-weight: 700;
	
}
.contact-banner .written-div p{
	font-size: 24px;
	color: var(--color-light);
}
.contact-banner .written-div h1 span{
	background: var(--color-c1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.main-blog h3 {
    font-size: 60px;
    font-weight: 500;
    line-height: 82px;
    background: var(--color-c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    position: relative;
}
.main-blog h3::after{
	content: '';
	height: 2px;
	width: 245px;
	background: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
}
.main-blog p{
	font-size: 22px;
	color: var(--color-light);
}
.main-blog .left-blog .blog-card .read-blog{
	display: flex;
	align-items: center;
	/* justify-content: space-between; */
}
/* .main-blog .left-blog .blog-card .read-blog .left{
	position: relative;
} */
.main-blog .left-blog .blog-card .read-blog .left::after{
	content: '';
	height: 3px;
	width: 100px;
	background: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
}
.main-blog .left-blog .blog-card .read-blog .right{
	display: flex;
    align-self: center;
    justify-content: end;
    column-gap: 27px;
    padding-top: 15px;
}
.main-blog .left-blog .blog-card .read-blog .right p{
	font-size: 20px;
	color: var(--ass);
	margin: 0;
	position: relative;
}
.main-blog .left-blog .blog-card .read-blog .right p::after{
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ass);
    right: -18px;
    bottom: 29%;
}
.main-blog .left-blog .blog-card .read-blog .right p:last-child::after{
	display: none;
}
.main-blog .left-blog .blog-card a{
	text-decoration: none;
}
.main-blog .left-blog .blog-card a .blog-head{
	display: flex;
	align-items: center;
	justify-content: left;
	column-gap: 15px;
}
.main-blog .left-blog .blog-card a .blog-head h4{
	font-size:30px;
	font-weight: 700;
	color: var(--color-light) !important;
	/* background: var(--color-c1);
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	position: relative; */
	padding-right: 30px;
	padding-top: 20px;
}
/* .main-blog .left-blog .blog-card a .blog-head h4::after{
	content: '';
	position: absolute;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: var(--color-light);
	right: 0;
	bottom: 20%;
} */
.main-blog .left-blog .blog-card a .blog-head p{
	font-size: 20px;
	color: var(--color-light);
	margin-bottom: 5px;
}
.main-blog .right-blog h4{
	font-size: 45px;
	color: var(--color-light);
	background: var(--color-c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.main-blog .right-blog .same-div{
	border-top: 1px solid var(--ass);
	padding: 15px 0;
}
.main-blog .right-blog .same-div a{
	text-decoration: none;
}
.main-blog .right-blog .same-div a h6{
	font-size: 18px;
	background: var(--color-c1);
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.main-blog .right-blog .same-div a p{
	font-size: 20px;
	color: var(--color-light);
	margin-bottom: 10px;
}
.main-blog .right-blog .same-div a .read-div{
	display: flex;
	align-items: center;
	justify-content: left;
	column-gap: 25px;
}
.main-blog .right-blog .same-div a .read-div .left{
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 10px;
}
.main-blog .right-blog .same-div a .read-div .left img{
	width: 22px;
}
.main-blog .right-blog .same-div a .read-div p{
	font-size: 18px;
	color: var(--ass);
	margin: 0;
}
.popular-blog a {
	text-decoration: none;
}
.popular-blog a .blog-head h4{
	font-size: 24px;
	background: var(--color-c1);
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	position: relative;
	padding-right: 30px;
	margin-bottom: 0;
}
.popular-blog a .blog-head h4::after{
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--color-light);
	right: 0;
	bottom: 20%;
}
.popular-blog a .blog-head p{
	font-size: 20px;
	color: var(--ass);
	margin-bottom: 5px;
	margin-bottom: 0;
}
.popular-blog a .blog-head{
	display: flex;
	align-items: center;
	justify-content: left;
	column-gap: 27px;
	padding-top: 10px;
}
.popular-blog a p{
	font-size: 22px;
	line-height: 26px;
	color: var(--color-light);
	margin-bottom: 5px;
	padding-bottom: 12px;
	position: relative;
}
.popular-blog a p::after{
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ass);
    right: -18px;
    bottom: 49%;
}
.popular-blog a p:last-child:after{
    display: none;
}
.popular-blog a span{
	font-size: 18px;
	color: var(--ass);
}

.popular-blog h3 {
    font-size: 60px;
    font-weight: 500;
    line-height: 82px;
    background: var(--color-c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    position: relative;
	padding-left: 0;
}
.popular-blog h3::after{
	content: '';
	height: 2px;
	width: 245px;
	background: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
}
.popular-blog p{
	font-size: 22px;
	color: var(--color-light);
}

.main-blog-tab{
	margin: 50px 0;
}

.tab-blog .nav-tabs{
	display: flex;
	align-items: center;
	justify-content: left;
	column-gap: 20px;
	border-bottom: none;
}

.tab-blog .nav-tabs .nav-item{
	padding: 10px 0 !important;
	border-radius: 40px !important;
}
.tab-blog .nav-tabs .nav-item .nav-link{
	background: var(--color-c1) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
	border-radius: 40px;
	border: 1px solid #ff263a;
	font-weight: 700;
}
.tab-blog .nav-tabs .nav-item .nav-link.active {
    background-color: var(--color-c1) !important;
    -webkit-background-clip: padding-box!important;
    -webkit-text-fill-color: white !important;
    color: #fff !important;
	border: 1px solid transparent;
}
.tab-blog .tab-content{
	padding: 30px 0;
}
.our-latest-video{
	background-image: url('../images/blogpage/blog-video-banner.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 270px;
	margin-bottom: 50px;
}
.our-latest-video .left h4{
	font-size: 26px;
    font-weight: 500;
    line-height: 82px;
    background: var(--color-c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    position: relative;
	padding-left: 0;
}
.our-latest-video .left h4::after{
	content: '';
	height: 2px;
	width: 245px;
	background: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
}
.our-latest-video .left p{
	font-size: 22px;
	color: var(--color-light);
}

.our-latest-video .right .main-video .same-div{
	border-radius: 15px !important;
}
.our-latest-video .right .main-video .same-div iframe{
	border-radius: 15px;
}
.card-img, .card-img-top {
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
}
.our-latest-video .right .main-video .same-div .card-body .card-title{
	font-size: 20px;
	font-weight: 600;
	background: var(--color-c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.our-latest-video .right .main-video .same-div .card-body .card-text{
	font-size: 22px;
	line-height: 26px;
	font-weight: 400;
	color: var(--color-dark);
}
/* blog page end here */

/* blog-details page start here */
.blog-details-page{
	padding: 70px 0;
}
.blog-details-page .left-blog-details h3{
	font-size: 50px;
    font-weight: 500;
    line-height: 62px;
    text-transform: capitalize;
	color: var(--color-light);
    position: relative;
	padding-left: 0;
}
.blog-details-page .left-blog-details h6{
	font-size: 18px;
	background: var(--color-c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	line-height: 22px;
	margin-top: 15px;
	margin-bottom: 20px;
}
.blog-details-page .left-blog-details p{
	font-size: 20px;
	color: var(--color-light);
	line-height: 26px;
}
.blog-details-page .left-blog-details p span{
	font-size: 35px;
}
.blog-details-page .left-blog-details ul{
	font-size: 20px;
	color: var(--color-light);
	line-height: 26px;
	position: relative;
}
.blog-details-page .left-blog-details ul::after{
	content: '';
	position: absolute;
	height: 15px;
	width: 15px;
	background-color: var(--color-light);
	left: 0;
	top: 7px;
	border-radius: 50%;

}
.blog-details-page .left-blog-details ul li{
	font-size: 20px;
	color: var(--color-light);
	line-height: 26px;
	list-style: decimal;
	padding-top: 10px;
}
.blog-details-page .right-blog-details .subscribe{
	background-color: var(--back);
	padding: 22px;
	border-radius: 15px;
}
.blog-details-page .right-blog-details .subscribe h4{
	color: var(--color-light);
	font-size: 30px;
	margin-bottom: 15px;
}
.blog-details-page .right-blog-details .subscribe .input-sub{
	position: relative;
}
.blog-details-page .right-blog-details .subscribe .input-sub input {
    background-color: transparent;
    border-radius: 30px;
    color: var(--color-light);
    padding: 10px 54px 10px 24px;
}
.blog-details-page .right-blog-details .subscribe .input-sub input:focus{
	box-shadow: none;
	border: 1px solid var(--color-light);
}
.blog-details-page .right-blog-details .subscribe .input-sub button {
    position: absolute;
    right: 11px;
    top: 6px;
    background-color: transparent;
    border: none;
}
/* blog-details page end here */





.tab-slider--nav {
	width: 100%;
	float: left;
	margin-bottom: 20px;
  }
  
  .tab-slider--tabs {
	display: block;
	float: left;
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
	border-radius: 35px;
	overflow: hidden;
	background: #575757;
	height: 45px;
	-webkit-user-select: none;
	   -moz-user-select: none;
		-ms-user-select: none;
			user-select: none;
	width: 100%;
  }
  .tab-slider--tabs:after {
	content: "";
	width: 50%;
	background: var(--color-dark);
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 250ms ease-in-out;
	border-radius: 35px;
  }
  .tab-slider--tabs.slide:after {
	left: 50%;
  }
  
  .tab-slider--trigger {
	font-size: 12px;
	line-height: 1;
	font-weight: bold;
	color: var(--color-light);
	text-transform: uppercase;
	text-align: center;
	padding: 17px 20px;
	position: relative;
	z-index: 2;
	cursor: pointer;
	display: inline-block;
	transition: color 250ms ease-in-out;
	-webkit-user-select: none;
	   -moz-user-select: none;
		-ms-user-select: none;
			user-select: none;
	width: 48%;
	
	
  }
  .tab-slider--trigger.active {
	/* color: #fff; */
	background: var(--color-c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .tab-slider--body {
	margin-bottom: 20px;
  }
  .trending-button{
	margin: 40px 0;
	padding: 20px 0;
	background-color: var(--back);
	border-radius: 15px;
  }

  .tab-slider--body .same-div{
	/* border-top: 1px solid var(--ass); */
    padding: 10px 0;
  }
  .tab-slider--body .same-div a{
	text-decoration: none;
  }
  .tab-slider--body .same-div a h6{
	font-size: 18px;
    background: var(--color-c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .tab-slider--body .same-div a p{
	font-size: 20px;
    color: var(--color-light);
    margin-bottom: 10px;
  }
  .tab-slider--body .same-div a .read-div {
    display: flex;
    align-items: center;
    justify-content: left;
    column-gap: 25px;
}
.tab-slider--body .same-div a .read-div .left {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}
.tab-slider--body .same-div a .read-div p {
    font-size: 18px;
    color: var(--ass);
    margin: 0;
}
.tab-slider--body .same-div a .read-div .left img {
    width: 22px;
}
.tag-catagories{
	padding: 30px 20px;
	background-color: var(--back);
	border-radius: 15px;
}
.tag-catagories h3{
	color: var(--color-light);
    font-size: 30px;
    margin-bottom: 15px;
}
.tag-catagories .tag-list{
	display: flex;
	align-items: center;
	justify-content: left;
	flex-wrap: wrap;
	column-gap: 15px;
	row-gap: 15px;
}
.tag-catagories .tag-list .item{
	padding: 3px 15px;
	background-color: #575757;
	color: var(--color-light);
	border-radius: 15px;
}

/* event part start here */
.event-part .upcoming-events h3{
	font-size: 60px;
    color: var(--color-light);
    margin-top: 80px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.event-part .upcoming-events h3 span{
	background: var(--color-c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.event-part .upcoming-events p{
	font-size: 22px;
    color: var(--color-light);
    line-height: 28px;
}
.event-part .upcoming-events h4{
	font-size: 40px;
    color: var(--color-light);
}
.event-part .past-events h4{
	font-size: 30px;
    color: var(--color-light);
}
.event-part .past-events h3{
	font-size: 60px;
    color: var(--color-light);
    margin-top: 80px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.event-part .past-events h3 span{
	background: var(--color-c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.event-part .past-events p{
	font-size: 18px;
    color: var(--color-light);
    line-height: 28px;
	margin-bottom: 0;
}
.event-part .past-events-row{
	row-gap: 20px;
	margin-bottom: 30px;
}
.event-part .past-events a{
	display: inline-block !important;
	margin-top: 40px auto 0 auto !important;
}
.event-part .past-events a::after{
	left: -20px !important;
    top: -44px !important;
}
/* event part end here */












/* career page start */
/* heading start */
.career-banner{
	position: relative;
}

.career-banner .banner-img{
	width: 100%;
}
.career-banner .written-div{
  position: absolute;
  left: 50%;
  top: 50%;
  -moz-transform: translate(-50%, -50%); /* Firefox */
  -ms-transform: translate(-50%, -50%);  /* IE 9 */
  -webkit-transform: translate(-50%, -50%); /* Safari and Chrome*/
  -o-transform: translate(-50%, -50%); /* Opera */
  transform: translate(-50%, -50%);
  text-align: center;
}
.career-banner .written-div h1{
	font-size: 85px;
	color: var(--color-light);
	font-family: "Hanken Grotesk", sans-serif;
	font-weight: 700;
	text-transform: uppercase;
}
.career-banner .written-div h1 span{
	display: block;
}
/* heading end */


.career-page{
	padding-top:0;
	padding-bottom: 100px;
}

.career-page .what_section{
	position: relative;
	margin-bottom: 100px;
	margin-left: 0;
	margin-right: 0;
}

.career-page .what_section .what-we-offer{
	position: absolute;
	top: -98px;
	z-index: 1;
	width: 100%;
}
.career-page .what_section .what-we-offer .what-we-offer_inside{
	border-radius: 70px;
	padding: 48px 68px;
	background-color: #8082d5;
	background-image: url('../images/career/what-we-offer_bg.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.career-page .what_section .what-we-offer .what-we-offer_inside .what-we-offer_inside_content:before{
	content: "";
	position: absolute;
	z-index: 1;
	top:-15px;
	width:74px;
	height: 7px;
	border-radius:3px;
	background-color:#1c1f3e;
}
.career-page .what_section .what-we-offer .what-we-offer_inside .what-we-offer_inside_content:after{
	content: "";
	position: absolute;
	z-index: 1;
	bottom:-15px;
	right: 0;
	width:74px;
	height: 7px;
	border-radius:3px;
	background-color:#1c1f3e;
}
.career-page .what_section .what-we-offer .what-we-offer_inside .what-we-offer_inside_content{
	width: 100%;
	position: relative;
}
.career-page .what_section .what-we-offer .what-we-offer_inside .what-we-offer_inside_content h3{
	color:var(--color-light);
	font-size: 40px;
	line-height: 100%;
}
.career-page .what_section .what-we-offer .what-we-offer_inside .what-we-offer_inside_content h4{
	color:var(--color-dark);
	font-size:28px;
	line-height: 100%;
	font-weight: 700;
}
.career-page .what_section .what-we-offer .what-we-offer_inside .what-we-offer_inside_content p{
	color:var(--color-light);
	font-size:22px;
	line-height:29px;
}

.career-page .explore_sec{
	margin-top:100px;
}
.career-page .explore_sec h4{
	font-size: 34px;
	text-align: center;
	font-weight: 700;
	padding-bottom: 60px;
	color: var(--color-light);
}

/* animated tab start */
.grid {
	/* max-width: 1200px; */
	margin: 40px auto;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
  }
  .grid > li {
	/* width: calc(100% / 3 - 30px); */
	width: 100%;
	margin: 0px 15px;
	margin-bottom: 30px;
	overflow: hidden;
	border-radius: 15px;
  }


  .filters {
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	justify-content: center;
  }
  .grid li img {
	max-width: 100%;
	border-radius: 10px;
  }
  .filters button {
	padding: 10px 2px;
	margin: 0px 15px 15px 15px;
	border: none;
	border-radius: 100px;
	transition: 150ms;
	color: #ffffff;
	font-size: 16px;
	line-height: 25px;
	font-weight: 600;
	position: relative;
	outline: none;
	cursor: pointer;
	background: linear-gradient(to bottom right, #cb22bc, #cc218b, #fd263f);
  }

  .filters button span {
	color:#fff;
	background-color: #121212;
	border-radius: 100px;
	transition: 150ms;
	padding: 10px 25px;
	margin: 0px 0px 15px 0px;
	border: none;
  }

/* hover state */
.grid .filters button .shape-outer {
    display: flex;
    flex-shrink: 0;
    height: calc(150px + 4vw);
    width: calc(150px + 4vw);
    margin: 25px;
}
.grid .filters button .circle {
    -webkit-clip-path: circle(50% at 50% 50%);
    		clip-path: circle(50% at 50% 50%);
}
/* hover state */

  .filters button.is-checked {
	background-color: #fff;
	color: #121212;
	background-image:none;
  }
.filters button.is-checked span{
	background-color: #fff;
	color: #121212;
  }
  .element-item > div {
	padding: 45px 80px 50px 80px;
	background-color:var(--color-light);
	color: #dddddd;
	border-radius: 70px;
	}
	.element-item > div:hover {
		background: linear-gradient(to bottom right, #fefeff, #eeeefd, #ddddfa);
	}
  .element-item p {
	font-size: 18px;
	line-height: 24px;
	color: #5a5a5a;
	padding-bottom: 20px;
  }
  
  @media (max-width: 767px) {
	.filters button {
	  /* padding: 5px 10px; */
	  margin: 5px;
	}
	.grid > li {
	  width: calc(100% - 30px);
	}
	.element-item p {
	  font-size: 16px;
	  line-height: 22px;
	}
  }
/* animated tab end */

.grid .tab_head{
	display: flex;
	justify-content: space-between;
}

.grid .tab_head h4{
	font-size:34px;
	font-weight: 700;
	color:var(--color-dark);
	padding-bottom:15px;
}

.grid .tab_head h4 span {
    font-size:14px;
    line-height: 22px;
    font-weight: 400;
    position: relative;
    color: #fff;
    text-decoration: none;
    padding: 3px 20px;
    border-radius: 40px;
    transition: 150ms;
    background: linear-gradient(to bottom right, #cb22bc, #cc218b, #fd263f);
	margin-left: 20px;
}





.grid .tab_head .libox ul{
	list-style: none;
	display: flex;
	color:#878787;
	font-size: 20px;
	justify-content: center;
	align-items: center;
}
.grid .tab_head .libox ul li{
	margin-right:30px;
	display: flex;
	align-items: baseline;
}
.grid .tab_head .libox ul li img{
	padding-right: 10px;
	border-radius: 0;
	
}
.grid .w-23{
	width:30px;
}

.grid li a{
	font-size:20px;
	line-height: 22px;
	font-weight: 700;
	position: relative;
	color: #040404;
	text-decoration: none;
	padding: 10px 2px;
	border-radius: 40px;
	transition: 150ms;
	background: linear-gradient(to bottom right, #cb22bc, #cc218b, #fd263f);
}
.grid li a span {
    color: #040404;
    background-color: #fff;
    border-radius: 100px;
    transition: 150ms;
    padding: 8px 55px;
    margin: 0px 0px 15px 0px;
    border: none;
}
.grid li a:hover span {
    color: #fff;
    background: linear-gradient(to bottom right, #cb22bc, #cc218b, #fd263f);
	border: none;
}
.g-recaptcha { 
	/* margin-left: 513px;  */
}
.error-message, #valid-message{
	color:#ff263a !important;
}
/* career page end */



/* payment gateway section start here */
.payment-sec-main{
	position: relative;
}

.payment-sec{
	margin-bottom:0px;
}

.payment-sec h3{
	font-size:80px;
	color: var(--color-light);
	margin-top: 30px;
	margin-bottom: 25px;
	text-transform: uppercase;
}

.payment-sec h3 span{
	background: var(--color-c1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/*  */
.payment-sec .company-logos {
	display:flex;
	justify-content: center;
	align-items: center;
  }
  
.payment-sec .company-logo {
	float: left;
	width:250px;
	position: relative;
	margin-bottom:110px;
	margin-top: 10px;
  }
  
.payment-sec .company-logo > img {
	width:100%;
	position: absolute;
  }
/* payment gateway section end here */


.form-control {
	color: #fff !important;
	background: none !important;
}
.form-control:focus {
    color: #fff !important;
	background: none !important;
}



/*  */
.ded-hi-banner{
	position: relative;
}
.ded-hi-banner .banner-pattern{
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -9999;
}
.banner .banner-img{
	width: 100%;
}
.ded-hi-banner .written-div {
    position: absolute;
    bottom: 14%;
    right: -34%;
    text-align: right;
}
.ded-hi-banner .written-div h1{
	font-size: 85px;
	color: var(--color-light);
	text-transform: uppercase;
	font-family: "Hanken Grotesk", sans-serif;
	font-weight: 700;	
}
/*  */

/* .career-page h3{
	font-size: 30px;
    font-weight: 700;
    background: var(--color-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */




/* error-page start here */
  .error-page {
	display: grid;
	grid-template-columns: 1fr;
	justify-content: center;
	align-items: center;
	height: 100vh;
	overflow-x: hidden;
  }
  .error-page .container {
	margin: 0 auto;
	transition: all 0.4s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
  }
  .error-page .container .scene {
	position: absolute;
	width: 100vw;
	height: 100vh;
	vertical-align: middle;
  }
  .error-page .container .one,
  .error-page .container .two,
  .error-page .container .three,
  .error-page .container .circle,
  .error-page .container .p404 {
	width: 60%;
	height: 60%;
	top: 20% !important;
	left: 20% !important;
	min-width: 400px;
	min-height: 400px;
  }
  .error-page .container .one .content,
  .error-page .container .two .content,
  .error-page .container .three .content,
  .error-page .container .circle .content,
  .error-page .container .p404 .content {
	width: 600px;
	height: 600px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: content 0.8s cubic-bezier(1, 0.06, 0.25, 1) backwards;
  }
  @keyframes content {
	0% {
	  width: 0;
	}
  }
  .error-page .container .one .content .piece,
  .error-page .container .two .content .piece,
  .error-page .container .three .content .piece,
  .error-page .container .circle .content .piece,
  .error-page .container .p404 .content .piece {
	width: 200px;
	height: 80px;
	display: flex;
	position: absolute;
	border-radius: 80px;
	z-index: 1;
	animation: pieceLeft 8s cubic-bezier(1, 0.06, 0.25, 1) infinite both;
  }
  @keyframes pieceLeft {
	50% {
	  left: 80%;
	  width: 10%;
	}
  }
  @keyframes pieceRight {
	50% {
	  right: 80%;
	  width: 10%;
	}
  }
  @media screen and (max-width: 799px) {
  .error-page .container .one,
  .error-page .container .two,
  .error-page .container .three,
  .error-page .container .circle,
  .error-page .container .p404 {
	  width: 90%;
	  height: 90%;
	  top: 5% !important;
	  left: 5% !important;
	  min-width: 280px;
	  min-height: 280px;
	}
  }
  @media screen and (max-height: 660px) {
	.error-page .container .one,
  .error-page .container .two,
  .error-page .container .three,
  .error-page .container .circle,
  .error-page .container .p404 {
	  min-width: 280px;
	  min-height: 280px;
	  width: 60%;
	  height: 60%;
	  top: 20% !important;
	  left: 20% !important;
	}
  }
  .error-page .container .text {
	width: 60%;
	height: 40%;
	min-width: 400px;
	min-height: 500px;
	position: absolute;
	margin: 40px 0;
	animation: text 0.6s 1.8s ease backwards;
  }
  @keyframes text {
	0% {
	  opacity: 0;
	  transform: translateY(40px);
	}
  }
  @media screen and (max-width: 799px) {
	.error-page .container .text {
	  min-height: 400px;
	  height: 80%;
	}
  }
  .error-page .container .text article {
	width: 400px;
	position: absolute;
	bottom: 0;
	z-index: 4;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
  }
  @media screen and (max-width: 799px) {
	.error-page .container .text article {
	  width: 100%;
	}
  }
  .error-page .container .text article p {
	color: white;
	font-size: 18px;
	letter-spacing: 0.6px;
	margin-bottom: 40px;
	text-shadow: 6px 6px 10px #32243E;
  }
  .error-page .container .text article a {
	height: 40px;
	padding: 0 30px;
	border-radius: 50px;
	cursor: pointer;
	box-shadow: 0px 15px 20px rgba(54, 24, 79, 0.5);
	z-index: 3;
	color: #695681;
	background-color: white;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 12px;
	line-height: 40px;
	transition: all 0.3s ease;
	text-decoration: none;
  }
  .error-page .container .text article a:hover {
	box-shadow: 0px 10px 10px -10px rgba(54, 24, 79, 0.5);
	transform: translateY(5px);
	background-color: #ff263a !important;
	color: white;
  }
  .error-page .container .p404 {
	font-size: 200px;
	font-weight: 700;
	letter-spacing: 4px;
	color: white;
	display: flex !important;
	justify-content: center;
	align-items: center;
	position: absolute;
	z-index: 2;
	animation: anime404 0.6s cubic-bezier(0.3, 0.8, 1, 1.05) both;
	animation-delay: 1.2s;
  }
  @media screen and (max-width: 799px) {
	.error-page .container .p404 {
	  font-size: 100px;
	}
  }
  @keyframes anime404 {
	0% {
	  opacity: 0;
	  transform: scale(10) skew(20deg, 20deg);
	}
  }
  .error-page .container .p404:nth-of-type(2) {
	color: #36184F;
	z-index: 1;
	animation-delay: 1s;
	filter: blur(10px);
	opacity: 0.8;
  }
  .error-page .container .circle {
	position: absolute;
  }
  .error-page .container .circle:before {
	content: "";
	position: absolute;
	width: 800px;
	height: 800px;
	background-color: rgba(54, 24, 79, 0.2);
	border-radius: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-shadow: inset 5px 20px 40px rgba(54, 24, 79, 0.25), inset 5px 0px 5px rgba(50, 36, 62, 0.3), inset 5px 5px 20px rgba(50, 36, 62, 0.25), 2px 2px 5px rgba(255, 255, 255, 0.2);
	animation: circle 0.8s cubic-bezier(1, 0.06, 0.25, 1) backwards;
  }
  @keyframes circle {
	0% {
	  width: 0;
	  height: 0;
	}
  }
  @media screen and (max-width: 799px) {
	.error-page .container .circle:before {
	  width: 400px;
	  height: 400px;
	}
  }
  .error-page .container .one .content:before {
	content: "";
	position: absolute;
	width: 600px;
	height: 600px;
	background-color: rgba(54, 24, 79, 0.3);
	border-radius: 100%;
	box-shadow: inset 5px 20px 40px rgba(54, 24, 79, 0.25), inset 5px 0px 5px rgba(50, 36, 62, 0.3), inset 5px 5px 20px rgba(50, 36, 62, 0.25), 2px 2px 5px rgba(255, 255, 255, 0.2);
	animation: circle 0.8s 0.4s cubic-bezier(1, 0.06, 0.25, 1) backwards;
  }
  @media screen and (max-width: 799px) {
	.error-page .container .one .content:before {
	  width: 300px;
	  height: 300px;
	}
  }
  .error-page .container .one .content .piece {
	/* background: linear-gradient(90deg, #8077EA 13.7%, #EB73FF 94.65%); */
	background: linear-gradient(135deg, #9b4591 0%, #ff263a 74%);
  }
  .error-page .container .one .content .piece:nth-child(1) {
	right: 15%;
	top: 18%;
	height: 30px;
	width: 120px;
	animation-delay: 0.5s;
	animation-name: pieceRight;
  }
  .error-page .container .one .content .piece:nth-child(2) {
	left: 15%;
	top: 45%;
	width: 150px;
	height: 50px;
	animation-delay: 1s;
	animation-name: pieceLeft;
  }
  .error-page .container .one .content .piece:nth-child(3) {
	left: 10%;
	top: 75%;
	height: 20px;
	width: 70px;
	animation-delay: 1.5s;
	animation-name: pieceLeft;
  }
  .error-page .container .two .content .piece {
	/* background: linear-gradient(90deg, #FFEDC0 0%, #FF9D87 100%); */
	background: linear-gradient(135deg, #ff263a 0%, #9b4591 74%);
  }
  .error-page .container .two .content .piece:nth-child(1) {
	left: 0%;
	top: 25%;
	height: 40px;
	width: 120px;
	animation-delay: 2s;
	animation-name: pieceLeft;
  }
  .error-page .container .two .content .piece:nth-child(2) {
	right: 15%;
	top: 35%;
	width: 180px;
	height: 50px;
	animation-delay: 2.5s;
	animation-name: pieceRight;
  }
  .error-page .container .two .content .piece:nth-child(3) {
	right: 10%;
	top: 80%;
	height: 20px;
	width: 160px;
	animation-delay: 3s;
	animation-name: pieceRight;
  }
  .error-page .container .three .content .piece {
	/* background: #FB8A8A; */
	background: #9b4591;
  }
  .error-page .container .three .content .piece:nth-child(1) {
	left: 25%;
	top: 35%;
	height: 20px;
	width: 80px;
	animation-name: pieceLeft;
	animation-delay: 3.5s;
  }
  .error-page .container .three .content .piece:nth-child(2) {
	right: 10%;
	top: 55%;
	width: 140px;
	height: 40px;
	animation-name: pieceRight;
	animation-delay: 4s;
  }
  .error-page .container .three .content .piece:nth-child(3) {
	left: 40%;
	top: 68%;
	height: 20px;
	width: 80px;
	animation-name: pieceLeft;
	animation-delay: 4.5s;
  }
/* error-page end here */

.gradcolor{
	font-weight: 700;
	background: var(--color-c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.iti{
    width:100%;
}
.iti__tel-input{
    padding-left:20px;
}
body .contact-form-left #phone{
    padding-left:100px !important;
}

.iti__country-name {
    color: black;
}
.iti--inline-dropdown .iti__country-list {
    width: 100%;
}
.g_div{
	margin-bottom: 15px;
}
/* .g_div span{
	color: var(--color-light);
} */
 body .get-start form .iti__search-input:focus{
	color: var(--color-dark);
 }
 body .get-start form .iti__search-input{
	color: var(--color-dark);
 }







/* 17-.1-2025 */

 .development-services h3{
	font-size: 40px;
    color: var(--color-light);
    font-weight: 600;
    line-height: 65px;
    text-transform: uppercase;
    text-align: left;
 }
 .development-services p{
	font-size: 22px;
    color: var(--color-light);
    line-height: 29px;
    margin: 25px 0 50px 0;
    text-align: left;
 }



 .development-service-content .same-h3{
	font-size: 60px;
    color: var(--color-light);
    font-weight: 600;
    line-height: 65px;
    text-transform: uppercase;
    text-align: left;
 }
 .development-service-content .same-h3 span{
	background: var(--color-c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
 }
 .development-service-content p{
	font-size: 22px;
    color: var(--color-light);
    line-height: 29px;
    margin: 25px 0 50px 0;
    text-align: left;
 }





 .development-service-content .img-div{
	width: 150px;
	height: 150px;
 }
 .development-service-content .img1{
	background-image: url('../images/services/app-development/app1.png');
	width: 150px;
	height: 150px;
	background-repeat: no-repeat;
	background-size: cover;
 }
 .development-service-content .img1:hover{
	background-image: url('../images/services/app-development/app1-1.png');
	width: 150px;
	height: 150px;
	background-repeat: no-repeat;
	transition: all .2s ease-in-out;
 }
 .development-service-content .row{
	row-gap: 15px;
 }
 @media(max-width:768px){
	.development-service-content .row .col-lg-6{
		flex-direction: column;
	}
	.development-services h3{
		margin-top: 75px;
	 }
	 .development-service-content p {
		margin: 10px 0 30px 0;
	}
	
 }
 @media(max-width:512px){
	.solution-sec .card-solution p.all {
		font-size: 12px !important;
	}
 }