
*{
	margin:0;
	padding:0;
}
body{
	background:#FFFFFF;
}
:root{
	--baseColor: #6c35af;
	--secondaryColor: #1D3557;
	--lightColor: #FFFFFF;
	--grayColor: #E7E7E7;
	--darkColor: #292d38;
	--blackColor: #000000;

	--baseFont: "Hanken Grotesk", sans-serif;
	--secondaryFont: "Poppins", sans-serif;
}


/* ===== CSS For "Common Cases" Starts Here ===== */
a{
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
a:hover{
	text-decoration: none;
}
img{
	max-width: 100%;
}

/* ======================== */

.grid_item{
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
	align-content: center;
}

/* ======================== */

.cta_btn_wrap{
	margin-top: 20px;
}
.cta_btn{
	color: var(--lightColor);
	background-color: transparent;
	background-image: -webkit-linear-gradient(180deg,#df3aff 0,#2112e4 100%);
	background-image: -o-linear-gradient(180deg,#df3aff 0,#2112e4 100%);
	background-image: linear-gradient(180deg,#df3aff 0,#2112e4 100%);
	font-family: var(--baseFont);
	font-weight: 500;
	font-size: 16px;
	border-radius: 50px;
	min-width: 100%;
	text-align: center;
	display: inline-block;
	padding: 7.5px 15px;
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;	
}
.cta_btn:hover{
	color: var(--lightColor);
	text-decoration: none;
}

/* ======================== */

.heading{
	text-align: center;
	margin-bottom: 30px;
}
.heading h2{
	color: var(--lightColor);
	font-family: var(--secondaryFont);
	font-weight: 600;
	font-size: 48px;
	text-transform: capitalize;
	margin-bottom: 0px;
}
.heading h3{
	color: #0f131a;
	font-family: var(--baseFont);
	font-weight: 900;
	font-size: 40px;
	margin-bottom: 0px;
}
.heading h4{
	color: #0f131a;
	font-family: var(--baseFont);
	font-weight: 900;
	font-size: 32px;
	margin-bottom: 0px;
}

.heading p{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 20px;
	line-height: 1.3;
	margin-bottom: 0px;
	margin-top: 20px;
}
.heading p a{
	color: #7a12d4;
}
.heading p a:hover{
	text-decoration: underline;
}

/* ======================== */

.sub_heading{
	margin-bottom: 15px;
}
.sub_heading h4{
	color: var(--blackColor);
	font-family: var(--baseFont);
	font-weight: 500;
	font-size: 28px;
	margin-bottom: 0px;
}
.sub_heading h6{
	color: #0f131a;
	font-family: var(--baseFont);
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 0px;
}

/* ======================== */

.para_texts p{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 20px;
	line-height: 1.5;
	margin-bottom: 15px;
}
.para_texts p:last-child{
	margin-bottom: 0px;
}
.para_texts p a{
	color: #7a12d4;
}
.para_texts p a:hover{
	text-decoration: underline;
}
/* ===== CSS For "Common Cases" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== Humberger Menu Icon ===== */
.humbergur_icon{
	width: 30px;
	height: 20px;
	position: relative;
	margin: 0px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}
.humbergur_icon span{
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	border-radius: 10px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}
.humbergur_icon span {
	background: var(--blackColor);
}
.humbergur_icon span:nth-child(1) {
	top: 0px;
}
.humbergur_icon span:nth-child(2),
.humbergur_icon span:nth-child(3) {
	top: 10px;
}
.humbergur_icon span:nth-child(4) {
	top: 20px;
}
.humbergur_icon.open span:nth-child(1) {
	top: 11px;
	width: 0%;
	left: 50%;
}
.humbergur_icon.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.humbergur_icon.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.humbergur_icon.open span:nth-child(4) {
	top: 11px;
	width: 0%;
	left: 50%;
}
/* ===== Humberger Menu Icon ===== */

/* ============================== */
/* ============================== */

/* ===== CSS For "Navbar" Starts Here ===== */
.navbar-toggler{
	padding: 0px;
}
.navbar{
	padding: 9px 0px;
}
.navbar .navbar-brand{
	text-decoration: none;
	padding: 0px;
	line-height: 1;
}
.navbar .navbar-brand span{
	color: #34244c;
	font-family: var(--secondaryFont);
	font-weight: 300;
	font-size: 22px;
	display: inline-block;
}
.navbar .navbar-nav .nav-item{
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
    align-content: center;
	margin-right: 25px;
}
.navbar .navbar-nav .nav-item:last-child{
	margin-right: 0px;
}
.navbar .navbar-nav .nav-item .nav-link{
	color: #0f131a;
	font-family: var(--baseFont);
	font-weight: 500;
	font-size: 18px;
	text-decoration: none;
	padding-left: 0px;
	padding-right: 0px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.navbar .navbar-nav .nav-item .nav-link:hover{
	color: var(--baseColor);
}
/* ===== CSS For "Navbar" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Hero Banner" Starts Here ===== */
.hero_banner_wrap{
	background-color: transparent;
	background-image: -webkit-linear-gradient(180deg,#fff 0,#e2e2e2 100%);
	background-image: -o-linear-gradient(180deg,#fff 0,#e2e2e2 100%);
	background-image: linear-gradient(180deg,#fff 0,#e2e2e2 100%);
	padding: 50px 0px;
}
.hero_banner{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 360px;
    grid-template-columns: 1fr 360px;
    grid-auto-rows: auto;
    gap: 50px;
}

.hero_banner .left_inner{
	max-width: 580px;
}
.hero_banner .banner_title h2{
	color: var(--baseColor);
	font-family: Helvetica;
	font-weight: 700;
	font-size: 40px;
	margin-bottom: 0px;
}

.hero_banner .banner_video{
	margin: 20px 0px;
}

.hero_banner .banner_texts p{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 600;
	font-size: 21px;
	line-height: 1.2;
	margin-bottom: 20px;
}
.hero_banner .banner_texts h6{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 18px;
	margin-bottom: 0px;
}
/* ===== CSS For "Hero Banner" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Plans" Starts Here ===== */
.plans_box{
	background: var(--lightColor);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
	border-radius: 15px;
}

.plans_box .box_header{
	background: var(--baseColor);
	border-radius: 15px 15px 0px 0px;
	text-align: center;
	padding: 7.5px 10px;
}
.plans_box .box_header h5{
	color: var(--lightColor);
	font-family: var(--baseFont);
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 5px;
}
.plans_box .box_header h6{
	color: var(--lightColor);
	font-family: var(--secondaryFont);
	font-weight: 500;
	font-size: 15px;
	text-transform: capitalize;
	margin-bottom: 0px;
}

.plans_box .box_body{
	padding: 15px;
	text-align: center;
}
.plans_box .box_body h4{
	color: var(--blackColor);
	font-family: var(--secondaryFont);
	font-weight: 600;
	font-size: 22px;
	margin-bottom: 15px;	
}
.plans_box .box_body ul{
	margin-bottom: 0px;
}
.plans_box .box_body ul li{
	list-style: none;
	margin-bottom: 10px;
}
.plans_box .box_body ul li:last-child{
	margin-bottom: 0px;
}
.plans_box .box_body ul li img{
	border-radius: 10px;
}

.plans_wrap .card_logos{
	max-width: 280px;
	margin: 20px auto;
}

.plans_wrap .security_info{
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 25px 10px 1fr;
    grid-template-columns: 25px 1fr;
    grid-auto-rows: auto;
    gap: 10px;
	max-width: 85%;
	margin: 0px auto;
}
.plans_wrap .security_info p{
	color: var(--blackColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 14px;
	line-height: 1.3;
	margin-bottom: 0px;
}
.transform_now .plans_wrap .security_info p{
	color: var(--lightColor);
}
/* ===== CSS For "Plans" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Vibrate With" Starts Here ===== */
.vibrate_with_wrap{
	background: var(--lightColor);
	padding: 60px 0px;
}
.vibrate_with_wrap .heading{
	max-width: 760px;
	margin: 0px auto;
	margin-bottom: 50px;
}
.vibrate_with{
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 40px;
}
.vibrate_with .image img{
	border-radius: 10px;
}

.vibrate_with .sub_heading{
	margin-bottom: 25px;
}
.vibrate_with .bullet_points ul{
	margin-bottom: 0px;
}
.vibrate_with .bullet_points ul li{
	list-style: none;
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 18px;
	line-height: 1.3;
	margin-bottom: 20px;
	position: relative;
	padding-left: 22px;
}
.vibrate_with .bullet_points ul li:last-child{
	margin-bottom: 0px;
}
.vibrate_with .bullet_points ul li:before{
	content: "";
	width: 6px;
	height: 6px;
	background: var(--darkColor);
	border-radius: 50%;
	position: absolute;
	left: 0px;
	top: 9px;
}
/* ===== CSS For "Vibrate With" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Dance With Banner" Starts Here ===== */
.dance_with_banner{
	background: url('images/Dance_With_Banner_Bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
}
.dance_with_banner .overlay{
	background: rgba(0,0,0, 0.1);
	padding: 60px 0px;
}
.dance_with_banner h1{
	color: var(--lightColor);
	font-family: Helvetica;
	font-weight: 400;
	font-size: 114px;
	line-height: 1;
	text-align: center;
	margin-bottom: 0px;
}
/* ===== CSS For "Dance With Banner" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Thomas Mack" Starts Here ===== */
.thomas_mack_wrap{
	background: var(--lightColor);
	padding: 60px 0px;
}
.thomas_mack{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 75px 255px;
    grid-template-columns: 1fr 255px;
    grid-auto-rows: auto;
    gap: 75px;
	max-width: 720px;
	margin: 0px auto;
}
.thomas_mack .image img{
	border-radius: 50%;
}
.thomas_mack .signature{
	margin-top: 20px;
}
/* ===== CSS For "Thomas Mack" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Students Reports" Starts Here ===== */
.students_reports_banner{
	background: url('images/Students_Reported_Banner_Bg.png') no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
}
.students_reports_banner .overlay{
	background: rgba(0,0,0, 0.3);
	padding: 25px 0px;
}
.students_reports_banner .students_reports{
	max-width: 720px;
	margin: 0px auto;	
}
.students_reports_banner h3{
	color: var(--lightColor);
	font-family: var(--baseFont);
	font-weight: 500;
	font-size: 28px;
	line-height: 1.2;
	max-width: 360px;
	margin-bottom: 0px;
}
/* ===== CSS For "Students Reports" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "How Works" Starts Here ===== */
.how_works_wrap{
	background: #F9F9F9;
	padding: 60px 0px;
}
.how_works_wrap .heading{
	margin-bottom: 40px;
}
.how_works{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 25px 1fr 25px 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 25px;
}
.how_works .single_box{
	box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
	border-radius: 15px;
	padding: 40px;
	background: var(--lightColor);
	text-align: center;
}
.how_works .single_box .image{
	margin-bottom: 15px;
}
.how_works .single_box .image img{
	border-radius: 50%;
	width: 250px;
	height: 250px;
	-o-object-fit: cover;
	object-fit: cover;
}

.how_works .single_box .sub_heading h4{
	font-weight: 600;
}
.how_works .single_box .sub_heading .head_line span{
	background: #34244C;
	display: inline-block;
	width: 40px;
	height: 2px;
}
.how_works .single_box .para_texts p{
	line-height: 1.3;
}
/* ===== CSS For "How Works" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Let Go" Starts Here ===== */
.let_go{
	background: var(--lightColor);
	padding: 60px 0px;
}
.let_go .heading{
	max-width: 780px;
	margin: 0px auto;
	margin-bottom: 60px;
}
.let_go .heading h3{
	font-family: Helvetica;
	font-weight: 400;
	line-height: 1.4;
	text-transform: capitalize;
}
.let_go .heading p{
	font-size: 20px;
	font-weight: 400;
}

.let_go .are_you_ready .sub_heading{
	margin-bottom: 30px;
	text-align: center;
}
.let_go .are_you_ready .sub_heading h4{
	font-family: Helvetica;
	font-weight: 400;
}

.let_go .to_reborn{
	max-width: 750px;
	margin: 0px auto;
}
.let_go .to_reborn .single_part{
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 220px 20px 1fr;
    grid-template-columns: 220px 1fr;
    grid-auto-rows: auto;
    gap: 20px;
	margin-bottom: 25px;
}
.let_go .to_reborn .single_part:last-child{
	margin-bottom: 0px;
}
.let_go .to_reborn .para_texts p{
	font-size: 24px;
	line-height: 1.4;
}
.let_go .to_reborn .para_texts p .bold_texts{
	font-weight: 700;
}
/* ===== CSS For "Let Go" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Connect Destiny" Starts Here ===== */
.connect_destiny{
	background: #2A2A2A;
	padding: 50px 0px;
}
.connect_destiny .heading{
	max-width: 900px;
	margin: 0px auto;
}
.connect_destiny .heading h2 .break{
	display: block;
}

.connect_destiny .bliss_mock{
	max-width: 900px;
	margin: 40px auto;
}

.days_carousel{
	max-width: 980px;
	margin: 0px auto;
}
.days_carousel .owl-carousel .owl-prev,
.days_carousel .owl-carousel .owl-next {
	width: 36px;
	height: 36px;
	background: url(images/Arrow_Right.png) no-repeat !important;
	background-position: center center;
	background-size: 36px 36px !important;
	font-size: 0px !important;
	position: absolute;
	top: 35%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.days_carousel .owl-carousel .owl-prev {
	left: -40px;
	background: url(images/Arrow_Left.png) no-repeat !important;
	background-position: center center;
	background-size: 36px 36px !important;
}
.days_carousel .owl-carousel .owl-next {
	right: -40px;
	background: url(images/Arrow_Right.png) no-repeat !important;
	background-position: center center;
	background-size: 36px 36px !important;
}

.days_carousel .single_day{
	text-align: center;
}
.days_carousel .single_day .image{
	margin-bottom: 10px;
}
.days_carousel .single_day h5{
	color: var(--lightColor);
	font-family: var(--secondaryFont);
	font-weight: 400;
	font-size: 20px;
	line-height: 1.3;
	margin-bottom: 0px;
}
.days_carousel .single_day h5 .bold_texts{
	font-weight: 700;
	display: block;
}
/* ===== CSS For "Connect Destiny" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Member Result" Starts Here ===== */
.member_results{
	background: var(--lightColor);
	padding: 60px 0px;
}
.member_results .featured_box{
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 310px 20px 1fr;
    grid-template-columns: 310px 1fr;
    grid-auto-rows: auto;
    gap: 20px;

	background: #34244C;
	padding: 50px;
	border-radius: 15px;
	box-shadow: 0 10px 30px 0 rgba(89,94,103,.086);
	margin-bottom: 60px;
}
.member_results .featured_box .image img{
	border-radius: 10px;
}

.member_results .featured_box .sub_heading .featured_badge{
	color: var(--baseColor);
	background: var(--lightColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 12px;
	display: inline-block;
	padding: 5px 7.5px;
	line-height: 1;
	border-radius: 4px;
	margin-bottom: 10px;
}
.member_results .featured_box .sub_heading h4{
	color: var(--lightColor);
	font-weight: 700;
}
.member_results .featured_box .para_texts p{
	color: var(--lightColor);
	font-weight: 300;
}

.member_results .featured_box .member_info{
	margin-top: 25px;
}
.member_results .featured_box .member_info h5{
	color: var(--lightColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	margin-bottom: 3px;
}
.member_results .featured_box .member_info h6{
	color: var(--lightColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 10px;
	text-transform: uppercase;
	margin-bottom: 0px;
}

.results_carousel .owl-stage{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	padding: 0px 15px;
}
.results_carousel .single_result{
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: justify;
    align-content: space-between;
	min-height: 100%;
	border: 1px solid #DFE1E5;
	padding: 25px;
	border-radius: 15px;
}
.results_carousel .single_result .para_texts p{
	font-size: 18px;
}

.results_carousel .single_result .member_info_wrap{
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 65px 20px 1fr;
    grid-template-columns: 65px 1fr;
    grid-auto-rows: auto;
    gap: 20px;
	margin-top: 20px;
}
.results_carousel .single_result .member_image img{
	border-radius: 10px;
}
.results_carousel .single_result .member_name h6{
	color: #0f131a;
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 0px;
}
.results_carousel .single_result .member_name span{
	color: #71767f;
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 12px;
	display: inline-block;
	margin-top: 5px;
}

.owl_upper_controls .owl-carousel{
	padding-top: 50px;
}
.owl_upper_controls .owl-nav{
	position: absolute;
	top: 0px;
	right: 5px;
}
.owl_upper_controls .owl-carousel .owl-prev,
.owl_upper_controls .owl-carousel .owl-next {
	width: 36px;
	height: 36px;
	background: url(images/Arrow_Right_Circle.png) no-repeat !important;
	background-position: center center;
	background-size: 36px 36px !important;
	font-size: 0px !important;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.owl_upper_controls .owl-carousel .owl-prev {
	background: url(images/Arrow_Left_Circle.png) no-repeat !important;
	background-position: center center;
	background-size: 36px 36px !important;
	background-color: transparent !important;
	margin-right: 15px;
}
.owl_upper_controls .owl-carousel .owl-prev:hover{
	background-color: #34244C !important;
	opacity: 1;
}
.owl_upper_controls .owl-carousel .owl-next {
	background: url(images/Arrow_Right_Circle.png) no-repeat !important;
	background-position: center center;
	background-size: 36px 36px !important;
	background-color: transparent !important;
}
.owl_upper_controls .owl-carousel .owl-next:hover{
	background-color: #34244C !important;
	opacity: 1;
}
/* ===== CSS For "Member Result" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Become Member" Starts Here ===== */
.beconme_member{
	padding-bottom: 60px;
}
.beconme_member .main_heading{
	max-width: 680px;
	margin: 0px auto;
	margin-bottom: 30px;
}

.mobile_carousel {
	margin-bottom: 30px;
	display: none;
}
.mobile_carousel .owl-carousel .owl-prev,
.mobile_carousel .owl-carousel .owl-next {
	width: 36px;
	height: 36px;
	background: url(images/Arrow_Right.png) no-repeat !important;
	background-position: center center;
	background-size: 36px 36px !important;
	font-size: 0px !important;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.mobile_carousel .owl-carousel .owl-prev {
	left: 10px;
	background: url(images/Arrow_Left.png) no-repeat !important;
	background-position: center center;
	background-size: 36px 36px !important;
}
.mobile_carousel .owl-carousel .owl-next {
	right: 10px;
	background: url(images/Arrow_Right.png) no-repeat !important;
	background-position: center center;
	background-size: 36px 36px !important;
}
.mobile_carousel .owl-carousel .owl-dots {
	text-align: center;
	width: 100%;
	line-height: 1;
	margin-top: 5px;
}
.mobile_carousel .owl-carousel .owl-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none !important;
	margin: 5px;
	background: #BDBDBD !important;
}
.mobile_carousel .owl-carousel .owl-dot.active {
	width: 12px;
	height: 12px;
	background: var(--baseColor) !important;
}

.beconme_member .horizontal_image_banner img{
	width: 100%;
}

.beconme_member .benefits{
	max-width: 580px;
	margin: 45px auto;
	margin-bottom: 60px;
}
.beconme_member .benefits .signle_benefit{
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 180px 20px 1fr;
    grid-template-columns: 180px 1fr;
    grid-auto-rows: auto;
    gap: 20px;
	margin-bottom: 25px;
}
.beconme_member .benefits .signle_benefit:last-child{
	margin-bottom: 0px;
}
.beconme_member .benefits .signle_benefit h5{
	color: #292929;
	font-family: Helvetica;
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 5px;
}
.beconme_member .benefits .signle_benefit p{
	color: #292929;
	font-family: Helvetica;
	font-weight: 400;
	font-size: 20px;
	margin-bottom: 0px;
}

.beconme_member .money_back{
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 180px 20px 1fr;
    grid-template-columns: 180px 1fr;
    grid-auto-rows: auto;
    gap: 20px;

	background: #F8EFFF;
	padding: 40px;
	border-radius: 10px;
	max-width: 1000px;
	margin: 0px auto;
}
.beconme_member .money_back .heading{
	margin-bottom: 15px;
	text-align: left;
}
/* ===== CSS For "Become Member" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Transform Now" Starts Here ===== */
.transform_now_banner{
	background: url('images/Transform_Banner_Bg.png') no-repeat;
	background-position: center center;
	background-size: cover;
}
.transform_now_banner .overlay{
	background: rgba(0,0,0, 0.7);
	padding: 60px 0px;
}
.transform_now{
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 1fr 100px 360px;
    grid-template-columns: 1fr 360px;
    grid-auto-rows: auto;
    gap: 100px;
}
.transform_now .heading{
	margin-bottom: 15px;
	text-align: left;
}
.transform_now .heading h3{
	color: var(--lightColor);
}

.transform_now .bullet_points h5{
	color: var(--lightColor);
	font-family: var(--baseFont);
	font-weight: 600;
	font-size: 22px;
	margin-bottom: 15px;
}
.transform_now .bullet_points ul{
	margin-bottom: 0px;
}
.transform_now .bullet_points ul li{
	list-style: none;
	color: var(--lightColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 18px;
	margin-bottom: 15px;
	position: relative;
	padding-left: 30px;
}
.transform_now .bullet_points ul li:last-child{
	margin-bottom: 0px;
}
.transform_now .bullet_points ul li:before{
	content: "\f00c";
	color: var(--baseColor);
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	font-size: 18px;
	position: absolute;
	left: 0px;
	top: 0px;
}
/* ===== CSS For "Transform Now" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "FAQ's" Starts Here ===== */
.faqs_wrap{
	background: #F3F4F6;
	padding: 60px 0px;
}
.faqs{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 550px 40px 1fr;
    grid-template-columns: 550px 1fr;
    grid-auto-rows: auto;
    gap: 40px;
}
.faqs .heading{
	text-align: left;
}

.faqs .single_item {
	margin-bottom: 30px;
}
.faqs .single_item:last-child{
	margin-bottom: 0px;
}
.faqs .single_item .click_item a{
	color: #0f131a;
	font-family: var(--baseFont);
	font-weight: 600;
	font-size: 22px;
	display: block;
	text-decoration:none;
	text-transform: capitalize;
	padding-left: 30px;
	position: relative;
}
.faqs .single_item .click_item a:after{
	content:"\f068";
	font-family: "Font Awesome 5 Free";
	font-size: 16px;
	font-weight: 700;
	color: #0f131a;
	position:absolute;
	left: 0px;
	top: 4px;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}
.faqs .single_item .click_item a.collapsed:after{
	content:"\f067";
	font-family: "Font Awesome 5 Free";
	font-size: 16px;
	font-weight: 700;
	color: #0f131a;
	position:absolute;
	left: 0px;
	top: 4px;
}
.faqs .contents{
	padding: 10px 0px;
	padding-left: 30px;
	position: relative;
}
.faqs .contents p{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 18px;
	margin-bottom: 15px;
}
.faqs .contents p:last-child{
	margin-bottom: 0px;
}
.faqs .contents p a{
	color: #c36;
	-webkit-transition: all 0.21s ease-in;
	-moz-transition: all 0.21s ease-in;
	transition: all 0.21s ease-in;
}
.faqs .contents p a:hover{
	color: #336;
}
/* ===== CSS For "FAQ's" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Powerful Bonuses" Starts Here ===== */
.powerful_bonuses_wrap{
	background: var(--lightColor);
	padding: 60px 0px;
}
.powerful_bonuses_box{
	border: 1px solid #DFE1E5;
	border-radius: 25px;
	padding: 50px;

    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 350px 30px 1fr;
    grid-template-columns: 350px 1fr;
    grid-auto-rows: auto;
    gap: 30px;
}
.powerful_bonuses_box .heading{
	text-align: left;
}

.powerful_bonuses_box .single_bonus{
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 215px 25px 1fr;
    grid-template-columns: 215px 1fr;
    grid-auto-rows: auto;
    gap: 25px;
	margin-bottom: 40px;
}
.powerful_bonuses_box .single_bonus:last-child{
	margin-bottom: 0px;
}
.powerful_bonuses_box .single_bonus .image img{
	border-radius: 10px;
}

.powerful_bonuses_box .single_bonus .sub_heading{
	margin-bottom: 10px;
}
.powerful_bonuses_box .single_bonus .sub_heading .bonus_badge{
	color: #1b9ce6;
	background: #EAF7FF;
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 12px;
	display: inline-block;
	padding: 5px 7.5px;
	line-height: 1;
	border-radius: 4px;
	margin-bottom: 5px;
}
.powerful_bonuses_box .single_bonus .sub_heading .worth{
	color: #595e67;
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 14px;
	display: inline-block;
}
.powerful_bonuses_box .single_bonus .para_texts p{
	color: #292d38;
	font-weight: 300;
	font-size: 15px;
}
/* ===== CSS For "Powerful Bonuses" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Members Review" Starts Here ===== */
.members_review {
	padding-bottom: 60px;
}
.members_review .heading{
	margin-bottom: 20px;
}
.review_carousel .owl-stage{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	padding: 0px 15px;
}
.review_carousel .single_review{
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: justify;
    align-content: space-between;
	min-height: 100%;
	border: 1px solid #DFE1E5;
	padding: 20px;
	border-radius: 15px;
}
.review_carousel .single_review .para_texts p{
	font-size: 18px;
}

.review_carousel .single_review .member_info_wrap{
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 65px 20px 1fr;
    grid-template-columns: 65px 1fr;
    grid-auto-rows: auto;
    gap: 20px;
	margin-top: 20px;
}
.review_carousel .single_review .member_image img{
	border-radius: 10px;
}
.review_carousel .single_review .member_name h6{
	color: #0f131a;
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 0px;
}
.review_carousel .single_review .member_name span{
	color: #71767f;
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 12px;
	display: inline-block;
	margin-top: 5px;
}
/* ===== CSS For "Members Review" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Bottom Fixed Banner" Starts Here ===== */
.bottom_fixed_banner_wrap{
	background: var(--lightColor);
	box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
	padding: 10.5px 0px;
	position: fixed;
	left: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 999999;
	display: none;
}
.bottom_fixed_banner{
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 55px 5px 1fr 5px 160px;
    grid-template-columns: 55px 1fr 160px;
    grid-auto-rows: auto;
    gap: 5px;
}
.bottom_fixed_banner  h5{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 0px;
}
.bottom_fixed_banner  h6{
	color: var(--darkColor);
	font-family: var(--secondaryFont);
	font-weight: 500;
	font-size: 15px;
	text-transform: capitalize;
	margin-bottom: 0px;
}
.bottom_fixed_banner .cta_btn_wrap{
	margin-top: 0px;
}
/* ===== CSS For "Bottom Fixed Banner" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "" Starts Here ===== */
/* ===== CSS For "" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */