@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

:root{
	--theme-color-primary: #FFAB12;
	--theme-color-secondary: #47C2C8;
	--text-color:#2d3958;
}
.color-theme{
	color:var(--theme-color-primary);
}

/*** font css ***/
.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/*** Button ***/
.btn-theme{
	padding:10px 20px;
	border-radius:5px;
	background:var(--theme-color-primary);
	color:#fff;
	font-weight:bold;
	display:inline-block;
	transition:all ease .3s;
}
.btn-theme:hover{
	padding-right:30px;
	padding-left:40px;
	color:#fff;
	background:var(--theme-color-secondary);
}
.btn-default{
	padding:20px 30px;
	display:inline-block;
	border-radius:30px;
	color:#fff;
	font-weight:bold;
	background:var(--theme-color-secondary);
	transition:all ease .3s;
}
.btn-default:hover{
	color:#fff;
}
.btn-default-2{
	padding:20px 30px;
	display:inline-block;
	color:#fff;
	font-weight:bold;
	background:var(--theme-color-primary);
	transition:all ease .3s;
}
.btn-default-2:hover{
	color:#fff;
}
.btn-get-link{
	padding:10px 25px;
	color:#fff;
	display:inline-block;
	border-radius:10px;
	background:var(--theme-color-primary);
	transition:all ease .3s;
}
.btn-get-link:hover{
	color:rgba(255,255,255,.5);
	background:var(--theme-color-secondary);
}
.btn-get-trail{
	background:var(--theme-color-secondary);
}

