@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap');
body {
	margin: 0;
	padding: 0;
	background-color: var(--white_bg);
}

:root {
	--white_bg: #fff;
	--border_radius: 7px;
	--border-top: 1px solid rgba(0, 0, 0, .05);
	--border-bottom: 1px solid rgba(0, 0, 0, .05);
	--border-left: 1px solid rgba(0, 0, 0, .05);
	--border-right: 1px solid rgba(0, 0, 0, .05);
	--border: 1px solid rgba(0, 0, 0, .05);
	--light_bg: #F9F9F9;
	--black_bg: #000000;
	--inactive_link: #aeaeae;
	--bg_success: #d0fde0;
	--bg_danger: #FFEEEB;
	--bg_warning: #FFF5EB;
}

@font-face {
	font-family: 'CircularStd-Bold';
	src: url('font/circular/CircularStd-Bold.otf');
	font-weight: 800;
	font-display: swap;
	font-style: normal;
}

@font-face {
	font-family: 'CircularStd-Black';
	src: url('circular/CircularStd-Black.otf');
	font-weight: 900;
	font-display: swap;
	font-style: normal;
}

@font-face {
	font-family: 'CircularStd-Book';
	src: url('circular/CircularStd-Book.otf');
	font-display: swap;
	font-style: normal;
}

@font-face {
	font-family: 'CircularStd-Light';
	src: url('circular/CircularStd-Light.otf');
	font-display: swap;
	font-style: normal;
}

@font-face {
	font-family: 'CircularStd-Medium';
	src: url('circular/CircularStd-Medium.otf');
	font-display: swap;
	font-style: normal;
}

/******Navbar*******/
.navbar {
	padding: 10px 30px;
	box-shadow: 0 4px 13px rgba(0, 0, 0, .05);
	background-color: var(--white_bg);
}

.navbar .navbar-brand {
	font-family: 'CircularStd-Black', serif;
	font-size: 1.5em;
	color: var(--black_bg);
}

.navbar .navbar-nav .nav-item .nav-link {
	font-family: "Comfortaa", sans-serif;
	font-size: .8em;
	font-weight: 600;
	color: var(--black_bg);
	margin-left: 40px;
}

.navbar .navbar-nav .nav-item .nav-link.cta {
	background-color: var(--black_bg);
	color: var(--white_bg);
	padding: 7px 35px;
	border-radius: 20px;
}

.hero {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 95vh;
	background: linear-gradient(to left, rgba(255, 255, 255, .93), rgba(255, 255, 255, .93)), url('https://static.vecteezy.com/system/resources/previews/004/230/475/original/abstract-wavy-stripes-on-a-white-background-isolated-wave-line-art-curved-smooth-design-illustration-eps-10-free-vector.jpg');
	background-position-x: 0%, 0%;
	background-position-y: 0%, 0%;
	background-repeat: repeat, repeat;
	background-size: auto, auto;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.hero .hero-wrap {
	width: 50%;
}

.hero .hero-wrap h1 {
	font-family: 'CircularStd-Black';
	font-size: 5.5em;
	color: var(--black_bg);
	margin-bottom: 0;
}

.hero .hero-wrap h3 {
	font-family: "Comfortaa", sans-serif;
	font-size: 2em;
	color: var(--inactive_link);
	margin-bottom: 30px;
}

.hero .hero-wrap h3 span {
	color: var(--black_bg);
}

.hero .hero-wrap a {
	font-family: "Comfortaa", sans-serif;
	font-size: .9em;
	color: var(--white_bg);
	background: var(--black_bg);
	padding: 10px 45px;
	border-radius: 30px;
}

.about_widget {
	padding: 50px 15px;
}

.about_widget .text-wrap h2 {
	font-family: 'CircularStd-Black';
	font-size: 2em;
	color: var(--black_bg);
	margin-bottom: 20px;
}

.about_widget .img_box {
	width: 100%;
	height: 45vh;
}

.about_widget .img_box img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	object-fit: cover;
}

.about_widget .text-wrap p {
	font-family: "Comfortaa", sans-serif;
	font-size: .8em;
	font-weight: 600;
	line-height: 30px;
	color: var(--black_bg);
}

