
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

html{
	font-size: 62.5%;
	overflow-x: hidden !important;
}
body{	
	font-size: 1.6rem;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	overflow-x: hidden !important;

/*	font-family: "Urbanist", serif;   */
}
h1,h2,h3,h4,h5,h6,p{
	margin: 0;
	padding: 0;
}
ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
ul li a,a{
	text-decoration: none;
}
h1{
	font-size: 50px;
	font-weight: 700;
	color: #161616;
}
h2{
	font-size: 35px;
	font-weight: 700;
	color: #0B0D1E;
}
h3{
	font-size: 30px;
	font-weight: 700;
	color: #0B0D1E;
}
p{
	color: #0B0D1E;
}
/*=================  Start Header Section  =================*/
/*.header_main{
    padding: 32px 0px;
    transition: 0.2s;
}*/
/*.fixedheader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
}*/
.header_main {
    padding: 32px 0px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
}
.header_main.fixedheader {
	padding: 32px 0px 0px 0px;
}
.header{
	border: 1px solid #247E3D4D;
	background: #F2FFF2;
	border-radius: 40px;
}
.header_top{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 35px;
	background: #FFF;
	border-radius: 70px;
}
.logo a img{
	width: 160px;
	height: auto;
}
.menu ul {
	display: flex;
	gap: 32px;
}
.menu ul li a{
	display: inline-block;
	font-weight: 600;
	color: #222222;
	transition: 0.2s;
}
.menu ul li a:hover{
	color: #247E3D;
}
.header_top_call a{
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	color: #FFFFFF;
	padding: 8px 8px 8px 20px;
	border-radius: 30px;
	background: #247E3D;
	transition: 0.2s;
}
.header_top_call a:hover{
	background: #1e5b2f;
}
.header_top_call span{
	width: 25px;
	height: 25px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #FFFFFF4D;
}
.header_top_call span img{
	width: 15px;
	height: auto;
}
.navbar {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0;
}
.navbar li {
  position: relative;
  cursor: pointer;
}
.navbar li a {
    display: inline-block;
    font-weight: 600;
    color: #222222;
    padding: 15px 0px;
    position: relative;
    z-index: 2;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 7px;
}
.navbar li a i {
/*	display: none;*/
	font-size: 14px;
}
.navbar li a:hover,.navbar .active{
	color: #1e5b2f;
}
.navbar li a:hover::before,.navbar .active:before{
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 4px;
	background: #247E3D;
	border-radius: 40px;
}
.dropdown_menu {
  position: absolute;
  top: 100%; /* Position the dropdown below the item */
  left: -70px;
  padding: 0;
  background-color: #FFF;
  border: 1px solid #ccc;
  list-style: none;
  width: 200px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  visibility: hidden;
  transition: 0.5s;
  opacity: 0;
}
.dropdown_menu li:hover {
  background-color: #f0f0f0;
}
.navbar li:hover .dropdown_menu {
  visibility: visible;
  left: 0;
  opacity: 1;
}
.dropdown_menu li a {
    font-size: 13px !important;
    padding: 10px 10px;
    border-bottom: 1px solid #ddd;
    width: 100%;
}
.dropdown_menu li:last-child a{
	border-bottom: none;
}
.dropdown_menu li a:hover{
	background: #FFF;
}
/*Start Mobile Menu icon*/
#nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
	width: 28px;
	height: 23px;
	position: relative;
	margin: 0px;
	-webkit-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	        transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}
#nav-icon1 span, #nav-icon3 span, #nav-icon4 span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #000000;
	border-radius: 0px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	        transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}
#nav-icon4 span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
          transform-origin: left center;
}
#nav-icon4 span:nth-child(2) {
	top: 8px;
	-webkit-transform-origin: left center;
	    -ms-transform-origin: left center;
	        transform-origin: left center;
}
#nav-icon4 span:nth-child(3) {
	top: 16px;
	-webkit-transform-origin: left center;
	    -ms-transform-origin: left center;
	        transform-origin: left center;
}
#nav-icon4.open span:nth-child(1) {
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	top: -2px;
	left: 2px;
}
#nav-icon4.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
#nav-icon4.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	        transform: rotate(-45deg);
	top: 18px;
	left: 2px;
}
/*End Mobile Menu icon*/
.menu_icon{
	display: none;
}
.dropdown_menu_mobile_design{
	display: none;
}
.fixed_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 4;
    display: none;
}
/*=================  End Header Section  =================*/
/*Start Sub Menu*/
.sub_menu_main {
    padding-bottom: 20px;
    margin-top: -10px;
    border-bottom: 1px solid #E0E0E0;
    padding-top: 200px;
}
.sub_menu ul{
	display: flex;
	align-items: center;
	gap: 10px;
}
.sub_menu ul li{
	color: rgba(0, 0, 0, 0.5);
	font-size: 17px;
}
.sub_menu ul li a{
	display: inline-block;
	color: rgba(0, 0, 0, 0.5);
	font-size: 17px;
	transition: 0.2s;
}
.sub_menu ul li:last-child a{
	color: #000;
}
.sub_menu ul li a:hover{
	color: #000;
}
/*End Sub Menu*/

/*=================  Start Banner Section  =================*/
.banner_main {
    margin-top: 10px;
    padding-top: 191px;
}
.banner {
    background-color: #F2FFF2;
    background: url(../images/home/banner-bg.png) no-repeat scroll 0 0 / cover;
    padding: 0px 0px 0px 90px;
    border: 1px solid #247E3D4D;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}
.banner_left{
    max-width: 630px;
}
.banner_left b,.section_title b{
	display: inline-block;
	font-weight: 600;
	color: #247E3D;
	padding: 12px 18px;
	background: rgba(36, 126, 61, 0.1);
	border-radius: 60px;
}
.banner_left h1 {
    margin: 27px 0px;
    letter-spacing: -2px;
}
.banner_left h1 span{
	color: #247E3D;
}
.banner_left p {
    font-size: 20px;
    color: #161616;
    margin-bottom: 50px;
}
.btn_style {
    display: inline-block;
    font-size: 19px;
    font-weight: 700;
    color: #FFF;
    background: #247E3D;
    border-radius: 50px;
    padding: 10px 10px 10px 35px;
    transition: 0.2s;
    letter-spacing: -0.8px;
    border: none;
}
.btn_style span {
    width: 35px;
    height: 35px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.3);
    display: inline-block;
    line-height: 31px;
    margin-left: 15px;
    text-align: center;
	transition: 0.2s;
}
.btn_style span img{
	width: 20px;
	height: auto;
}
.btn_style:hover{
	background: #1e5b2f;
	color: #FFF;
/*	transform: scale(1.02);*/
}

.banner_right {
	position: relative;
	z-index: 1;
}
.banner_right_content1 {
    position: absolute;
    top: 25px;
    right: 25px;
    background: url(../images/home/banner-text-bg.png) no-repeat scroll 0 0 / cover;
    padding: 18px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
	gap: 50px;
}
.banner_right_content2 {
    top: inherit;
    right: inherit;
    bottom: 100px;
    left: -80px;
    background: #FFF;
    border-radius: 100px;
    box-shadow: 11.11px 11.11px 46.3px 0px #0000001A;
}
.banner_right_border {
    position: absolute;
    top: -32%;
    left: 97%;
}
.banner_right_img_pos {
    position: absolute;
    top: 27%;
    left: -10%;
}
.banner_right_img_pos img{
	width: 150px;
	height: auto;
}
.banner_right_border img{
	width: 250px;
	height: auto;
}
.banner_right_img{
	max-width: 550px;
	width: 100%;
	margin-bottom: 70px;
}
.banner_right_img img{
	width: 100%;
	height: auto;
}
.banner_right_content1_left{
	display: flex;
	align-items: center;
	gap: 25px;
}
.banner_right_content1_left span img{
	width: 65px;
	height: auto;
}
.banner_right_content1_left_text h2{
	color: #292D32;
}
.banner_right_content1_left_text p{
	margin-top: 5px;
	font-size: 18px;
	color: #292D32;
}
.banner_right_content1_left_text2{
	text-align: center;
	position: relative;
	z-index: 2;
}
.banner_right_content1_left_text2::before{
	position: absolute;
	content: "";
	left: -25px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 40px;
	background: #000;
	z-index: -1;
}
/*=================  End Banner Section  =================*/

/*=================  Start (Officially Accepted Exam Boards) Section  =================*/
.exam_board_main{
	padding: 40px 0px 0px 0px;
}
.exam_board_title p{
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	color: #0B0D1E;
	text-transform: uppercase;
}
.exam_board_items ul{
	display: flex;
	margin-top: 20px;
	justify-content: space-between;
}
.exam_board_items ul li{
	text-align: center;
}
.exam_board_items ul li a{
	display: inline-block;
}
.exam_board_items ul li a img{
	width: 145px !important;
	height: auto;
}
/*=================  End (Officially Accepted Exam Boards) Section  =================*/