/*** Index ***/
.top-bar{
	background:var(--theme-color-secondary);
	height:32px;
	width:100%;
	position:fixed;
	z-index:2;
}
.company-since{
	padding-top:6px;
	font-size:14px;
	color:#fff;
}
.contact-company{
	padding-top:6px;
	font-size:14px;
	color:#fff;	
}
.top-bar a{
	color:#fff;
}
.fixed-top{
	top:32px;
}
.btn-login{
	padding:6px 20px !important;
	margin:0 10px;
	border-radius:30px;
	background:var(--theme-color-primary);
	color:#fff !important;
	transition:all ease .3s;
}
.btn-login:hover{
	background:var(--theme-color-secondary);
}
.bubble-shape-1{
	display:block;
	position:absolute;
	top:0;
	right:-5em;
	width:600px;
	height:600px;
	background:var(--theme-color-primary);
	border-radius:50%;
	opacity:.75;
}
.bubble-shape-2{
	display:block;
	position:absolute;
	top:0;
	right:-20%;
	width:600px;
	height:600px;
	background:var(--theme-color-primary);
	border-radius:50%;
	opacity:.75;
	transform: translate(20px, -50px);
	animation-name: bs-2;
	animation-duration: 5s;
}
@keyframes bs-2{
	0%{
		opacity:0;	
		right:-30%;
	}
	25%{
		opacity:.85;
		right:-20%;
	}
}
.bubble-shape-3{
	display:block;
	position:absolute;
	top:0;
	right:0;
	width:600px;
	height:600px;
	background:var(--theme-color-primary);
	border-radius:50%;
	opacity:.35;
	transform: translate(20px, -50px) skew(35deg, 10deg);
	animation-name: bs-3;
	animation-duration: 5s;
}
@keyframes bs-3{
	0%{
		opacity:0;	
		top:-10%;
	}
	25%{
		opacity:.35;
		top:0;
	}
}
.bubble-shape-4{
	display:block;
	position:absolute;
	top:-50%;
	left:-30%;
	width:1200px;
	height:1000px;
	background:var(--theme-color-secondary);
	border-radius:50%;
	opacity:.15;
	transform:translate(30%, -50px) skew(20deg, 0deg);
	animation-name: bs-4;
	animation-duration: 5s;
}
@keyframes bs-4{
	0%{
		opacity:0;	
		left:-35%;
	}
	25%{
		opacity:.15;
		left:-30%;
	}
}
.intro-company{
	width:50%;
	margin-top:150px;
	position:relative;	
}
.intro-company h3{
	margin-bottom:20px;
	font-size:5em;
	color:var(--theme-color-primary);
	text-transform:uppercase;
}
.intro-company h3 span{
	color:var(--theme-color-secondary);
}
.intro-company h4{
	margin-bottom:20px;
	font-size:16px;
}
.intro-company h4 span{
	animation-name:typing;
	animation-duration: 1s;
	animation-iteration-count: infinite;
}
@keyframes typing{
	0%{
		opacity:1;	
	}
	50%{
		opacity:.5;
	}
	100%{
		opacity:1;
	}
}
.intro-company p{
	color:var(--text-color) !important;
	font-size:12pt;
	margin:0;
	padding:0;
	width:100% !important;
}
.typed-cursor{
	opacity: 1;
}
.typed-cursor.typed-cursor--blink{
	animation: typedjsBlink 0.7s infinite;
	-webkit-animation: typedjsBlink 0.7s infinite;
	animation: typedjsBlink 0.7s infinite;
}
@keyframes typedjsBlink{
	50% { opacity: 0.0; }
}
@-webkit-keyframes typedjsBlink{
	0% { opacity: 1; }
	50% { opacity: 0.0; }
	100% { opacity: 1; }
}
#typed-2{
	padding:5px 15px;
	background:var(--theme-color-secondary);
	text-transform:uppercase;
	font-weight:bold;
	color:#fff;
}
#billboard{
	margin-top:60px;
	background:#fff;
	box-shadow:0 0 10px rgba(0,0,0,0.15);
	border-radius:10px;
}
#billboard .stats-item-grid{
	margin-bottom:60px;
	background:#fff;
	box-shadow:0 0 15px rgba(100,100,100,.15);
	border-radius:20px;
	position:relative;
	overflow:hidden;
}
#billboard .stats-item {
	padding:15px;
}
#billboard .stats-item span {
	color:#000;
	font-size:1.5em;
	display: block;
	font-weight: 700;
	margin-bottom: 10px;
	padding-bottom: 10px;
	position: relative;
}
#billboard .stats-item p {
	padding: 0;
	margin: 0;
	color:var(--theme-color-secondary);
	font-family: var(--font-primary);
	font-size:12px;
	font-weight: 600;
}
.our-award{
	width:50%;
	margin-top:100px;
	display:flex;
	align-items:center;
	position:relative;
}
.trophy{
	animation-name: example;
	animation-duration: 4s;
	animation-iteration-count: infinite;
	transition:all ease .3s;
}
.trophy img{
	max-height:450px;
}
.icon-dialogue{
	position:absolute;
	top:25px;
	bottom:0;
	left:20%;
	width:400px;
	opacity:.25 !important;
}
.grand-achievement{
	padding:0px 0 0 15px;
	position:relative;
	z-index:1;
	/*border-radius:20px;
	background:#f8f8f8;
	box-shadow:0 0 5px rgba(0,0,0,.15);
	*/
}
.grand-achievement:before{
	/*content:'';
	position:absolute;
	left:-22px;
	top:50%;
	width:20px;
	height:20px;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;   
	border-right:20px solid #f8f8f8; 
	transform:translate(0,-50%);*/
}
.grand-achievement .icon-box{
	width:80%;
}
.grand-achievement .icon-box+.icon-box {
	margin-top: 50px;
}
.grand-achievement .icon-box .icon {
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	background: #eee;
	border-radius: 6px;
	transition: 0.5s;
}
.grand-achievement .icon-box .icon i {
	color:var(--theme-color-secondary);
	font-size: 32px;
}
.grand-achievement .icon-box:hover .icon {
	background:var(--theme-color-primary);
}
.grand-achievement .icon-box:hover .icon i {
	color: #fff;
}
.grand-achievement .icon-box h2{
	font-size:42px !important;
	margin-bottom:20px !important;
	color:var(--theme-color-primary) !important;
}
.grand-achievement .icon-box h2 span{
	color:var(--theme-color-secondary) !important;
}
.grand-achievement .icon-box .title {
	margin-left:0;
	font-weight: 700;
	margin-bottom: 10px;
	font-size: 18px;
	text-transform: uppercase;
}
.grand-achievement .icon-box .title a {
	color: #343a40;
	transition: 0.3s;
}
.grand-achievement .icon-box .title a:hover {
	color: #68A4C4;
}
.grand-achievement .icon-box p.description {
	margin-right:0 !important;
	margin-bottom:0 !important;
	margin-left: 0px !important;
	line-height: 24px;
	font-size: 14px;
	color:var(--text-color) !important;
	width:100% !important;
}
.vcr{
	width:50%;
	margin-top:100px;
}
.vcr .video-box {
	position: relative;
}