.goals_widget {
	padding: 50px 15px;
}

.goals_widget .heading h2 {
	font-family: 'CircularStd-Black';
	font-size: 3em;
	color: var(--black_bg);
	text-align: center;
}

.goals_widget .item_box {
	margin-top: 50px;
	text-align: center;
	background: #f2f2f2;
}

.goals_widget .item_box {
	padding: 15px;
	border-radius: 20px;
}

.goals_widget .item_box h2 {
	font-family: 'CircularStd-Black';
	font-size: 1.2em;
	margin-bottom: 20px;
}

.goals_widget .item_box p {
	font-family: "Comfortaa", sans-serif;
	font-size: .8em;
	font-weight: 600;
	line-height: 25px;
}

.goals_widget .item_box img {
	margin-bottom: 20px;
}

.goals_widget .item_box .img_box {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin: 0 auto;
	position: relative;
	margin-bottom: 30px;
	background: var(--black_bg);
}

.goals_widget .item_box .img_box img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: auto;
}

.programs_widget {
	padding: 50px 15px;
}

.programs_widget .heading h2 {
	font-family: 'CircularStd-Black';
	font-size: 3em;
	color: var(--black_bg);
	text-align: center;
	margin-bottom: 50px;
}

.programs_widget .card {
	border-radius: 20px;
}

.programs_widget .card .img_box {
	width: 100%;
	height: 40vh;
}

.programs_widget .card .img_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}

.programs_widget .card .text-box {
	padding: 20px;
}

.programs_widget .card .text-box h2 {
	font-family: 'CircularStd-Black';
	font-size: 1.3em;
	color: var(--black_bg);
}

.programs_widget .card .text-box p {
	font-family: "Comfortaa", sans-serif;
	font-size: .7em;
	color: var(--black_bg);
}

.programs_widget .card .text-box a {
	font-family: "Comfortaa", sans-serif;
	font-size: .9em;
}

.programs_widget .card .text-box a.learn_btn {
	background: var(--white_bg);
	border-radius: 20px;
	border: 1px solid var(--black_bg);
}

.programs_widget .card .text-box a.apply_btn {
	background: var(--black_bg);
	border-radius: 20px;
	border: 1px solid var(--black_bg);
	color: var(--white_bg);
}

/* .footer {
    padding: 50px 30px;
} */

.footer .top {
	padding: 30px 10px;
	border-bottom: var(--border-bottom);
}

.footer .bottom {
	padding: 30px 10px;
}

.footer .top .footer-icons a {
	text-decoration: none;
	color: var(--black_bg);
	padding: 0 15px;
}

.footer .bottom .text-right a {
	font-family: "Comfortaa", sans-serif;
	font-size: .9em;
	color: var(--black_bg);
}

.footer .bottom p {
	font-family: "Comfortaa", sans-serif;
	font-size: .9em;
	color: var(--inactive_link);
}