/*=================  Start (EXAM CENTRE LONDON | ECL) Section  =================*/
.exam_center_london_main{
	margin: 70px 0px;
	padding: 60px 0px;
	background: #247E3D;
	background: radial-gradient(#0C4F1F 10%, #247E3D 100%);
}
.exam_center_london_title{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: center;
}
.section_title b {
    color: #FFF;
    background: rgba(255, 255, 255, 0.2);
    padding: 7px 25px;
    font-weight: 400;
}
.exam_center_london_title h2{
	font-size: 45px;
	margin: 25px 0px 20px 0px;
	color: #FFFFFF;
	letter-spacing: -2px;
	max-width: 895px;
}
.section_title p{
	max-width: 805px;
	font-size: 18px;
	color: #FFFFFF;
}
.exam_center_london_contents{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 50px;
	gap: 30px;
}
.exam_center_london_item,.ucas_exam_center_london_item{
	text-align: center;
	padding: 35px;
	position: relative;
	max-width: 400px;
	background: linear-gradient(to right, #FFFFFF1A, #FFFFFF1A);
    border-radius: 25px;
    z-index: 2;
}
.exam_center_london_item::before,.ucas_exam_center_london_item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px; 
  padding: 2px; 
  background: linear-gradient(to right, #FFFFFF4D, #FFFFFF1A); 
  -webkit-mask: 
     linear-gradient(#fff 0 0) content-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
          z-index: -1;
}
.exam_center_london_item img{
	width: 50px;
	height: auto;
}
.exam_center_london_item h4 {
    margin: 20px 0px 20px 0px;
    font-size: 28px;
    line-height: 40px;
    font-weight: 600;
    color: #FFF;
}
.exam_center_london_item p{
	color: #FFFFFF;
}
.exam_center_london_item ul{
	display: flex;
	flex-wrap: wrap;
	margin-top: 10px;
}
.exam_center_london_item ul li{
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	color: #FFF;
	letter-spacing: -0.7px;
	flex: 0 0 33.33%;
	margin-top: 10px;
}
.exam_center_london_item ul li img{
	width: 15px;
	height: auto;
}
.exam_center_london_item_ul{
	justify-content: center !important;
	margin-top: 0px !important;
}
.exam_center_london_item_ul li{
	flex: 0 0 50% !important;
}
.exam_center_london_btn{
	margin-top: 50px;
	display: flex;
	justify-content: center;
}
.exam_center_london_btn .btn_style {
    background: #FFF !important;
    color: #247E3D !important;
    padding: 12px 10px 12px 35px;
    border: 1px solid transparent;
}
.exam_center_london_btn .btn_style span{
	background: #247E3D;
    width: 30px;
    height: 30px;
    line-height: 28px;
}
.exam_center_london_btn .btn_style:hover{
	background: #247E3D !important;
	border: 1px solid #FFF;
	color: #FFF !important;
}
/*=================  End (EXAM CENTRE LONDON | ECL) Section  =================*/

/*=================  Start (Contact Us) Section  =================*/
.contact_us {
	padding: 20px 40px 20px 20px;
	background: #F2FFF2;
	border: 1px solid #247E3D4D;
	border-radius: 25px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.contact_us_left {
    max-width: 630px;
    width: 100%;
    background: url(../images/home/contact-us.png) no-repeat scroll 0 0 / cover;
    padding: 70px 20px;
    display: flex;
    justify-content: center;
    border-radius: 15px;
    border: 1px solid #247E3D4D;
}
.contact_us_left_items ul{
	padding: 105px 10px 0px 25px;
	position: relative;
	z-index: 2;
	background: #FFF;
    box-shadow: 0px 0px 50px #91919166;
    border-radius: 25px;
}
.contact_us_left_items ul::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px; 
  padding: 2px; 
  background: linear-gradient(to bottom, #247E3D80, #F2FFF280); 
  -webkit-mask: 
     linear-gradient(#fff 0 0) content-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
          z-index: -1;
}

.contact_us_left_items ul li a {
    display: inline-block;
    padding: 12px 20px 12px 16px;
    font-size: 18px;
    font-weight: 600;
    color: #0B0D1E;
    margin-bottom: 15px;
    border-radius: 50px;
}
.contact_us_left_items ul li a img{
	width: 20px;
	height: auto;
	margin-right: 10px;
}
.contact_us_items_bg {
    background: #FFF;
    box-shadow: 0px 0px 50px #91919166;
}
.contact_a1 {
    margin-left: -65px;
    margin-top: -125px;
    position: absolute;
}
.contact_a2 {
    position: absolute;
    right: -125px;
    top: 47px;
}
.contact_a5 {
    margin-left: -90px;
    margin-top: 10px;
    margin-bottom: 20px !important;
}

.contact_us_right {
    max-width: 540px;
    width: 100%;
    text-align: left;
    justify-content: flex-start;
}
.contact_us_title b,.high_standard_title b {
    background: #247E3D26;
    color: #247E3D;
    font-weight: 600;
    font-size: 17px;
}
.contact_us_title h2,.high_standard_title h2{
	color: #000;
	margin-top: 15px;
	text-transform: capitalize;
}
.contact_us_title h2 span,.high_standard_title h2 span{
	color: #247E3D;
}
.contact_us_right_contents ul{
	margin: 30px 0px 40px 0px;
}
.contact_us_right_contents ul li{
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: 20px;
	color: #0B0D1E;
	margin-bottom: 12px;
}
.contact_us_right_contents ul li img{
	width: 16px;
	height: auto;
}
/*=================  End (Contact Us) Section  =================*/

/*=================  Start (High Standard) Section  =================*/
.high_standard_main{
	padding: 70px 0px;
}
.high_standard_title {
    text-align: center;
    max-width: 1255px;
    margin: auto;
}
.high_standard_title b{
	text-transform: uppercase;
}
.high_standard_title p{
	color: #0F172A;
	max-width: 100%;
	margin: 20px 0px;
}
.exam_fees_title p {
    max-width: 1119px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
.high_standard_title .btn_style{
	font-size: 16px !important;
}
.high_standard_title .btn_style span,.contact_us_right_contents .btn_style span{
	width: 30px;
	height: 30px;
	line-height: 28px;
}
.high_standard_contents{
	margin-top: 60px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}
.high_standard_contents2{
	justify-content: center;
	margin-top: 30px;
}
.high_standard_single{
	max-width: 310px;
	width: 100%;
	text-align: center;
	padding: 40px 40px;
	border: 2px solid transparent;
	box-shadow: 0px 0px 20px #0000000F;
	border-radius: 25px;
	transition: 0.2s;
}
.high_standard_single:hover{
	border: 2px solid #247E3D80;
}
.high_standard_single svg path{
	transition: 0.2s;
}
.high_standard_single:hover svg path{
	fill: #247E3D;
}
.high_standard_single img{
	width: auto;
	height: 90px;
}
.high_standard_single h4{
	font-size: 22px;
	font-weight: 800;
	margin: 40px 0px 10px 0px;
	color: #181818;
}
.high_standard_single p{
	font-size: 17px;
	color: #181818;
}
/*=================  End (High Standard) Section  =================*/

/*=================  Start (Frequently Asked Questions) Section  =================*/
.faqs_main{
	padding: 65px 0px;
	background: #F3FFF3;
	border-top: 1px solid #247E3D26;
	border-bottom: 1px solid #247E3D26;
}
.faqs_contents .panel-title > a:before {
    float: right !important;
    font-family: FontAwesome;
    content:"\f068";
    padding-right: 5px;
}
.faqs_contents .panel-title > a.collapsed:before {
    float: right !important;
    content:"\f067";
}
.faqs_contents .panel-title > a:hover, 
.faqs_contents .panel-title > a:active, 
.faqs_contents .panel-title > a:focus  {
    text-decoration:none;
}
.faqs_contents .panel.panel-default {
    background: #fff;
    color: #000;
    border: 1px solid #00000033;
    border-radius: 15px;
    margin-top: 35px;
}
/*.faqs_contents .panel-title > a.collapsed:before {
    float: right !important;
    content: "" !important;
    background: url(../images/home/plus2.png) no-repeat scroll 0 0 / cover;
    width: 35px;
    height: 35px;
    margin-top: -6px;
}
.faqs_contents .panel-title > a:before {
    float: right !important;
    font-family: FontAwesome;
    content: "" !important;
    background: url(../images/home/minus2.png) no-repeat scroll 0 0 / cover;
    width: 35px;
    height: 35px;
    margin-top: -6px;
}*/
.faqs_contents .panel-title > a.collapsed:before {
    float: right !important;
    content: "" !important;
    background: url(../images/home/plus2.png) no-repeat scroll 0 0 / cover;
    width: 35px;
    height: 35px;
    margin-top: 0px;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}
.faqs_contents .panel-title > a:before {
    float: right !important;
    content: "" !important;
    background: url(../images/home/minus2.png) no-repeat scroll 0 0 / cover;
    width: 35px;
    height: 35px;
    margin-top: 0px;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}
.faqs_contents .panel-group a {
    display: block;
    padding: 23px 25px;
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
    color: #0F172A;
    max-width: 565px;
}
.custom_accordion_body {
    margin-top: -5px;
    padding: 0px 25px 25px 25px;
    font-size: 18px;
    color: #0F172A;
}
.faqs_contents .panel-title{
	position: relative;
	z-index: 2;
}
.faqs_contents .panel-title::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 45px;
    background: #247E3D;
    border-radius: 15px;
}
.faqs_contents{
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
}
.custom_accordion {
    flex: 0 0 48.5%;
}
/*.custom_accordion_ucas{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}*/
/*=================  End (Frequently Asked Questions) Section  =================*/

/*=================  Start (Get in Touch) Section  =================*/
.get_in_touch_main{
	margin: 70px 0px;
}
.get_in_touch{
	background: #FFF;
}
.phone-input {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 17px 22px;
    width: 100%;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
}

.flag-select {
  display: flex;
  align-items: center;
  margin-right: 10px;
  position: relative;
}

.flag-icon {
  width: 24px;
  height: 16px;
  margin-right: 5px;
}

.country-code {
  border: none !important;
  background: transparent;
  font-size: 14px;
  cursor: pointer;
  outline: none;
}

.phone-number {
    flex-grow: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: #000;
}

.optional-text {
  font-size: 12px;
  color: #888;
}

.get_in_touch_right{
	width: 540px;
}
.get_in_touch_right_items ul {
    background: url(../images/home/get-in-touch.png) no-repeat scroll 0 0 / cover;
    width: 535px;
    height: 500px;
    object-fit: cover;
}
.getin_touch2 {
    bottom: 55px;
    right: -20px;
    position: absolute;
}
.getin_touch3 {
    bottom: -38px;
    right: -20px;
    position: absolute;
}
.get_in_touch_right_title p{
	font-size: 19px;
	color: #292D32;
	margin: 10px 0px 30px 0px;
}
.contact_us_right_single_input input,.contact_us_right_single_input textarea {
    width: 100%;
    font-size: 14px;
    padding: 17px 22px;
    border-radius: 8px;
    border: 1px solid #CACACA;
    color: #000000;
    margin-bottom: 20px;
}
.contact_us_right_single_input textarea{
	height: 155px;
	resize: none;
}
.get_in_touch_right_contents .btn_style{
	font-size: 16px !important;
}
.get_in_touch_right_contents .btn_style span{
	width: 30px;
	height: 30px;
	line-height: 28px;
}
.get_in_touch_left {
    padding: 45px !important;
}
/*=================  End (Get in Touch) Section  =================*/

/*=================  Start Footer Section  =================*/
.footer_main{
	padding: 65px 0px 50px 0px;
	background: #292D32;
	border: 1px solid #247E3D4D;
}
.footer_contents{
	display: flex;
	justify-content: space-between;
}
.footer_contents_single p{
	font-size: 20px;
	font-weight: 700;
	color: #FFF;
	margin-bottom: 8px;
}
.footer_contents_single ul li a {
    display: inline-block;
    margin-top: 10px;
    color: #FFFFFFB2;
    font-size: 18px;
    line-height: 25px;
    transition: 0.2s;
}
.footer_contents_single ul li a:hover{
	color: #247E3D;
}
.footer_social{
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 10px;
}
.footer_social li a i {
    font-size: 19px;
    color: #FFF;
    transition: 0.2s;
}
.footer_social li a:hover i{
	color: #247E3D;
}
.footer_contents_single4 ul li a{
	display: inline-block;
	font-size: 17px;
	color: #FFF;
}
.footer_contents_single4 ul li a img{
	width: 17px;
	height: auto;
	margin-right: 12px;
}
.footer_contents_single4 ul li a{
	margin-top: 15px;
}
.footer_contents_single_mail input{
	width: 410px;
	padding: 15px 125px 15px 20px;
	border: 1px solid #E0E0E0;
	border-radius: 10px;
	color: #292D32;
	margin: 15px 0px 13px 0px;
}
.footer_contents_single_mail{
	position: relative;
}
.footer_contents_single_mail button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 7px;
    padding: 10px 14px;
    border-radius: 6px;
    background: #247E3D;
    color: #FFF;
    font-size: 15px;
    font-weight: 600;
    border: none;
    transition: 0.2s;
}
.footer_contents_single_mail button:hover{
	background: #1e5b2f;
}
.footer_copyright{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 20px;
	border-radius: 10px;
	background: #FFF;
	margin-top: 60px;
}
.footer_copyright a img{
	width: 160px;
	height: auto;
}
.footer_copyright p{
	font-weight: 600;
	color: #161616;
}
/*=================  End Footer Section  =================*/

/*\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ Start 2nd Page \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/

/*=================  Start (A Level Exams) Section  =================*/
.a_lavel_exams_main {
    padding: 20px 0px 60px 0px;
}
.ucas_application_main {
    padding-top: 220px;
}
.a_level_exams_left ul {
    background: url(../images/a-level-exams/a-level-exams.png) no-repeat scroll 0 0 / cover;
}
.alevel_exams2{
	top: 75px !important;
	right: -25px !important;
	bottom: inherit;
	position: absolute;
}
.alevel_exams3{
	position: absolute;
	right: inherit;
	left: 40px !important;
	bottom: 40px !important;
	top: inherit;
}
.a_level_exams_right_title h3{
	font-size: 32px;
	color: #247E3D;
}
.a_level_exams_right_title p {
    font-size: 18px;
    margin: 15px 0px 30px 0px;
    color: #0B0D1E;
    max-width: 515px;
}
.a_level_exams_right_contents ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.a_level_exams_right_contents ul li {
    flex: 0 0 32%;
    font-size: 17px;
    color: #0B0D1E;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.a_level_exams_right_contents ul li img{
	width: 15px;
	height: auto;
}
.a_level_exams_subjects{
	margin-top: 60px;
}
.a_level_exams_right{
	max-width: 560px;
}
/*=================  End (A Level Exams) Section  =================*/

/*=================  Start (A Level Exam Bodies) Section  =================*/
.a_lavel_exam_bodies{
	max-width: 1110px;
	margin: auto;
}
.exam_board_title h3{
	margin-bottom: 12px;
	text-align: center;
}
.a_lavel_exam_bodies_title p{
	text-transform: capitalize;
	font-weight: 400;
	max-width: 1000px;
	margin: auto;
	line-height: 28px;
}
.a_lavel_exam_bodies_items ul {
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.a_lavel_exam_bodies_items {
    max-width: 800px;
    margin: auto;
}
.a_lavel_exam_bodies_calender{
	border-radius: 20px;
	border: 1px solid #247E3D4D;
	display: flex;
	margin-top: 60px;
	overflow: hidden;
}
.a_lavel_exam_bodies_calender_img{
	max-width: 275px;
	width: 100%;
	display: flex;
	justify-content: center;
	background: #F0FDF2;
	border-right: 1px solid #247E3D4D;
	padding: 45px 10px 60px 10px;
	position: relative;
}
.a_lavel_exam_bodies_calender_date {
    position: absolute;
    top: 46%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}
.a_lavel_exam_bodies_calender_date h4{
	font-family: "Urbanist", serif;
	font-size: 22px;
	font-weight: 800;
	color: #0F172A;
	position: relative;
}
.a_lavel_exam_bodies_calender_date h4::before {
    position: absolute;
    content: "";
    bottom: -30px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    border-bottom: 4px dotted rgba(15, 23, 42, 0.4);
    width: 67px;
}
.a_lavel_exam_bodies_calender_img img{
	width: 145px !important;
	height: auto;
}
.a_lavel_exam_bodies_calender_contents{
	padding: 35px 55px;
}
.a_lavel_exam_bodies_calender_contents h4{
	font-size: 22px;
	font-weight: 700;
	color: #0B0D1E;
}
.a_lavel_exam_bodies_calender_contents p{
	font-size: 18px;
	margin: 12px 0px 20px 0px;
}
.alebcc_btns{
	display: flex;
	gap: 20px;
}
.btn_style2{
	border: 1px solid #292D32 !important;
	background: transparent;
	color: #292D32;
}
.btn_style2 span{
	background: #292D32;
}
.btn_style2:hover span,.btn_style3:hover span{
	background: rgba(255, 255, 255, 0.3);
}

.a_level_exams_practical{
	margin-top: 60px;
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}
.a_level_exams_practical_pos{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
	z-index: -1;
}
.a_level_exams_practical img{
	width: 35px;
	height: auto;
}
.a_level_exams_practical_contents {
    max-width: 450px;
    width: 100%;
}
.a_level_exams_practical_contents h3{
	max-width: 440px;
}
.a_level_exams_practical_contents p{
	font-size: 18px;
	margin-top: 15px;
}
/*=================  End (A Level Exam Bodies) Section  =================*/

/*=================  Start (A Level Exam Booking) Section  =================*/
.a_lavel_exam_booking_main{
	padding: 60px 0px;
}
.a_lavel_exam_booking{
	padding: 60px 15px;
	border-radius: 25px;
	background: radial-gradient(#0C4F1F 10%, #247E3D 100%);
}
.a_lavel_exam_booking_title{
	max-width: 855px;
	margin: auto;
	text-align: center;
}
.a_lavel_exam_booking_title h3{
	color: #FFF;
}
.a_lavel_exam_booking_title p {
    font-size: 20px;
    margin: 20px 0px 30px 0px;
    letter-spacing: -0.6px;
    color: rgba(255,255,255,0.8);
}
.btn_style3{
	background: #FFFFFF;
	color: #247E3D;
	border: 1px solid transparent;
}
.btn_style3 span{
	background: #247E3D;
}
.btn_style3:hover{
	border: 1px solid #FFF;
}
/*=================  End (A Level Exam Booking) Section  =================*/

/*\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ Start 3rd Page \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/

/*=================  Start (A Level Endorsement) Section  =================*/
.a_lavel_endorsement_main{
	padding: 40px 0px 0px 0px;
}
.a_lavel_endorsement_title h2{
	color: #0F172A;
	text-align: center;
}
.a_lavel_endorsement_title h2 span{
	color: #247E3D;
}
.a_lavel_endorsement_contents{
	margin: 20px 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.a_lavel_endorsement_contents_img{
	max-width: 610px;
	width: 100%;
}
.a_lavel_endorsement_contents_img img{
	width: 100%;
	height: auto;
}
.a_lavel_endorsement_contents_right{
	max-width: 610px;
	width: 100%;
}
.a_lavel_endorsement_contents_right h3{

}
.a_lavel_endorsement_contents_right p{
	font-size: 18px;
	color: #0B0D1E;
	margin-top: 15px;
}
.a_lavel_endorsement_btn{
	display: flex;
	justify-content: center;
}

.a_lavel_endorsement_fees{
	max-width: 900px;
	width: 100%;
	margin: auto;
	padding: 60px 80px 50px 80px;
	border: 2px solid #F77C00;
	border-radius: 25px;
	margin-top: 80px;
	position: relative;
}
.a_lavel_endorsement_fees_title {
    position: absolute;
    top: -24px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}
.a_lavel_endorsement_fees_title h2{
	color: #F77C00;
	padding: 1px 20px;
	line-height: 45px;
	background: #FFF;
	display: inline-block;
}
.a_lavel_endorsement_fees p {
    display: flex;
    align-items: center;
    color: #0B0D1E;
    font-size: 20px;
    letter-spacing: -0.6px;
}
.a_lavel_endorsement_fees b{
	color: #F77C00;
	font-weight: 700;
}
.a_lavel_endorsement_fees p img{
	width: 15px;
	height: auto;
	margin-right: 20px;
}
.a_lavel_endorsement_fees p:first-child{
	margin-bottom: 20px;
}

/*=================  End (A Level Endorsement) Section  =================*/

/*=================  Start (Session Details) Section  =================*/
.session_details_main{
	padding: 60px 0px;
}
.session_details_left ul{
	background: url(../images/a-level-endorsement/session-details.png) no-repeat scroll 0 0 / cover;
}
.a_level_exams_endorsement_contents ul{
	margin: 20px 0px;
	gap: 15px;
}
.a_level_exams_endorsement_contents ul li {
    flex: 0 0 100% !important;
    font-size: 20px !important;
    color: #0B0D1E;
    gap: 20px;
}
.a_level_exams_endorsement_contents{
    max-width: 520px !important;
}
/*=================  End (Session Details) Section  =================*/

/*\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ Start 4th Page \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/

/*=================  Start {EXAM CENTRE LONDON | ECL (Ucas Applicaton-page)} Section  =================*/
.exam_center_london_main_ucas_application{
	margin: 0px !important;
}
.ucas_exam_center_london_item{
	padding: 45px 30px 30px 30px;
	max-width: 305px;
	width: 100%;
	text-align: center;
}
.ucas_exam_center_london_item img{
	width: 50px;
	height: auto;
}
.ucas_exam_center_london_item span{
	display: block;
	font-size: 20px;
	font-weight: 600;
	margin: 20px 0px 15px 0px;
	color: rgba(255, 255, 255, 0.6);
}
.ucas_exam_center_london_item h3{
	font-size: 28px;
	color: #FFFFFF;
}
.ucas_exam_center_london_item p{
	color: #FFFFFF;
	margin-top: 20px;
}
.ucas_exam_center_london_item p a{
	color: #FFF;
	text-decoration: underline;
}
.ucas_exam_center_london_item p a:hover{
	text-decoration: none;
}
.ucas_exam_center_london_contents{
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
}
/*=================  End {EXAM CENTRE LONDON | ECL (Ucas Applicaton-page)} Section  =================*/

/*=================  Start (Important Deadlines) Section  =================*/
.important_deadlines_main{
	padding: 60px 0px;
	background: radial-gradient(#F2FFF2 10%, #FFFFFF 100%);
}
.important_deadlines_title h2{
	color: #0F172A;
	text-align: center;
}
.important_deadlines_contents{
	max-width: 1110px;
	margin: auto;
	margin-top: 35px;
}
.important_deadlines_single{
	margin-top: 30px;
	background: #FFF;
}
.important_deadlines_single_img {
    max-width: 190px !important;
    padding: 28px 40px 35px 40px !important;
    align-items: center;
}
.important_deadlines_single_date {
    position: absolute;
    top: 27%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}
.important_deadlines_single_date p b {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
}
.important_deadlines_single_date h3 {
    font-family: "Urbanist", serif;
    font-size: 33px;
    font-weight: 800;
    color: #0F172A;
    padding: 7px 0px 10px 0px;
    position: relative;
    max-width: 50px;
    margin: auto;
}
.important_deadlines_single_date h3::before {
    position: absolute;
    content: "";
    bottom: 6px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    border-bottom: 3px dotted rgba(15, 23, 42, 0.4);
}
.important_deadlines_single_date p{
	color: #0F172A;
}
.important_deadlines_single img {
    width: 115px !important;
    height: auto;
}
.important_deadlines_single_text {
    padding: 30px 22px 30px 35px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.important_deadlines_single_text p{
	margin-bottom: 0px;
	font-size: 17px;
}
.important_deadlines_single_text a{
	color: #0B0D1E;
	border-bottom: 1px solid #0B0D1E;
	line-height: 20px;
	display: inline-block;
}
.important_deadlines_single_text p span{
	color: #247E3D;
	font-weight: 600;
}
/*=================  End (Important Deadlines) Section  =================*/

/*=================  Start (UCAS Registered Centre) Section  =================*/
.ucas_registered_centre_main{
	padding-bottom: 60px;
}
.ucas_register_title h2 {
    font-size: 32px;
    letter-spacing: -1.5px;
}
.ucas_register_left_items ul {
    padding: 105px 5px 0px 5px;
    max-width: 360px;
}
.ucas_register_right_items ul li {
    letter-spacing: -1px;
}
.ucas_register_left_items ul li a {
    padding: 12px 20px 12px 16px;
    font-size: 15px;
}
.ucas_register_a2 {
    position: absolute;
    right: -70px;
    top: 47px;
}
/*=================  End (UCAS Registered Centre) Section  =================*/

/*=================  Start (Ucas Application Process) Section  =================*/
.ucas_application_process_main{
	padding: 65px 0px 60px 0px;
	background: #292D32;
}
.ucas_application_process_title h2{
	font-size: 45px;
	text-align: center;
	color: #FFF;
	letter-spacing: -1.5px;
}
.ucas_application_process_title p{
	max-width: 710px;
	margin: auto;
	margin-top: 20px;
	color: #FFF;
	text-align: center;
}
.ucas_application_process_contents{
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
}
.ucas_application_process_single {
    max-width: 325px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}
.ucas_application_process_single_arrow {
    position: absolute;
    top: 8%;
    right: -23%;
}
.uapsa2{
	top: 15%;
}
.ucas_application_process_single_arrow img{
	width: 155px;
	height: auto;
}
.ucas_application_process_single_img{
	width: 115px;
	height: 115px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 25px 25px 25px 0px;
	text-align: center;
	background: #FFF;
}
.ucas_application_process_single_img img{
	width: 55px;
	height: auto;
}
.ucas_application_process_single h4 {
    text-align: center;
    font-size: 21px;
    line-height: 40px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 20px 0px 15px 0px;
}
.ucas_application_process_single p {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    max-width: 276px;
    margin: auto;
    font-size: 18px;
}
/*=================  End (Ucas Application Process) Section  =================*/

/*=================  Start (Our Pricing) Section  =================*/
.our_pricing_main{
	padding: 60px 0px;
	background: radial-gradient(#F2FFF2 10%, #FFFFFF 100%);
}
.our_pricing_title h2{
	font-size: 45px;
	letter-spacing: -1.5px;
}
.our_pricing_title p{
	max-width: 805px;
	margin: auto;
	margin-top: 20px;
}
.our_pricing_contents{
	display: flex;
	justify-content: space-between;
	max-width: 1230px;
	margin: auto;
	margin-top: 50px;
	margin-bottom: 50px;
}
.our_pricing_single{
	padding: 40px 35px 50px 35px;
	border: 1px solid #247E3D4D;
	border-radius: 25px;
	background: #FFF;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 390px;
	text-align: center;
}
.our_pricing_single2 {
    padding: 40px 45px 35px 45px;
    max-width: 415px;
}
.our_pricing_single3{
	padding: 40px 35px 25px 35px;
}
.our_pricing_single img{
	width: 60px;
	height: auto;
}
.our_pricing_single h3 {
    font-size: 28px;
    margin-top: 20px;
    font-weight: 600;
    color: #292D32;
    line-height: 42px;
    letter-spacing: -1px;
}
.our_pricing_single p{
	margin: 20px 0px 10px 0px;
	color: #292D32;
}
.our_pricing_single b{
	font-size: 30px;
	font-weight: 700;
	color: #292D32;
	letter-spacing: 1px;
}
.our_pricing_single_text_parent {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
    position: relative;
}
.our_pricing_single_text_parent2{
	margin-top: 0px !important;
}
.our_pricing_single_text_parent::before{
	position: absolute;
	content: "";
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: auto;
	width: 1px;
	height: 25px;
	background: #000000;
}
.our_pricing_single_text h3{
	color: #292D32;
	line-height: 45px;
	text-align: center;
	margin: 0px !important;
	font-weight: 700;
	letter-spacing: 1px;
}
.our_pricing_single_text p{
	color: #292D32;
	font-size: 18px;
	text-align: center;
	margin: 0px !important;
}
.our_pricing_single_text_parent2{
	justify-content: center;
}
.our_pricing_single_text_parent2::before{
	display: none;
}
.our_pricing_btn{
	display: flex;
	justify-content: center;
}
/*=================  End (Our Pricing) Section  =================*/

/*\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ Start Others Pages \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/

/*=================  Start (Exam Fees Popups) Section  =================*/
.exam_fees_popup_main {
    padding: 70px 0px;
    background: radial-gradient(#F2FFF2 10%, #FFFFFF 100%);
}
.exam_fees_popup {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
}
.exam_fees_popup_single {
    flex: 0 0 23%;
    border-radius: 25px;
    background: #FFF;
}
.exam_fees_popup_single a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    background: #FFF;
    padding: 40px 10px 35px 10px;
    box-shadow: 1px 1px 10px 2px #0000000F;
    border-radius: 25px;
    border: 1.5px solid transparent;
    transition: 0.2s;
    width: 100%;
    height: 100%;
}
.exam_fees_popup_single a:hover{
	border: 1.5px solid #247E3D80
}
.exam_fees_popup_single a svg path{
	fill: #8E9BA1;
    transition: 0.2s;
}
.exam_fees_popup_single a:hover svg path{
	fill: #247E3D;
/*	stroke-width: 1;*/
}
.exam_fees_popup_single h4{
	font-size: 20px;
	font-weight: 800;
	color: #181818;
	margin: 30px 0px;
}
.exam_fees_popup_single .btn_style {
    background: transparent;
    border: 1px solid #292D32;
    color: #292D32;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
}
.exam_fees_popup_single:hover .btn_style {
    background: transparent !important;
    border: 1px solid #247E3D;
    color: #247E3D;
}
.exam_fees_popup_single:hover .btn_style span{
    background: #247E3D;
}
.exam_fees_popup_single .btn_style span{
	width: 25px;
    height: 25px;
    background: #292D32;
    line-height: 22px;
    margin-left: 15px;
}
.exam_fees_popup_single .btn_style span img {
    width: 16px;
    height: auto;
}
.exam_fees_title p span{
	display: block;
	color: #247E3D;
	margin-top: 7px;
}
.exam_fees_title p span a{
	font-weight: 600;
	color: #247E3D;
	text-decoration: underline;
}

/*Start Modal*/
.modal-header {
    padding: 15px 10px;
}
.exam_fees_modal_header h4{
	font-size: 20px;
	color: #292D32;
	font-weight: 600;
}
.modal-footer [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
    font-size: 16px;
}
.exam_fees_modal_body{
	padding: 20px 0px 10px 0px;
}
.exam_fees_modal_table_title{
	display: flex;
	align-items: center;
	gap: 50px;
}
.efmtt_search input{
	padding: 10px 10px;
	border-radius: 8px;
	border: 1px solid #CACACA;
}
.efmtt_select{
	display: flex;
	align-items: center;
	gap: 8px;
}
.efmtt_select select {
	padding: 9px 10px;
	border-radius: 8px;
	border: 1px solid #CACACA;
	width: 100px;
	background: #FFF;
}
.table_design_default table {
    width: 100%;
    margin-top: 20px;
}
.table_design_default th {
    padding: 10px 10px;
    color: #FFF;
    background: #247E3D;
}
.table_design_default td{
	padding: 10px 10px;
	color: #292D32;
}
.table_design_default tr{
	text-align: center;
}
.table_design_default tr:nth-child(even){
	background: #F2FFF2;
}

.exam_fees_modal_page_count ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 20px;
}
.exam_fees_modal_page_count ul li a {
    font-weight: 500;
    font-size: 14px;
    color: #575A7B;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: .3s;
}
.exam_fees_modal_page_count ul li a:hover{
	background: #F2FFF2;
}
.exam_fees_modal_page_count ul li:first-child a {
    margin-right: 10px;
    border: 1px solid #247E3D;
}
.exam_fees_modal_page_count ul li:last-child a {
    margin-left: 10px;
    border: 1px solid #247E3D;
}
/*=================  End (Exam Fees Popups) Section  =================*/

/*=================  Start (Exam Booking Deadline) Section  =================*/
.exam_booking_deatline_main{
	padding: 0px 0px 60px 0px;
	margin-top: -40px;
}
.exam_booking_deatline{
	max-width: 1100px;
	margin: auto;
}
.exam_booking_deatline_table tr {
    font-size: 14px;
}
.exam_booking_deatline_table th{
	border: 1px solid #dee2e6;
}
.exam_booking_deatline_table td{
	border: 1px solid #0F172A;
}
/*=================  End (Exam Booking Deadline) Section  =================*/

/*=================  Start (Non-Exam-Assesment) Section  =================*/
.non_exam_assesment_main{
	margin-top: -60px;
}
.non_exam_assesment_main2{
	padding: 50px 0px 0px 0px;
}
.non_exam_assessment_left {
    padding: 35px 35px !important;
}
.non_exam_assessment_img img{
	width: 100%;
	height: auto;
	border-radius: 15px;
}
.non_exam_assessment_title h4{
	font-size: 24px;
	font-weight: 700;
	color: #0B0D1E;
}
.non_exam_right_items ul{
	margin: 10px 0px 20px 0px;
}
.non_exam_right_items ul li{
	font-size: 16px;
}
.non_exam_right {
    max-width: 570px;
}
.non_exam_assessment_title p{
	color: #0B0D1E;
	font-size: 16px;
	margin: 7px 0px 5px 0px;
}
.non_exam_assessment_title p a{
	color: #247E3D;
}
.non_exam_assessment_title p a:hover{
	text-decoration: underline;
}
.non_exam_assesment_btn{
	margin-top: 20px;
}
/*=================  End (Non-Exam-Assesment) Section  =================*/

/*=================  Start (Steps to Get Started) Section  =================*/
.steps_to_get_started_main{
	padding: 40px 0px 60px 0px;
/*	background: #F2FFF2;*/
}
.steps_to_get_started_contents{
	max-width: 1100px;
	margin: auto;
	margin-top: 40px;
}
.steps_to_get_started_contents img{
	width: 100%;
	height: auto;
}
.steps_to_get_started_contents p{
	font-size: 18px;
	text-align: center;
	margin-top: 40px;
}
/*=================  End (Steps to Get Started) Section  =================*/

/*=================  Start (Our Refund Policy) Section  =================*/
.our_refund_policy_main{
	padding: 0px 0px 60px 0px;
}
.our_refund_policy_title h2{
	padding: 50px 0px;
	text-align: center;
	background: #F2FFF2;
}
.our_refund_policy_single{
	padding: 30px 0px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	text-align: center;
}
.our_refund_policy_single h3{
	color: #247E3D;
}
.our_refund_policy_single p{
	color: #0B0D1E;
	max-width: 1100px;
	margin: auto;
	margin-top: 20px;
}
.our_refund_policy_single p span{
	color: #247E3D;
	font-weight: 600;
}
.our_refund_policy_btn{
	text-align: center;
	margin-top: 20px;
}
/*=================  End (Our Refund Policy) Section  =================*/

/*\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ Start (Step-Form) Pages \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/

.a_level_exam_booking_header_btns{
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
}
.a_level_exam_booking_header_btns a{
	display: inline-block;
	padding: 15px;
	border-radius: 50px;
	background: #FFF;
	font-size: 18px;
	font-weight: 600;
	color: #0B0D1E;
	box-shadow: 16px 16px 80px 0px #0000001A;
	transition: 0.2s;
	border: 1px solid transparent;
}
.a_level_exam_booking_header_btns a i{
	font-size: 18px;
	color: #247E3D;
	margin-right: 12px;
}
.a_level_exam_booking_header_btns a:hover{
	border: 1px solid #247E3D;
}
.a_level_exam_booking_form{
	padding: 45px 50px;
	border: 1px solid #247E3D66;
	border-radius: 25px;
	margin-top: 50px;
}


.step-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: auto;
    margin-bottom: 20px;
}

.step {
  text-align: center;
  flex: 1;
  position: relative;
}

.step .icon {
    width: 75px;
    height: 75px;
    margin: 0 auto;
    border: 2px solid rgba(15, 23, 42, 0.4);
    border-radius: 50%;
    background: white;
    font-size: 24px;
    color: #d1d1d1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step p {
    margin-top: 10px;
    font-size: 17px;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.4);
}

.step.active .icon {
  border-color: #0B0D1E;
  background: black;
  color: white;
}

.step.active p {
  color: #0B0D1E;
  font-weight: 600;
  font-size: 17px;
}

.step.completed .icon {
    border-color: #4caf50;
    background: transparent;
    color: #FFF;
}
.step .icon svg path{
	fill: rgba(15, 23, 42, 0.3);
	opacity: 1 !important;
}
.step .last-icon svg path{
	fill: rgba(15, 23, 42, 1);
}
.step.active .icon svg path{
	fill: #FFFFFF;
}
.step.completed .icon svg path{
	fill: #247E3D;
}

.step.completed p {
  color: #4caf50;
}

.divider {
    flex: 0.4;
    height: 3px;
    background: rgba(15, 23, 42, 0.4);
    margin-bottom: 28px;
}

.divider.completed {
  background: #4caf50;
}

.form-step {
  display: none;
  margin-top: 50px;
}

.form-step.active {
  display: block;
}

.form_single_step_btns{
	display: flex;
	justify-content: center;
	gap: 100px;
	margin-top: 70px;
}
.form_single_step_btns .prev-btn{
	background: #0000001A;
	color: #0B0D1E;
	padding: 10px 35px 10px 10px;
	border: none;
	border-radius: 50px;
}
.form_single_step_btns .prev-btn span{
	margin-left: 0px;
	margin-right: 15px;
	background: #0B0D1E33;
}
.form_single_step_btns .prev-btn:hover{
	background: rgba(0, 0, 0, 0.3);
}

/*Start (Step-1) Form*/
.single_form_parent {
    display: flex;
    justify-content: space-between;
    margin-top: 40px !important;
    gap: 35px;
    flex-wrap: wrap;
}
.single_form_step {
    width: 100%;
    flex: 0 0 100%;
}
.single_form_column3 {
    flex: 0 0 calc((100% / 3) - 25px);
}
.single_form_column2 {
    flex: 0 0 calc((100% / 2) - 20px);
}
.single_form_column5 {
    flex: 0 0 calc((100% / 5) - 20px);
}
.single_form_step label, .single_form_p p {
    display: inline-block;
    font-weight: 600;
    color: #0B0D1E;
}
.single_form_step label span,.single_form_p p span{
	margin-left: 5px;
	display: inline-block;
	color: #F73A00;
	font-weight: 400;
    margin-bottom: 5px;
}
.single_form_step input,.single_form_step2_check input,.single_form_step textarea {
    width: 100%;
    display: block;
    padding: 14px 20px;
    border: 1px solid #CACACA;
    color: #0B0D1E;
    border-radius: 9px;
}
.single_form_parent textarea{
	height: 205px;
}
.single_form_step input::placeholder,.single_form_step textarea::placeholder{
	opacity: 1;
	color: rgba(11, 13, 30, 0.4);
	font-style: italic;
}
.single_form_select select{
	background: transparent;
	-moz-appearance: none;
	-webkit-appearance: none;
    width: 100%;
    display: block;
    padding: 14px 20px;
    border: 1px solid #CACACA;
    color: #0B0D1E;
    border-radius: 9px;
}
.single_form_select select::-ms-expand {
  display: none;
}
.flag_input_default{
	padding: 0px 0px 0px 20px;
	margin-bottom: 0px;
/*	margin-top: 5px;*/
}

.flag_input_default input{
	margin-top: 0px;
    padding: 15px 20px;
    border: none;
}
.form_step1_radio{
	display: flex;
	justify-content: space-between;
	max-width: 270px;
	width: 1005;
	margin-top: 15px;
}
.form_step1_radio_single{

}
.form_step1_radio_single label{
	color: #0B0D1E;
	margin-left: 5px;
}
.form_step1_radio_single input{

}
.form_step1_radio_single [type="radio"]:checked,
.form_step1_radio_single [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.form_step1_radio_single [type="radio"]:checked + label,
.form_step1_radio_single [type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
.form_step1_radio_single [type="radio"]:checked + label:before, 
.form_step1_radio_single [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: 1px solid #CACACA;
    border-radius: 100%;
    background: #fff;
}
.form_step1_radio_single [type="radio"]:checked + label:after, 
.form_step1_radio_single [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 15px;
    height: 15px;
    background: #247E3D;
    position: absolute;
    top: 3px;
    left: -2px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.form_step1_radio_single [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.form_step1_radio_single [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.single_form_step_title p{
	font-weight: 600;
	color: #0B0D1E;
}
.single_form_step_title p span{
	font-size: 14px;
	font-weight: 400;
	color: rgba(11, 13, 30, 0.5);
	margin-top: 5px;
	display: inline-block;
}
.single_form_step_title p a{
	color: #247E3D;
	font-size: 14px;
	font-weight: 600;
	display: inline-block;
	margin-left: 5px;
	text-decoration: underline;
}
.form_file_upload input[type="file"] {
    height: 0;
    overflow: hidden;
    width: 0;
    display: none;
}
.form_file_upload input[type="file"] + label {
    background: #247E3D0F;
    cursor: pointer;
    display: inline-block;
    font-size: inherit;
    outline: none;
    padding: 12px 16px;
    position: relative;
    transition: all 0.3s;
    vertical-align: middle;
    border: 2px dashed #247E3D;
    border-radius: 9px;
    width: 100%;
    padding: 23px 10px 25px 10px;
    text-align: center;
    margin-top: 15px;
}
 .form_file_upload input[type="file"] + label:hover {
	 background-color: rgba(36, 126, 61, 0.15);
}
.form_file_upload label p,.form_file_upload_design button p{
	color: #0B0D1E;
}
.form_file_upload label p span,.form_file_upload_design button p span{
	display: block;
	padding: 11px 0px 15px 0px;
	color: rgba(11, 13, 30, 0.6);
}
.form_file_upload label p a,.form_file_upload_design button p a{
	padding: 9px 20px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: underline !important;
	color: #FFF !important;
	background: #247E3D;
	border-radius: 50px;
	display: inline-block;
}

.form_file_upload_design button {
    padding: 30px 10px 32px 10px;
    color: #0B0D1E;
    background: #247E3D0F;
    border: 2px dashed #247E3D;
    border-radius: 9px;
    outline: none;
    width: 100%;
    margin-top: 15px;
    height: 160px;
}
.form_file_upload_design button:hover {
  background-color: rgba(36, 126, 61, 0.15);
}
/*End (Step-1) Form*/

/*Start (Step-2) Form*/
.form_step2_title{
	display: flex;
	justify-content: center;
}
.form_step2_title p{
	display: flex;
	align-items: center;
	padding: 15px 25px;
	font-size: 18px;
	font-weight: 600;
	color: #0B0D1E;
	border: 1.5px solid #247E3D;
	border-radius: 50px;
}
.form_step2_title p img{
	width: 25px;
	height: auto;
	margin-right: 12px;
}
.form_step2_title p a{
	color: #247E3D;
	display: inline-block;
	text-decoration: underline;
	margin-left: 5px;
}
.single_form_select{
	position: relative;
	z-index: 2;
}
.single_form_select img{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
	width: 15px;
	height: auto;
	z-index: -1;
}
.single_form_parent_step2{
	gap: 20px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
	margin-top: 30px;
}
.single_form_column5_close {
    position: absolute;
    bottom: 13px;
    right: -36px;
}
.single_form_column5_close a {
	display: inline-block;
}
.single_form_column5_close a img{
	width: 25px;
	height: auto;
}
.form_step_addsubject_btn a{
	display: inline-block;
	margin-top: 30px;
	padding: 10px 20px;
	border-radius: 50px;
	background: #247E3D;
	gap: 10px;
	font-size: 15px;
	font-weight: 600;
	color: #FFF;
	transition: 0.2s;
}
.form_step_addsubject_btn a:hover{
	background: #1e5b2f;
}
.form_step_addsubject_btn a img {
    width: 15px;
    height: auto;
    margin-right: 8px;
    margin-top: -4px;
}
.form_step2_radio {
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
}
.form_step2_radio label{
	color: #0B0D1E !important;
}
.single_form_step2_check input[type=checkbox] {
    position: relative;
    border: 2px solid #CACACA;
    border-radius: 2px;
    background: none;
    cursor: pointer;
    line-height: 0;
    margin: 0 12px 0 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 30px;
    width: 30px;
    -webkit-appearance: none;
    border-radius: 8px;
}

.single_form_step2_check input[type=checkbox]:checked {
  	background-color: #247E3D;
    border: 2px solid #247E3D;
  	opacity: 1;
}

.single_form_step2_check input[type=checkbox]:before {
    content: '';
    position: absolute;
    right: 50%;
    top: 50%;
    width: 6px;
    height: 13px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}
.single_form_step2_check_main{
	display: flex;
	flex-direction: column;
	gap: 17px;
}
.single_form_step2_check {
    display: flex;
    align-items: center;
}
.single_form_step2_check label{
	margin-right: 17px;
}
.single_form_step2_check input {
    padding: 14px 20px;
    max-width: 258px;
    width: 100%;
}
.single_form_h4{
	font-size: 19px;
	font-weight: 600;
	color: #0B0D1E;
	margin: 45px 0px -15px 0px;
}
.single_form_h4 span{
	font-weight: 400;
	color: #F73A00;
}
.single_form_p h4{
	font-size: 22px;
	font-weight: 600;
	color: #0B0D1E;
	margin-top: 30px;
}
.single_form_p p img{
	width: 20px;
	height: auto;
	margin-right: 8px;
}
.single_form_p p:last-child {
	margin-top: 20px;
	display: flex;
	align-items: flex-start;
}
.single_form_step2_checks{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
.single_form_step2_checks .single_form_step2_check{
	flex: 0 0 31.5%;
}
.form_single_step_btns .btn_style {
	display: flex;
	align-items: center;
	padding: 7px 10px 7px 18px;
}
.form_single_step_btns .prev-btn {
    padding: 7px 18px 7px 10px;
}
input.error, textarea.error {
  border: 1px solid red;
}
.group-container.error {
  border: 1px solid red;
  padding: 10px;
  border-radius: 5px;
}
.error-message {
  margin-top: 10px;
  font-size: 14px;
  color: red;
  display: none;
}
.group-container.error label {
  color: red;
}

/*End (Step-2) Form*/

/*Start (Step-3) Form*/
.button {
    display: block;
    width: 20em;
    height: 2.5em;
    border-radius: 7px;
    padding: 0.75em;
    margin-bottom: 1em;

    line-height: 1em;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Nunito', sans-serif;
}

#signature_pad {
    width: 100%;
    height: 150px;
    border-bottom: 1px solid #CACACA;
}

.signature-pad-container {
    width: 100%;
    position: relative;
    background-color: white;
    text-align: right;
    border: 1px solid #CACACA;
    border-radius: 9px;
    padding: 15px 17px 10px 17px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.signature-pad-container p {
    display: block;
    text-align: center;
    color: rgba(11, 13, 30, 0.4);
    font-style: italic;
/*    border-top: 1px solid #CACACA;*/
    padding-top: 10px;
}

#clear_button {
    z-index: 10;
    position: absolute;
    right: 17px;
    cursor: pointer;
}
#clear_button img{
	width: 25px;
	height: auto;
}

#finish_button {
    margin-top: 2em;
    cursor: pointer;
}
.signature-pad-container .button-text {
    border: none;
    padding: 0px;
    background: transparent;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
}
.signature-pad-container .button-text img{
	width: 25px;
	height: auto;
}
/*.signature-pad-container canvas{
	width: 100%;
	height: 150px;
}*/



/*End (Step-3) Form*/

/*Start (Step-4) Form*/
.step4_exam_fees{
	padding: 35px 15px 50px 15px;
	border: 1px solid #0B0D1ECC;
	border-radius: 25px;
}
.step4_exam_fees_contents {
    max-width: 590px;
    width: 100%;
    margin: auto;
    color: #0B0D1E;
    text-align: center;
}
.step4_exam_fees_contents img{
	width: 20px;
	height: auto;
	margin-bottom: 15px;
}
.step4_exam_fees_payments{
	max-width: 650px;
	margin: auto;
	margin-top: 35px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}
.step4_exam_fees_contents b{
	font-weight: 600;
}
.step4_exam_fees_payment_single {
    max-width: 255px;
    width: 100%;
    text-align: center;
}
.step4_efps_imgs{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
}
.step4_efps_imgs img{
	width: 45px;
	height: auto;
}
.step4_efps_imgs2 img{
	width: 60px;
}
.step4_exam_fees_payment_single p{
	margin: 10px 0px;
	color: #0B0D1E;
}
.step4_exam_fees_payment_single_bar span{
	width: 1px;
	height: 100px;
	background: #0B0D1E;
	opacity: 0.4;
	display: block;
}
.step4_exam_fees{
	position: relative;
}
.step4_exam_fees_payment_title {
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}
.step4_exam_fees_payment_title p {
    font-size: 20px;
    font-weight: 600;
    color: #0B0D1E;
    background: #FFF;
    display: inline-block;
    padding: 0px 20px;
}
.step4_exam_fees2{
	margin-top: 40px;
}
.step4_exam_fees2 .step4_exam_fees_contents {
    max-width: 870px;
}
.step4_exam_fees2 .step4_exam_fees_contents p:last-child {
    color: #F73A00;
    max-width: 730px;
    margin: auto;
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    gap: 10px;
}
.step4_term_conditions{
	margin-top: 45px;
}
.step4_term_conditions .single_form_step2_check a{
	color: #247E3D;
	font-weight: 600;
	text-decoration: underline;
}
.step4_term_conditions .single_form_step2_check label{
	font-size: 18px;
}
/*End (Step-4) Form*/
.step5_exam_fees3 .step4_exam_fees_contents{
	max-width: 1020px;
}
.step5_by_clicking p{
	font-weight: 600;
	color: #247E3D;
	margin-top: 30px;
	text-align: center;
}
.step5_by_clicking p img{
	width: 20px;
	height: auto;
	margin-right: 8px;
}

/* Error Border for Input, Textarea, Select */
input.error,
textarea.error,
select.error {
  border: 1px solid red;
  outline: none;
}
/* File Upload Button এর জন্য */
.form_file_upload_design button.error {
  border: 2px dashed red;
}
/* Spinner Style */
.spinner {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #4caf50;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 0.8s linear infinite;
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.sfp_special_access {
  display: block;
  transition: all 0.3s ease;
}

.sfpsa_p {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
}
.sfpsa_p img {
    width: 20px;
    height: auto;
    margin-right: 8px;
}
.sfpsa_p span {
    margin-left: 5px;
    display: inline-block;
    color: #F73A00;
    font-weight: 400;
    margin-bottom: 5px;
}


/*\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ End (Step-Form) Pages \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/

/*==================== Start (Payment) Page ====================*/
.payment_page_tabs_menu {
    padding-top: 10px;
    border-bottom: 1px solid #E0E0E0;
    display: flex;
    justify-content: center;
}
.payment_page_tabs_menu .nav-pills .nav-link {
    border-radius: var(--bs-nav-pills-border-radius);
    width: 306px;
    height: 48px;
    background: url(../images/payment/tab-unactive.png) no-repeat scroll 0 0 / cover;
    font-weight: 400;
    color: #0B0D1E;
}
.payment_page_tabs_menu .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: var(--bs-nav-pills-link-active-bg);
    width: 306px;
    height: 48px;
    background: url(../images/payment/tab-active.png) no-repeat scroll 0 0 / cover;
    font-weight: 600;
    color: #FFFFFF;
}
.payment_page_tabs_menu #pills-profile-tab {
    margin-left: -30px;
}
.payment_page{
	padding: 30px 0px 60px 0px;
}
.payment_tabs_contents_main{
	display: flex;
	justify-content: space-between;
}
.payment_tab_left, .payment_tab_right {
	padding: 30px 10px 45px 10px;
	border: 1px solid #0B0D1E33;
	border-radius: 25px;
}
.payment_tab_left_main{
	flex: 0 0 55%;
}
.payment_tab_right_main{
	flex: 0 0 43%;
}
.payment_tabs_alert{
	max-width: 425px;
	margin: auto;
	margin-top: ;
	border: 1px solid #F73A0099;
	border-radius: 15px;
	padding: 20px 30px;
	position: relative;
}
.payment_tabs_alert2{
	max-width: 585px;
}
.payment_tabs_alert p{
	line-height: 28px;
	color: #0B0D1E;
	text-align: center;
}
.payment_tabs_alert p span{
	color: #F73A00;
	display: inline-block;
	margin-top: 5px;
}
.payment_tabs_alert_title {
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}
.payment_tabs_alert_title p{
	font-size: 18px;
	font-weight: 600;
	color: #F73A00;
	padding: 0px 20px;
	background: #FFFFFF;
	display: inline-block;
}
.payment_tabs_promo_code {
    max-width: 380px;
    width: 100%;
    margin: auto;
    margin-top: 33px;
    margin-bottom: 33px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.payment_tabs_promo_code input {
    padding: 15px 20px 15px 54px;
    border: 1px solid #0B0D1E4D;
    border-radius: 50px;
    width: 225px;
}
.payment_tabs_promo_code input::placeholder{
	color: #0B0D1E4D;
}
.payment_tabs_promo_code_input{
	position: relative;
	z-index: 2;
}
.payment_tabs_promo_code_input img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 17px;
    width: 24px;
    height: auto;
}
.payment_tabs_promo_code form {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.payment_tabs_promo_code .btn_style{
	background: #F77C00;
	padding: 8px 10px 8px 35px;
}
.payment_tabs_promo_code .btn_style:hover{
	background: #c56505;
}
.payment_tabs_table{
	max-width: 585px;
	width: 100%;
	margin: auto;
}
.payment_tabs_table table{
	width: 100%;
}
.payment_tabs_table tr{
	text-align: left;
    font-size: 17px;
    color: #0B0D1E;
}
.payment_tabs_table th {
    background: #0000001A;
    font-size: 17px;
    font-weight: 400;
    color: #0B0D1E;
    padding: 12px 10px 12px 30px;
    text-align: center;
}
.payment_tabs_table th:first-child{
	border-radius: 10px 0px 0px 10px;
    padding: 12px 10px 12px 35px;
}
.payment_tabs_table th:last-child{
	border-radius: 0px 10px 10px 0px;
}
.payment_tabs_table td{
    padding: 13px 10px 13px 30px;
    text-align: center;
}
.payment_tabs_table td span{
	color: #F73A00;
}
.payment_tabs_table th:first-child,.payment_tabs_table td:first-child{
	text-align: left;
    padding: 13px 10px 13px 35px;
}
.payment_tabs_table th:last-child,.payment_tabs_table td:last-child{
	text-align: right;
    padding: 10px 45px 10px 10px;
}
.payment_tabs_table tr:nth-child(even) {
    background: rgba(0,0,0,0.03);
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
}
.table_design_default p{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 45px 0px 35px;
	color: #0B0D1E;
	font-size: 20px;
	border-top: 1px solid #E0E0E0
}
.table_design_default p span{
	font-size: 22px;
	font-weight: 600;
	color: #0B0D1E;
}
.table_design_default_payment2{
	margin-top: 50px;
}


.payment-section {
  width: 100%;
  max-width: 445px;
  margin: auto;
}
.payment-section-title p{
	font-size: 20px;
	font-weight: 600;
	color: #0B0D1E;
	text-align: center;
	margin-bottom: 30px;
}

.radio-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.radio-buttons label {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.radio-buttons input[type="radio"] {
  display: none;
}

.radio-buttons .radio-label {
    border: 1px solid #0B0D1E33;
    padding: 23px 30px 27px 30px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    position: relative;
    width: 208px;
    height: 198px;
    justify-content: space-between;
}

.radio-buttons .radio-label .radio-circle {
  width: 18px;
  height: 18px;
  border: 1px solid transparent;
  border-radius: 50%;
  display: inline-block;
  background: white;
  position: relative;
}
.radio-buttons .radio-label .radio-circle::before {
    position: absolute;
    content: "";
    top: -7px;
    left: -7px;
    right: 0;
    width: 30px;
    height: 30px;
    border: 1px solid #0B0D1E33;
    border-radius: 50px;
    text-align: center;
    margin: auto;
}

.radio-buttons .radio-label .radio-icon {
  width: 65px;
  height: auto;
  display: none;
}

.radio-buttons .radio-label .radio-icon.inactive {
  display: inline-block;
}

.radio-buttons .radio-label .radio-text {
    color: rgba(11, 13, 30, 0.5);
    font-size: 18px;
    font-weight: 600;
}

.radio-buttons input[type="radio"]:checked + .radio-label {
    background-color: #F2FFF2;
    border-color: #247E3DCC;
}

.radio-buttons input[type="radio"]:checked + .radio-label .radio-circle {
    background: #247E3D;
}

.radio-buttons input[type="radio"]:checked + .radio-label .radio-icon.active {
  display: inline-block;
}

.radio-buttons input[type="radio"]:checked + .radio-label .radio-icon.inactive {
  display: none;
}

.radio-buttons input[type="radio"]:checked + .radio-label .radio-text {
  color: #247E3D;
}

.payment-content {
  display: none;
}
.payment-content.active {
  display: block;
}
.payment-content.card-content {
	width: 100%;
}
.payment_card_contents{
    max-width: 265px;
    padding: 20px 25px;
    border: 1px solid #0B0D1E33;
    border-radius: 15px;
    position: relative;
}
.payment_card_contents_target {
    position: absolute;
    top: -22px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}
.payment_card_contents_target img{
	width: 20px;
	height: auto;
}
.payment-content.card-content p{
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(11, 13, 30, 0.6);
	font-size: 17px;
}
.payment-content.card-content p img{
	width: 20px;
	height: auto;
}
.payment_content_card_imgs{
	margin-top: 20px;
	display: flex;
	gap: 15px;
}
.payment_content_card_imgs img{
	width: auto;
	height: 42px;
}
.payment_content_btn{
	display: flex;
	justify-content: center;
}
.payment_content_btn .btn_style{
	padding-left: 15px;
    display: flex;
    align-items: center;
}
.payment_content_btn .btn_style b {
    font-size: 15px;
    font-weight: 600;
    color: #0B0D1E;
    padding: 7px 14px;
    background: #FFF;
    border-radius: 50px;
    margin-right: 10px;
    display: inline-block;
}
.payment-content.card-content .btn_style {
    margin-top: 85px;
    text-align: center;
}
.payment_bank_contents p{
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	color: #0B0D1E;
}
.payment_bank_contents p img{
	width: 30px;
	height: auto;
}
.payment_bank_contents ul {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.payment_bank_contents ul li{
	font-size: 17px;
	color: #0B0D1E;
}
.payment_bank_contents ul li span {
    display: inline-block;
    width: 125px;
    color: rgba(11, 13, 30, 0.6);
}
.payment_bank_contents .payment_tabs_promo_code{
	max-width: 100% !important;
}
.payment_bank_contents .payment_tabs_promo_code input{
	width: 100% !important;
}
.payment_bank_contents .form_file_upload_design p{
	flex-direction: column !important;
}
.payment-content.bank-content .payment_content_btn{
	margin-top: 40px;
}
.pay_1st_installment p{
	margin-top: 40px !important;
	display: flex;
	align-items: center;
	gap: 8px !important;
	font-size: 16px !important;
	font-weight: 600;
	color: #247E3D !important;
}
.pay_1st_installment p img{
	width: 30px !important;
	height: auto;
}
.payment-content.card-content.card-content2 .btn_style{
	margin-top: 40px !important;
}
/*==================== End (Payment) Page ====================*/

/*==================== Start (Blogs) Page ====================*/
.blogs_main{
	padding: 0px 0px 60px 0px;
}
.blogs_contents{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.blogs_content_single {
    padding: 10px 10px 70px 10px;
    border: 1px solid #247E3D4D;
    border-radius: 25px;
    margin-bottom: 70px;
    flex: 0 0 32%;
    position: relative;
	transition: 0.2s;
}
.blogs_content_single:hover{
	box-shadow: 0px 2px 0px 0px #247E3D;
}
.blogs_content_single img{
	width: 100%;
	height: 210px;
	object-fit: cover;
	border-radius: 15px;
}
.blogs_content_single ul{
	margin-top: 15px;
	display: flex;
	gap: 12px;
}
.blogs_content_single ul li a{
	display: inline-block;
	padding: 7px 13px;
	font-size: 14px;
	font-weight: 600;
	color: #247E3D;
	border: 0.88px solid #247E3D;
	border-radius: 50px;
	transition: 0.2s;
}
.blogs_content_single ul li a:hover{
	background: #247E3D;
	color: #FFF;
}
.blogs_content_single h4{
	font-size: 22px;
	font-weight: 600;
	color: #0B0D1E;
	margin: 20px 0px;
	letter-spacing: -0.7px;
	transition: 0.2s;
}
.blogs_content_single:hover h4{
	color: #247E3D;
}
.blogs_content_single p{
	color: #777777;
	display: flex;
	align-items: center;
	gap: 8px;
}
.blogs_content_single p img{
	width: 14px;
	height: auto;
	border-radius: 0px !important;
}
.blogs_btns .btn_style {
    font-size: 16px;
    padding: 8px 10px 8px 30px;
    border: 1.5px solid transparent;
}
.blogs_btns .btn_style:hover{
	border: 1.5px solid #247E3D;
	background: #FFF;
	color: #247E3D;
}
.blogs_btns .btn_style:hover span{
	background: #247E3D;
}
.blogs_btns .btn_style span{
	width: 30px;
	height: 30px;
	line-height: 27px;
}
.blogs_btns {
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.blog_page_count{
	display: flex;
	justify-content: center;
}
.blog_page_count ul{
	gap: 5px;
}
.blog_page_count ul li a{
	width: 43px;
	height: 43px;
	border-radius: 50px;
	background: #CACACA;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #247E3D1A;
	margin: 0px !important;
	border: none !important;
	transition: 0.2s;
}
.blog_page_count ul li a:hover,.blog_page_count .active,.blog_page_count ul li:last-child a{
	background: #247E3D !important;
	color: #FFF;
}
.blog_page_count ul li a span {
    width: 30px;
    height: 30px;
    background: #FFFFFF4D;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog_page_count ul li:first-child{
	margin-right: 40px;
}
.blog_page_count ul li:last-child{
	margin-left: 40px;
}
.blog_page_count ul li:first-child a{
	background: #CACACA;
}
.blog_page_count ul li:last-child a{
	background: #CACACA;
}
/*==================== End (Blogs) Page ====================*/

/*==================== Start (Login) Page ====================*/
.login_page_main{
	padding: 220px 0px 40px 0px;
}
.login_page {
    padding: 35px;
    border: 1px solid #247E3D4D;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.login_page_left {
    background: #F2FFF2;
    border: 1px solid #247E3D4D;
    border-radius: 15px;
    max-width: 635px;
    width: 100%;
    padding-bottom: 45px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.banner_right.login_page_left_design {
    display: flex;
    flex-direction: column;
    max-width: 550px;
}
.login_page_carousel{
	max-width: 570px;
	margin: auto;
}
.login_page_carousel ul{
	display: flex;
	align-items: center;
}
.login_page_carousel ul li{
	text-align: center;
}
.login_page_carousel ul li a{
	display: inline-block;
	text-align: center;
}
.login_page_carousel ul li a img{
	width: 100px !important;
	height: auto;
}
.login_page_right {
    max-width: 550px;
    width: 100%;
}
.login_page_form{
	max-width: 385px;
	width: 100%;
	margin: auto;
}
.login_page_form_title p {
    font-size: 24px;
    font-weight: 700;
    color: #0B0D1E;
    margin-bottom: 10px;
}
.login_page_form_single input{
	width: 100%;
	border: 1px solid #DADADA;
	border-radius: 13px;
	padding: 19px 20px 19px 60px;
	margin-top: 25px;
	outline: none;
}
.login_page_form_single input:focus{
	border: 1px solid #247E3D;
}
.login_page_form_single{
	position: relative;
}
.login_page_form_single label {
    position: absolute;
    top: 13px;
    left: 19px;
    background: #FFF;
    color: #247E3D;
    padding: 0px 5px;
    z-index: 2;
}
.login_page_form_single svg {
    position: absolute;
    bottom: 21px;
    left: 25px;
}
.login_page_forgot{
	margin: 45px 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.login_page_forgot a{
	font-size: 18px;
	font-weight: 600;
	color: #247E3D;
	text-decoration: underline;
}
.login_page_forgot .single_form_step2_check input[type=checkbox] {
    border-radius: 2px;
    height: 23px;
    width: 23px;
}
.login_page_forgot .single_form_step2_check label{
	font-size: 18px;
}
.login_page_form .btn_style {
    width: 100%;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 600;
}
.login_page_with_google p{
	margin: 25px 0px;
	color: rgba(11, 13, 30, 0.5);
	position: relative;
	z-index: 2;
	text-align: center;
}
.login_page_with_google p::before{
	position: absolute;
	content: "";
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 43%;
	height: 1.5px;
	background: #DADADA;
}
.login_page_with_google p::after{
	position: absolute;
	content: "";
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	width: 43%;
	height: 1.5px;
	background: #DADADA;
}
.login_page_with_google a {
    padding: 11px 20px;
    border: 1px solid #DADADA;
    border-radius: 50px;
    display: inline-block;
    color: #0B0D1E;
    font-size: 17px;
    max-width: 233px;
    margin: auto;
    transition: 0.2s;
}
.login_page_with_google a:hover{
	background: #F2FFF2;
}
.login_page_with_google a img{
	width: 30px;
	height: auto;
	margin-right: 13px;
}
.login_page_with_google{
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.login_page_register p{
	font-size: 18px;
	color: #0B0D1E;
	text-align: center;
	margin-top: 60px;
}
.login_page_register p a{
	font-size: 18px;
	font-weight: 600;
	color: #247E3D;
	text-decoration: underline;
}
.login_page_form a:hover{
	text-decoration: none !important;
	color: #1e5b2f !important;
}
.login_page_form_single .input-group-text {
	display: flex;
	align-items: center;
	padding: .375rem .75rem;
	font-size: 17px;
	line-height: 1.5;
	color: #757575;
	text-align: center;
	white-space: nowrap;
	background-color: transparent !important;
	border: none !important;
	position: absolute;
	bottom: 16px;
	right: 10px;
	border-radius: 5px;
	outline: none;
	box-shadow: none;
	z-index: 2;
}
.login_page_form_single input[type=checkbox]:before {
    top: 47%;
}
.login_page_form_single.input-group input {
    font-size: 17px;
    border-radius: 13px !important;
    padding: 15px 20px 15px 60px;
    box-shadow: none;
    background: transparent;
}
.login_page_form_single.input-group input:focus {
    border: 1px solid #247E3D;
    z-index: 1;
}
.login_page_form_single.input-group svg {
    bottom: 17px;
}
.login_page_left_design .banner_right_img img {
    border-radius: 0px 15px 0px 0px;
}
/*==================== End (Login) Page ====================*/

/*==================== Start (Refund Policy) Page ====================*/
.refund_policy_main{
	padding: 0px 0px 60px 0px;
}
.refund_policy {
    max-width: 1155px;
    margin: auto;
}
.refund_policy_title h2{
	text-align: center;
	font-size: 30px;
}
.refund_policy_table .table_design_default tr {
    text-align: left;
}
.refund_policy_table .table_design_default tr b{
	color: #247E3D;
	font-weight: 400;
}
.refund_policy_table .table_design_default tr span{
	color: #F73A00;
}
.refund_policy_table .table_design_default table {
	margin-top: 30px;
    box-shadow: 1px 5px 15px 2px #00000012;
}
.refund_policy_table .table_design_default tr td:nth-child(1) {
    max-width: 185px;
}
.refund_policy_table .table_design_default tr td:nth-child(2){
	max-width: 635px;
}
.refund_policy_table .table_design_default tr td:nth-child(3){
	max-width: 150px;
	text-align: center;
}
.refund_policy_table .table_design_default tr th:nth-child(3){
	text-align: center;
}
.refund_policy_table .table_design_default th{
    padding: 10px 25px;
}
.refund_policy_table .table_design_default td {
	padding: 20px 25px;
}
.refund_policy_table .table_design_default tr:nth-child(even) {
    background: #00000008;
}
.refund_policy_border{

}
.refund_policy_border {
	width: 100%;
	height: 2px;
	position: relative;
	z-index: 2;
	margin: 60px 0px;
}
.refund_policy_border::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 2px;
	background: -webkit-linear-gradient( left, #6a717a, #d7c7bf, #cccfce, #3d3e3d, #b6b1a7, #736550 );
	background: linear-gradient(90deg, rgba(22, 22, 22, 0) 0%, #161616 53.18%, rgba(22, 22, 22, 0) 100%);
	-webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
	z-index: -1;
}
.refund_policy_no_refund{
	margin-top: 85px;
	margin-bottom: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 35px 15px;
	border: 1px solid #F73A004D;
	border-radius: 20px;
}
.refund_policy_no_refund img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    margin-top: -62px;
}
.refund_policy_no_refund p{
	font-size: 17px;
	color: #F73A00;
	text-align: center;
}
.refund_policy_no_refund p b{
	font-size: 18px;
	margin: 15px 0px 6px 0px;
	display: inline-block;
	text-transform: capitalize;
}
.our_refund_policy_btn .btn_style {
    font-size: 16px;
}
.our_refund_policy_btn .btn_style span {
    width: 30px;
    height: 30px;
    line-height: 29px;
}
.our_refund_policy_btn .btn_style span img {
    width: 17px;
}
/*==================== End (Refund Policy) Page ====================*/

/*==================== End (Coursework Fees and Services) Page ====================*/
.coursework_fees_main{
	padding: 0px 0px 60px 0px;
}
.coursework_fees{
	padding: 65px 0px 50px 0px;
	max-width: 1150px;
	margin: auto;
	border: 2px solid #0B0D1E;
	border-radius: 25px;
	position: relative;
}
.coursework_fees_title {
    position: absolute;
    top: -23px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}
.coursework_fees_title h2 {
    background: #FFF;
    padding: 0px 20px;
    display: inline-block;
}
.coursework_fees .refund_policy_border{
	margin: 40px 0px;
}
.coursework_fees .refund_policy_border::before {
    height: 1px;
    padding: 1px;
}
.coursework_fees_top{
	display: flex;
	justify-content: space-between;
	max-width: 930px;
	margin: auto;
}
.coursework_fees_top_left{
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 400px;
}
.coursework_fees_top_left img{
	width: 75px;
	height: auto;
	margin-bottom: 15px;
}
.coursework_fees_top_left h4{
	font-size: 20px;
	font-weight: 800;
	color: #181818;
}
.coursework_fees_top_left p{
	text-align: center;
	font-size: 18px;
	margin-top: 15px;
}
.coursework_fees_top_left p b{
	color: #247E3D;
	font-weight: 700;
}
.coursework_fees_top_left p span{
	color: #247E3D;
}
.coursework_fees_bottom p{
	font-size: 18px;
	text-align: center;
}
.coursework_fees_bottom ul{
	margin-top: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}
.coursework_fees_bottom ul li{
	color: #247E3D;
	font-weight: 600;
}
.coursework_fees_bottom ul li span{
	display: inline-block;
	padding: 12px 20px;
	border: 1px solid #247E3D;
	border-radius: 40px;
}
.feedback_service_left ul {
    background: url(../images/non-exam-assesment/feedback-service.png) no-repeat scroll 0 0 / cover;
}
.feedback_service_right p{
	max-width: 100%;
}
.feedback_service_right .btn_style{
	font-size: 16px;
	font-weight: 600;
}
.feedback_service_right p span{
	display: inline-block;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 30px;
	margin-top: -10px;
}
.feedback_service_main{
	padding: 0px !important;
}
/*Start Non-Exam Assessment section*/
.nea_main{
	padding: 60px 0px;
	background: radial-gradient(#F2FFF2 10%, #FFFFFF 100%);
}
.nea_section_contents{
	margin-top: 50px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}
.nea_section_single {
    max-width: 470px;
    width: 100%;
    position: relative;
    margin-top: 30px;
}
.nea_section_single img{
	width: 100%;
	height: auto;
}
.nea_section_single_contents {
    position: absolute;
    top: -29px;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.nea_section_single_contents h3 {
    width: 94px;
    height: 84px;
    color: #FFFFFF;
    display: flex;
    background: url(../images/non-exam-assesment/title-box.png) no-repeat scroll 0 0 / cover;
    align-items: center;
    justify-content: center;
}
.nea_section_single_contents h4 {
    margin: 20px 0px 20px 0px;
    font-size: 20px;
    font-weight: 600;
    color: #0B0D1E;
}
.nea_section_single_contents p{
	max-width: 325px;
	width: 100%;
}

.nea_section_communicate{
	max-width: 1010px;
	margin: auto;
	margin-top: 80px;
	border: 1px solid #247E3D4D;
	border-radius: 20px;
	padding: 0px 40px 35px 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: #FFF;
}
.nea_section_communicate span {
    width: 75px;
    height: 66px;
    background: url(../images/non-exam-assesment/title-box.png) no-repeat scroll 0 0 / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -25px;
}
.nea_section_communicate span img{
	width: 30px;
	height: auto;
}
.nea_section_communicate h4{
	font-size: 18px;
	font-weight: 600;
	color: #0B0D1E;
	margin: 15px 0px 12px 0px;
}
.nea_section_communicate p{

}
/*End Non-Exam Assessment section*/
/*==================== End (Coursework Fees and Services) Page ====================*/

/*==================== Start (A Level Courses) Page ====================*/
.a_level_courses_title h2{
	max-width: 1000px;
	margin: auto;
	margin-top: 15px;
	margin-bottom: 20px;
}
.course_overview_title {
    max-width: 850px;
    margin: auto;
    text-align: center;
}
.course_overview_title p{
	font-size: 20px;
}
.course_overview_title ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin: 25px 0px;
}
.course_overview_title ul li a{
	display: inline-block;
	padding: 10px 20px;
	border: 0.88px solid #247E3D;
	border-radius: 40px;
	font-weight: 600;
	color: #247E3D;
	transition: 0.2s;
}
.course_overview_title ul li a:hover{
	background: #247E3D;
	color: #FFF;
}
.course_overview_contents{
	display: flex;
	justify-content: space-between;
	max-width: 680px;
	margin: auto;
	margin-top: 50px;
}
.course_overview_single {
    max-width: 230px;
    text-align: center;
}
.course_overview_single img{
	width: auto;
	height: 75px;
}
.course_overview_single h4{
	color: #181818;
	font-size: 20px;
	font-weight: 800;
	margin: 12px 0px 14px 0px;
}
.course_overview_single p{
	font-size: 18px;
}

/* Start (Weekly Content Structure: (Mathematics) Section */
.content_structure_main{
	padding: 0px 0px 0px 0px;
}
.content_structure_title p{
	max-width: 1000px;
	margin: auto;
	padding-top: 20px;
}
.content_structure_main .refund_policy_border::before {
    height: 1.5px;
    padding: 1.5px;
    background: -webkit-linear-gradient( left, #6a717a, #d7c7bf, #cccfce, #3d3e3d, #b6b1a7, #736550 );
    background: linear-gradient(90deg, rgba(22, 22, 22, 0) 0%, #7f7f7f 53.18%, rgba(22, 22, 22, 0) 100%);
    -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
}
.content_structure_contents{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 50px;
	margin-top: 60px;
}
.content_structure_single {
    max-width: 217px;
    width: 100%;
}
.content_structure_single .a_lavel_exam_bodies_calender_img {
    max-width: 100%;
    background: #FFF;
    border-right: none;
    padding: 0px;
}
.csc_contents p{
	text-align: center;
	font-size: 17px;
	margin-top: 15px;
}
/* End (Weekly Content Structure: (Mathematics) Section */

/* Start (Why Choose This Course) Section */
.why_choose_course_main{
	padding-top: 0px !important;
}
.why_choose_course_left .session_details_left ul {
    background: url(../images/a-level-exams/a-level-exams.png) no-repeat scroll 0 0 / cover;
}
.why_choose_course_right .a_level_exams_endorsement_contents {
    max-width: 100% !important;
}
.why_choose_course_right .a_level_exams_endorsement_contents ul {
    gap: 5px;
}
.why_choose_course_right .a_level_exams_endorsement_contents ul li {
    letter-spacing: -0.5px;
}
.why_choose_course_right {
    max-width: 565px;
}
.why_choose_course_left .alevel_exams2 {
    top: 18px !important;
    right: -25px !important;
    bottom: inherit;
    position: absolute;
}
.why_choose_course_left .alevel_exams3 {
    top: inherit;
    bottom: 100px !important;
    position: absolute;
    left: -25px !important;
}
.why_choose_course_left .alevel_exams4 {
    top: inherit;
    bottom: 23px;
    position: absolute;
    left: 25px;
}
.why_choose_course_left .alevel_exams5 {
    top: inherit;
    bottom: -23px;
    position: absolute;
    left: inherit;
    right: -25px;
}
/* End (Why Choose This Course) Section */

/* Start (Course Structure) Section */
.course_structure_main{
	padding: 70px 0px 80px 0px;
	background: #292D32;
}
.course_structure_title h1{
	text-align: center;
	color: #FFF;
	font-size: 46px;
}
.course_structure_contents {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
    position: relative;
    padding-top: 65px;
}
.course_structure_contents::before{
	position: absolute;
	content: "";
	top: -70px;
	left: 0;
	right: 0;
	margin: auto;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #FFF;
}
.course_structure_contents::after {
    position: absolute;
    content: "";
    top: -4px;
    left: 0;
    right: 0;
    margin: auto;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FFF;
}
.course_structure_contents_border{
	position: absolute;
	top: -70px;
	left: 0;
	right: 0;
	margin: auto;
	width: 2px;
	height: 70px;
	background: #FFF;
	display: inline-block;
}
/*.course_structure_contents_pos::before{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 1px;
	height: 100px;
	background: #FFF;
}*/
.course_structure_single{
	padding: 38px 25px;
	border-radius: 20px;
	backdrop-filter: blur(25px);
	max-width: 315px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: 0.2s;
	position: relative;
	z-index: 2;
}
.course_structure_single::before {
    position: absolute;
    content: "";
    top: -65px;
    left: 50%;
    width: 110%;
    height: 105px;
    border-top: 2px solid #FFF;
    border-left: 2px solid #FFF;
    border-radius: 20px 0px 0px 0px;
    z-index: -1;
}
.course_structure_single_border::before{
	left: inherit;
	right: 50%;
	border-right: 1px solid #FFF;
	border-left: none;
    border-radius: 0px 20px 0px 0px;
}
.course_structure_single::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    margin: auto;
    top: 33.5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FFF;
}
.course_structure_single:hover{
	background: #00000033;
}
.course_structure_single_icon{
	width: 115px;
	height: 115px;
	border-radius: 24px 24px 24px 0px;
	background: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
}
.course_structure_single_icon img{
	width: 55px;
	height: auto;
}
.course_structure_single_cnts span{
	display: inline-block;
	margin: 30px 0px 0px 0px;
}
.course_structure_single_cnts span img {
    width: 15px;
    height: auto;
}
.course_structure_single_cnts h4{
	font-size: 22px;
	font-weight: 700;
	color: #FFFFFF;
	letter-spacing: -0.5px;
	margin: 20px 0px;
}
.course_structure_single_cnts p{
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
}
.course_structure_btn{
	margin-top: 20px;
	display: flex;
	justify-content: center;
}
.course_structure_btn .btn_style {
    color: #0F172A;
    background: #FFF;
    font-size: 18px;
    font-weight: 600;
    border: 1px solid #FFF;
}
.course_structure_btn .btn_style:hover{
	background: transparent;
	color: #FFF;
}
.course_structure_btn .btn_style span {
    width: 28px;
    height: 28px;
    background: #292D32;
    line-height: 24px;
    border: 1px solid #FFF;
}
.btn_style span img {
    width: 17px;
}
/* End (Course Structure) Section */

/* Start (Explore A Level courses) Section */
.explore_courses_main{
	padding: 60px 0px 80px 0px;
}
.explore_courses .content_structure_title p {
    max-width: 955px;
}
.explore_courses_contents {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    gap: 10px;
}
.explore_courses_single{
	max-width: 310px;
	width: 100%;
	padding: 12px 12px 50px 12px;
	border: 1px solid #247E3D4D;
	border-radius: 25px;
	text-align: center;
	position: relative;
}
.explore_courses_single .btn_style {
    position: absolute;
    bottom: -26px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    width: 170px;
    display: inline-block;
    font-size: 16px;
    padding: 11px 8px 11px 30px;
    font-weight: 600;
}
.explore_courses_discount{
	position: absolute;
	top: 35px;
	left: 3px;
}
.explore_courses_discount img{
	width: 115px !important;
	height: auto;
}
.explore_courses_discount p {
    position: absolute;
    top: 8px;
    left: 12px;
    color: #F77C00 !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    margin: 0px !important;
}
.explore_courses_single .btn_style span {
    width: 28px;
    height: 28px;
    line-height: 26px;
}
.explore_courses_single img{
	width: 100%;
	height: auto;
}
.explore_courses_single p{
	font-size: 20px;
	font-weight: 600;
	margin: 24px 0px 12px 0px;
	color: #0B0D1E;
}
.explore_courses_single h4{
	font-size: 30px;
	font-weight: 700;
}
.explore_courses_single strike{
	font-size: 18px;
}
.explore_courses_single ul{
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #247E3D4D;
	display: flex;
	justify-content: center;
	gap: 25px;
}
.explore_courses_single ul li{
	font-size: 17px;
	color: #667085;
}
.explore_courses_single ul li span{
	display: inline-block;
}
/* End (Explore A Level courses) Section */
/*==================== End (A Level Courses) Page ====================*/

/*==================== Start (Blog Details) Page ====================*/
.blog_details_main{
	padding: 30px 0px 80px 0px;
}
.blog_details{
	display: flex;
	justify-content: space-between;
}
.blog_details_left{
	flex: 0 0 65%;
}
.blog_details_right{
	flex: 0 0 32%;
}
.blog_details_right_contents {
    padding: 30px 37px 55px 37px;
    border: 1px solid #247E3D4D;
    border-radius: 25px;
}
.blog_details_left_contents_main{
	width: 100%;
	padding: 10px;
	border-radius: 25px;
	border: 1px solid #247E3D4D;
}
.bdlcm_img{
	position: relative;
}
.bdlcm_img img{
	width: 100%;
	height: auto;
}
.bdlcm_img .btn_style {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #0B0D1E;
    background: #FFFFFF;
    padding: 8px 16px 8px 8px;
    letter-spacing: 0px;
}
.bdlcm_img .btn_style:hover{
	background: #247E3D;
	color: #FFF;
}
.bdlcm_img .btn_style:hover span{
	background: rgba(255, 255, 255, 0.5);
}
.bdlcm_img .btn_style span {
    width: 28px;
    height: 28px;
    line-height: 25px;
    margin-left: 0px;
    background: #0B0D1E1A;
    margin-right: 10px;
}
.bdlcm_img .btn_style span img {
    width: 15px;
}
.blog_details_left_title {
    padding: 30px 30px 0px 30px;
}
.blog_details_left_contents {
    padding: 5px 30px 30px 30px;
}
.blog_details_left_title ul{
	margin: 0px;
	justify-content: flex-start;
}
.blog_details_left_title ul li a{
	padding: 6px 13px;
}
.blog_details_left_title h3 {
    font-size: 29px;
    line-height: 42px;
    font-weight: 600;
    margin: 13px 0px 17px 0px;
    text-align: left;
}
.blog_details_left_title p{
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 19px;
	color: #777777;
}
.blog_details_left_title p img{
	width: 17px;
	height: auto;
}
.blog_details_left_contents p {
    font-size: 17px;
    font-weight: 300;
    margin-top: 22px;
    color: #0B0D1E;
}
.blog_details_left_contents p a{
	font-weight: 600;
	color: #247E3D;
	text-decoration: underline;
}
.blog_details_left_contents h4{
	font-size: 20px;
	font-weight: 600;
	margin-top: 35px;
	color: #0B0D1E;
}
.blog_details_tip_box{
	margin-top: 30px;
	border: 1px solid #F77C00;
	border-radius: 20px;
	padding: 25px 35px;
	display: flex;
	align-items: center;
	gap: 20px;
	position: relative;
}
.blog_details_tip_box h4 {
    position: absolute;
    top: -11px;
    left: 35px;
    background: #FFF;
    padding: 0px 10px;
    font-size: 18px;
    font-weight: 600;
    color: #F77C00;
    margin-top: 0px;
}
.blog_details_tip_box p {
	margin-top: 0px !important;
}
.blog_details_tip_box p b{
	font-weight: 600;
	color: #F77C00;
}
.blog_details_tip_box span img{
	width: 15px;
	height: auto;
}

.blog_details_left_form{
	margin-top: 35px;
	max-width: 480px;
	width: 100%;
	margin-left: 45px;
}
.blog_details_left_form h4{
	font-size: 25px;
	font-weight: 600;
	color: #0B0D1E;
	margin-bottom: 27px;
}
.blog_details_left_form input,.blog_details_left_form textarea{
	display: block;
	font-size: 15px;
	color: #0B0D1E;
	padding: 15px 19px;
	border: 1px solid #0B0D1E33;
	border-radius: 15px;
	margin-bottom: 18px;
	width: 100%;
	outline: none;
}
.blog_details_left_form textarea{
	height: 150px;
	resize: none;
}
.blog_details_left_form input:focus,.blog_details_left_form textarea:focus{
	border: 1px solid #247E3D;
}
.blog_details_left_form_post p span{
	font-size: 13px;
	font-weight: 600;
	color: #247E3D;
	display: inline-block;
	margin-bottom: 7px;
}
.bdlf_post_submit{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.bdlf_verify{
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 12px 20px;
	border: 1px solid #0B0D1E33;
	border-radius: 15px;
}
.bdlf_verify p{
	font-size: 15p;
	color: #0B0D1E;
	margin: 0px;
}
.bdlf_verify input {
	border: none;
	display: block;
	width: 85px;
	font-size: 15px;
	color: #0B0D1E;
	margin: 0px;
	padding: 0px !important;
	border-radius: 0px !important;
}
.bdlf_verify input:focus{
	border: none;
}
.bdlf_post_submit .btn_style {
    font-size: 16px;
    font-weight: 600;
    padding: 11px 10px 11px 35px;
    border: none;
}
.bdlf_post_submit .btn_style span {
    width: 28px;
    height: 28px;
    line-height: 26px;
}

/*Start Blog Details Right Site*/
.blog_details_right_single_title p{
	font-size: 25px;
	font-weight: 600;
	color: #0B0D1E;
}
.blog_details_right_single_contents {
    margin-top: 20px;
}
.bd_contents_single a{
	display: flex;
	gap: 15px;
	transition: 0.2s;
}
.recent_post_img img{
	width: 105px;
	height: 90px;
	object-fit: cover;
	border-radius: 10px;
}
.recent_post_contents p{
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 14px;
	color: #777777;
}
.recent_post_contents p img{
	width: 12px;
	height: auto;
}
.recent_post_contents h4 {
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    margin-top: 8px;
    color: #0B0D1E;
    transition: 0.2s;
    width: 100%;
    height: 66px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bd_contents_single a:hover h4{
	color: #247E3D;
}
.blog_details_right_single_contents .refund_policy_border{
    height: 1px;
    margin: 25px 0px;

}
.blog_details_right_single_contents .refund_policy_border::before {
    height: 1px;
    padding: 1px;
    background: -webkit-linear-gradient( left, #6a717a, #d7c7bf, #cccfce, #3d3e3d, #b6b1a7, #736550 );
    background: linear-gradient(90deg, rgba(22, 22, 22, 0) 0%, #757575 53.18%, rgba(22, 22, 22, 0) 100%);
    -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
}

.blog_details_right_single_mt{
	margin-top: 65px;
}
.bdrs_categories{
	display: flex;
	flex-direction: column;
	gap: 17px;
}
.bdrs_categories li a{
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 17px;
	color: #0B0D1E;
	transition: 0.2s;
}
.bdrs_categories li a:hover{
	color: #247E3D;
	text-decoration: underline;
}
.bdrs_categories li a span{
	color: #247E3D;
}

.bdrs_tags{
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.bdrs_tags li a{
	display: inline-block;
	padding: 10px 20px;
	border: 1px solid #247E3D;
	border-radius: 40px;
	font-weight: 600;
	color: #247E3D;
	transition: 0.2s;
}
.bdrs_tags li a:hover{
	background: #247E3D;
	color: #FFF;
}
/*==================== End (Blog Details) Page ====================*/

/*==================== Start (Dashboard) Page ====================*/
.dashboard_main{
	padding: 200px 0px 40px 0px;
}
.dashboard_design {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    transition: 0.2s;
}
.dashboard_left_main {
    max-width: 280px;
}
.dashboard_left{
	border: 1px solid #0B0D1E33;
	border-radius: 22px;
	padding: 20px 15px;
}
.dashboard_right_main{
	flex: 0 0 calc(100% - 300px);
}
.dashboard_right{
	border: 1px solid #0B0D1E33;
	border-radius: 22px;
}

/*Start Dashboard Left Side CSS*/
.dashboard_left_header {
    display: flex;
    align-items: center;
    padding: 0px 11.5px;
}
.dashboard_left_menu_bar a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid #0B0D1E26;
	border-radius: 10px;
	transition: 0.2s;
}
.dashboard_left_menu_bar a:hover{
	background: #F2FFF2;
}
.dashboard_left_menu_bar a img{
	width: 18px;
	height: auto;
}
.dashboard_logo a img{
	width: 115px;
	height: auto;
	margin-left: 15px;
}
.dashboard_mobile_menu_close{
	display: none;
}
.dashboard_mobile_menu_bar{
	display: none !important;
}
.dashboard_left_menu ul{
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 25px;
}
.dashboard_left_menu ul li a {
    display: flex;
    align-items: center;
    padding: 12px 11px;
    border-radius: 15px;
    background: #FFF;
    transition: 0.2s;
}
.dashboard_left_menu ul li a:hover,.dashboard_left_menu ul li .active{
	background: #247E3D;
}
.dashboard_menu_icon{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid #0B0D1E26;
	background: #FFF;
	border-radius: 10px;
    transition: 0.2s;
}
.dashboard_menu_icon svg path{
	stroke: #0B0D1E;
    transition: 0.2s;
}
.dashboard_menu_text {
	font-size: 15px;
	font-weight: 600;
	margin-left: 14px;
	color: #0B0D1E;
    transition: 0.2s;
}
.dashboard_left_menu ul li a:hover .dashboard_menu_icon,
.dashboard_left_menu ul .active .dashboard_menu_icon{
	background: #FFF;
}
.dashboard_left_menu ul li a:hover svg path,
.dashboard_left_menu ul .active svg path{
	stroke: #247E3D;
}
.dashboard_left_menu ul li a:hover .dashboard_menu_text,
.dashboard_left_menu ul .active .dashboard_menu_text{
	color: #FFF;
}
.dashboard_left_logout {
    margin-top: 112px;
}
.dashboard_left_logout a{
	border: 1px solid transparent;
}
.dashboard_left_logout a:hover{
	border: 1px solid #F73A00;
	background: transparent !important;
}
.dashboard_left_logout a .dashboard_menu_icon{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid #F73A0066;
	border-radius: 10px;
	transition: 0.2s;
}
.dashboard_left_logout .dashboard_menu_text{
	color: #F73A00 !important;
}
.dashboard_left_logout a .dashboard_menu_icon svg path{
	stroke: #F73A00 !important;
}
.dashboard_left_logout a:hover .dashboard_menu_icon{
	background: #F73A00 !important;
}
.dashboard_left_logout a:hover .dashboard_menu_text{
	color: #F73A00 !important;
}
.dashboard_left_logout a:hover .dashboard_menu_icon svg path{
	stroke: #FFF !important;
}
/*End Dashboard Left Side CSS*/

/*Start Dashboard Right Side CSS*/
.dashboard_right_header {
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #0B0D1E33;
}
.dashboard_right_header_title p,.dashboard_right_header_title a{
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 15px;
	color: #000000;
}
.dashboard_right_header_profile a {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 15px;
    color: #000000;
    font-weight: 600;
}
.dashboard_right_header_profile a img{
	width: 28px;
	height: auto;
	border-radius: 50%;
}

.dashboard_right_counting {
    padding: 25px 25px;
    border-bottom: 1px solid #0B0D1E33;
    display: flex;
    justify-content: space-between;
}
.dashboard_counting_single{
	flex: 0 0 23%;
}
.dashboard_counting_single a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px 20px 10px;
    border: 1px solid #0B0D1E33;
    border-radius: 25px;
    position: relative;
    transition: 0.2s;
}
.dashboard_counting_single a:hover{
	background: url(../images/dashboard/counting-bg.png) no-repeat scroll 0 0 / cover;
}
.dcs_icon_arrow{
	position: absolute;
	top: 12px;
	right: 12px;
	width: 23px;
	height: 23px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #247E3D66;
	border-radius: 50%;
	background: #FFF;
}
.dcs_icon_arrow2{
	border: 1px solid #F73A0066;
}
.dashboard_counting_single a .dcs_icon{
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #247E3D66;
	background: #247E3D14;
}
.dashboard_counting_single a  .dcs_icon2{
	border: 1px solid #F73A0066;
	background: #F73A0014;
}
.dashboard_counting_single a:hover .dcs_icon{
	background: #FFFFFF33;
}
.dashboard_counting_single a .dcs_icon svg path{
	stroke: #247E3D;
}
.dcs_icon2 svg path{
	stroke: #F73A00 !important;
}
.dashboard_counting_single a:hover .dcs_icon svg path{
	stroke: #FFF;
}
.dashboard_counting_single a .dcs_icon img{
	width: 18px;
	height: auto;
}
.dashboard_counting_single a p {
    display: block;
    margin: 10px 0px 10px 0px;
    color: #0B0D1E;
}
.dashboard_counting_single a:hover p,
.dashboard_counting_single a:hover h4{
	color: #FFF;
}
.dashboard_counting_single a h4{
	font-size: 30px;
	font-weight: 700;
	color: #0B0D1E;
}

.dashboard_right_book_exam{
	padding: 0px 25px 35px 25px;
}
.dashboard_right_book_exam_title p{
	margin: 23px 0px;
	font-size: 18px;
	font-weight: 600;
}
.dashboard_right_book_exam_contents{
	margin: 0px;
	gap: 25px;
	justify-content: center;
}
.dashboard_right_book_exam_contents .high_standard_single {
    max-width: 100%;
    padding: 20px 20px 25px 20px;
    border-radius: 15px;
    flex: 0 0 23%;
}
.dashboard_right_book_exam_contents .high_standard_single svg {
    width: 60px;
    height: auto;
}
.dashboard_right_book_exam_contents .high_standard_single h4 {
    font-size: 15px;
    margin: 17px 0px 6px 0px;
}
.dashboard_right_book_exam_contents .high_standard_single p {
    font-size: 12px;
}
/*End Dashboard Right Side CSS*/

.collapsed .dashboard_menu_text,
.collapsed .dashboard_logo img {
    display: none;
}
.collapsed .dashboard_right_main {
    flex: 1;
}

.dashboard_left_main {
    width: 275px;
    transition: width 0.4s ease-in-out;
    overflow: hidden;
}
.dashboard_right_main {
    flex-grow: 1;
    transition: width 0.4s ease-in-out;
}
.dashboard_left_menu .dashboard_menu_text,
.dashboard_logo {
    transition: opacity 0.3s ease-in-out;
}
.collapsed .dashboard_left_main {
    width: 95px;
}
.collapsed .dashboard_right_main {
    flex-grow: 1;
}
.collapsed .dashboard_left_menu .dashboard_menu_text,
.collapsed .dashboard_logo {
    opacity: 0;
    pointer-events: none;
}
/*==================== End (Dashboard) Page ====================*/

/*==================== Start (Dashboard - Edit-Profile) Page ====================*/
.dashboard_edit_profile_tabs {
    padding-top: 0px;
    margin-bottom: -25px;
}
.dashboard_edit_profile_tabs .nav-pills .nav-link {
    width: 170px;
    height: 44px;
    background: url(../images/dashboard/tab-unactive.png) no-repeat scroll 0 0 / cover;
    font-size: 14px;
}
.dashboard_edit_profile_tabs .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    width: 170px;
    height: 44px;
    background: url(../images/dashboard/tab-active.png) no-repeat scroll 0 0 / cover;
    position: relative;
}
.dashboard_edit_profile_tabs #pills-profile-tab {
    margin-left: -13px;
}

.edit_profile_right_contents{
	padding: 30px 30px 40px 30px;
}
.edit_profile_right_contents input::placeholder,
.edit_profile_right_contents textarea::placeholder {
    font-style: normal !important;
}
.edit_profile_save_btn .btn_style {
    letter-spacing: 0;
}
.edit_profile_save_btn {
	margin-top: 50px !important;
}

.edit_profile_img_upload .cnasfu_upload input[type="file"] {
	 height: 0;
	 overflow: hidden;
	 width: 0;
}
.edit_profile_img_upload .cnasfu_upload input[type="file"] + label {
    background: #f15d22;
    cursor: pointer;
    display: inline-block;
    font-size: inherit;
    outline: none;
    padding: 0;
    position: relative;
    transition: all 0.3s;
    vertical-align: middle;
    background: #247E3D;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.edit_profile_img_upload .cnasfu_upload input[type="file"] + label:hover {
	 background-color: #1e5b2f;
}
.edit_profile_user_img img {
	width: 190px;
	height: 180px;
	object-fit: cover;
	border-radius: 30px;
}
.edit_profile_img_upload label img{
	width: 20px;
	height: auto;
	border-radius: 0px;
}
.edit_profile_user_img{
	position: relative;
}
.epi_upload {
    position: absolute;
    bottom: -25px;
    left: 38%;
}
.edit_profile_img_upload {
    display: flex;
    justify-content: center;
}
/*==================== End (Dashboard - Edit-Profile) Page ====================*/

/*==================== End (Dashboard - Edit-Profile) Page ====================*/

.dashboard_exam_booking_table .table_design_default th {
    padding: 20px 10px;
    font-size: 14px;
    font-weight: 600;
}
.dashboard_exam_booking_table .table_design_default th:last-child{
	text-align: right;
	padding-right: 20px;
	border-radius: 0px 10px 10px 0px;
}
.dashboard_exam_booking_table .table_design_default th:first-child{
	border-radius: 10px 0px 0px 10px;
	padding-left: 15px;
}
.dashboard_exam_booking_table .table_design_default td {
    padding: 20px 10px;
    font-size: 15px;
}
.dashboard_exam_booking_table .table_design_default td:last-child {
    text-align: right;
    padding-right: 15px;
}
.dashboard_exam_booking_table .table_design_default tr:nth-child(even) {
    background: #00000008;
}
.debl_table_btn_main {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}
.debl_status{
	color: #247E3D;
	padding: 6px 11px 6px 28px;
	border-radius: 30px;
	background: #247E3D1A;
	position: relative;
}
.debl_status2{
	color: #F73A00;
	background: #F73A001A;
}
.debl_status::before{
	position: absolute;
	content: "";
	top: 50%;
	transform: translateY(-50%);
	left: 13px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #247E3D;
}
.debl_status2::before{
	background: #F73A00;
}
.debl_table_btn {
    padding: 8px 10px;
    background: #247E3D;
    border-radius: 50px;
    font-size: 12px;
    color: #FFFFFF;
    transition: 0.2s;
}
.debl_table_btn:hover{
	opacity: 0.8;
}
.debl_table_btn img{
	width: 12px !important;
	height: auto;
	margin-right: 5px;
}
.debltb1{
	background: #478DCB;
}
.debltb2{
	background: #488A99;
}
.debltb3{
	background: #6961FF;
}
.dashboard_exam_booking_table .table_design_default {
    border: 1px solid #0B0D1E26;
    border-radius: 10px;
    border-top: none;
}
.dashboard_exam_booking_table table{
	margin-top: 0px;
	padding-top: 0px;
}
.exam_bookinglist_right_contents{
	padding: 24px 28px 28px 28px;
}
.exam_booking_list_page_counting{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 25px;
}
.exam_booking_list_page_counting ul{
	margin-top: 0px !important;
	padding-top: 0px !important;
}
.exam_booking_list_page_counting ul li a {
    width: 33px;
    height: 33px;
}
.exam_booking_list_page_counting ul li a span {
    width: 22px;
    height: 22px;
}
.exam_booking_list_page_counting ul li a span i {
    font-size: 12px;
}
.exam_booking_list_page_counting ul li:last-child {
    margin-left: 30px;
}
.exam_booking_list_page_counting ul li:first-child {
    margin-right: 30px;
}
/*==================== End (Dashboard - Edit-Profile) Page ====================*/

/*==================== Start (Dashboard - Exam-Booking-Details) Page ====================*/
.exam_booking_details_contents{
	padding-bottom: 30px;
	border-bottom: 1px solid #0B0D1E33;
}
.ebdc_basic_information_title p{
	padding: 25px 28px 0px 28px;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 15px;
}
.ebdc_basic_information_single{
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 890px;
	width: 100%;
	gap: 150px;
	padding: 13px 10px 13px 28px;
}
.ebdc_bis_active{
	background: #F0FDF2;
	border: 1px solid #247E3D4D;
	border-radius: 0px 24px 24px 0px;
	margin-bottom: 13px;
}
.ebdc_bis_2 {
    max-width: 330px;
}
/*.ebdc_bis_2{
	padding: 0px;
	background: transparent;
	border: none;
	border-radius: none;
}
.ebdc_biss_p{
	padding: 13px 10px 13px 28px;
	border: 1px solid #247E3D4D;
	border-radius: 0px 24px 24px 0px;
	background: #F0FDF2;
}*/
.ebdc_basic_information_single p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    width: 100%;
}
.ebdc_basic_information_single p span:first-child {
	display: flex;
	align-items: center;
	gap: 8px;
	max-width: 136px;
	width: 100%;
}
.ebdc_basic_information_single p span img{
	width: 12px;
	height: auto;
}
.ebdc_basic_information_single p span:last-child {
	font-weight: 600;
	max-width: 210px;
	width: 100%;
}
.ebdc_bis_active p span:last-child {
	color: #247E3D;
}
.ebdc_bis_scolor{
	color: #247E3D;
	padding-left: 20px;
	position: relative;
}
.ebdc_bis_scolor::before{
	position: absolute;
	content: "";
	top: 50%;
	transform: translateY(-50%);
	left: 0px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #247E3D;
}

.dashboard_exam_booking_details_table{
	padding: 0px 28px;
	margin-top: 25px;
}
.debdt_span{
	padding: 7px 14px;
	background: #247E3D1A;
	border-radius: 50px;
	color: #247E3D;
	font-size: 15px;
	display: inline-block;
}
.ebdc_personal_information{
	padding: 0px 28px;
	display: flex;
	justify-content: space-between;
	gap: 35px;
	flex-wrap: wrap;
}
.ebdc_pi_single {
    max-width: 425px;
    width: 100%;
}
.ebdc_pi_single_title p{
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	margin-bottom: 14px;
}
.ebdc_pi_single p img{
	width: 15px;
	height: auto;
}
.ebdc_pi_single_upload {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}
.ebdc_pi_single_img img{
	width: 180px;
	height: 160px;
	object-fit: cover;
	border-radius: 10px;
}
.ebdc_pi_single .form_file_upload_design button {
    margin-top: 0px;
}
.ebdc_pi_single .form_file_upload label p,.ebdc_pi_single .form_file_upload_design button p {
    font-size: 14px;
}
.ebdc_pi_single .form_file_upload label p span,.ebdc_pi_single .form_file_upload_design button p span {
    display: block;
    padding: 11px 0px 15px 0px;
    color: rgba(11, 13, 30, 0.6);
    font-size: 13px;
}
.ebdc_pi_single .single_form_step{
	max-width: 230px;
}
.ebdc_pi_single .signature-pad-container {
    width: 430px;
    padding: 0;
    border: navajowhite;
    border-radius: 10px;
}
.ebdc_pi_single #signature{
	border-radius: 10px;
}
.exam_booking_details_contents.mb-3{
	border-bottom: none;
}
.ebdc_other_information{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 40px;
	padding: 0px 28px;
	margin-top: 22px;
}
.ebdc_other_information_single{
	max-width: 425px;
	width: 100%;
}
.ebdc_ois_title p{
	font-size: 14px;
	margin-bottom: 13px;
}
.ebdc_ois_contents{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.ebdc_ois_contents p {
    display: flex;
    align-items: center;
    gap: 20px;
}
.ebdc_ois_contents p span{
	padding: 5px 10px 5px 25px;
	display: inline-block;
	background: #247E3D1A;
	font-size: 15px;
	border-radius: 50px;
	position: relative;
}
.ebdc_ois_contents p span::before{
	position: absolute;
	content: "";
	top: 50%;
	transform: translateY(-50%);
	left: 10px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #247E3D;
}
.ebdc_ois_contents p b{
	font-size: 14px;
	font-weight: 400;
	display: flex;
	align-items: center;
	gap: 8px;
}
.ebdc_ois_contents p b img{
	width: 12px;
	height: auto;
}
.ebdcoisc_copy{
	display: flex;
	align-items: center;
	gap: 10px !important;
	color: #247E3D;
	position: relative;
}
.ebdcoisc_copy img{
	width: 17px;
	height: auto;
	cursor: pointer;
}

.copy-text {
    display: none; 
    opacity: 0; 
    position: absolute !important;
    font-size: 14px;
    margin-left: 10px;
    transition: opacity 0.3s ease-in-out;
    padding: 0 !important;
    background: #F73A001A !important;
    width: 120px;
    text-align: center;
    color: #F73A00 !important;
    right: -10px;
    top: -25px;
    padding: 2px 10px !important;
}
.copy-text::before{
	display: none;
}

.ebdc_update_btn{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-top: 20px;
	padding: 0px 28px;
}
.ebdc_update_btn_img img{
	width: 200px;
	height: 160px;
	object-fit: cover;
	border: 1px solid #0B0D1E26;
	border-radius: 10px;
	padding: 10px;
}
/*==================== End (Dashboard - Exam-Booking-Details) Page ====================*/