.vcr .video-box img {
	box-shadow:15px 15px 10px rgba(0,0,0,.25);
	transition:all ease .3s;
}
.vcr .video-box img:hover{
	box-shadow:20px 20px 3px rgba(0,0,0,.25);
}

.vcr .play-btn {
	width: 94px;
	height: 94px;
	background: radial-gradient(#68A4C4 50%, rgba(104, 164, 196, 0.4) 52%);
	border-radius: 50%;
	display: block;
	position: absolute;
	left: calc(50% - 47px);
	top: calc(50% - 47px);
	overflow: hidden;
}

.vcr .play-btn::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
	z-index: 100;
	transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.vcr .play-btn::before {
	content: "";
	position: absolute;
	width: 120px;
	height: 120px;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-animation: pulsate-btn 2s;
	animation: pulsate-btn 2s;
	-webkit-animation-direction: forwards;
	animation-direction: forwards;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: steps;
	animation-timing-function: steps;
	opacity: 1;
	border-radius: 50%;
	border: 5px solid rgba(104, 164, 196, 0.7);
	top: -15%;
	left: -15%;
	background: rgba(198, 16, 0, 0);
}

.vcr .play-btn:hover::after {
	border-left: 15px solid #68A4C4;
	transform: scale(20);
}

.vcr .play-btn:hover::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border: none;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
	z-index: 200;
	-webkit-animation: none;
	animation: none;
	border-radius: 0;
}
.hero{
	padding:60px 0; 
	background:#eff9f9;
}
.hero .stats-item-grid{
	margin-top:-60px;
	margin-bottom:60px;
	background:#fff;
	box-shadow:0 0 15px rgba(100,100,100,.15);
	border-radius:20px;
	position:relative;
	overflow:hidden;
}
.hero .stats-item {
	padding: 30px;
	background:#fff;
    border-radius: 10px;
}
.hero .stats-item span {
	color:#000;
	font-size: 32px;
	display: block;
	font-weight: 700;
	margin-bottom: 15px;
	padding-bottom: 15px;
	position: relative;
}
.hero .stats-item span:after {
/*  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;*/
}
.hero .stats-item p {
	padding: 0;
	margin: 0;
	color:var(--theme-color-secondary);
	font-family: var(--font-primary);
	font-size: 15px;
	font-weight: 600;
}
.stats-item.--1, .stats-item.--2, .stats-item.--3, .stats-item.--4{
	position:relative;
	overflow:hidden;
}
.stats-item.--1:before{
	content:'';
	position:absolute;
	top:0;
	left:calc(-50%);
	width:100%;
	height:100%;
	background:url(../img/icon-qualified-advisors.svg) no-repeat;
	background-size:50px;
	background-position:center;
	opacity:.35;
	z-index:-1;
}
.stats-item.--2:before{
	content:'';
	position:absolute;
	top:0;
	left:calc(-40%);
	width:100%;
	height:100%;
	background:url(../img/icon-goals.svg) no-repeat;
	background-size:65px;
	background-position:center;
	opacity:.35;
	z-index:-1;
}
.stats-item.--3:before{
	content:'';
	position:absolute;
	top:0;
	left:calc(-40%);
	width:100%;
	height:100%;
	background:url(../img/icon-ventures-built.svg) no-repeat;
	background-size:65px;
	background-position:center;
	opacity:.35;
	z-index:-1;
}
.stats-item.--4:before{
	content:'';
	position:absolute;
	top:0;
	left:calc(-40%);
	width:100%;
	height:100%;
	background:url(../img/icon-trust-completed.svg) no-repeat;
	background-size:65px;
	background-position:center;
	opacity:.35;
	z-index:-1;
}
.stats-count{
	position:relative;
	display:flex;
	justify-content:center;
	transition:all ease .3s;
}
.stats-count:after{
	content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 3px;
    background: var(--theme-color-primary);
    left: 0;
    right: 0;
    bottom: 12px;
    margin: auto;
	transition:all ease .3s;
}
.stats-count:hover:after{
	width:36px;
}
.counterplus{
	/*position:absolute;
	top:5px;
	right:0;*/
	font-size:20px;
    font-weight: 700;
	display: block;
	padding-top:10px;
}
.customized-text h3{
	margin-bottom:20px;
}
.btn-get-demo{
	transition:all ease .3s;
}
.btn-get-demo:hover{
	filter: opacity(0.75);;
}

/*** Grid one ***/
.grid-1{
	position:relative;
	overflow:hidden;
}
.grid-1:before{
	content:'';
	position:absolute;
	top:100px;
	left:-250px;
	width:500px;
	height:500px;
	background:var(--theme-color-primary);
	border-radius:0 35% 50% 0;
	transform:rotate(45deg);
	opacity:.15;
}
.grid-1:after{
	content:'';
	position:absolute;
	bottom:50px;
	right:-250px;
	width:600px;
	height:800px;
	background:var(--theme-color-secondary);
	border-radius:20% 35% 10% 35%;
	transform:rotate(45deg);
	opacity:.15;
}
.ul-decimal{
	margin:0;
	padding-left:20px;
}
.ul-decimal li{
	margin-bottom:20px;
}
.ul-decimal li p{
	font-size:14px;
}
.grid-1-img{
	padding:2rem;
}
.grid-1-img img{
	transition:all ease .3s;
	box-shadow:0 0 0 rgba(0,0,0,.1);
}
.grid-1-img:hover img{
	box-shadow:0 0 20px rgba(0,0,0,.35);
	transform:scale(0.95);
}
.point-card{
	margin-bottom:20px;
	text-align:center;	
}
.point-card h6{
	font-size:14px;
	margin-bottom:0;
}
/*** our services & solutions ***/
.solutions{
	position:relative;
	overflow:hidden;
}
.solutions:before{
	content:'';
	position:absolute;
	top:50%;
	left:-250px;
	width:500px;
	height:600px;
	background:var(--theme-color-secondary);
	border-radius:30% 35% 20% 0;
	transform:rotate(45deg);
	opacity:.15;
}
.solutions:after{
	content:'';
	position:absolute;
	top:50%;
	right:-10%;
	width:1000px;
	height:1000px;
	background:var(--theme-color-primary);
	border-radius:20% 35% 10% 35%;
	transform:rotate(60deg) translate(0,-50%);
	opacity:.15;
}
.general-assist-card{
	margin-bottom:10px;
	padding:15px;
	background:#fff;
	box-shadow:0 0 5px rgba(0,0,0,.15);
}
/*** customized ***/
.customized{
	overflow:hidden;
}
.customized-bottom{
	margin-top:-100px;
}
.img-define-you{
	max-width:65%;
	transition:all ease .3s;
	transform:translate(0, 100px);
}
.img-define-you:hover{
	transform:translate(0, 90px);
}
/*** grid 2 ***/
.grid-2{
	background:#eff9f9;
}
.hover-img{
	padding: 2rem;
}
.hover-img img{
	transition:all ease .3s;
	box-shadow:0 0 0 rgba(0,0,0,.1);	
}
.hover-img:hover img{
	box-shadow:0 0 20px rgba(0,0,0,.35);
	transform:scale(0.95);
}
.table-pricing{
	background:#fff;
}
.table-pricing thead tr td{
	font-weight:bold;
	color:#fff;
}
.table-pricing thead tr td:first-child{
	background:#000;
}
.table-pricing thead tr td:nth-child(2){
	background:var(--theme-color-primary);
}
.table-pricing thead tr td:nth-child(3){
	background:var(--theme-color-secondary);
}
.table-pricing tr td{
	padding:15px;
}
.ori-price-off{
	text-decoration: line-through;	
}
.table-custom{
	background:#fff;
}
.table-custom thead tr td{
	font-weight:bold;
	padding:15px;
}
.table-custom tr td{
	padding:15px;
}
/*** grid 3 ***/
.grid-3{
	padding:100px 0;
	background:#efefef;
}
.partner-affiliate-card{
	padding:3em;
	background:#f7f7f7;
	position:relative;
}
.partner-affiliate-text{
	position:relative;
	max-width:450px;
}
.affliliate-partner{
	position:absolute;
	right:0;
	bottom:0;
	max-width:450px;
}
/*** Our team ***/
.team{
	position:relative;
	overflow:hidden;
}

