@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
/*font-family: 'Montserrat', sans-serif;*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
/*font-family: 'Poppins', sans-serif;*/
*{
	box-sizing: border-box;
}
body{
	margin: 0;
	font-family: 'Montserrat', sans-serif;
}

.clear:{
		clear: both;}
.clear:after{width: 100%;
			display: table;
			content: "";
			position: relative;
			clear: both;
		}
.container{max-width: 1170px;
						margin: 0 auto;
					}
/***********/
p{
	font-size: 22px;
	font-weight: 500;
}
a,img{
	display: inline-block;
}
a{
	text-decoration: none;
}
img{
	width: 100%;
}
ul{
	margin: 0;
	padding: 0;
}
li{
	list-style: none;
}
/****header****/
header,footer{
	background: #6a030b;
}
.header-section{
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	position: relative;
	padding: 3px 0;
}
.logo{
	width: 7%;
	line-height: 0;
}
/*.logo img{
	border-radius: 10px;
}*/
.menulist{
	display: flex;
	justify-content: space-between;
}
.menulist li{
	padding: 0 10px;
}
.menulist li:first-child{
	padding-left: 0;
}
.menulist li:last-child{
	padding-right: 0;
}
.menulist li a{
	color: #fff;
	font-size: 18px;
	transition: 0.5s;
	padding: 8px;
	font-weight: 600;
	position: relative;
	font-family: 'Poppins', sans-serif;
}
/*.menulist li a:hover{
	
}*/
.menulist li:hover a{
	color: #fec633;
}
.menulist li a:after{
	background: #fec633;
	width: 0;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: 50%;
	content: "";
	transition: 0.5s;
}
.menulist li a:hover:after{
	width: 100%;
	left: 0;
}
/**mobile menubtn***/
.menu{
	display: none;
}
.menuholder{
	display: none;
}


/****banner****/
.banner{
	position: relative;
	box-shadow: 0px 3px 5px 1px #bebebe;
	overflow: hidden;
}
.banner-content{
	position: absolute;
	top: 50%;
	right: 25%;
	transform: translate(0,-50%);
}
.banner-content p{
	font-size: 45px;
	font-weight: 800;
	color: #6a030b;
	margin: 0 0 20px 0;
}
.banner-content h1{
	font-size: 55px;
	font-weight: bold;
	color: #00b050;
	margin: 0;
}
/***h2 design***/
.section-head p{
	font-size: 35px;
	font-weight: bold;
	color: #6a030b;
	margin: 0 0 15px 0;
	/*text-transform: capitalize;*/
	position: relative;
	left: -500px;
	transition: 1s;
}