.reg_form {
	width: 100%;
	height: 100vh;
	position: relative;
	background: linear-gradient(to left, rgba(255, 255, 255, .93), rgba(255, 255, 255, .93)), url('https://static.vecteezy.com/system/resources/previews/004/230/475/original/abstract-wavy-stripes-on-a-white-background-isolated-wave-line-art-curved-smooth-design-illustration-eps-10-free-vector.jpg');
	background-position-x: 0%, 0%;
	background-position-y: 0%, 0%;
	background-repeat: repeat, repeat;
	background-size: auto, auto;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.reg_form .form_box {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 40%;
	transform: translate(-50%, -50%);
	border: 1px solid rgba(0, 0, 0, .05);
	box-shadow: 0 0px 5px rgba(0, 0, 0, .15);
	padding: 20px;
	border-radius: 10px;
	background-color: #fff;
}

.reg_form .form_box .text-heading h2 {
	font-family: 'CircularStd-Black';
	color: var(--black_bg);
	font-size: 2em;
	border-bottom: var(--border-bottom);
	padding-bottom: 20px;
	margin-bottom: 30px;
}

.reg_form .form_box label {
	font-family: "Comfortaa", sans-serif;
	color: var(--black_bg);
	font-size: 12px;
}

.reg_form .form_box label span{
	color: var(--danger);	
}

.reg_form .form_box input {
	font-family: "Comfortaa", sans-serif;
	color: var(--black_bg);
	font-size: 12px;
}

.reg_form .form_box select {
	font-family: "Comfortaa", sans-serif;
	color: var(--black_bg);
	font-size: 12px;
}

.reg_form .form_box button {
	font-family: "Comfortaa", sans-serif;
	color: var(--white_bg);
	font-size: 15px;
	background-color: var(--black_bg);
	cursor: pointer;
}

@media screen and (max-width:800px) {
	.reg_form .form_box {
		width: 55%;
	}

	.reg_form {
		width: 100%;
		height: 90vh;
	}
}

@media screen and (max-width:576px) {
	.reg_form .form_box {
		width: 95%;
	}

	.reg_form {
		width: 100%;
		height: 100vh;
	}
}

@media screen and (max-width:950px) {
	.hero .hero-wrap {
		width: 95%;
	}

	.about_widget .img_box {
		width: 100%;
		height: 30vh;
	}

	.about_widget .text-wrap {
		margin-top: 30px;
	}

	.programs_widget .card .img_box {
		width: 100%;
		height: 25vh;
	}

	.programs_widget .card {
		margin-bottom: 20px;
	}
}

@media screen and (max-width:576px) {
	.hero .hero-wrap h1 {
		font-size: 3em;
		margin-bottom: 20px;
		font-weight: 900;
	}

	.hero .hero-wrap h3 {
		font-size: 1.5em;
	}

	.hero .hero-wrap {
		width: 95%;
	}

	.about_widget {
		padding: 20px 15px;
	}

	.about_widget .text-wrap h2 {
		font-size: 1.5em;
	}

	.about_widget .text-wrap {
		margin-top: 20px;
	}

	.goals_widget .item_box {
		padding: 20px;
		border-radius: 20px;
	}

	.goals_widget .item_box {
		margin-top: 20px;
	}

	.goals_widget .item_box .img_box {
		width: 50px;
		height: 50px;
		margin-bottom: 20px;
	}

	.goals_widget .item_box .img_box i {
		font-size: 20px;
	}

	.goals_widget .heading h2 {
		font-size: 2.5em;
		margin-bottom: 0px;
	}

	.programs_widget .heading h2 {
		font-size: 2.5em;
		margin-bottom: 20px;
	}

	.programs_widget .card {
		border-radius: 20px;
		margin-bottom: 20px;
	}

	.programs_widget .card .img_box {
		width: 100%;
		height: 30vh;
	}

	.footer .top .footer-icons a {
		padding: 0 10px;
	}

	.footer .top {
		padding: 15px 5px;
	}

	.navbar .navbar-nav .nav-item .nav-link {
		margin-left: 0px;
	}
}

.loader {
	width: 20px;
	height: 20px;
	border: 4px solid #FFF;
	border-bottom-color: transparent;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
}

.loading_screen {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, .7);
	filter: blur(8px);
	-webkit-filter: blur(8px);
	backdrop-filter: blur(10px);
	width: 100%;
	height: 100vh;
	display: none;
	z-index: 999999999;
}
.loading_screen .circular_loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
	border: 4px solid rgb(1, 38, 28);
	border-bottom-color: transparent;
	border-radius: 50%;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
	z-index: 99999999999;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*******Alert*******/
.overlay {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 9999999999;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, .5);
	display: none;
}
  .alert_body {
	position: fixed;
	bottom: -100%;
	top: auto;
	left: 50%;
    transform: translate(-50%, -100%);
	z-index: 9999999999;
	width: 45%;
	height: auto;
	background: var(--white_bg);
	transition: all .5s ease-in-out;
	border-radius: 15px;
	padding: 50px 20px;
   text-align: center;
}
.alert_body .close_alert {
    background: var(--success);
    color: #fff;
    font-family: 'CircularStd-Medium', sans-serif;
    font-size: 12px;
}

.alert_body .close_alert.danger {
    background: var(--danger);
}