.team .member .member-img{
	position:relative;
}
.team .member .member-img:before{
	content:'';
	position:absolute;
	top:50%;
	left:50%;
	width:150px;
	height:150px;
	background:var(--theme-color-secondary);
	opacity:.85;
	border-radius:50%;
	transform: translate(-50%, -50%) scale(0.95);
	filter:blur(5px);
	transition:all ease .3s;
}
.team .member .member-img:hover:before{
	transform: translate(-50%, -45%) scale(1.1);
	filter:blur(8px);
	opacity:.75;
	animation-name: change-color;
	animation-duration: 2s;
	animation-iteration-count: infinite;
}
@keyframes change-color {
	0%{
		filter:blur(8px);
		opacity:.75;
	}
	50%{
		transform: translate(-50%, -45%) scale(0.95);
		filter:blur(20px);
		opacity:1;
	}
	100%{
		filter:blur(8px);
		opacity:.75;
	}
}
.team .member .member-img:hover .message-card{
	transform:translate(-30%, -20%);
	opacity:1;
}
.message-card{
	padding:10px 20px;
	position:absolute;
	top:60%;
	left:20%;
	transform:translate(-30%, 20%);
	background:var(--theme-color-primary);
	color:#fff;
	font-size:13px;
	text-shadow:1px 1px 5px rgb(0 0 0 / 65%);
	border-radius:10px;
	transition:all ease .3s;
	opacity:0;
}
.message-card:before{
	content:'';
	position:absolute;
	top:-20px;
	right:50%;
	width: 0; 
	height: 0; 
	border-left:10px solid transparent;
	border-right:5px solid transparent;
	border-bottom:32px solid var(--theme-color-primary);
	z-index:-1;
	transform: rotate(35deg) translate(0, 0);
}
.team .member .member-img img{
	transition:all ease .3s;
	position:relative;
	transform: translate(0px, 20px);
	max-height:350px;
}
.team .member .member-img img:hover{
	transform:scale(1) translate(0px, 0px);
	/*filter:brightness(.5);*/
}
/*** grid 5 ***/
.grid-5{
	padding:100px 0;
	background:var(--theme-color-secondary);
}
.whatsapp-us{
	position:fixed;
	bottom:80px;
	right:15px;
	padding:5px 10px;
	width:45px;
	height:45px;
	background:#fff;
	box-shadow:0 0 5px rgba(0,0,0,.25);
	border-radius:50%;
	display:flex;
	align-items:center;
	transition:all ease .3s;
	z-index:1;
}
.whatsapp-us:hover{
	box-shadow:0 0 15px rgba(0,0,0,.5);
	transform:scale(1.2);
}
.whatsapp-us img{
	max-width:100%;
}
/*** Team experience ***/
.experience-card{
	padding:15px;
	margin-bottom:20px;
	text-align:center;
	background:#fff;
	border-radius:15px;
}
.experience-card h4{
	font-size:16px;
	font-weight:600;
	color:var(--theme-color-secondary);
}
.experience-card-icon{
	display:block;
	margin:0 auto 15px;
	padding:10px;
	width:65px;
	border-radius:50%;
	background:var(--theme-color-primary);
}
.tech-logo{
	margin:15px 0;
	padding:0;
}
.tech-logo li{
	list-style:none;
	display:inline-block;
	margin:6px;
}
.portfolio-wrap a{
	color:var(--theme-color-primary);
	transition:all ease .3s;
}
.portfolio-wrap a:hover{
	color:var(--theme-color-secondary);
}
/*** portfolio details ***/
.ul-numbering{
	padding:0;
	padding-left:24px;
	margin:0;	
}
.ul-numbering li{
	list-style:decimal;
	margin-bottom:10px;
}
/*** web3.0 ***/
.education-collection-box{
    background-color: #f5f7fd;
    margin-bottom: 24px;
    padding: 24px 27px;	
}
.solutions-item-card{
	margin-bottom:15px;
	display:flex;
	align-items:center;
	width:100%;
	border:1px solid #dcfbf2;
	border-radius:15px;
}
.solutions-icon{
	margin:10px;
	width:65px;
	height:auto;
	border-radius:50%;
	overflow:hidden;
	transition:all ease .3s;
}
.solutions-icon img{
	max-width:100%;
	transition:all ease .3s;
}
.solutions-item-card:hover img{
	transform:rotateY(180deg);
}
.solutions-content{
	width:65%;
	padding:15px;
	color:#fff;
}
.solutions-title{
	font-weight:bold;
	font-size:16px;
	color:#45c2c7;
}
.solutions-des{
	color:#888;
}
/*** web2.0 ***/
.keyword-card{
	padding:15px;
	background:radial-gradient(#fff 10%, #f6fdff);
	border-radius:15px;
	box-shadow:0 0 15px #d7eced;
}
.keyword-card h3{
	font-size:20px;
}
.keyword-card ul li{
	margin-bottom:5px;
}
/*** blog ***/
.toggle-archive{
	position:relative;
	padding-right:20px;
}
.toggle-archive[aria-expanded="true"]:before{
	transform:rotate(180deg);
}
.toggle-archive:before{
	content:"\f229";
	font-family:bootstrap-icons !important;
	font-size:12px;
	position:absolute;
	top:3px;
	right:0;
	transition:all ease .3s;
}
.collapse-archive{
	margin:5px 0px 0px;
}
.collapse-archive ul{
	padding:0;
	margin:0;
}
.collapse-archive li{
	padding:5px 0px 5px 25px;
	list-style:none;
	display:block;
	font-size:12px;
	text-transform:capitalize;
	position:relative;
}
.collapse-archive li:before{
	content:"\f132";
	font-family:bootstrap-icons !important;
	position:absolute;
	top:5px;
	left:10px;		
}
.collapse-archive li+li{
	padding-top:5px !important;
}

@media(min-width:1200px){
	.partner-affiliate-text{
		width:70%;
		max-width:none;
	}
}
@media(max-width:1200px){
	.grand-achievement .icon-box h2{
		font-size:32px !important;
	}
}
@media (max-width:992px){
	#hero{
		height:auto !important;
		padding-bottom:0px;
	}
	.bubble-shape-2{
		top: -20%;
		right: -50%;
	}
	.bubble-shape-3{
		top: -15%;
		right: 0;
	}
	.bubble-shape-4{
		top:0;
		width:1000px;
		height:600px;
	}
	.intro-company{
		width:100%;
		margin-top:120px;
	}
	.our-award{
		width:100%;
		margin-top:50px;
	}	
	.icon-dialogue{
		display:none;
	}
	.grand-achievement{
		padding:20px;
	}
	.grand-achievement .icon-box {
		width: 100%;
	}
	.vcr {
		width: 100%;
		margin-top:60px;
	}
	#billboard{
		background:transparent;
		box-shadow:none;
	}
	#billboard .stats-item-grid{
		background:transparent;
		box-shadow:none;
	}
	#billboard .stats-item {
		padding:20px;
		margin:5px;
		width:48%;
		background:#fff;
		box-shadow:0 0 15px rgba(0,0,0,.15);
	}
	#billboard .stats-item span{
		font-size:1.25rem;
	}
	
	.hero .stats-item-grid{
		background:transparent;
		box-shadow:none;
	}
	.hero .stats-item {
		padding:20px;
		margin:5px;
		width:48%;
		box-shadow:0 0 15px rgba(0,0,0,.15);
	}
	.hero .stats-item span{
		font-size:1.25rem;
	}
	.affliliate-partner{
		max-width:300px;
	}
	.partner-affiliate-text{
		max-width:400px;
	}
	.img-solution-services{
		max-width:65%;
		display:block;
		margin:0 auto;
	}
}
@media (max-width:768px){
	.company-since{
		display:none;
	}
	.btn-get-link{
		font-size:14px;
	}
	.affliliate-partner{
		margin-bottom:30px;
		position:relative;
		right:0;
		bottom:0;
		max-width:450px;
	}
}
@media (max-width:550px){
	.hero .stats-item{
		padding: 10px;
		margin: 0 0 10px 0;
	}
	.affliliate-partner{
		max-width:100%;
	}
}
@media (max-width:500px){
	#typed-2{
		margin-top:6px;
		display:inline-block;
	}
	.bubble-shape-2, .bubble-shape-3{
		display:none;
	}
	.trophy img{
		max-height:200px;
	}
	.btn-theme{
		font-size:14px;
	}
	#billboard{
		margin-top:20px;
		flex-wrap:wrap;
	}
	#billboard .stats-item{
		width:46.66%;
	}
	.hero .stats-item{
		padding:10px;
	}
	.hero .stats-item p{
		font-size:14px;
	}
}