*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
img{
	max-width: 100%;
}
:root{
	--primary-color: #f60;
	--secondary-color: #000;
}
.text-justify{
	text-align: justify;
}

/* header  */
.navbar-brand img{
	width: 125px;
}
.btn-style{
	text-decoration: none;
	display: inline-block;
	font-size: 18px;
	font-weight: 600;
	padding: 7px 15px;
	border-radius: 5px;
	background-color: var(--primary-color);
	color: #fff;
	transition: ease 0.4s;
}
.btn-style:hover{
	background-color: var(--secondary-color);
	color: #fff;
}
.nav-link{
	font-size: 17px;
	font-weight: 500;
	margin: 0 8px;
	color: var(--secondary-color);
}
.nav-link:hover{
	color: var(--primary-color);
}

/* banner  */
.banner{
	position: relative;
	background-color: #fffcf8;
	overflow: hidden;
}


/* Business plan */
.business-planning{
	padding: 50px 0;
}
.single-plan {
    padding: 15px;
    border: 1px solid #e7e7e7;
    box-shadow: inset 0 0 10px 5px #f1f1f1;
    transition: 0.4s;
}
.single-plan:hover{
	transform: translateY(-10px);
}

/* about */
.about{
	padding: 0 0 50px;
}

/* services */
.services{
	padding: 50px 0 80px;
	background-color: #eaeaec;
	background-image: url("../image/service-bg.jpg");
	background-attachment: fixed;
	position: relative;
}
.single-service{
	position: relative;
	padding: 50px 20px 20px;
	border-radius: 10px;
	background-color: #ffffff26;
	color: #fff;
	backdrop-filter: blur(8px);
	height: 100%;
}
.service-name{
	display: inline-block;
	position: absolute;
	top: -32px;
	width: 50%;
	left: 0;
	right: 0;
	margin: 10px auto;
	border-radius: 50px;
	padding: 10px 20px;
	color: #000;
	background-color: #fffffff7;
}
.serv-mrg{
	margin-top: 50px;
}

/* why-choose */
.why-choose{
	padding: 80px 0;
}
.feature{
	position: relative;
	margin: 20px 0;
	border-radius: 5px;
	padding: 15px 15px;
	background-color: #ebebeb;
}
.feature-icon {
    width: 100px;
    border-radius: 5px;
    background-color: #ffffff;
    padding: 10px;
    margin-bottom: 10px;
}
.feature-txt {
    width: 100%;
}

/* business-steps */
.business-steps{
	padding: 0 0 50px;
}
.step-wrapper{
	position: relative;
	border: 2px solid #00000047;
	border-radius: 50%;
	padding: 20px;
	width: 320px;
	margin: auto;
	height: 320px;
}
.sn{
	position: absolute;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--primary-color);
	color: #fff;
	border: 3px solid #fff;
	box-shadow: 0 0 10px 5px #f3f3f3;
	padding: 4px;
	right: 0;
	top: 8%;
	font-size: 22px;
	text-align: center;
}
.step{
	border-radius: 50%;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 10px 5px #f3f3f3;
	padding: 20px;
}
.arrow{
	position: absolute;
	right: -30%;
	width: 60px;
	top: 45%;
}
@media only screen and (max-width: 1399px) {
	.arrow{
		right: -20%;
	}
	.service-name{
		width: 55%;
	}
}
@media only screen and (max-width: 1199px) {
	.arrow{
		right: -35%;
	}
	.arrow2 {
		top: 114%;
		transform: rotate(120deg);
		left: 60%;
	}
	.service-name{
		width: 62%;
	}
}
@media only screen and (max-width: 991px) {
	.arrow{
		right: -15%;
	}
	.service-name{
		width: 71%;
	}
}
@media only screen and (max-width: 767px) {
	.arrow{
		display: none;
	}
}

/* platform */
.platforms{
	padding: 50px 0;
}
.single-platform{
	text-align: center;
	background: #fff;
	
	transition: 0.4s;
}
.platform-text{
	padding: 20px;
	border: 1px dashed #b6b6b6;
	border-top: none;
}
.single-platform:hover{
	transform: scale(1.04);
}

/* footer */
.footer{
	margin-top: 50px;
	padding: 50px 0 0;
	background-color: antiquewhite;
}
.contact-detail{
	padding: 10px 0;
	border-bottom: 1px solid #fff;
}
.foot-contact a{
	text-decoration: none;
	color: #000;
}
.foot-contact i{
	font-size: 20px;
	padding: 10px;
	border-radius: 50%;
	background-color: #fff;
	color: var(--primary-color);
	width: 40px;
	height:40px;
	margin-bottom: 10px;
}
.foot-links ul{
	padding-left: 5px;
}
.foot-links ul li{
	list-style: none;
}
.foot-links ul li a{
	color: #000;
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
	transition: ease-in-out 0.4s;
}
.foot-links ul li a:hover{
	margin-left: 8px;
	color: var(--primary-color);
}
.copyright{
	padding: 15px 0;
	background-color: #100f0f;
	text-align: center;
	border-radius: 40px 40px 0 0;
}
.social-icon {
	margin-bottom: 0px;
}
.social-icon ul li{
	list-style: none;
	display: inline-block;
	margin: 0 5px;
}
.social-icon ul li a{
	text-decoration: none;
	display: inline-block;
	text-align: center;
	padding: 5px;
	width: 35px;
	height:35px;
	border-radius: 50%;
	color: var(--primary-color);
	background-color: #fff;
	transition: ease-out 0.4s;
}
.social-icon ul li a:hover{
	background-color: #000;
	color: #fff;
}
.copyright{
	background-image: url("../image/bg-footer.png");
}
.copyright p{
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	color: #fff;
}
.copyright p a{
	text-decoration: none;
	color: var(--primary-color);
}