.alert_body .back_btn {
    background: var(--success);
    color: #fff;
    font-family: "Comfortaa", sans-serif;
    font-size: 12px;
    margin: 0 5px;
}

.alert_body .close_alert_inactive {
     background: var(--white_bg);
    color: var(--success);
    font-family: "Comfortaa", sans-serif;
    font-size: 12px;
    border: 1px solid var(--success);
    margin: 0 5px;
}
.alert_body .para p {
    color: #111;
    font-family: 'CircularStd-Medium', sans-serif;
    font-size: 15px;
}

.alert_body .icon_box.success i {
    color: var(--success);
    font-size: 30px;
}

.alert_body .icon_box.danger i {
    color: var(--danger);
    font-size: 30px;
}

.alert_body .icon_box {
   margin-bottom: 25px;
}

.alert_body.active {
	bottom: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) !important;
} 
@media screen and (max-width:800px) {
	.alert_body {
		width: 50%;
	}
}

@media screen and (max-width:576px) {
	.alert_body {
		width: 95%;
	}
}
/**********SUccess page *********/
.success_page {
	width: 100%;
	height: 100vh;
	background: linear-gradient(to top, rgba(255, 255, 255, .7) 50%, rgba(255, 255, 255, .7) 50%), url(../img/bg_1.jpg);
	background-size: cover;
	background-repeat: repeat;
	background-position: center center;
	/*background: #f9f9f9;*/
	position: relative;
}

.success_page .success_box {
	padding: 20px 30px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.1);
	/*margin-top: 50px;*/
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50%;
}

.success_page .success_box .header-text h2 {
	margin-bottom: 30px;
	color: #00b35a;
	font-family: 'CircularStd-Black';
	font-size: 2.5em;
	font-weight: 600;
}

.success_page .success_box .header-text i {
	color: #00b35a;
	font-size: 3.5em;
	margin-bottom: 30px;
}

.success_page .success_box .header-text p {
	font-family: "Comfortaa", sans-serif;
	color: #888;
	font-size: 1.1;
	font-weight: 400;
}

.success_page .success_box .pay_info {
	margin-top: 50px;
}

.success_page .success_box .pay_info .text-box p {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	/* padding-bottom: 18px; */
	padding: 15px 0;
	margin-bottom: 0;
	font-family: "Comfortaa", sans-serif;
	font-size: 1em;
}

/*.success_page .success_box .pay_info .text-box p:last-child {*/
/*	border-bottom: none;*/
/*}*/

.success_page .success_box .pay_info .text-box p.table_head {
	color: #888;
}

.success_page .success_box .pay_info .text-box p.amount {
	color: #000;
	font-size: 14px;
	font-weight: 600;
}

.success_page .success_box .home_btn a {
	text-decoration: none;
	color: #fff;
	font-family: "Comfortaa", sans-serif;
	font-size: 13px;
	background: #00b35a;
}

