/* common css start here */
:root {
	--color-white: #fff;
	--color-black: #000000;
	--color-black-low: #000000b3;
	--color-ass: #f0f0f0;
	--color-red:#ff2841;

	--color-c1: linear-gradient(95deg, #9b4591 0%, #ff263a 38%);
	--color-c2: linear-gradient(95deg, #9b459156 0%, #ff263c50 38%);
	--color-c3: linear-gradient(45deg, #ff263a 0%, #9b4591 80%);
	--color-c4: linear-gradient(45deg, #d0c8e1 0%, #f2bec4 80%);
}

body{
	background-color:var(--color-light);
	font-family: "Lexend Deca", sans-serif;
}

*:focus {
    outline: none;
}
ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.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-image:var(--color-c1);
	padding: 17px 60px !important;
	box-shadow: 0 5px 15px rgba(0,0,0,0.20)!important;
	border-radius: 30px !important;
  }
  
  .btn span {
	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);
  }
  
  .btn:hover:after {
	-webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
	transform: translateX(-9%) translateY(-25%) rotate(45deg);
  }


  .button-cta {
	overflow: hidden;
	background:var(--color-white);
	color:var(--color-black);
	font-size: 24px;
	border-radius: 50px;
	position: relative;
	border: none;
	transition: all 0.3s ease;
	padding: 15px 40px;
  }
  .button-cta.with-hover:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	transition: all 0.8s;
	display: block;
	margin: auto;
	width: 0;
	height: 0;
	border-radius: 100px;
	animation: ripple-animation 0.5s;
	backdrop-filter: contrast(0.7);
  }
  .button-cta.with-hover:hover:before {
	width: 100%;
	height: 100%;
	animation: ripple-animation-reverse 0.5s;
  }
  .button-cta.with-arrow {
	padding: 15px 50px 15px 40px;
  }
  .button-cta.with-arrow:after {
	content: "\f107";
	font-family: "FontAwesome";
	position: absolute;
	margin-left: 10px;
	transition: all 0.3s ease;
  }
  .button-cta:hover {
	color: var(--color-white);
	background-color: #b555c4;
	padding: 15px 50px 15px 40px;
  }
  .button-cta:hover.with-arrow {
	padding: 18px 60px 18px 48px;
  }
  .button-cta:hover.with-arrow:after {
	animation: arrow-animation 0.3s ease;
  }
  
  @keyframes arrow-animation {
	0% {
	  bottom: 25%;
	}
	50% {
	  bottom: -25%;
	}
	51% {
	  bottom: 100%;
	}
	100% {
	  bottom: 25%;
	}
  }
  @keyframes ripple-animation {
	0% {
	  width: 100%;
	  height: 100%;
	}
	12% {
	  width: 89%;
	  height: 89%;
	}
	24% {
	  width: 56%;
	  height: 56%;
	}
	36% {
	  width: 2%;
	  height: 25;
	}
	54% {
	  width: 25px;
	  height: 25px;
	}
	74% {
	  width: 5px;
	  height: 5px;
	}
	82% {
	  width: 10px;
	  height: 10px;
	}
	92% {
	  width: 2px;
	  height: 2px;
	}
	96% {
	  width: 5px;
	  height: 5px;
	}
	100% {
	  width: 0;
	  height: 0;
	}
  }
  @keyframes ripple-animation-reverse {
	0% {
	  width: 0;
	  height: 0;
	}
	25% {
	  width: 25px;
	  height: 25px;
	}
	100% {
	  width: 100%;
	  width: 100%;
	}
  }
/* common css end here */



/* top header start here */
.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;
	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);
}
/* top header end here */



/* header part start here */
header{
	position: fixed;
	width: 100%;
	z-index: 99;
	border-bottom:var(--color-red) 2px solid;
	padding: 15px 0 6px 0;
	background: var(--color-white);
}
header.active{
	background-color: var(--color-white);
}
header.active .navbar-expand-lg{
	background: none;
	background-image: none !important;
}
header.active .navbar-expand-lg img{
	/* filter: brightness(10); */
}
.navbar {
	padding-top: 0;
    padding-bottom: 0;
}
.navbar-nav {
    display: flex;
    flex-direction: column !important;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.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-black);
	font-size: 20px;
	font-weight: 600;
	padding: 0px 0px;
	text-align: right;
}
.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-red);
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: var(--color-black);
}
/* header part end here */




/* banner part start here */
.banner{
	padding-top:84px;
	background-image: url(../images-landing/header_bg.png);
	background-repeat:repeat;
}
.banner_inner{
	padding: 38px 0 70px 0;
}

.banner_inner h1{
	position: relative;
	font-size: 60px;
	line-height:60px;
	text-transform: uppercase;
	color:var(--color-black);
}
.banner_inner h1 span {
    background: var(--color-c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.banner_inner h1::after{
	content:"";
	position: absolute;
	width: 30px;
	height: 30px;
	right: 3px;
    top: -4px;
	background-image: url(../images/header_text_bg.png);
	background-repeat: no-repeat;
	display: none;
}
.banner_inner h2{
	padding-top:190px;
	font-size: 30px;
	line-height: 50px;
	text-transform: uppercase;
	color:var(--color-black);
}

.banner_inner p{
	font-size: 24px;
	line-height: 26px;
	text-transform:capitalize;
	color:var(--color-black);
	margin-bottom: 46px;
}

.banner_inner a{
	color: var(--color-white);
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
}
.banner_inner a:hover{
	background-image: var(--color-c3);
}
.banner .banner_inner .ban_form{
	background-image: url(../images-landing/banner_img_1.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 25px 20px;
	border: 3px solid var(--color-red);
	border-radius: 10px;
}
.banner .banner_inner .ban_form h3{
	background: var(--color-c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	text-align: center;
	font-size: 40px;
	margin-bottom: 15px;
}

.link {
	background-image:var(--color-c1);
	color: rgba(255, 255, 255, 0.8);
	padding: 0px 24px;
	border-radius: 4px;
	text-decoration: none;
}

.link--arrowed {
	display: inline-block;
	height: 80px;
	line-height:80px;
	width: 370px;
}
.link--arrowed .arrow-icon {
	position: relative;
	top: -1px;
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
	vertical-align: middle;
}
.link--arrowed .arrow-icon--circle {
	transition: stroke-dashoffset 0.3s ease;
	stroke-dasharray: 95;
	stroke-dashoffset: 95;
}
.link--arrowed:hover .arrow-icon {
	transform: translate3d(5px, 0, 0);
}
.link--arrowed:hover .arrow-icon--circle {
	stroke-dashoffset: 0;
}
/* banner part end here */



/* what we do start here */
.what_we_do{
	background-image: url(../images-landing/header_bg1.png);
	background-repeat:repeat;
}
.what_we_do h6{
	font-size: 30px;
	line-height: 30px;
	text-transform: uppercase;
	background: var(--color-c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.what_we_do h3 {
	font-size:50px;
	line-height: 50px;
	margin-bottom: 25px;
	text-transform:capitalize;
	color:var(--color-black);
}
.what_we_do h4 {
	font-size:35px;
	line-height:35px;
	text-transform:capitalize;
	color:var(--color-black);
}

.what_we_do p{
	font-size: 26px;
	line-height: 26px;
	font-weight: 400;
	text-transform:capitalize;
	color:var(--color-black);
	margin-bottom: 46px;
}
.what_we_do ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
.what_we_do_list{
	display: flex;
	align-items:flex-start;
	justify-content:space-between;
	column-gap: 15px;
}
.what_we_do_img{
	width:93px;
	height: 78px;
	border-radius: 50px;
	background-image: var(--color-c4);
	display: flex;
	align-items: center;
	justify-content: center;
}
.what_we_do_img img{
	width:47px;
	height:47px;
	fill: var(--color-c1);
}

.what_we_do_rht{
	/* padding: 0; */
	position: relative;
}
.what_we_do_rht img{
	border-radius: 20px;
}
.what_we_do_rht_exp{
	width: 390px;
	height: 160px;
	border-radius: 20px;
	background-color: var(--color-red);
	position: absolute;
	left: -50px;
	bottom: -50px;
	display: flex;
	align-items: center;
	justify-content:space-between;
	column-gap:30px;
	padding:0 30px;
}
.what_we_do_rht_exp h3{
	font-size: 80px;
	line-height: 80px;
	color: var(--color-white);
}
.what_we_do_rht_exp p{
	font-size: 28px;
	line-height: 28px;
	color: var(--color-white);
	padding: 0;
	margin: 0;
}
.what_we_do a{
	color:var(--color-white);
	border: #b555c4 1px solid;
	text-decoration: none;
	background-color: #b555c4;
}
/* what we do end here */



/* service we offer start here */
.service_we_offer{
	padding:100px 0 120px 0;
}
.service_we_offer h6{
	font-size: 30px;
	line-height: 30px;
	text-transform: uppercase;
	text-align: center;
}
.service_we_offer h6 span{
	background: var(--color-c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.service_we_offer h3 {
	font-size:50px;
	line-height: 50px;
	text-transform:capitalize;
	color:var(--color-black);
	text-align: center;
	padding-bottom: 75px;
}

.service_we_offer p{
	font-size: 26px;
	line-height: 26px;
	font-weight: 400;
	text-transform:capitalize;
	color:var(--color-black);
	margin-bottom: 46px;
}
.service_we_offer_blk{
	/* display: flex;
    align-items: flex-start;
    justify-content: space-between; 
    column-gap: 15px;
	border-top:#d6d6d6 5px solid;
	padding: 40px 0 0 0;*/
}
.service_we_offer_blk img{
	border-radius: 20px;
}
.service_we_offer_blk h4 {
	font-size:35px;
	line-height:35px;
	text-transform:capitalize;
	color:var(--color-black);
	padding-left: 10px;
}





.offer_box{
	position: relative;
	display: flex;
    align-items: flex-start;
    justify-content: space-between;
	column-gap: 15px;
	border-top:#d6d6d6 5px solid;
	padding: 40px 0 0 0;
	transition:ease-in-out .5s;
	margin-bottom:50px;
}
.overlay {
	position: absolute;
	top: -5px;
	bottom: 11px;
	left: 0;
	right: 0;
	height: 103%;
	width: 100%;
	opacity: 0;
	transition: .5s ease;
	background-color: #f5f5f5;
	border-top:#f92840 5px solid;
	display: flex;
	align-items: start;
	justify-content: flex-start;
	flex-direction: column;
	}
  .offer_box:hover .overlay {
	opacity: 1;
	transition: .5s ease;
  }
  .overlay h4 {
	font-size:35px;
	line-height:35px;
	text-transform:capitalize;
	color:var(--color-black);
	padding:40px 0 20px 0px;
	transition: .5s ease;
  }
  
  .overlay .text {
	color:var(--color-black);
	font-size: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	padding-left: 10px;
  }
  .overlay .text h4 {
	font-size:35px;
	line-height:35px;
	text-transform:capitalize;
	color:var(--color-black);
	padding:40px 0 20px 0px;
	transition:ease-in-out .5s;
  }
  .overlay .text p {
	font-size: 22px;
	line-height: 22px;
  }
  .overlay .text a{
	color:#b555c4;
	text-decoration: none;
  }
  .overlay .text a img{
	width: 22px;
  }
/* service we offer end here */


/* industry we serve start here */
.industry_we_serve{
	padding:0px 0 120px 0;
}
.industry_we_serve h6{
	font-size: 30px;
	line-height: 30px;
	text-transform: uppercase;
	text-align: center;
}
.industry_we_serve h6 span{
	background: var(--color-c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.industry_we_serve h3 {
	font-size:50px;
	line-height: 50px;
	text-transform:capitalize;
	color:var(--color-black);
	text-align: center;
	padding-bottom:25px;
}

.industry_we_serve p{
	font-size: 24px;
	line-height: 24px;
	font-weight: 400;
	text-transform:capitalize;
	color:var(--color-black);
	margin-bottom: 46px;
	text-align: center;
}
.iconblk{
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 10px;
}

.iconbox{
	width:19%;
	border-radius: 15px;
	border:#bcbcbc 1px solid;
	text-align: center;
	font-size:30px;
	padding: 30px 0 50px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.iconbox:hover{
	background: radial-gradient(circle at 100% 100%, #ffffff 0, #ffffff 3px, transparent 3px) 0% 0%/8px 8px no-repeat,
	radial-gradient(circle at 0 100%, #ffffff 0, #ffffff 3px, transparent 3px) 100% 0%/8px 8px no-repeat,
	radial-gradient(circle at 100% 0, #ffffff 0, #ffffff 3px, transparent 3px) 0% 100%/8px 8px no-repeat,
	radial-gradient(circle at 0 0, #ffffff 0, #ffffff 3px, transparent 3px) 100% 100%/8px 8px no-repeat,
	linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 10px) calc(100% - 16px) no-repeat,
	linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 16px) calc(100% - 10px) no-repeat,
	linear-gradient(90deg, #a236e7 0%, #fe2841 100%);
	box-sizing: border-box;
}

.iconbox_blk{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.iconbox h4 {
	font-size:30px;
	line-height: 30px;
	margin:35px 0 0 0;
	padding: 0;
	color:#6a6a6a;
}
.iconbox_img{
	width: 100px;
	height: 100px;
	line-height: 100px;
	text-align: center;
	border-radius: 50px;
	border:#bcbcbc 1px solid;
}
.iconbox_img img {
	width: 50px;
	height: 50px;
}
.industry_we_serve a{
	color:#464646;
	border: #b555c4 1px solid;
	text-decoration: none;
}


/* industry we serve end here */


/* technology we use start here */
.technology_we_use{
	padding:0px 0 120px 0;
}
.technology_we_use h6{
	font-size: 30px;
	line-height: 30px;
	text-transform: uppercase;
	text-align: center;
}
.technology_we_use h6 span{
	background: var(--color-c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.technology_we_use h3 {
	font-size:50px;
	line-height: 50px;
	text-transform:capitalize;
	color:var(--color-black);
	text-align: center;
	padding-bottom:25px;
}

.technology_we_use p{
	font-size: 24px;
	line-height: 24px;
	font-weight: 400;
	text-transform:capitalize;
	color:var(--color-black);
	margin-bottom: 46px;
	text-align: center;
}
/* technology we use end here */


/* counter start here */
.counter_blk{
	padding:10px 0 100px 0;
}
.counter-row{
	row-gap: 15px;
	display: flex;
    justify-content: center;
}
.counter-row .counter-col{
	display: flex;
	justify-content: center;
	align-items: center;
}
.counter_blk h6{
	font-size: 30px;
    line-height: 30px;
    text-transform: uppercase;
    text-align: center;
}
.counter_blk h6 span{
	background: var(--color-c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.counter_blk .grow-counter{
	font-size: 50px;
    line-height: 50px;
    text-transform: capitalize;
    color: var(--color-black);
    text-align: center;
    padding-bottom: 25px;
	margin-bottom: 40px;
}
.count_box {
	padding: 50px 20px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width:360px;
    height: 360px;
    background: var(--color-c4);
  }

.count_box h4 {
	font-size: 15px;
	font-weight: 300;
	color: #313131;
	padding-top: 10px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
  }
/*.box_center {
	background: linear-gradient(to bottom right, #002f4b, #dc4225);
	background-position: center 0;
	background-size: cover;
}*/
  .count_box h3{
	background: var(--color-c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	font-size: 80px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
  }
  .count_box h3 span {
	/* color: #fff; */
	font-size: 120px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
  }
  .count_box h4 {
	background: var(--color-c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	font-size:26px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
  }

/* .box_hover:hover {
	background:var(--color-black);
	background-size: cover;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
  }
.box_hover:hover h3,
.box_hover:hover h4 {
	color: #fff;
  }
  @media (max-width: 768px) {
	.col-md-4 {
	  margin-bottom: 15px;
	}
  } */
  
/* counter end here */


/* blog start here */
.blog_blk{
	padding:0px 0 120px 0;
}
.blog_blk h6{
	font-size: 30px;
	line-height: 30px;
	text-transform: uppercase;
	text-align: center;
}
.blog_blk h6 span{
	background: var(--color-c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.blog_blk h3 {
	font-size:50px;
	line-height: 50px;
	text-transform:capitalize;
	color:var(--color-black);
	text-align: center;
	padding-bottom:25px;
}

.blog_blk p{
	font-size: 24px;
	line-height: 24px;
	font-weight: 400;
	text-transform:capitalize;
	color:var(--color-black);
	margin-bottom: 46px;
	text-align: center;
}
/* blog end here */


/* our client start here */
.client_blk{
	padding:120px 0;
}
.client_blk h6{
	font-size: 30px;
	line-height: 30px;
	text-transform: uppercase;
	text-align: center;
}
.client_blk h6 span{
	background: var(--color-c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.client_blk h3 {
	font-size:50px;
	line-height: 50px;
	text-transform:capitalize;
	color:var(--color-black);
	text-align: center;
	padding-bottom:25px;
}

.client_blk p{
	font-size: 24px;
	line-height: 24px;
	font-weight: 400;
	text-transform:capitalize;
	color:var(--color-black);
	margin-bottom: 46px;
	text-align: center;
}
.client_blk ul{
	list-style: none;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-content: center;
	flex-wrap: wrap;
	column-gap: 15px;
	row-gap: 30px;
}
.client_blk ul li{
	width: 22%;
	display: inline-flex;
	transition: all .5s;
}
.client_blk ul li img{
	list-style: none;
	border-radius: 15px;
	/* height: 100%; */
	width: 100%;
	box-shadow: 4px 8px 8px 2px rgba(66, 66, 66, 0.15);
	border:var(--color-white) 3px solid;
	transition: all .5s;
}
.client_blk ul li img:hover{
	transition: all .3s;

	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	-webkit-box-shadow: 0 58px 36px -46px black;
	-moz-box-shadow: 0 58px 36px -46px black;
	box-shadow: 0 58px 36px -46px black;

	background: linear-gradient(white, white) padding-box,
				linear-gradient(to right, #9134bf, #fc254a) border-box;
	border: 3px solid transparent;
  	border-radius: 15px;
}
.client_blk a {
    color: var(--color-white);
    border: #b555c4 1px solid;
    text-decoration: none;
    background-color: #b555c4;
}
/* our client end here */


/* testimonials start here */
.testimonials_blk{
	padding:0px 0 120px 0;
}
.testimonials_blk h6{
	font-size: 30px;
	line-height: 30px;
	text-transform: uppercase;
}
.testimonials_blk h6 span{
	background: var(--color-c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.testimonials_blk h3 {
	font-size:60px;
	line-height: 60px;
	text-transform:capitalize;
	color:var(--color-black);
	padding-bottom:25px;
}

.testimonials_blk p{
	font-size: 24px;
	line-height: 28px;
	font-weight: 400;
	color:var(--color-black);
	margin-bottom: 46px;
}
.testimonials_blk a{
	color:#464646;
	border: #b555c4 1px solid;
	text-decoration: none;
}

.testimonials_blk_inner{
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.testimonials_blk_left{
	padding: 0;
}
.testimonials_blk_right{
	display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: column;
}

.testimonials_inner{
	position: relative;
	border-top: #727272 1px solid;
	border-right: #727272 1px solid;
	border-bottom: #727272 1px solid;
	border-left: #727272 7px solid;
	border-radius: 0 10px 10px 0;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px 20px;
	width:90%;
	column-gap:20px;
	margin:0 0 20px 0;
	transition: all 1.0s ease;
}
.testimonials_inner::after{
	content: "\f10e";
	position: absolute;
	font-size: 60px;
	line-height: 50px;
	font-family: "FontAwesome";
	color:#c7c7c7;
	z-index: 2;
	width: 60px;
	height: 50px;
	top: 18px;
	right:16px;
}
.testimonials_inner:hover{
	margin-right: 5%;
	border-top: #ff1d36 1px solid;
	border-right: #ff1d36 1px solid;
	border-bottom: #ff1d36 1px solid;
	border-left: #ff1d36 7px solid;
	transform: translateX(-10px);
}
.testimonials_inner:hover::after{
	color:var(--color-red);
}

.testimonials_inner img{
	border-radius: 50%;
	border: #717171 1px solid;
}
.testimonials_inner h5{
	font-size:32px;
	line-height:32px;
	font-weight: 700;
	color:var(--color-black);
	margin-bottom:10px;
}
.testimonials_inner p{
	font-size: 24px;
	line-height: 28px;
	font-weight: 400;
	color:var(--color-black);
	margin-bottom:0px;
}
/* testimonials end here */


/* faq start here */
.faq_blk{
	padding:0px 0 120px 0;
}
.faq_blk h6{
	font-size: 30px;
	line-height: 30px;
	text-transform: uppercase;
}
.faq_blk h6 span{
	background: var(--color-c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.faq_blk h3 {
	font-size:60px;
	line-height: 60px;
	text-transform:capitalize;
	color:var(--color-black);
	padding-bottom:25px;
}

.faq_blk p{
	font-size: 24px;
	line-height: 28px;
	font-weight: 400;
	color:var(--color-black);
	margin-bottom: 46px;
}
.faq_blk a{
	color:#464646;
	border: #b555c4 1px solid;
	text-decoration: none;
}
/*  */
.accordion_container {
    width:100%;
}
.accordion_head {
    color:var(--color-black);
    cursor: pointer;
    font-family: arial;
    font-size:26px;
    margin: 0 0 1px 0;
    padding: 7px 11px;
    font-weight: bold;
}
.accordion_body {
	padding: 0 30px;
}
.accordion_body p {
    padding: 18px 5px;
    margin: 0px;
}
.plusminus {
    float:left;
	padding-right: 15px;
}
.accordion_inner{
	background:#fae9f7;
}
/*  */
/* faq end here */




/* contact start here */
.contact_blk{
	padding: 130px 0 80px 0;
	background-color: #002f68;
}
.contact_blk h3 {
    font-size: 60px;
    line-height: 60px;
    text-transform: capitalize;
    color: var(--color-white);
    padding-bottom: 25px;
}
.contact_blk form{
	font-size: 24px;
}
.contact_blk form input{
	width: 100%;
	padding: 12px 25px 12px 12px;
	margin-bottom: 10px;
    background:transparent;
    color:var(--color-white);
	border-top: transparent;
	border-left: transparent;
	border-right: transparent;
	border-bottom: var(--color-white) 3px solid;
	
}
.contact_blk form input:hover{
	border-top: transparent;
	border-left: transparent;
	border-right: transparent;
	border-bottom: var(--color-white) 3px solid;
}
.contact_blk form input:focus{
	color:#fff;
	background: transparent;
	outline: none;
} 
.contact_blk form input::placeholder{
	color: #ffffffb9;
}
.contact_blk form textarea{
	width: 100%;
	font-size: 24px;
	padding: 12px 25px 12px 12px;
	margin-bottom: 10px;
    background:transparent;
    color:var(--color-white);
	border-top: transparent;
	border-left: transparent;
	border-right: transparent;
	border-bottom: var(--color-white) 3px solid;
	/*resize: none;*/
}
.contact_blk form textarea::-webkit-scrollbar {
	width:5px;
}
  
.contact_blk form textarea::-webkit-scrollbar-thumb {
	background-color:var(--color-red);
	border-radius: 5px;
	cursor: pointer;
}
.contact_blk form textarea:hover{
	border-top: transparent;
	border-left: transparent;
	border-right: transparent;
	border-bottom: var(--color-white) 3px solid;
}
.contact_blk form textarea:focus{
	color:#fff;
	background: transparent;
	outline: none;
} 
.contact_blk form textarea::placeholder{
	color: #ffffffb9;
}



/* .contact_blk form span > i {
    color: #fff;
}
.contact_blk form span > i:after {
	right: 80px;
}
.contact_blk form span > input {
	width: 260px;
    background-color: #fff;
    color:#002f68;
    border: 0;
    padding: 0;
	border-radius: 8px;
	margin-bottom: 0;
}
.contact_blk form span > input:hover{
	border: transparent;
}
.contact_blk form textarea:focus{
	color:#fff;
	background: transparent;
	outline: none;
} 
.contact_blk form textarea::placeholder{
	color: #fff;
} */

.contact_blk form input[type=submit] {
	position: relative;
	width: 260px;
    padding: 10px;
	margin-bottom: 0;
    border-radius: 10px;
    font-size: 30px;
    background-color: #fff;
    color: #002f68;
    border:none;
    font-weight: 600;
    transition:linear .5s;
}
.contact_blk form input[type=submit]:hover {
    background-color:var(--color-red);
    color:var(--color-white);
	transition:linear .5s;
}
.contact_blk form input::after {
	content: ">>";
	position: absolute;
	z-index: 9;
    background-color: #fff;
    color:#002f68;
	width: 50px;
	height: 50px;
	right: 50px;
	top: 50px;
    padding: 0;
	border-radius: 8px;
	margin-bottom: 0;
	border:#f00 1px solid;
}
/* contact end here */




/* footer start here */
footer{
	padding: 80px 0;
}
footer p{
	font-size:24px;
    color: var(--color-light);
    line-height: 29px;
	margin: 15px 0;
	text-align: left;
}
.footermenu{
	padding: 0;
}
.footermenu ul{
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	flex-direction: row;
}
.footermenu ul li{
	width: 200px;
}
.footermenu ul li a{
	font-size: 28px;
	line-height: 60px;
	color:var(--color-black);
	text-decoration: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.footermenu ul li a:hover{
	color:var(--color-red);
}


footer .upper-footer{
	padding: 40px 0;
}
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{
	padding: 60px 0 15px 0;
    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: 24px;
	margin: 0;
	position: relative;
	padding: 0 10px 0 0;
}
footer .footer-bottom h6::after{
	content: "\f111";
    font-family: "FontAwesome";
    font-size: 12px;
    position: absolute;
    right: -17px;
    top: 8px;
}
footer .footer-bottom a{
	font-size: 24px;
	text-decoration: none;
	color: var(--color-light);
	padding: 0 0 0 0;
}
footer .footer-bottom a:hover{
	color: var(--color-red);
}

.gray_border{
	border-top: #c6c6c6 2px solid;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .social{
	color:var(--color-black);
}
footer .social h6{
	font-size: 30px;
	color:var(--color-black);
	padding-bottom: 30px;
}
footer .social ul{
    list-style: none;
    display: flex;
    justify-content: start;
    margin: 0;
    padding: 0;
    column-gap: 25px;
}
footer .social ul li{
	list-style: none;
	/* width: auto; */
}
footer .social ul li a{
	color: #919191;
	border-radius: 50px;
	transition: ease-in-out .2s;
	font-size: 35px;
}
/* footer .social ul li a:hover{
	color:var(--color-red);
	transition: ease-in-out .2s;
	border:var(--color-red) 2px solid;
	box-shadow: 4px 8px 8px 2px rgba(66, 66, 66, 0.15);
} */
footer .social ul li a i{
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border: #919191 2px solid;
    border-radius: 50px;
}
footer .social ul li a i:hover{
	color:var(--color-red);
	transition: ease-in-out .2s;
	border:var(--color-red) 2px solid;
	box-shadow: 4px 8px 8px 2px rgba(66, 66, 66, 0.15);
}

footer .conect{
	width: 460px;
	padding: 0;
}
footer .conect ul{
	display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}
footer .conect ul li{
	width: 100%;
	color: var(--color-black);
	padding: 0 0 20px 0;
}
footer .conect ul li a{
	color:var(--color-black);
	transition: ease-in-out .2s;
	text-decoration: none;
	font-size: 24px;
	font-weight: 400;
}
footer .conect ul li a:hover{
	color:var(--color-red);
	transition: ease-in-out .2s;
}


/*.footerLink{}
.footerLink ul{
	display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: nowrap;
}
.footerLink ul li{
	border-right: #000 1px solid;
}
.footerLink ul li a{
	font-size: 22px;
	line-height: 22px;
	display: flex;
	padding: 0 25px;
	align-items: center;
	justify-content: space-around;
	align-content: center;
	flex-wrap: wrap;
	flex-direction: row;
}
.footerLink ul li:last-child{
	border-right:none;
}
.footerLink ul li:nth-child(1){
	background-color: #f00 1px solid;
}*/
.footerLink{
	padding: 0 10px;
}
.footerLink ul li{
	display:inline-block;
	font-size: 22px;
	line-height: 22px;
	border-right: #000 1px solid;
}
.footerLink ul li a{
	padding: 0 15px;
}
.footerLink ul li:last-child{
	border-right:none;
}
/* footer end here */

.iti {
    width: 100%;
}
.iti__selected-dial-code{
	color: #fff;
}
body .contact_blk form .iti__search-input{
	background-color: #002f68;
	border: 1px solid #000;
	border-radius: 5px;
	padding: 5px 15px;
}
body .contact_blk form .iti__arrow {
    width: 0;
    height: 0;
    border-top: var(--iti-arrow-height) solid #fff;
}
body .contact_blk form .error{
	color: var(--color-red);
	margin-bottom: 15px;
}