.virtual-section.in-view .section-head p{
	left: 0;
}
.trained-section.in-view .section-head p{
	left: 0;
}
.section-head h2{
	font-size: 40px;
	color: #00b050;
	font-weight: bold;
	margin: 0 0 30px 0;
	/*text-transform: capitalize;*/
	opacity: 0;
	right: -500px;
	transition: 1.1s;
	position: relative;
}
.virtual-section.in-view .section-head h2{
	opacity: 1;
	right: 0;
}
.trained-section.in-view .section-head h2{
	opacity: 1;
	right: 0;
}
/**another section head***/
.section-head-two{
	text-align: center;
}
.section-head-two h3{
	font-size: 40px;
	color: #00b050;
	font-weight: bold;
	margin: 0 0 30px 0;
	/*text-transform: capitalize;*/
}
.section-head-two h3 span{
	color: #6a030b;
}
.section-head-two p{
	font-size: 22px;
	margin: 20px auto;
	width: 65%;
	

}
/****virtual-section***/
.virtual-section{
	width: 100%;
	padding: 70px 0;
	box-shadow: 0px 3px 5px 1px #bebebe;
}
.virtual-section-holder{
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.virtual-img{
	line-height: 0;
	position: relative;
	overflow: hidden;
	opacity: 0;
	transform: scale(0.5);
	transition: 1s;
	
}
.virtual-section.in-view .virtual-img{
	opacity: 1;
	transform: scale(1.0);
}
.virtual-img img{
	transform: scale(1.0);
	transition: 0.8s;
}
.virtual-img:hover img{
	transform: scale(1.1);
}
.virtual-content{
	margin-left: 80px;
	width: 65%;
	overflow: hidden;
	position: relative;
}

.virtual-content-details p{
	margin: 38px 0;
	font-size: 22px;
	text-align: left;
	line-height: 32px;
	position: relative;
	opacity: 0;
	transform: scale(0);
	transition: 1.2s;
}
.virtual-section.in-view .virtual-content-details p{
	opacity: 1;
	transform: scale(1.0);
}
.read-more-btn{
	color: #ffff;
	padding: 15px 30px;
	background: #6a030b;
	border-radius: 10px;
	font-weight: bold;
	font-size: 18px;
	transition: 0.5s;
	position: relative;
}
.read-more-btn:hover{
	color: #fec633;
	background: #a0030c;
}
.read-more-btn:hover:after{
	background: #6a030b;
}
.read-more-btn:after{
	background: #a0030c;
	width: 30%;
	height: 100%;
	position: absolute;
	content: "";
	right: 0;
	top: 0;
	border-radius: 0 10px 10px 0;
	transition: 0.5s;
}
.read-more-btn span{
	z-index: 999999;
    position: relative;
    margin-left: 30px;
}
.bold-part{
	color: #6a030b;
	font-weight: 600;
}
/***personal-coach****/

.personal-coach-section{
	padding: 70px 0;
	text-align: center;
	background: #e5e5e5;
	width: 100%;
	box-shadow: 0px 3px 5px 1px #bebebe;
}
.personal-coach-img{
	width: 100%;
	padding: 100px 0 50px 0;
	text-align: center;
	overflow: hidden;
	position: relative;
}
.growth-logo{
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%,0);
	width: 20%;
	z-index: 9;
}
.extra-logo{
	width: 80%;
	display: inline-block;
	opacity: 0;
	transform: scale(0);
	transition: 0.5s;
}
.personal-coach-img.in-view .extra-logo{
	opacity: 1;
	transform: scale(1.0);
}
.extra-box{
	display: flex;
	justify-content: space-between;
	align-items: center;

}
.extra-box-img{
	width: 20%;
	position: relative;
	transition: 0.5s;
	border-radius: 45px 45px 20px 20px;
	top: -610px;
	opacity: 0;
}
.extra-box-img:hover{
	box-shadow: 4px 4px 6px 3px #bebebe;
}
.extra-box-img:hover .extra-box-icon{
	transform: rotateY(180deg);
}
.extra-box-img h2{
	position: absolute;
	display: flex;
    justify-content: center;
    align-items: center;
    left: 25%;
    top: 4%;
    width: 50%;
	font-size: 20px;
	color: white;
	font-weight: bold;
}
.extra-box-content{
	position: absolute;
	top: 30%;
	left: 50%;
	width: 90%;
	transform: translate(-50%,0);
}
.extra-box-icon{
	width: 38%;
	display: inline-block;
	margin-bottom: 20px;
	transition: 0.9s;
	transform: rotateY(0);
	position: relative;
}
.extra-box-content p{
	font-size: 18px;
	line-height: 22px;
	margin: 0;
	padding: 0 20px;
}
.extra-lines p{
	font-size: 35px;
	color: #6a030b;
	margin: 0 0 30px 0;
	font-weight: 600;
	position: relative;
}
.extra-lines p span{
	color: #00b050;
}
.extra-lines p:before{
	background: #00b050;
	width: 7%;
    height: 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0,-50%);
}
.extra-lines p:after{
	background: #00b050;
	width: 7%;
    height: 4px;
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0,-50%);
}
.owner-short-name{
	color:  #00b050;
	font-weight: bold;
}
.owner-det{
	color: #6a030b;
	font-weight: bold;
}
.personal-coach-img.in-view .extra-box-img{
			top: 0;
			opacity: 1;
}
.personal-coach-img.in-view .extra-box-img:first-child{
	transition: all 1s ease-in-out 0.4s;
}
.personal-coach-img.in-view .extra-box-img:nth-child(2){
	transition: all 1s ease-in-out 0.8s;
}
.personal-coach-img.in-view .extra-box-img:nth-child(3){
	transition: all 1s ease-in-out 1.2s;
}
.personal-coach-img.in-view .extra-box-img:nth-child(4){
	transition: all 1s ease-in-out 1.6s;
}
/***trained-section****/
.trained-section{
	padding: 70px 0;
	width: 100%;
	box-shadow: 0px 3px 5px 1px #bebebe;
	overflow: hidden;
}
.trained-section-holder{
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.trained-section-content{
	width: 65%;
	margin-right: 80px;
}
.trained-content-details p{
	margin: 20px 0;
	font-size: 22px;
	text-align: left;
	line-height: 34px;
	opacity: 0;
	transform: scale(0);
	transition: 1.2s;
}
.trained-section.in-view .trained-content-details p{
	opacity: 1;
	transform: scale(1.0);
}
.trained-section-img{
	transition: 1s;
	transform: scale(0);
	opacity: 0;
}
.trained-section.in-view .trained-section-img{
	opacity: 1;
	transform: scale(1.0);
}
/***role-section***/
.role-section{
	padding: 70px 0;
	width: 100%;
	background: #f2efef;
	text-align: center;
	box-shadow: 0px 3px 5px 1px #bebebe;
}
.role-section-img{
	margin: 50px 0;
	overflow: hidden;
	text-align: center;
	padding: 0 150px;
}
.role-img-bar{
	position: relative;
	margin-bottom: 50px;
	transition: 0.5s;
	border-radius: 11px;
	opacity: 0;
	overflow: hidden;
}
.role-icon{
	position: absolute;
	left: 5%;
	top: 50%;
	transform: translate(0,-50%) rotateY(0deg);
	width: 9%;
	transition: 1s;
}
.role-icon:hover{
	transform: translate(0,-50%) rotateY(360deg);
}
.role-img-bar:before{
	position: absolute;
    top: 0;
    left: -50%;
    display: block;
    content: '';
    width: 15%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
    z-index: 1;
    transition: 1s;
}
.role-img-bar:hover:before{
	left: 100%;
}
.role-img-bar:hover{
	box-shadow: 5px 5px 8px 3px #bebebe;
}
.role-img-bar:nth-child(odd){
	left: -825px;
}
.role-img-bar:nth-child(even){
	right: -825px;
}
.role-section-img.in-view .role-img-bar:nth-child(odd){
	opacity: 1;
	left: 0;
}
.role-section-img.in-view .role-img-bar:nth-child(even){
	opacity: 1;
	right: 0;
}
.role-section-img.in-view .role-img-bar:nth-child(1){
	transition: all 0.5s ease-in-out 0s;
}
.role-section-img.in-view .role-img-bar:nth-child(2){
	transition: all 0.5s ease-in-out 0.3s;
}
.role-section-img.in-view .role-img-bar:nth-child(3){
	transition: all 0.5s ease-in-out 0.6s;
}
.role-section-img.in-view .role-img-bar:nth-child(4){
	transition: all 0.5s ease-in-out 0.9s;
}
.role-section-img.in-view .role-img-bar:nth-child(5){
	transition: all 0.5s ease-in-out 1.2s;
}
.role-img-content{
	text-align: left;
	position: absolute;
	top: 50%;
	left: 22%;
	transform: translate(0,-50%);
}
.role-img-content h5{
	font-size: 22px;
	font-weight: bold;
	/*text-transform: capitalize;*/
	margin-bottom: 10px;
}
.role-img-bar:nth-child(odd) h5{
	color: #00b050;
				
}
.role-img-bar:nth-child(even) h5{
	color: #6a030b;
				
}
.role-img-content p{
	margin: 0;
	font-size: 18px;
}
/***suitable for***/
.suitable-for-section{
	padding: 70px 0;
	width: 100%;
	text-align: center;
	box-shadow: 0px 3px 5px 1px #bebebe;
}
.suitable-for-section p{
	text-align: left;
	line-height: 34px;
}
.suitable-for-img{
	margin: 50px auto;
}
.main-circle{
	position: relative;
}
.main-circle{
	width: 55%;
	margin: 50px auto;
	opacity: 0;
	transform: scale(0);
	transition: 0.5s;
}
.other-circle{
	position: absolute;
	left: 0;
	top: 0;
	width: 20%;
	opacity: 0;
	transition: 1s;
}
/*.circle1{                      
 top: 48px;
 left: 170px;
}
.circle2{
	top: 167px;
	left: 45px;
}
.circle3{
	top: 333px;
	left: 45px;
}
.circle4{
	top: 450px;
	left: 170px;
}
.circle5{
	top: 450px;
	left: 336px;
}
.circle6{
	top: 333px;
	left: 456px;
}
.circle7{
	top: 167px;
	left: 455px;
}
.circle8{
	top: 48px;
	left: 336px;
}*/
.circle1{                      
 top: 8%;
 left: 27%;
}
.circle2{
	top: 27%;
	left: 7%;
}
.circle3{
	top: 54%;
	left: 7%;
}
.circle4{
	top: 71%;
	left: 27%;
}
.circle5{
	top: 71%;
	left: 53%;
}
.circle6{
	top: 54%;
	left: 73%;
}
.circle7{
	top: 27%;
	left: 73%;
}
.circle8{
	top: 8%;
	left: 53%;
}

.suitable-for-img.in-view .main-circle .other-circle:nth-child(2){
	transition: all 1s ease-in-out 1s;opacity: 1;
}
.suitable-for-img.in-view .main-circle .other-circle:nth-child(3){
	transition: all 1s ease-in-out 1.2s;opacity: 1;
}
.suitable-for-img.in-view .main-circle .other-circle:nth-child(4){
	transition: all 1s ease-in-out 1.4s;opacity: 1;
}
.suitable-for-img.in-view .main-circle .other-circle:nth-child(5){
	transition: all 1s ease-in-out 1.6s;opacity: 1;
}
.suitable-for-img.in-view .main-circle .other-circle:nth-child(6){
	transition: all 1s ease-in-out 1.8s;opacity: 1;
}
.suitable-for-img.in-view .main-circle .other-circle:nth-child(7){
	transition: all 1s ease-in-out 2s;opacity: 1;
}
.suitable-for-img.in-view .main-circle .other-circle:nth-child(8){
	transition: all 1s ease-in-out 2.2s; opacity: 1;
}
.suitable-for-img.in-view .main-circle .other-circle:nth-child(9){
	transition: all 1s ease-in-out 2.4s; opacity: 1;
}
.suitable-for-img.in-view .main-circle{
	opacity: 1;
	transform: scale(1.0);
}
/***start-with-section***/
.start-with-section{
	background: #e5e5e5;
	padding: 70px 0;
	width: 100%;
	text-align: center;
	box-shadow: 0px 3px 5px 1px #bebebe;
}
.start-with-img{
	margin: 60px auto;
	display: flex;
	justify-content: space-between;
	background: url(../images/l1.png) no-repeat center 114px;
}
.start-img-bar{
	width: 18%;
	position: relative; 
	transition: 0.5s;
	overflow: hidden;
	border-radius: 95px 95px 30px 30px;
}
.start-img-bar:hover{
	box-shadow: 4px 4px 8px 2px #bebebe;
}
.start-img-bar:before{
	position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: '';
    width: 50%;
    height: 35%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
    z-index: 1;
    transition: 0.5s;
}
.start-img-bar:hover:before{
	left: 100%;
}
.start-img-bar-content{
	position: absolute;
	left: 0;
	top: 38%;
}
.start-img-bar h5{
	font-size: 22px;
	padding: 0 5px;
	font-weight: bold;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.start-img-bar:nth-child(odd) h5{
	color: #00b050;
				
}
.start-img-bar:nth-child(even) h5{
	color: #6a030b;
				
}
.start-img-bar-content p{
	margin: 0;
	padding: 0 10px;
	font-size: 20px;
	line-height: 30px;
}
.start-img-bar-content-icon{
	position: absolute;
	top: 6%;
	left: 50%;
	width: 50%;
	transform: translate(-50%,0);
	
}
.start-img-bar-content-icon img{
	position: relative;
	transition: 1s;
	transform: rotateY(0deg);
}

.start-img-bar-content-icon:hover img{
	transform: rotateY(360deg);
}
/***footer***/
.footer-section{
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 50px 0;
	opacity: 1;
}
.footer-listing{
	display: flex;
	justify-content: space-between;
}
.footer-listing li{
	padding: 0 20px;
}
.footer-listing li a{
	color: #fff;
}
.logo-footer{
	width: 30%;
}
.logo-footer p{
	margin: 10px 0;
	color: #fff;
	font-size: 16px;
	line-height: 22px;
}
.footer-section h3{
	color: #fff;
	font-size: 18px;
	margin: 10px 0 50px 0;
}
.footer-section a{
	color: #fff;
	font-size: 16px;
}
.listing li{
	margin: 10px 0;
}
.listing li i{
	font-size: 15px;
}
.listing li a{
	transition: 0.5s;
}
.listing li:hover a{
	color: #fec633;
}
.listing span{
	margin-left: 15px;
}
.other-list{
	position: relative;
}
.other-list:after{
	background: #fff;
	width: 50px;
	height: 3px;
	position: absolute;
	content: "";
	left: 0;
	top: 40px;
}
.other-list:last-child{
	width: 25%;
}
.other-list p{
	color: #fff;
	line-height: 22px;
	margin: 10px 0 20px 0;
}
.social-icon{
	display: flex;
	justify-content: flex-start;
}
.social-icon li{
	padding: 0 20px;
}
.social-icon li a{
	background: rgba(255, 255, 255, 0.2);
	padding: 8px;
	border-radius: 50%;
	height: 35px;
	width: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.social-icon li:first-child{
	padding-left: 0;
}
.social-icon li a i{
	color: #fff;
	font-size: 20px;
	transition: 0.5s;
	font-size: bold;
	transform: rotate(0);
}
.social-icon li a i:hover{
	color: #fec633;
	transform: rotate(360deg);
}
.logo-f{
	width: 25%;
	margin: 0 0 25px 0;
}
.arrow{
	margin: 0 10px 0 0;
	font-size: 10px;
}


/***Who We Are***/
.main-teacher{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 0;
	transition: 0.5s;
	overflow: hidden;
	margin: 50px 0;
}
.main-teacher:hover{
	box-shadow: 0px 0px 12px 1px #bebebe;
}
.founder-page{
	padding: 70px 0;
	text-align: center;
}
.founder-header{
	text-align: center;
	margin-bottom: 50px;
	 color: #6a030b;
	 font-size: 40px;
	 font-weight: bold;
	 position: relative;
	 display: inline-block;
}
/*.founder-header:after{
	position: absolute;
	background: #6a030b;
	width: 15%;
	height: 3px;
	content: "";
	left: 40%;
	bottom: -8px;
	transition: 0.5s;
}*/
/*.founder-header:before{
	position: absolute;
	background: #6a030b;
	width: 50px;
	height: 3px;
	content: "";
	left: 0;
	bottom: -3px;
}*/
.founder-header span{
	color: #00b050;

}
.teacher-background{
	width: 100%;
	text-align: left;
	padding: 0 50px;
}
.t-name{
	font-weight: 800;
	font-size: 30px;
	color: #6a030b;
	position: relative;
	display: inline-block;
	opacity: 0;
	transition: 0.8s;
	transform: scale(0);
}
/*.t-name:after{
	position: absolute;
	background: #6a030b;
	width: 15%;
	height: 3px;
	content: "";
	left: 0;
	bottom: -8px;
	transition: 0.5s;
}*/
.t-name:before{
	position: absolute;
	background: #6a030b;
	width: 100%;
	height: 3px;
	content: "";
	left: 0;
	bottom: -3px;
}
.t-position{
	font-weight: 600;
	font-size: 26px;
	margin: 20px 0 30px 0;
	color:  #00b050;
	opacity: 0;
	position: relative;
	right: -600px;
	transition: 1.8s;
}
.t-details{
	margin: 0;
	padding: 0;
	opacity: 0;
	position: relative;
	bottom: -1000px;
	transition: 2.8s;
}
.main-teacher.in-view .t-details{
	bottom: 0;
	opacity: 1;
}
.t-details li{
	margin-bottom: 15px;
	text-align: left;
	position: relative;
	padding-left: 30px;
	font-size: 20px;
}
.t-details i{
	font-size: 15px;
	color: #6a030b;
	margin-right: 10px;
	position: absolute;
	left: 0;
	top: 3px;
}
.teacher-img{
	overflow: hidden;
	position: relative;
	margin: 0 20px;
	left: -500px;
	opacity: 0;
	transition: 0.5s;
}
.teacher-img img{
	transform: scale(1.0);
	transition: 1s;
}
.teacher-img:hover img{ 
	transform: scale(1.2); 
}
.main-teacher.in-view .teacher-img{
	left: 0;
	opacity: 1;
}
.main-teacher.in-view .t-name{
	transform: scale(1.0);
	opacity: 1;
}
.main-teacher.in-view .t-position{
	opacity: 1;
	right: 0;
}
/***what-is-ycag***/
.what-is-ycag-holder{
	padding: 70px 0;
	text-align: center;
}
.what-is-ycag-content{
	position: relative;
	margin: 100px 50px 150px 50px;
}
.content-box{
	padding: 30px 60px;
	border: 4px solid #000;
	border-radius: 30px;
	transition: 0.5s;
	transform: translate(0);
}
.content-box:hover{
	transform: translate(0,-10px);
}
.content-details h4{
	font-size: 35px;
	font-weight: bold;
	text-transform: capitalize;
	text-align: left;
	margin-bottom: 30px;
	position: relative;
}
.box1{
	border: 4px solid #00b050;
	
}
.box2{
	border: 4px solid #6b030c;
}
.box1 .content-details h4{
	color: #00b050;
}
.box1 h4:before{
	position: absolute;
	content: "";
	background: #00b050;
	width: 100%;
	height: 3px;
	left: 0;
	bottom: -10px;
}
.box2 .content-details h4{
	color: #6b030c;
}
.box2 h4:before{
	position: absolute;
	content: "";
	background: #6b030c;
	width: 100%;
	height: 3px;
	left: 0;
	bottom: -10px;
}
.content-details li{
	font-size: 22px;
	text-align: justify;
	line-height: 36px;
	margin-bottom: 20px;
	position: relative;
	padding-left: 25px;
}
.content-details li span{
	color: #6b030c;
	font-weight: bold;
}
.content-details li i{
	position: absolute;
	left: 0;
	top: 10px;
}
.dot1{
	color: #00b050;
	font-size: 15px;
	margin-right: 12px;
}
.dot2{
	color: #6b030c;
	font-size: 15px;
	margin-right: 12px;
}
.content-icon{
	width: 120px;
	height: 120px;
	background:  #00b050;
	position: absolute;
	left: -32px;
	top: -82px;
	padding: 22px;
	border-radius: 50%;
	line-height: 0;
}
.content-icon img{
	transition: 1s;
	transform: rotateY(0);
	position: relative;	
}
.content-icon:hover img{
	transform: rotateY(180deg);
}
/*.content-icon img:before{
	position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: '';
    width: 50%;
    height: 35%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
    z-index: 1;
    transition: 0.5s;
}
.content-icon img:hover:before{
	left: 100%;
}*/
.box2 .content-icon{
	background: #6b030c;
}


/**why us**/
.why-us{
	text-align: center;
	padding: 70px 0;
	background: #eaeaea;
}
.why-us-inner{
	width: 100%;
	margin: 0 auto;
	border-radius: 56px;
	transition: 0.5s;
	position: relative;
}
.why-us-inner:hover{
	box-shadow: 0px 5px 11px 0px #bebebe;

}
.why-us-icon{
	position: absolute;
	width: 7%;
	left: 6%;
	top: 50%;
	transition: 1s;
	transform: rotateY(0) translate(0,-50%);
}
.why-us-icon:hover{
	transform: rotateY(180deg) translate(0,-50%);
}
.why-us-content{
	position: absolute;
	text-align: left;
	top: 50%;
	transform: translate(0,-50%);
	left: 12%;
	padding: 0 60px;
}
.why-us-content h5{
	font-size: 22px;
}
.why-us-content p{
	font-size: 18px;
	margin: 6px 0 0 0;
	color: #000;
	position: relative;
	padding-left: 25px;
}
.why-us-content i{
	position: absolute;
	left: 0;
	top: 4px;
}
.why-us-content h5 span{
	font-weight: bold;
}
.color-1{
	color: #6a030b;
}
.color-2{
	color: #00b050;
}
/****scroll-to-top****/
.scroll-to-top{
	position: fixed;
	right: 30px;
	bottom: 30px;
	background: #00b050;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	border: 3px solid #ffff;

}
.scroll-to-top img{
	width: 70%;
	animation: arrowmove 1.5s infinite;
	position: relative;
}
@keyframes arrowmove{
	0%{ top: 5px; }
	50%{ top: -8px; }
	100%{ top: 5px; }
}


/***contact-us***/
.reach-us-holder{
	text-align: center;
	padding: 70px 0;
}
.reach-us-content{
	margin: 30px;
}
.box-section{
	/*background: #bebebe;*/
	text-align: center;
	padding: 30px;
	font-size: 30px;
}
.box-section i{
	font-size: 40px;
	display: block;
	display: inline-block;	
}
.wp{
	margin-left: 30px;
}
.call{
	color: #00b050;
	transition: 0.5s;
}
.call a{
	color: #00b050;
	transition: 0.5s;
	display: block;
}
.call:hover{
	color: #6a030b;
}
.call:hover a{
	color: #6a030b;
}
.email{
	color: #6a030b;
	transition: 0.5s;
}
.email a{
	color: #6a030b;
	transition: 0.5s;
	display: block;
}
.email:hover{
	color: #00b050;
}
.email:hover a{
	color: #00b050;
}
.contact-section{
	margin: 30px 0 0 0;
	font-size: 30px;
	font-weight: bold;
	color: #000;
	transition: 0.5s;
}

/***offered-course****/
.offered-section{
	padding:70px 0;
	text-align: center;
	background: #eaeaea;
}
.offered-inner{
	position: relative;
	width: 90%;
	margin: 0 auto;
	transition: 0.5s;
	line-height: 0;
	border-radius: 10px 56px 56px 10px
}
.offered-inner:hover{
	box-shadow: 3px 3px 10px 4px #bebebe;
}
.offered-icon{
	width: 7%;
	position: absolute;
	left: 2%;
	top: 50%;
	transform: translate(0,-50%) rotateY(0);
	transition: 1s;
}
.offered-icon:hover{
	transform: translate(0,-50%) rotateY(180deg);
}
.offered-content{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.offered-content h5{
	font-size: 25px;
	font-weight: 700;
	text-align: center;
}
.btn{
	margin: 10px auto;
}
.prev-btn,.next-btn{
	width: 190px;
	height: 40px;
}
.btn a{
	background: #6a030b;
	font-size: 18px;
	color: #fff;
	padding: 7px;
	
}
.last-page{
	padding-left: 140px !important;
	margin-bottom: 50px;
}
/**icon-effects**/
.extra-box-icon:before{
	position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: '';
    width: 50%;
    height: 35%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
    z-index: 1;
    transition: 0.5s;
}
.extra-box-icon:hover:before{
	left: 100%;
}

/***testimonial***/
.testimonial{
	text-align: center;
	padding: 70px 0;
}
.client-box{
	background: #eaeaea;
	padding: 25px;
	text-align: center;
	transition: 0.5s;
	border-radius: 5px;
	position: relative;
}
.client-box:hover{
	box-shadow: 3px 3px 3px 3px #bebebe;
}
.client-content p{
	margin: 10px 0;
	font-size: 16px;
	color: #000;
	text-align: justify;
}
/*.client-content{
	position: relative;
}*/
.quote1{
	width: 7%;
	position: absolute;
	left: 2%;
	top: 2%;
}
.quote2{
	width: 7%;
	position: absolute;
	right: 2%;
	top: 2%;
	transform: rotate(180deg);
}
.client-img{
	margin: 20px 0;	
}
.client-img img{
	width: 30%;
	border-radius: 50%;
}
.client-box{
	position: relative;
}
.c-name{
	font-weight: bold;
	margin: 0 0 45px 0;
	font-size: 20px;
}
.c-position{
	margin: 0;
	font-size: 18px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
	color: #fff;
	z-index: 9;
}
.client-box svg{
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}

/**offered-course-innerpage**/
.offered-course-inner{
	padding: 70px 0;
	text-align: center;
}
.inner-page-holder{
	border: 4px solid #6a030b;
	border-radius: 20px;
}
.holder-2{
	border: 4px solid #00b050;
}
.inner-page-holder .offered-inner{
	margin-top: 30px;
	border: 2px solid #eaeaea;
}
.main-content{
	margin: 0 100px;
}
.main-content p{
	text-align: justify;
	font-size: 20px;
	margin: 50px 0 30px 0;
}
.extra-inner-line p{
	
	margin: 0 0 10px 0;
}
.extra-inner-line i{
	font-size: 16px;
	color: #6a030b;
	margin-right: 10px;
}
.part-one{
	padding-left: 200px;
	color: #6a030b;
	font-weight: 700;
}
.part-one a{
	color:  #00b050;
}
.b-heading-part{
	margin: 50px 0;
	text-align: left;
	border: 2px solid #eaeaea;
	padding: 20px;
	
}
.b-heading-part h6{
	font-size: 28px;
	font-weight: bold;
	color: #00b050;
	position: relative;
}
.b-heading-part h6:before{
	background: #00b050;
	width: 100%;
	height: 3px;
	position: absolute;
	content: "";
	left: 0;
	bottom: -5px;
}
.b-heading-part-para h5{
	color: #6a030b;
	font-size: 22px;
	margin: 30px 0;
	font-weight: bold;
}
.b-heading-part-para h5 img{
	width: 5%;
	margin-right: 20px;
}
.b-heading-part-para-listing{
	padding-left: 180px;
}
.b-heading-part-para-listing li{
	font-size: 20px;
	margin-bottom: 10px;
	position: relative;
	padding-left: 25px;
	text-align: justify;
}
.b-heading-part-para-listing li i{
	position: absolute;
	left: 0;
	top: 6px;
}
.b-heading-part-para-listing-nav{
	margin-top: 25px;
	margin-left: 100px;
}
.b-heading-part-para-listing-nav li{
	margin-bottom: 10px;
}
.b-heading-part-para-listing-nav li i{
	color: #6a030b;
	font-size: 18px;
	position: relative;
	top: 2%;
}
.extra-text-align{
	text-align: left;
}
.extra-text-align li{
	margin-bottom: 15px;
	text-align: left !important;
}
/***expected-return***/
.expected-section{
	padding: 70px 0 200px 0;
	text-align: center;
	overflow: hidden;
}
.expected-holder{
	display: flex;
	justify-content: space-between;
}
.expected-line{
	font-size: 22px;
	text-align: justify;
	margin: 0 50px;
}
.expected-line span{
	font-weight: bold;
	color: #6a030b;
}
.expected-design{
	width: 35%;
	position: relative;
	margin-top: 150px;
}
.invest-icon{
	width: 75%;
	position: absolute;
	left: -27%;
	top: 50%;
	transform: translate(0,-50%) scale(0.9);
	transition: 1s;
}
.invest-icon:hover{
	transform: translate(0,-50%) scale(1.0);
}
.expected-content-box{
	text-align: left;
	width: 100%;
	padding: 30px;
	border-radius: 20px;
	opacity: 0;
	transition: 0.5s;
	right: -500px;
}
.cbox1{
	position: relative;
	top: 30px;
	border: 3px solid #00b050;
}
.cbox2{
	position: relative;
	top: 60px;
	border: 3px solid #6a030b;
}
.cbox3{
	position: relative;
	top: 90px;
	border: 3px solid #00b050;
}
.cbox4{
	position: relative;
	top: 120px;
	border: 3px solid #6a030b;
}
.cbox5{
	position: relative;
	top: 150px;
	border: 3px solid #00b050;
}
.expected-content-box.in-view{
	opacity: 1;
	right: 0;
}
.cbox1.in-view{
	transition: all 0.5s ease-in-out 0.2s;
}
.cbox2.in-view{
	transition: all 0.5s ease-in-out 0.4s;
}
.cbox3.in-view{
	transition: all 0.5s ease-in-out 0.6s;
}
.cbox4.in-view{
	transition: all 0.5s ease-in-out 0.8s;
}
.cbox5.in-view{
	transition: all 0.5s ease-in-out 1s;
}
.expected-content-box-heading p{
	margin-bottom: 5px;
	font-size: 18px;
	font-weight: bold;
	color: #00b050;

}
.expected-content-box-heading h5{
	font-size: 24px;
	font-weight: bold;
	text-transform: capitalize;
	color: #6a030b;
}
.expected-content-para li{
	position: relative;
	padding-left: 25px;
	margin-bottom: 15px;
	font-size: 20px;
	text-align: justify;
}
.expected-content-para li:last-child{
	margin-bottom: 0;
}
.expected-content-para li i{
	position: absolute;
	left: 0;
	top: 5px;
}
{
	top: 500px;
}

/**investment**/
.investment-section{
	text-align: center;
	padding: 70px 0;
}
.invest-part{
	margin: 20px 0;
	color: #000;
}
.investment-section .content-icon{
	padding: 5px;
}
.invest-para{
	text-align: left;
	font-size: 22px;
 	margin-left: 60px;
 	margin-bottom: 50px;
}
.invest-para li{
	font-weight: 600;
	margin-bottom: 15px;
}
.footer-bottom{
	text-align: center;
	font-size: 16px;
	color: #fff;
	padding: 15px 0;
	border-top: 2px solid #fff;
}