@media screen and (max-width:950px) {

	/*********Success page***********/
	.success_page .success_box {
		padding: 30px 20px;
		background: #fff;
		border-radius: 5px;
		width: 90%;
		/*margin-top: 20px;*/
	}

	.success_page .success_box .header-text h2 {
		margin-bottom: 20px;
		font-size: 1.5em;
	}

	.success_page .success_box .header-text i {
		font-size: 3em;
		margin-bottom: 20px;
	}

	.success_page .success_box .header-text p {
		font-size: 14px;
		font-weight: 400;
	}

	.success_page .success_box .pay_info {
		margin-top: 30px;
	}

	.success_page .success_box .pay_info .text-box p {
		padding: 15px 0;
		font-size: 13px;
	}

	.success_page .success_box .home_btn {
		margin-top: 30px;
	}
}

    .programs_widget .accordion {
            margin-bottom: 20px;
    }
 .programs_widget .accordion .card-header {
    background: transparent;
    }
    .programs_widget .accordion .card {
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 0 5px;

    }
    .programs_widget .accordion  .card .card-body {
    background: #f8f8f8;
    }
    .programs_widget .accordion .card .card-header  .card_header_icon {
    float: right;
    transition: all .3s ease-in-out;
    }
    .programs_widget  .card .card-header  .card_header_icon i {
    font-size: 15px;
    }

    .programs_widget .accordion .card .card-header button {
    text-decoration: none;
    color: #000;
    font-family: "Comfortaa", sans-serif;
    font-size: .6em;
    font-weight: 600;
    border-radius: 0;
    padding: 12px 5px;
    border-bottom: 1px solid #f2f2f2;
    }
    .programs_widget .accordion .card .card-header {
    padding: 0;
    }
    .programs_widget .accordion .card .card-body {
    font-family: "Comfortaa", sans-serif;
    font-weight: 400;
    color: #000;
    font-size: .8em;
    margin-bottom: 0;
    padding: 1.2rem .7rem;
    }
    
    .programs_widget .accordion .card .card-body ul li{
    font-family: "Comfortaa", sans-serif;
    font-weight: 400;
    color: #000;
    font-size: .8em;
    padding: 5px 0;
    margin-bottom: 0;
    padding-left: 10px;
    }
    
      .programs_widget .accordion .card .card-body ol li{
    font-family: "Comfortaa", sans-serif;
    font-weight: 400;
    color: #000;
    font-size: .8em;
    padding: 5px 0;
        margin-bottom: 0;
    padding-left: 10px;
    }
    
    .programs_widget .accordion .card .card-body span{
    font-family: 'Comfortaa', sans-serif;
    font-weight: 600;
    color: #000;
    font-size: .7em;
    padding: 5px 0;
    }

    .rotate {
    transform: rotate(180deg);
    }
    
    @media screen and (max-width:950px) {
    .programs_widget .accordion .card {
    margin-bottom: 0;
    }
    .programs_widget .accordion .card .card-header button {
    font-family: "Comfortaa", sans-serif;
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    padding: 20px 7px;
    }
    .programs_widget .accordion .card .card-header .card_header_icon i {
    font-size: 16px;
    }
    .programs_widget .accordion .card .card-body {
    font-size: 14px;
    line-height: 25px;
    } 

    }

 .footer {
      width: 100%;
      background: #000;
      border-top: 1px solid rgba(73, 66, 66, 0.3);
      font-family: 'Comfortaa', cursive;
      transition: all 2s ease-in-out;
      margin-top: 100px;
  }
  .footer:hover {
    border-top: 1px solid #fff;
  }
  .footer-div a {
      font-size: 15px;
      color: #777;
      text-decoration: none;
      transition: all 1s ease-in-out;
      font-weight: 500;
  }
  .footer-div p {
    font-size: 15px;
    color: #777;
    transition: all 1s ease-in-out;
    font-weight: 500;
}
  .footer-div a:hover {
    color: #fff !important;
  }
  .footer-div p:hover {
    color: #fff !important;
  }
  .footer .footer-div a {
   text-decoration: none;
   color: #777;
  }
  .footer .footer-div {
      padding-top: 20px;
      padding-bottom: 10px;
  }
  .footer-icons a {
      padding-right: 20px;
  }
  .footer .footer-mail {
      text-decoration: none;
      color: #777 !important;
  }
 .copy_p {
    padding-bottom: 0 !important;
  }
  .footer-div .fa-facebook-f {
      font-size: 18px;
  }
  .footer-div .fa-facebook-f:hover {
    color: #0f54e9;
}
  .footer-div .fa-twitter {
    font-size: 18px;
}
.footer-div .fa-twitter:hover {
    color: #00acee;
}
.footer-div .fa-instagram {
    font-size: 18px;
}
.footer-div .fa-instagram:hover {
    color: #DD2A7B;
}
.footer-div .fa-linkedin {
    font-size: 18px;
}

.footer-div .fa-linkedin:hover {
    color: #0e76a8;
}
@media screen and (max-width:950px){
      .footer .footer-div {
      padding-top: 5px;
      padding-bottom: 5px;
  }
}
/********Loader**********/
@media screen and (max-width:580px) {
    
    .footer-div a {
        font-size: 13px;
    }
    .footer-div p {
        font-size: 13px;
    }
    .footer {
        margin-top: 40px;
    }
}
