/*--------------------- Copyright (c) 2020 ----------------------- 
[Comman Stylesheet] 
Project: E- Academy
Version: 1.0.0 
Author: Kamleshyadav
-------------------------------------------------------------------*/


/*------------------------------------------------------------------
[Table of contents]

1. Global CSS
2. Top Button CSS
3. PreLoader CSS
4. Header CSS
5. Banner CSS Start
6. Call To Action CSS Start
7. About CSS Start
8. Service CSS Start
9. Selection CSS Start
10. Courses CSS Start
11. Team CSS Start
12. Testimonial CSS Start
13. Partner CSS Start
14. Footer CSS Start
15. Page Title CSS Start
16. Mission CSS Start
17. Vission CSS Start
18. Course Info CSS Start
19. Gallery CSS Start
20. Video Gallery CSS Start
21. Publication CSS Start
22. Contact CSS Start
23. Login Start CSS
24. Popup Start CSS
25. Payment page CSS Start
26. Responsive CSS Start

------------------------------------------------------------------*/


/********************************************************
    1. Global CSS
*******************************************************/

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    background: var(--Secondary-Color);
    color: #787878;
    -webkit-font-smoothing: antialiased;
    background-color: #cccccc24;
}

a,
a:hover,
a:focus,
button,
button:hover {
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.relative {
    position: relative;
}

img {
    max-width: 100%;
}

input,
textarea,
select,
button,
button:focus,
button:hover,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a,
 :after,
 :before,
 :hover,
 :focus,
.form-control:focus {
    outline: none;
    box-shadow: none;
}

ul,
p {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    font-family: 'Montserrat', sans-serif;
    color:var(--Alternate-Text-Color);
}

.full_width {
    width: 100%;
}

.mb_0 {
    margin: 0;
}

.mb_30 {
    margin-bottom: 30px;
}

.mb_40 {
    margin-bottom: 40px;
}

.mb_50 {
    margin-bottom: 50px;
}

.mt_30 {
    margin-top: 30px;
}

.mt_40 {
    margin-top: 40px;
}

.padder_right {
    padding-right: 0;
}

.padder_left {
    padding-left: 0;
}

.overflow_hidden {
    overflow: hidden;
}

button {
    cursor: pointer;
}

.display_flex {
    display: flex;
    flex-wrap: wrap;
}

section {
    overflow-x: hidden;
}

.white {
    color: var(--Secondary-Color) !important;
}

.edu_btn {
    background:var(--Alternate-Text-Color) none repeat scroll 0 0;
    border: none;
    border-radius: 3px;
    color: var(--Secondary-Color);
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    height: 50px;
    line-height: 50px;
    padding: 0 15px;
    min-width: 170px;
    position: relative;
    -webkit-transform: perspective(1px) translateZ(0px);
    -moz-transform: perspective(1px) translateZ(0px);
    -ms-transform: perspective(1px) translateZ(0px);
    -o-transform: perspective(1px) translateZ(0px);
    transform: perspective(1px) translateZ(0px);
    transition: color 0.3s ease 0s;
    vertical-align: middle;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
}

.edu_btn::before {
    background: var(--Primary-Color) none repeat scroll 0 0;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    transform-origin: 50% 0 0;
    transition-duration: 0.3s;
    transition-property: transform;
    transition-timing-function: ease-out;
    z-index: -1;
    border-radius: 3px;
}

.edu_btn:hover::before {
    transform: scaley(1);
}

.edu_btn:hover {
    color: var(--Secondary-Color);
}

.edu_btn.edu_white_btn {
    background: var(--Secondary-Color);
    color: var(--Primary-Color);
}

.edu_btn.edu_white_btn::before {
    background: var(--Primary-Color);
}

.edu_btn.edu_white_btn:hover {
    color: var(--Secondary-Color);
}

.edu_heading_wrapper {
    margin-bottom: 41px;
}

.edu_heading {
    font-size: 42px;
    font-weight: 700;
    position: relative;
    margin: 0 0 10px;
    padding: 0;
    color:var(--Alternate-Text-Color);
}

.edu_heading.white h4,
.edu_heading.white p {
    color: var(--Secondary-Color);
}

.edu_heading p {
    margin-top: 8px;
}

.edu_subTitle {
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--Primary-Color);
    margin-bottom: 4px;
    font-size: 18px;
}

.edu_readMoreBtn {
    color: var(--Secondary-Color);
    position: relative;
    font-weight: 500;
    display: inline-block;
    margin-top: 5px;
}

.edu_readMoreBtn:before {
    content: "";
    position: absolute;
    bottom: 5px;
    background: var(--Primary-Color);
    width: 100%;
    height: 1px;
    opacity: .6;
}

.edu_readMoreBtn:hover {
    color: var(--Primary-Color);
    letter-spacing: 1px;
}


/********************************************************
    2. Top Button CSS
*******************************************************/

#scroll {
    position: fixed;
    right: 15px;
    bottom: 15px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    z-index: 9;
    visibility: hidden;
    -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px);
    background: var(--Primary-Color);
    color: var(--Secondary-Color);
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#scroll.active {
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    animation: bounceInDown 2s;
    -webkit-animation: bounceInDown 2s;
    -moz-animation: bounceInDown 2s;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(0px);
    }
}


/********************************************************
    3. PreLoader CSS
*******************************************************/

.edu_preloader {
    background-color: var(--Secondary-Color);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2147483647;
    width: 100%;
    height: 100%;
}

.edu_status {
    background-position: center center;
    background-repeat: no-repeat;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}


/********************************************************
    4. Header CSS
*******************************************************/

.main_menu_parent {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

}

.edu_header_wrapper {
    background: var(--Secondary-Color);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.08);
}

.edu_header_wrapper.navbar-fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.main_menu_wrapper ul,
.main_menu_wrapper li {
    display: inline-block;
    position: relative;
}

.main_menu_wrapper ul>li>a {
    padding: 12px 20px;
    display: inline-block;
    font-weight: 500;
    color:#ffffff;
    text-transform: capitalize;
}

.main_menu_wrapper>ul>li.active a {
    color: var(--Primary-Color);
}

.main_menu_wrapper ul>li>a:hover,
.main_menu_wrapper ul>li>a.active {
    color: var(--Primary-Color);
}

.main_menu_wrapper ul>li ul.sub_menu a.active {
    color:var(--Alternate-Text-Color);
}

.main_menu_wrapper ul>li ul.sub_menu a:hover {
    color: var(--Primary-Color);
}

.main_menu_wrapper>ul>li {
    position: relative;
}

header {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.06);
    position: relative;
    display: inline-block;
    width: 100%;
    z-index: 9;
    background: var(--Secondary-Color);
}

.edu_header_top {
    background-color: rgba(49, 75, 166, 1);
    color: var(--Secondary-Color);
}

/* Screenshot-matched frontend header */
header.edu-header-gradmo {
    background: #3787FF ;
    box-shadow: 0 2px 8px rgba(22, 40, 105, 0.2);
    border-bottom: 0;
}
header.edu-header-gradmo .edu_header_top {
    background: #3787FF ;
}
header.edu-header-gradmo .edu_logo img.front_logo {
    max-height: 34px;
    width: auto;
}
header.edu-header-gradmo .edu_header_info {
    padding: 8px 4px;
}
header.edu-header-gradmo .edu_header_info ul li {
    margin-left: 0;
    padding: 0;
}
header.edu-header-gradmo .edu_header_info ul li:before {
    display: none;
}
header.edu-header-gradmo .front-profile-wrap .front-profile-trigger {
    max-width: 300px;
    gap: 6px;
}
header.edu-header-gradmo .main_menu_wrapper ul>li>a {
    color: #ffffff;
    font-size: 14px;
    padding: 10px 14px;
    line-height: 1.2;
    font-weight: 600;
}
header.edu-header-gradmo .main_menu_wrapper ul>li>a:hover,
header.edu-header-gradmo .main_menu_wrapper ul>li>a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}
header.edu-header-gradmo .front-profile-trigger-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 15px;
}
header.edu-header-gradmo .edu-header-login-link {
    color: #ffffff;
    font-weight: 600;
}
header.edu-header-gradmo .edu-header-login-link i {
    margin-right: 6px;
}
header.edu-header-gradmo .main_menu_parent {
    justify-content: center;
}
header.edu-header-gradmo .main_menu_wrapper {
    margin-left: 0;
    text-align: center;
}
header.edu-header-gradmo .edu_header_info--with-mobile-toggle {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: nowrap;
	gap: 10px;
}
header.edu-header-gradmo .edu_header_info--with-mobile-toggle > ul {
	flex-shrink: 1;
	min-width: 0;
	margin-bottom: 0;
}
header.edu-header-gradmo .edu-front-mobile-nav-drawer .main_menu_wrapper ul>li>a {
	color: #1a1a2e;
	font-weight: 600;
}
header.edu-header-gradmo .edu-front-mobile-nav-drawer .main_menu_wrapper ul>li>a:hover,
header.edu-header-gradmo .edu-front-mobile-nav-drawer .main_menu_wrapper ul>li>a:focus {
	color: var(--Primary-Color, #4d4a81);
	background-color: rgba(0, 0, 0, 0.05);
}
header.edu-header-gradmo .menu_btn {
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	-webkit-user-select: none;
	user-select: none;
	touch-action: manipulation;
}
header.edu-header-gradmo .menu_btn_wrap.open {
	position: relative;
	z-index: 1001;
}
body.front-mobile-nav-open {
	overflow: hidden;
}
body.front-mobile-nav-open::before {
	content: '';
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(15, 23, 42, 0.45);
	z-index: 990;
	pointer-events: none;
}
header.edu-header-gradmo .front-profile-trigger-avatar {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.2);
}
header.edu-header-gradmo .front-profile-trigger-avatar--ph {
    color: #fff;
}
.main_wrapper {
    background: #f6f8fc;
}
.main_wrapper .edu-home-wrap,
.main_wrapper .edu-page-section,
.main_wrapper .container,
.main_wrapper .container-fluid {
    position: relative;
}

.edu_header_info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 12px 40px;
}

.edu_header_info ul {
    display: flex;
    flex-wrap: wrap;
}

.edu_header_info ul li {
    margin-left: 20px;
    padding: 6px 0 6px 20px;
    position: relative;
}

.edu_header_info ul li:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 18px;
    background: var(--Secondary-Color);
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.edu_header_top .edu_btn {
    min-width: 190px;
    border-radius: 0;
}

.edu_header_info ul li:first-child {
    margin-left: 0;
    padding: 6px 0;
}

.edu_header_info ul li:first-child:before {
    content: unset;
}

.edu_header_info ul li a {
    color: var(--Secondary-Color);
    display: inline-block;
}

.edu_header_info i {
    margin-right: 8px;
}

.edu_social_wrapper ul {
    display: flex;
    flex-wrap: wrap;
}

.edu_social_wrapper ul li {
    margin-right: 20px;
    padding: 6px 0;
}

.edu_social_wrapper ul li:last-child {
    margin-right: 0;
}

.edu_header_top .row {
    align-items: center;
}

.edu_social_wrapper ul li a {
    color: var(--Secondary-Color);
}

.edu_header_wrapper {
    padding: 17px 0 18px;
}

.edu_header_info ul li a>span {
    margin-right: 4px;
    font-weight: 700;
}

/* Keep topbar links white, but dropdown menu items dark/readable. */
.edu_header_info .dropdown-menu .dropdown-item {
    color: #212529 !important;
    display: block;
}

.edu_header_info .dropdown-menu .dropdown-item:hover,
.edu_header_info .dropdown-menu .dropdown-item:focus {
    color: #16181b !important;
}

/* Profile menu uses .front-profile-link (not .dropdown-item); topbar link color would inherit as white on white. */
.edu_header_info .front-profile-dropdown {
	background-color: #ffffff !important;
}
.edu_header_info .front-profile-dropdown .front-profile-link {
	color: #1e293b !important;
	background-color: transparent;
}
.edu_header_info .front-profile-dropdown .front-profile-link i {
	color: var(--Primary-Color, #4d4a81) !important;
}
.edu_header_info .front-profile-dropdown .front-profile-link .icofont-logout {
	color: var(--Primary-Color, #4d4a81) !important;
}
.edu_header_info .front-profile-dropdown .front-profile-link--danger,
.edu_header_info .front-profile-dropdown .front-profile-link--danger i {
	color: #b91c1c !important;
}
.edu_header_info .front-profile-dropdown .front-profile-link:hover,
.edu_header_info .front-profile-dropdown .front-profile-link:focus {
	color: #0f172a !important;
	background-color: rgba(77, 74, 129, 0.08) !important;
}
.edu_header_info .front-profile-dropdown .front-profile-link--danger:hover,
.edu_header_info .front-profile-dropdown .front-profile-link--danger:focus {
	color: #991b1b !important;
	background-color: rgba(185, 28, 28, 0.08) !important;
}

.edu_header_wrapper .edu_btn {
    min-width: 170px;
    margin: 0 0 0 30px;
    padding: 0 15px 0;
}

.edu_logo .front_logo {
    width: 198px;
    height: 44px;
    object-fit: contain;
}


/********************************************************
    5. Banner CSS Start
********************************************************/

.edu_banner_section {
    background: var(--Secondary-Color);
    padding: 215px 0 365px;
    position: relative;
}

.edu_banner_section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
}

.edu_banner_text {
    color: var(--Secondary-Color);
    font-size: 18px;
}

.edu_banner_text h1 {
    font-size: 62px;
    font-weight: 700;
    line-height: 75px;
    color:var(--Secondary-Color);
    margin-bottom: 7px;
}

.edu_banner_text h4 {
    font-size: 24px;
}

.edu_banner_text .edu_btn {
    margin: 32px 0 0;
}

.edu_banner_button {
    position: absolute;
    top: 36%;
    left: 50px;
    right: 50px;
}

.edu_banner_button>div {
    background: var(--Secondary-Color);
    color: var(--Primary-Color);
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 1;
    font-size: 30px;
    line-height: 50px;
    cursor: pointer;
    border: none;
    text-align: center;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.edu_banner_button>div:hover {
    background: var(--Primary-Color);
    color: var(--Secondary-Color);
}

.ButtonPrev {
    left: 0;
    padding: 0 3px 0 0;
}

.ButtonNext {
    right: 0;
    padding: 0 2px 0 0;
}

.edu_banner_button>div,
.edu_banner_button>div:hover {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}


/*animation start*/

.swiper-slide.swiper-slide-active .animation_ttl1 {
    animation: fadeInDown 1s 1 both 500ms;
    -webkit-animation: fadeInDown 1s 1 both 500ms;
    -moz-animation: fadeInDown 1s 1 both 500ms;
    -ms-animation: fadeInDown 1s 1 both 500ms;
    -o-animation: fadeInDown 1s 1 both 500ms;
}

.swiper-slide.swiper-slide-active .animation_ttl2 {
    animation: fadeInUp 1s 1 both 500ms;
    -webkit-animation: fadeInUp 1s 1 both 500ms;
    -moz-animation: fadeInUp 1s 1 both 500ms;
    -ms-animation: fadeInUp 1s 1 both 500ms;
    -o-animation: fadeInUp 1s 1 both 500ms;
}


/********************************************************
    6. Call To Action CSS Start
********************************************************/

.edu_callToAction_wrapper {
    margin-top: 15px;
    position: relative;
    z-index: 2;
}

.edu_callToAction_bg {
    width: 100%;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    border: none;
    border-radius: 6px;
    overflow: hidden;
    color: var(--Secondary-Color);
    background-image: url(../images/callToAction_bg.png);
}

.edu_callToAction_bg_inner {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background-color:var(--Primary-Color);
}

.edu_action_section {
    position: relative;
    padding: 51px 20px 42px;
    font-size: 18px;
    font-weight: 500;
}

.edu_action_section.center:before,
.edu_action_section.center:after {
    content: "";
    background: rgba(255, 255, 255, 0.28);
    height: 185px;
    width: 1px;
    position: absolute;
    top: 0;
    margin: auto;
    bottom: 0;
}

.edu_action_section.center:after {
    right: 0;
}

.edu_action_section.center:before {
    left: 0;
}

.edu_action_section i {
    font-size: 50px;
}

.edu_action_section h1 {
    font-size: 50px;
    color: var(--Secondary-Color);
    font-weight: 700;
    margin: 19px 0 14px;
}
.edu_service_icon_box i {
    margin: 0;
}

/********************************************************
    7. About CSS Start
********************************************************/

.edu_about_wrapper {
    background: var(--Secondary-Color);
    padding: 80px 0 50px;
}

.edu_about_wrapper .row {
    align-items: center;
}

.edu_about_img {
    position: relative;
    display: inline-block;
    width: 100%;
}

.edu_about_small_img {
    border: 10px solid #e4e4e4;
    margin-top: -215px;
    float: right;
    position: relative;
    max-height: 310px;
    max-width: 350px;
    object-fit: cover;
}

.edu_about_time {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    display: inline-block;
    font-size: 32px;
    position: absolute;
    right: 15px;
    top: 26px;
    text-transform: uppercase;
    font-weight: 700;
    writing-mode: vertical-rl;
    color: var(--Alternate-Text-Color);
}

.edu_about_detail {
    display: inline-block;
    width: 100%;
}

.edu_about_detail .edu_btn {
    margin-top: 32px;
}

.edu_about_detail .edu_heading {
    margin-bottom: 24px;
}

.edu_about_img img {
    border-radius: 6px;
    width: calc(100% - 80px);
}


/********************************************************
    8. Service CSS Start
********************************************************/

.edu_services_wrapper {
    padding: 77px 0 50px;
    position: relative;
    background: var(--Secondary-Color)7f1;
    background-image: url(../images/service_bg.png);
}

.edu_services_wrapper .edu_heading_wrapper {
    margin-bottom: 48px;
}

.edu_services_section {
    background: var(--Secondary-Color);
    padding: 51px 20px 45px;
    margin-bottom: 30px;
    position: relative;
    border: none;
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.06);
    justify-content: center;
}

.edu_services_section i {
    font-size: 60px;
    color: var(--Alternate-Text-Color);
    margin-bottom: 24px;
    display: inline-block;
}

.edu_services_section h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 18px;
    position: relative;
}

.edu_services_section h4:before,
.edu_services_section h4:after {
    content: "";
    position: absolute;
    height: 1px;
    background: var(--Primary-Color);
    left: 0;
    right: 0;
    margin: auto;
}

.edu_services_section h4:before {
    width: 120px;
    bottom: 3px;
}

.edu_services_section h4:after {
    width: 80px;
    bottom: 0;
}

.edu_services_section .edu_readMoreBtn {
    margin-top: 16px;
}

.edu_services_section {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

.edu_services_section:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
}

.edu_services_section:hover,
.edu_services_section {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}


/********************************************************
    9. Selection CSS Start
********************************************************/

.edu_selection_wrapper {
    padding: 77px 0 80px;
    position: relative;
    background: var(--Secondary-Color);
}

.edu_selection_wrapper .edu_heading_wrapper {
    margin-bottom: 33px;
}

.edu_selection_section {
    background: var(--Secondary-Color);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.06);
    margin: 15px 0;
    padding: 20px;
    border: none;
    border-radius: 6px;
    position: relative;
}

.edu_selection_section img {
    border: none;
    border-radius: 6px;
    height: 80px;
    width: 80px;
    object-fit: cover;
}

.edu_selection_section_inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.edu_selection_info {
    width: calc(100% - 80px);
    padding: 0 15px 0 20px;
}

.edu_selection_section h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 9px;
    display: inline-block;
    width: 100%;
}

.edu_selection_info p {
    font-weight: 500;
}

.edu_selection_info p span {
    color:var(--Alternate-Text-Color);
    margin-left: 6px;
}

.swiper-container.selectionSlider {
    padding: 0 20px;
}

.edu_selection_slider {
    width: 100%;
    display: inline-block;
}

.row.extraMargin {
    margin-right: -20px;
    margin-left: -20px;
}

.edu_selection_section:hover,
.edu_selection_section {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.edu_selection_cap {
    display: inline-block;
    font-size: 60px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: rotate(24deg) translateY(-50%);
    color: var(--Primary-Color);
    opacity: 0.08;
}

.swiperPagination {
    width: 100%;
    margin: 35px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiperPagination span.swiper-pagination-bullet {
    width: 26px;
    height: 6px;
    border-radius: 3px;
    margin: 0 6px;
}

.swiperPagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--Alternate-Text-Color);
}


/********************************************************
    10. Courses CSS Start
********************************************************/

.edu_courses_wrapper {
    position: relative;
    background: url(../images/courses_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 77px 0 42px;
}

.edu_courses_wrapper .edu_heading {
    color: var(--Secondary-Color)
}

.edu_courses_wrapper:before {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.80);
}

.edu_courses_wrapper ul.nav {
    justify-content: center;
    border-color: #e4e4e4;
}

.edu_courses_wrapper .nav-tabs .nav-link {
    width: 100%;
    /*width: 100px;*/
    /*min-height: 90px;*/
    padding: 30px 10px;
    text-align: center;
    border: none;
    border-radius: 0;
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.edu_courses_wrapper .nav-tabs .nav-link.active {
    background-color: rgba(255, 255, 255, 0);
}

.edu_tab_icons {
    color: var(--Secondary-Color);
    margin-top: 4px;
}

.edu_courses_content {
    background: var(--Secondary-Color);
    margin-top: 30px;
    padding: 50px 50px 20px;
    border: none;
    border-radius: 6px;
}

.edu_courses_wrapper .nav-tabs .nav-link.active:before {
    content: "";
    background: var(--Alternate-Text-Color);
    height: 3px;
    width: 40%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.edu_courses_wrapper .nav-tabs .nav-link.active:after {
    content: "";
    background: transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid var(--Secondary-Color);
    border-left: 20px solid transparent;
    width: 35px;
    height: 20px;
    position: absolute;
    bottom: -38px;
}

.edu_tab_icons img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.edu_courses_detail h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 18px;
    position: relative;
}

.edu_courses_detail h4:before {
    content: "";
    position: absolute;
    height: 1px;
    background: var(--Alternate-Text-Color);
    left: 0;
    margin: auto;
    width: 50px;
    bottom: 0;
}

.edu_courses_detail h4:after {
    content: "";
    position: absolute;
    height: 1px;
    background: var(--Alternate-Text-Color);
    left: 0;
    margin: auto;
    width: 80px;
    bottom: 3px;
}

.edu_courses_detail ul li .edu_course_info_icon {
    width: 50px;
    display: inline-block;
    font-size: 30px;
    text-align: left;
    color: var(--Primary-Color);
}

.edu_course_info_text {
    width: calc(100% - 50px);
    display: inline-block;
}

.edu_courses_detail ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 15px;
    color:var(--Alternate-Text-Color);
    font-weight: 500;
}

.edu_courses_detail .edu_btn {
    margin-top: 28px;
}

.edu_courses_content_inner .row {
    align-items: center;
}

.edu_courses_img {
    margin-bottom: 30px;
}

.edu_courses_detail {
    margin-bottom: 30px;
}

.videoPlayBtn {
    position: absolute;
    left: 50%;
    font-size: 50px;
    color: var(--Secondary-Color);
    top: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    line-height: 65px;
    display: inline-block;
    background: var(--Primary-Color);
    border-radius: 6px;
    text-align: center;
    animation: shadow-pulse 2s infinite;
}

.videoPlayBtn:hover {
    color: var(--Primary-Color);
    background: var(--Secondary-Color);
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 110, 102, 0.6);
    }
    100% {
        box-shadow: 0 0 0 25px rgba(255, 110, 102, 0);
    }
}

@keyframes shadow-pulse-big {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    }
    100% {
        box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
    }
}

.edu_courses_img_holder {
    position: relative;
    border: none;
    border-radius: 6px;
    overflow: hidden;
}

.edu_courses_img_holder img {
    max-height: 430px;
    width: 100%;
    object-fit: cover;
}

.edu_courses_img_holder:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.30);
}

.edu_courses_detail ul {
    margin-top: 6px;
    display: inline-block;
    width: 100%;
}

.edu_courses_wrapper .edu_heading_wrapper {
    margin-bottom: 48px;
}


/*new section*/

.edu_courses_imgbox {
    position: relative;
    margin-bottom: 24px;
    background-color: var(--Secondary-Color);
}

.edu_rc_wrap .edu_courses_box .edu_courses_imgbox {
    border: 1px solid #eee;
}

.edu_courses_main .edu_course_price {
    height: 50px;
    background-color:var(--Alternate-Text-Color);
    color: var(--Secondary-Color) !important;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    line-height: 50px;
    width: max-content;
    padding: 0 20px;
    border-radius: 3px;
}

.edu_courses_box {
    margin-bottom: 30px;
}

.edu_courses_imgbox img {
    width: 100%;
}

.edu_courses_box .edu_courses_imgbox img {
    width: 100%;
    max-height: 250px;
    object-fit: contain;
}

.edu_courses_imgbox:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgb(25 31 45 / 0.8);
    height: 0%;
    width: 100%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.edu_courses_box:hover .edu_courses_imgbox:after {
    height: 100%;
}

.edu_courses_flag {
    position: absolute;
    left: 0;
    top: 20px;
    color: var(--Secondary-Color);
    text-transform: uppercase;
    background-color: rgb(255, 141, 39);
    padding: 3px 11px;
    z-index: 1;
}

.edu_courses_flag:after,
.edu_courses_flag:before {
    content: "";
    position: absolute;
    right: -16px;
}

.edu_courses_flag:after {
    top: 0;
    border-left: 8px solid #ff8d27;
    border-right: 8px solid rgb(255 255 255 / 0%);
    border-top: 8px solid #ff8d27;
    border-bottom: 8px solid rgb(255 255 255 / 0%);
}

.edu_courses_flag:before {
    bottom: 0;
    border-left: 8px solid #ff8d27;
    border-right: 8px solid rgb(255 141 39 / 0%);
    border-top: 8px solid #ff8d2700;
    border-bottom: 8px solid rgb(255 141 39);
}

.edu_btn.courses_price {
    position: absolute;
    right: 30px;
    bottom: -25px;
    border-radius: 51px;
    background: var(--Primary-Color);
    min-width: 110px;
    font-size: 18px;
    z-index: 1;
    font-weight: 400;
}

.edu_btn.courses_price:before {
    display: none;
}

.courses_atc {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    z-index: 1;
    background: var(--Secondary-Color);
    color:var(--Alternate-Text-Color);
    font-size: 14px;
    border-radius: 40px;
    font-weight: 500;
    height: 50px;
    line-height: 52px;
    min-width: 140px;
    text-align: center;
    border: 1px solid transparent;
    opacity: 0;
    visibility: hidden;
}

.courses_atc:hover {
    border-color: rgb(255, 255, 255);
    background-color: rgb(255 255 255 / 26%);
    color: var(--Secondary-Color);
}

.edu_courses_box:hover .courses_atc {
    opacity: 1;
    visibility: visible;
    top: 50%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.edu_courses_rating {
    display: flex;
}

.edu_courses_rwrap {
    display: flex;
    align-items: center;
}

.edu_courses_rno>span {
    font-size: 14px;
    font-weight: 600;
    color: rgb(255 227 99);
    margin-right: 2px;
}

.edu_courses_rno {
    color: #757575;
    font-size: 14px;
    margin-left: 10px;
    padding-top: 6px;
}

.edu_courses_title {
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    color: #263b5e;
    margin: 18px 0 8px;
}

.edu_courses_des {
    color: #6a7695;
}

.edu_courses_view {
    color: var(--Primary-Color);
    font-weight: 500;
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0.4px;
}

.edu_courses_view:hover {
    color: var(--Primary-Color);
    letter-spacing: 1px;
}

.edu_courses_sprice {
    color: var(--Primary-Color);
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 17px;
}

.edu_ic_sec {
    border: 1px solid rgb(228, 238, 238);
    border-radius: 20px;
    background-color: rgb(247, 251, 251);
    padding: 55px 55px 35px 55px;
}

.edu_ic_ttl {
    font-size: 22px;
    color: #263b5e;
    font-weight: 600;
    text-transform: inherit;
    margin-bottom: 20px;
}

.edu_ic_list {
    /*display: flex;*/
    /*flex-wrap: wrap;*/
}

.edu_ic_list>li {
    color: #6a7695;
    /*width: 50%;*/
    margin-bottom: 16px;
    position: relative;
}

.edu_ic_list>li>i {
    margin-right: 7px;
    font-size: 18px
}

.edu_rc_wrap,
.edu_courses_single {
    padding: 80px 0 56px;
}

.edu_rc_wrap {
    padding: 80px 0 42px;
}

span.edu-video-preview {
    position: absolute;
    right: 0;
    font-size: 18px;
    color: var(--Primary-Color);
}

span.edu-video-preview a {
    cursor: pointer;
}


/********************************************************
    11. Team CSS Start
********************************************************/

.edu_team_wrapper {
    padding: 77px 0 80px;
    position: relative;
    background: var(--Secondary-Color);
    overflow: hidden;
}

.edu_team_wrapper .edu_heading_wrapper {
    margin-bottom: 28px;
}

.edu_team_section {
    position: relative;
    background: var(--Secondary-Color);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.06);
}

.edu_team_section:hover {
    background: var(--Primary-Color);
}

.edu_team_section:hover .edu_team_identity a,
.edu_team_section:hover .edu_team_identity h6 {
    color: var(--Secondary-Color);
}

.team_slider {
    padding: 20px;
}

.edu_team_img img {
    width: 100%;
    max-height: 300px;
    min-height: 300px;
    object-fit: cover;
}

.edu_team_identity {
    padding: 18px 15px 18px;
}

.edu_team_identity a {
    color:var(--Alternate-Text-Color);
    font-weight: 700;
    padding-bottom: 12px;
    font-size: 24px;
    position: relative;
    display: inline-block;
}

.edu_team_identity h6 {
    font-weight: 500;
    color:var(--Alternate-Text-Color);
    font-size: 16px;
}

.edu_team_section,
.edu_team_section:hover,
.edu_team_section:hover .edu_team_identity a,
.edu_team_section:hover .edu_team_identity h6,
.edu_team_identity a,
.edu_team_identity h6 {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.swiperTeamPagination {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 30px 0 0;
}

.swiperTeamPagination span.swiper-pagination-bullet {
    width: 26px;
    height: 6px;
    border-radius: 3px;
    margin: 0 6px;
}

.swiperTeamPagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background:var(--Primary-Color);
}


/********************************************************
    12. Testimonial CSS Start
********************************************************/

.edu_testimonial_wrapper {
    position: relative;
    width: 100%;
    padding: 77px 0 80px;
    background: var(--Secondary-Color)7f1;
    background-image: url(../images/service_bg.png);
}

.edu_testimonial_wrapper .edu_heading_wrapper {
    margin-bottom: 47px;
}

.edu_testimonials_section {
    background: var(--Primary-Color);
    color: var(--Secondary-Color);
    padding: 50px 30px;
    border: none;
    border-radius: 6px;
}

.edu_client_img {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.edu_client_img img {
    margin: 0 auto 15px;
    height: 60px;
    width: 60px;
    border: none;
    border-radius: 6px;
    object-fit: cover;
}

.edu_testimonial_icon {
    display: none;
}

.edu_client_quote {
    text-align: center;
    margin-left: 0;
    width: 100%;
}

.edu_testimonial_section {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.edu_client_quote h4 {
    color: var(--Secondary-Color);
    font-size: 22px;
}

.edu_testimonial_section>p {
    font-size: 18px;
    margin-top: 24px;
    background-image: url(../images/qoute.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
}

.swiperTestimonialPagination {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 42px 0 0;
}

.swiperTestimonialPagination span.swiper-pagination-bullet {
    width: 26px;
    height: 6px;
    border-radius: 3px;
    margin: 0 6px;
}

.swiperTestimonialPagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--Secondary-Color);
}


/********************************************************
    13. Partner CSS Start
********************************************************/

.edu_partner_wrapper {
    position: relative;
    width: 100%;
    padding: 80px 0 50px;
    background: var(--Secondary-Color);
}

.edu_partner_wrapper img {
    filter: grayscale(100%);
    max-height: 120px;
}

.edu_partner_wrapper img:hover {
    filter: grayscale(0%);
}
section.edu_partner_wrapper .swiper-slide.swiper-slide-active .edu_partner_wrapper img{
     filter: grayscale(0%);
}
.edu_partner_wrapper img:hover,
.edu_partner_wrapper img {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}


/********************************************************
    14. Footer CSS Start
********************************************************/

footer.edu_footer_wrapper {
    background: rgba(49, 75, 166, 1);
    position: relative;
    padding: 75px 0 0;
    color: var(--Secondary-Color);
}

/* --- Footer: Gradmo-style 4-column layout (front_footer.php) --- */
footer.edu_footer_wrapper.edu-footer-gradmo {
    padding: 0;
    color: #ffffff;
    border-radius: 0;
    overflow: hidden;
    background: linear-gradient(90deg, #3787ff 0%, #4871ee 48%, #4a6de1 100%);
}
footer.edu_footer_wrapper.edu-footer-gradmo .edu-footer-gradmo__fluid {
    padding: 0;
    max-width: 100%;
}
.edu-footer-gradmo__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 20px 8px;
}
.edu-footer-gradmo__grid {
    display: grid;
    grid-template-columns: minmax(140px, 0.9fr) minmax(200px, 1.25fr) minmax(200px, 1.2fr) minmax(200px, 1.1fr);
    gap: 22px 22px;
    align-items: start;
}
.edu-footer-gradmo__logo-col {
    text-align: center;
}
.edu-footer-gradmo__logo-icon {
    width: 125px;
    height: 125px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
}
.edu-footer-gradmo__logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    background: transparent;
}
.edu-footer-gradmo__brand {
    margin: 0;
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}
.edu-footer-gradmo__heading {
    margin: 0 0 14px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
}
.edu-footer-gradmo__heading--caps {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.92rem;
}
.edu-footer-gradmo__text {
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 400;
}
.edu-footer-gradmo__links-cols {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
}
.edu-footer-gradmo__links-col p {
    margin: 0 0 5px;
    font-size: 0.72rem;
}
.edu-footer-gradmo__links-col a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.edu-footer-gradmo__links-col a:hover {
    color: #fff;
    opacity: 0.85;
    text-decoration: underline;
}
.edu-footer-gradmo__contact-line {
    margin: 0 0 8px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}
.edu-footer-gradmo__contact-line i {
    margin-top: 3px;
    flex-shrink: 0;
    opacity: 0.95;
}
.edu-footer-gradmo__contact-line a {
    color: #fff;
    text-decoration: none;
}
.edu-footer-gradmo__contact-line a:hover {
    text-decoration: underline;
    color: #fff;
}
.edu-footer-gradmo__bottom-wrap {
    padding: 0;
    max-width: 100%;
    margin: 0;
}
.edu-footer-gradmo__bottom {
    background: #37a8f5;
    border-radius: 0;
    padding: 9px 18px;
    text-align: center;
}
.edu-footer-gradmo__bottom p {
    margin: 0;
    font-size: 0.76rem;
    font-weight: 500;
    color: #fff;
}
.edu-footer-gradmo__social {
    margin-top: 6px;
    display: flex;
    gap: 12px;
    justify-content: center;
}
.edu-footer-gradmo__social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.2s ease;
}
.edu-footer-gradmo__social a:hover {
    color: #2c4ec6;
    background: #fff;
    border-color: #fff;
}
@media (max-width: 991px) {
    .edu-footer-gradmo__grid {
        grid-template-columns: 1fr 1fr;
    }
    .edu-footer-gradmo__logo-col {
        grid-column: 1 / -1;
    }
}
@media (max-width: 575px) {
    .edu-footer-gradmo__inner {
        padding: 40px 16px 4px;
    }
    .edu-footer-gradmo__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .edu-footer-gradmo__links-cols {
        flex-direction: column;
        gap: 0;
    }
}

.edu_address_wrap h4 {
    color: var(--Primary-Color);
    font-size: 18px;
    font-weight: 500;
    margin-top: 17px;
    margin-bottom: 10px;
}

.edu_footer_heading {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    color: var(--Secondary-Color);
}

.edu_footer_title img {
    height: 18px;
}

.edu_footer_title {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
}

.edu_widgets ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
    transition: all 0.5s;
}

.edu_widgets ul li:hover {
    transform: translateX(5px);
}

.edu_widgets ul li:last-child {
    margin-bottom: 0;
}

.edu_widgets ul li:before {
    position: absolute;
    left: 0;
    content: "\eab8";
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: 'IcoFont' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    line-height: 1;
    -webkit-font-feature-settings: inherit;
    -webkit-font-smoothing: antialiased;
    font-size: 20px;
}

.edu_footer_about .edu_readMoreBtn {
    margin-top: 16px;
}

.edu_widgets ul li span {
    color: var(--Secondary-Color);
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/*.edu_widgets ul li:hover span {*/
/*    color: var(--Primary-Color);*/
/*}*/


/*.edu_widgets ul li span:hover:after {*/


/*    background: var(--Primary-Color);*/


/*}*/


/*.edu_widgets ul li span:after {*/


/*    position: absolute;*/


/*    content: "";*/


/*    width: 100%;*/


/*    height: 1px;*/


/*    background: var(--Primary-Color);*/


/*    right: 0;*/


/*    bottom: 0;*/


/*    opacity: 0;*/


/*}*/


/*.edu_widgets ul li span:hover:after {*/


/*    opacity: 0.6;*/


/*}*/

.edu_widgets ul li span:hover:after,
.edu_widgets ul li span:after,
.edu_widgets ul li:before,
.edu_widgets ul li:hover:before {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.edu_widgets_contact h4 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 8px;
    color: #d5d5d5;
}

.footer_information {
    border-bottom: 4px doublevar(--Alternate-Text-Color);
    padding: 0 0 13px;
    margin: 0 0 44px;
}

.edu_widgets_contact span {
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    background:var(--Alternate-Text-Color);
    border: none;
    border-radius: 50%;
    margin-bottom: 22px;
}

.edu_widgets_contact span svg {
    width: 40px;
    height: 40px;
    line-height: 40px;
    fill: var(--Primary-Color);
}

.edu_footer_info {
    display: flex;
    flex-wrap: wrap;
}

.edu_footer_info a,
.edu_footer_info a:not([href]):not([tabindex]) {
    color: var(--Secondary-Color);
}

.edu_widgets_contact a {
    color: #e4e4e4;
    display: inline-block;
    width: 100%;
}

.footer_logo {
    margin: 10px 0 12px;
}

.edu_footer_address ul li {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 15px;
    padding: 0;
}

.edu_widgets.edu_footer_address li:before,
.edu_widgets.edu_footer_address ul li a:after {
    content: unset;
}

.edu_footer_address ul li:last-child {
    margin-bottom: 0;
}

.edu_footer_address ul li span {
    color: var(--Secondary-Color);
    font-weight: 500;
    margin-right: 10px;
}

.edu_footer_info a {
    display: inline-block;
}

.edu_copyright_wrapper {
    padding: 14px 0 13px;
    color: var(--Secondary-Color);
    position: relative;
    margin-top: 41px;
    background:var(--Primary-Color);
    font-size: 14px;
    font-weight: 500;
}

.edu_copyright_wrapper a {
    color: var(--Primary-Color);
}


/********************************************************
    15. Page Title CSS Start
********************************************************/

.edu_page_title_wrapper {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    width: 100%;
    padding: 71px 0 72px;
    background:var(--Alternate-Text-Color);
    color: var(--Secondary-Color);
    background-image: url(../images/pageTitle.png);
}

.edu_page_title_wrapper:before {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.75);
}

/* Hide page title strip across frontend pages */
.edu_page_title_wrapper {
    display: none !important;
}

.edu_page_title_text h1 {
    color: var(--Secondary-Color);
    font-size: 38px;
    line-height: 46px;
    font-weight: 700;
    margin-bottom: 6px;
}

.edu_page_title_text ul {
    display: flex;
    justify-content: center;
}

.edu_page_title_text ul>li {
    position: relative;
    padding-left: 20px;
}

.edu_page_title_text ul>li:first-child {
    padding-left: 0;
}

.edu_page_title_text ul>li:before {
    position: absolute;
    left: 0;
    content: "\eab8";
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: 'IcoFont' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    line-height: 1;
    -webkit-font-feature-settings: inherit;
    -webkit-font-smoothing: antialiased;
}

.edu_page_title_text ul>li:first-child:before {
    content: unset;
}

.edu_page_title_text ul>li a {
    color: var(--Secondary-Color);
}


/********************************************************
    16. Mission CSS Start
*******************************************************/

.edu_mission_wrapper {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 65px 0 80px;
    display: inline-block;
    background-image: url(../images/mission_bg.png);
}

.edu_mission_wrapper:before {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.85);
}

.edu_mission_text h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 75px;
    margin-bottom: 7px;
}

.edu_mission_text h6 {
    font-size: 18px;
    font-weight: normal;
    line-height: 30px;
}

.edu_mission_wrapper .edu_btn {
    margin-top: 32px;
}


/********************************************************
    17. Vission CSS Start
********************************************************/

.edu_vission_wrapper {
    background: var(--Secondary-Color);
    padding: 80px 0 50px;
}

.edu_vission_wrapper .row {
    align-items: center;
}

.edu_vission_img {
    position: relative;
    display: inline-block;
    width: 100%;
}

.edu_vission_detail {
    display: inline-block;
    width: 100%;
}

.edu_vission_detail .edu_btn {
    margin-top: 32px;
}

.edu_vission_detail .edu_heading {
    margin-bottom: 24px;
}

.edu_vission_img img {
    border-radius: 6px;
}


/********************************************************
    18. Course Info CSS Start
********************************************************/

.edu_courseInfo_wrapper {
    background: var(--Secondary-Color);
    padding: 80px 0 50px;
}

.edu_courseInfo_wrapper .row {
    align-items: center;
}

.edu_courseInfo_detail {
    display: inline-block;
    width: 100%;
}

.edu_courseInfo_detail .edu_heading {
    margin-bottom: 24px;
}

.edu_courseInfo_box {
    background: var(--Primary-Color);
    display: flex;
    flex-wrap: wrap;
    padding: 30px;
    border: none;
    border-radius: 6px;
    margin: 30px 0;
    color: var(--Secondary-Color);
    align-items: center;
    font-size: 24px;
    font-weight: 500;
}

.edu_courseInfo_box img {
    width: 70px;
    margin-right: 20px;
}

.edu_courseInfo_box p {
    margin: 20px 0;
}


/********************************************************
    19. Gallery CSS Start
********************************************************/

.edu_gallery_wrapper {
    background: var(--Secondary-Color);
    padding: 77px 0 50px;
}

.edu_gallery_wrapper .edu_btn {
    margin-bottom: 30px;
}

.edu_porfolio_section {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    background: var(--Secondary-Color);
    border: none;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.06);
}

.edu_porfolio_section img {
    width: 100%;
}

.edu_porfolio_section>img {
    max-height: 300px;
    object-fit: cover;
    min-height: 300px;
}

.edu_overlay {
    position: absolute;
    display: flex;
    right: 0;
    left: 0;
    margin: auto;
    justify-content: center;
    align-items: center;
    top: 0;
    bottom: 0;
    
    background:var(--Alternate-Text-Color);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.edu_porfolio_section:hover .edu_overlay {
    opacity: 1;
    visibility: visible;
}

.edu_overlay a {
    position: relative;
    z-index: 1;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: transparent;
    color: var(--Secondary-Color);
    border: 1px solid transparent;
    text-align: center;
    font-size: 20px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.edu_porfolio_section:hover,
.edu_porfolio_section,
.edu_porfolio_section .edu_overlay,
.edu_porfolio_section:hover .edu_overlay {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}


/********************************************************
    20. Video Gallery CSS Start
********************************************************/

.edu_videoGallery_wrapper {
    background: var(--Secondary-Color);
    padding: 77px 0 50px;
}

.edu_videoGallery_wrapper .edu_btn {
    margin-bottom: 30px;
}

.edu_videoGallery_section {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    background: var(--Secondary-Color);
    border: none;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 15%);
    text-align: center;
}

.edu_videoGalleryTitle {
    padding: 20px 15px;
}

.edu_videoGallery_section iframe {
    width: 100%;
    min-height: 300px;
    max-height: 300px;
    display: flex;
    border: 0;
}

.edu_videoGalleryTitle h5 {
    font-size: 18px;
    font-weight: 700;
}


/********************************************************
    21. Publication CSS Start
********************************************************/

.edu_publication_wrapper {
    background: var(--Secondary-Color);
    padding: 77px 0 50px;
}

.edu_publication_sections img {
    width: 100%;
    max-height: 400px;
    border: none;
    border-radius: 6px;
}

.edu_publication_sections {
    padding: 40px 30px 10px;
    background: var(--Secondary-Color);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.06);
    border: none;
    border-radius: 6px;
    margin-bottom: 30px;
}

.edu_publication_detail h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 18px;
    position: relative;
}

.edu_publication_detail h4:before {
    content: "";
    position: absolute;
    height: 1px;
    background: var(--Primary-Color);
    left: 0;
    margin: auto;
    width: 50px;
    bottom: 0;
}

.edu_publication_detail h4:after {
    content: "";
    position: absolute;
    height: 1px;
    background: var(--Primary-Color);
    left: 0;
    margin: auto;
    width: 80px;
    bottom: 3px;
}

.edu_publication_detail .edu_btn {
    margin-top: 32px;
}


/********************************************************
    22. Contact CSS Start
********************************************************/

section.edu_form_wrapper {
    overflow: visible;
}

.withoutMapFrm {
    margin-top: 0px !important;
}

.edu_contact_wrapper {
    padding: 77px 0 50px;
    position: relative;
    background: var(--Secondary-Color);
}

.edu_contact_wrapper .edu_heading_wrapper {
    margin-bottom: 48px;
}

.edu_contact_section {
    background: var(--Secondary-Color);
    padding: 51px 20px 45px;
    margin-bottom: 30px;
    position: relative;
    border: none;
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
    min-height: 300px;
    justify-content: center;
    display: flex;
    align-items: center;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.06);
}

.edu_contact_section i {
    font-size: 60px;
    color: var(--Primary-Color);
    margin-bottom: 24px;
    display: inline-block;
}

.edu_contact_section h4,
.edu_form_container h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 18px;
    position: relative;
}

.edu_contact_section h4:before,
.edu_contact_section h4:after,
.edu_form_container h4:after,
.edu_form_container h4:before {
    content: "";
    position: absolute;
    height: 1px;
    background: var(--Primary-Color);
    left: 0;
    right: 0;
    margin: auto;
}

.edu_contact_section h4:before,
.edu_form_container h4:before {
    width: 120px;
    bottom: 3px;
}

.edu_contact_section h4:after,
.edu_form_container h4:after {
    width: 80px;
    bottom: 0;
}

.edu_form_container h4:before,
.edu_form_container h4:after {
    right: unset;
}

.edu_contact_section .edu_readMoreBtn {
    margin-top: 16px;
}

.edu_contact_section {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

.edu_contact_section:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
}

.edu_contact_section:hover,
.edu_contact_section {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.edu_contact_section a {
    width: 100%;
    display: inline-block;
    color: #787878;
}

.edu_form_field {
    width: 100%;
    border: 1px solid #e4e4e4;
    padding: 0 20px;
    height: 50px;
    border-radius: 6px;
    display: flex;
    margin-top: 10px;
}

textarea.edu_form_field {
    height: 150px;
    resize: none;
    padding: 12px 20px;
}

.edu_field_holder {
    margin-bottom: 30px;
}

.edu_form_container {
    background: var(--Secondary-Color);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.06);
    padding: 50px;
    border: none;
    border-radius: 6px;
    margin-top: -320px;
    margin-bottom: 80px;
}

.edu_map_container iframe {
    display: flex;
    width: 100%;
    min-height: 600px;
    border: 0;
}

.edu_form_field.require.error {
    border: 1px solid #ff0000;
}

.hide {
    display: none;
}


/********************************************************
   23. Login Start CSS
*******************************************************/

.pxn_login_main {
    background-color: var(--Primary-Color);
    height: 100%;
    position: fixed;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 30px 0;
    background-image: url(../images/login1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.pxn_login_box {
    max-width: 650px;
    width: 100%;
    padding: 0 20px;
}

.pxn_login_box_inner {
    width: 100%;
    background: var(--Secondary-Color);
    border: none;
    border-radius: 6px;
    padding: 39px 30px 50px;
}

.pxn_logo {
    text-align: center;
    margin-bottom: 20px;
}

.pxn_login_data h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    text-align: center;
}


/**** CHECKBOX ******/

.checkbox_holder label {
    position: relative;
    cursor: pointer;
}

.checkbox_holder label:before {
    content: '';
    background-color: transparent;
    border: 2px solid #e4e4e4;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 8px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
    -webkit-appearance: none;
    top: -1px;
}

.checkbox_holder input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 6px;
    left: 7px;
    width: 6px;
    height: 10px;
    border: solid var(--Primary-Color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    -webkit-appearance: none;
}

.checkbox_holder input[type=checkbox] {
    -webkit-appearance: none;
}

.form_link,
.form_link:hover {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    color: var(--Primary-Color);
}

.loginLinks {
    margin: 8px 0 13px;
}

.login_btn_wrapper {
    margin-top: 14px;
}

.checkbox_holder label {
    margin-bottom: 0;
}

.edu_btn_black {
    background: var(--Primary-Color) none repeat scroll 0 0;
}

.edu_btn_black::before {
    background:var(--Alternate-Text-Color);
}


/********************************************************
    24.  Popup Start CSS
*******************************************************/

.edu_popup_container {
    max-width: 800px;
    margin: auto;
    background: var(--Secondary-Color);
    width: 100%;
    padding: 37px 40px 26px;
    border: none;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    max-height: 600px;
    overflow-y: auto;
    font-family: 'Roboto', sans-serif;
}

.edu_popup_container::-webkit-scrollbar {
    width: 3px;
    border-radius: 3px;
}

.edu_popup_container::-webkit-scrollbar-thumb {
    background-color: var(--Primary-Color);
    width: 3px;
}

.edu_popup_container .edu_sub_title {
    margin: 0 0 30px;
}

.edu_popup_container button.mfp-close {
    color: var(--Secondary-Color);
    border: none;
    border-radius: 0 0 0 6px;
    opacity: 1;
    background: var(--Primary-Color);
    font-size: 30px;
}

.edu_admin_title {
    margin-bottom: 41px;
    font-weight: 600;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
}

h6.edu_admin_sub_title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 26px;
    font-family: 'Roboto', sans-serif;
}

.edu_popup_wrapper .edu_title {
    font-weight: 500;
    text-transform: capitalize;
    font-size: 20px;
    position: relative;
    display: inline-block;
    color: #4d4a81;
    width: 100%;
    border-bottom: 1px solid #e7e7e9;
    padding-bottom: 20px;
    margin-bottom: 30px;
}


/********************************************************
    25. Payment page CSS Start
*******************************************************/

.edu_form_wrapper .edu_form_container {
    margin-bottom: 120px;
}

.edu_paysucc_container {
    background: var(--Secondary-Color);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.06);
    padding: 50px;
    border: none;
    border-radius: 6px;
    margin: 100px 0;
}

.edu_paysucc_box h4 {
    margin: 0 0 0px;
    text-transform: capitalize;
    color:var(--Alternate-Text-Color);
    font-size: 17px;
    font-weight: 500;
}

.edu_paysucc_box p {
    font-size: 15px;
}

.edu_cmntitle {
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 18px;
    position: relative;
}

.edu_cmntitle:before,
.edu_cmntitle:after {
    content: "";
    position: absolute;
    height: 1px;
    background: var(--Primary-Color);
    left: 0;
}

.edu_cmntitle:before {
    width: 120px;
    bottom: 3px;
}

.edu_cmntitle:after {
    width: 80px;
    bottom: 0;
}

.edu_paysucc_note {
    font-size: 14px;
    font-weight: 500;
    margin-top: 3px;
}


/********************************************************
    26. Blog single  CSS Start
*******************************************************/

.edu_sglblog_section {
    padding: 80px 0 50px;
}

.sglblog_sidebar {
    padding: 80px 0 50px;
}

.bgshadowradios {
    background: var(--Secondary-Color);
    border: none;
    border-radius: 6px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.06);
    padding: 30px;
}

.edu_sglblog_inner {
    position: relative;
}

.edu_sglblog_title {
    font-weight: 600;
    margin: 20px 0 10px 0;
    font-size: 28px;
    color: #222;
    text-transform: capitalize;
    display: inline-block;
    line-height: 38px;
}

.edu_sglblog_title:hover {
    color: #fe6e66;
}

.sglblog_metapost {
    display: flex;
    flex-wrap: wrap;
    margin: 10px -10px;
}

.sglblog_metapost>li {
    padding: 10px 10px;
}

.sglblog_metapost>li>a {
    color: var(--Alternate-Text-Color);
    font-size: 16px;
    font-weight: 500;
}

.sglblog_metapost>li>a>i {
    margin-right: 5px;
}

.sglblog_quotewrap {
    background: rgb(254 110 102);
    padding: 30px;
    color: var(--Secondary-Color);
    border-radius: 6px;
    display: flex;
}

.sglblog_quotewrap p {
    width: calc(100% - 60px);
    padding-left: 15px;
}

.sglblog_quotewrap svg path {
    fill: rgb(255 255 255);
}

.sglblog_cmntbox {
    display: flex;
    margin-bottom: 50px;
}

.sglblog_cmntimg {
    width: 70px;
    height: 70px;
    margin-right: 15px;
}

.sglblog_cmntimg>img {
    width: 70px;
    height: 70px;
    border-radius: 6px;
}

.sglblog_cmntdata {
    width: calc(100% - 115px);
}

.sglblog_cmnthead {
    display: flex;
    justify-content: space-between;
    margin: 0px 0 5px 0;
    flex-wrap: wrap;
}

.sglblog_cmntauth {
    font-size: 16px;
    font-weight: 600;
}

.sglblog_cmnttime {
    color: #a9acb3;
    font-size: 14px;
}

.sglblog_cmnttime:hover {
    color: #fe6e66;
}

.sglblog_cmntreply .sb_replybtn {
    color: #fe6e66;
}

.sglblog_userreply {
    margin-left: 50px;
}

.sglblog_cmntwrap .sglblog_cmntbox:last-child {
    margin-bottom: 0;
}

.bs_search_form {
    display: flex;
    position: relative;
}

.bs_search_field {
    border: 0;
    background: #f5f5f5;
    border-radius: 6px 0 0 6px;
    padding: 0px 20px;
    height: 50px;
    width: 100%;
}

.bs_search_submit {
    border: 0;
    background: #fe6e66;
    color: var(--Secondary-Color);
    padding: 0 18px;
    border-radius: 0 6px 6px 0;
}

.blog_recent_list li {
    display: flex;
    margin-bottom: 30px;
}

.blog_recent_list li:hover>.blog_thumb img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.blog_recent_list li:last-child {
    margin-bottom: 0;
}

.blog_recent_list .blog_thumb {
    width: 80px;
    height: 70px;
    margin-right: 15px;
}

.blog_recent_list .blog_thumb>a {
    overflow: hidden;
    width: 80px;
    height: 70px;
    display: block;
    border-radius: 6px;
}

.blog_thumb img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.blog_content {
    width: calc(100% - 95px);
}

.blog_content span {
    display: block;
    font-size: 14px;
    color: var(--Alternate-Text-Color);
}

.blog_content a {
    color: #787878;
}

.blog_archive_list>li>a {
    display: flex;
    justify-content: space-between;
    color: #787878;
}

.blog_archive_list>li {
    margin-bottom: 20px;
}

.blog_archive_list>li:last-child {
    margin-bottom: 0;
}

.blog_archive_list>li>a i {
    margin-right: 5px;
}

.blog_glry_list {
    display: flex;
    flex-wrap: wrap;
}

.blog_glry_list>li {
    padding: 5px;
    width: auto;
}

.blog_glry_list>li>a img {
    width: 93px;
    height: 93px;
    border-radius: 6px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.blog_glry_list>li>a {
    border-radius: 6px;
    overflow: hidden;
    display: block;
}

.blog_glry_list>li>a:hover>img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}


/* product search start */

.edu-search-form {
    position: relative;
    z-index: 1;
}

.edu-search-form input {
    height: 60px;
    border: 1px solid #eee;
    width: 100%;
    border-radius: 5px;
    padding: 10px 40px 10px 20px;
}

.edu-search-form .edu-search-icon {
    position: absolute;
    right: 20px;
    top: 18px;
    cursor: pointer;
}

.edu-search-form .edu-search-icon i {
    transition: 0.3s;
}

.edu-search-form .edu-search-icon:hover i {
    color: var(--Primary-Color);
}

.edu-select-category h3 {
    height: 60px;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 0px 15px;
    cursor: pointer;
    max-width: 250px;
    line-height: 60px;
    position: relative;
    font-size: 16px;
}

.edu-select-category {
    position: relative;
    width: 100%;
    max-width: 250px;
    z-index: 2;
}

.edu-search-course {
    padding: 80px 0 40px;
    z-index: 5;
    position: relative;
}

.edu-select-category ul li {
    display: block;
    line-height: normal;
    border-bottom: 1px solid #eee;
    position: relative;
}

.edu-select-category ul {
    background: var(--Secondary-Color);
    position: absolute;
    left: 0;
    right: 0;
    border: 1px solid #eee;
    width: 100%;
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    box-shadow: 0px 5px 10px 0 rgb(0 0 0 / 7%);
}

.edu-select-category ul li a {
    padding: 10px 15px;
    display: block;
    color: #787878;
}

.edu-select-category ul li a:hover {
    color: var(--Primary-Color);
}

.edu-select-category ul ul {
    left: 100%;
    top: 0;
}

.edu-select-category:hover>ul,
.edu-select-category ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    z-index: 1;
}

.edu-category-panel:after,
.edu-select-category h3:after {
    content: '\f078';
    position: absolute;
    right: 15px;
    top: 0;
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    font-size: 10px;
    transition: 0.3s;
    line-height: normal;
    bottom: 0;
    margin: auto;
    height: 10px;
}

.edu-category-panel:hover:after {
    transform: rotate(-90deg);
}


/* product search end */


/* course start */

.edu-course-wrap,
.edu-trending-course {
    padding-bottom: 50px;
}

.edu-course-title {
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    color: #263b5e;
    margin-bottom: 6px;
    display: block;
}

.edu-course-title:hover {
    color: var(--Primary-Color);
}

.edu-course-rating li {
    display: inline-block;
}

.edu-course-rating li i {
    font-size: 12px;
    color: #b9b9b9;
}

.edu-course-price {
    font-size: 20px;
    font-weight: 600;
    margin: 5px 0 0;
}

.edu-course-price span {
    font-size: 16px;
    text-decoration: line-through;
    font-weight: 500;
    margin-left: 5px;
    color: #b9b9b9;
}
ul.sub_menu {
    position: absolute;
    width: max-content;
    min-width: 200px;
    top: 60px;
    left: 0;
    z-index: 9;
    transform: translate(20px, 0px);
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    border: none;
    border-radius: 0 0 3px 3px;
    padding: 0 0 15px;
    background: var(--Secondary-Color);
    box-shadow: 0px 6px 6px 0 rgba(0, 0, 0, 0.06);
}
.main_menu_wrapper>ul>li:hover ul.sub_menu {
    transform: translate(0px, 0px);
    visibility: visible;
    opacity: 1;
}
ul.sub_menu li {
    display: block;
    text-align: left;
}
.main_menu_wrapper>ul>li:hover ul.sub_menu {
    transform: translate(0px, 0px);
    visibility: visible;
    opacity: 1;
}
.edu-course-box {
    margin-bottom: 30px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 7%);
    border-radius: 10px;
    background: var(--Secondary-Color);
}

.edu-course-content {
    padding: 20px 25px;
}

.edu-course-content .edu_courses_view {
    text-transform: capitalize;
    margin-top: 10px;
}

.edu-course-img {
    position: relative;
}

.edu-course-img img {
    border-radius: 10px 10px 0 0;
    width: 100%;
    height: -webkit-fill-available;
}

.edu-course-offer {
    position: absolute;
    top: 20px;
    left: -10px;
    background: var(--Primary-Color);
    padding: 4px 10px;
    line-height: normal;
    font-size: 14px;
    color: var(--Secondary-Color);
}

.edu-course-offer:after {
    position: absolute;
    content: '';
    left: 0;
    bottom: -10px;
    border-left: 10px solid #ff000000;
    border-top: 10px solid #dc4941;
}

.edu-course-heading h1 {
    font-size: 30px;
    font-weight: 600;
    margin: 0;
}

.edu-course-heading {
    margin-bottom: 20px;
}

.edu-nav-tabs {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.edu-nav-tabs li {
    margin-right: 20px;
}

.edu-nav-tabs li a {
    color: #222;
}

.edu-nav-tabs li a.active {
    position: relative;
    color: var(--Primary-Color);
}

.edu-nav-tabs li a.active:after {
    border-bottom: 2px solid var(--Primary-Color);
    position: absolute;
    bottom: -10px;
    content: '';
    left: 0;
    right: 0;
}

.edu-enroll-btn {
    color: var(--Primary-Color);
    background: var(--Secondary-Color);
    font-size: 14px;
    padding: 3px 15px;
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content;
    width: -moz-fit-content;
    border-radius: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
}

.edu-enroll-btn:hover {
    color:var(--Primary-Color);
}

.edu-course-box:hover .edu-enroll-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}



/* course end */


/* custom css start */

.edu_rc_wrap .edu_courses_imgbox img {
    max-height: 270px;
    object-fit: contain;
}

.edu_courseInfo_box.edu-course-info-bedge {
    padding: 10px;
    border-radius: 10px;
    position: absolute;
    right: 15px;
    display: block;
    text-align: center;
    margin: -45px 0 0;
    z-index: 9;
}

.edu_courseInfo_box.edu-course-info-bedge img {
    width: 30px;
    margin-right: 0;
}

.edu_courseInfo_box.edu-course-info-bedge p {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: normal;
}

.spacer-top {
    padding-top: 80px;
}

.spacer-bottom {
    padding-bottom: 80px;
}

.edu-course-search-slider .swiper-container {
    padding: 15px;
}

.edu-course-search-slider .edu_banner_button {
    left: 2px;
    right: 2px;
}

.edu-course-search-slider .edu_banner_button>div {
    background: #eee;
}

.edu-course-search-slider .edu_banner_button>div:hover {
    background: var(--Primary-Color);
}

.edu-course-content p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.edu-cousre-learn-list {
    margin-bottom: 30px;
}

.edu-course-accordian-list p {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.edu-course-accordian-list ul {
    padding: 15px;
    border-bottom: 1px solid #eee;
    background: #fbfbfb;
}


/* .edu-course-accordian-list ul li {
    margin-bottom: 10px;
    position: relative;
} */

.edu-course-accordian-list ul li {
    margin-bottom: 10px;
    position: relative;
    display: flex;
    align-items: center;
}

.edu-course-accordian-list ul li:last-child {
    margin: 0;
}

.edu-course-accordian-list ul li a u {
    text-decoration: none;
}

.edu-course-accordian-list .collapsed~.show {
    display: none;
}

.edu-course-accordian-list p {
    position: relative;
}

.edu-course-accordian-list p i {
    position: absolute;
    right: 15px;
    top: 20px;
}


/* custom css end */


/* course single start */

.edu-course-bg-wrap {
    background: var(--Secondary-Color)7f1;
    background-image: url(../images/service_bg.png);
}

.edu-cousre-learn-list ul {
    border: 1px solid #eee;
}

.edu-cousre-learn-list ul li {
    margin-bottom: 0;
    font-size: 18px;
    position: relative;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #eee;
    padding: 15px;
    border-top: 0;
    transition: 0.1s;
    border-left: 3px solid transparent;
}

.edu-cousre-learn-list ul li img {
    margin-right: 10px;
    width: 20px;
    margin-top: 2px;
}

.edu-cousre-learn-list ul li:last-child {
    border-bottom: none;
}

.edu-cousre-learn-list ul li:hover {
    border-left: 3px solid var(--Primary-Color);
}

.edu-course-accordian-title {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
    display: block;
    cursor: pointer;
    padding: 20px;
    transition: 0.3s;
    background: var(--Primary-Color);
    color: var(--Secondary-Color);
}

.edu-course-accordian-title.collapsed {
    background: var(--Secondary-Color);
    color: #263b5e;
}

.edu-course-accordian-list {
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 7%);
    border-radius: 10px;
    margin-bottom: 20px;
    background: var(--Secondary-Color);
    border-radius: 5px;
    position: relative;
}

.edu-course-accordian-body {
    padding: 20px;
    transition: 0.2s;
}

.edu-course-accordian-body ul li {
    position: relative;
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}

.edu-course-accordian-body ul li:last-child {
    margin-bottom: 0px;
    border-bottom: none;
    padding-bottom: 0px;
}

.edu-course-accordian-body .edu-video-preview {
    cursor: pointer;
    font-size: 14px;
}

.edu-course-slider .swiperTeamPagination {
    margin: 10px 0 0;
}

.edu-course-slider {
    padding-bottom: 80px;
}

.edu-course-slider .swiper-container {
    padding: 20px 20px 0;
}


/* course single end */

/*Updated css start 2023*/
.edu_services_section.edu_services_box-color {
    background-color: var(--Secondary-Color);
}
.edu_services_section.edu_services_box-color .edu_services_section_inner .edu-frontend-icon {
    width: 80px;
    height: 80px;
    background-color: var(--Secondary-Color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 100px;
}
.edu_services_section.edu_services_box-color .edu_services_section_inner .edu-frontend-icon i {
    margin: 0;
    font-size: 40px;
}
.edu_services_section.edu_services_box-color .edu_services_section_inner h4 {
    color: var(--Alternate-Text-Color);
    margin: 0;
    padding: 0 0 30px;
}
.edu_services_section.edu_services_box-color .edu_services_section_inner p {
    color: var(--Alternate-Text-Color);
    margin: 0;
    padding: 20px 0 10px;
}
.edu_sglblog_inner.bgshadowradios.mb_30.Blog-Page img {
    width: 100%;
    max-width: 100px;
    display: block;
}
.edu_sglblog_inner.bgshadowradios.mb_30.Blog-Page a.edu_sglblog_title {
    margin: 20px 0 10px 0;
    font-size: 25px;
    line-height: inherit;
}
.edu_sglblog_inner.bgshadowradios.mb_30.Blog-Page ul.sglblog_metapost li {
    margin: 0px 0px 0px 0px;
    padding: 0px 0 0 10px;
}
.edu_gallery-box .edu_porfolio_section {
    margin: 0;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}
.edu_gallery-box .edu_videoGalleryTitle {
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 6%);
}
.lorem h2 {
    font-size: 24px;
    padding: 0px 0px 5px 0px;
}
.lorem p {
    font-size: 16px;
    padding: 0 0 5px 0;
}
a.edu_blog_read_more {
    background-color: var(--Primary-Color);
    color: var(--Secondary-Color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    width: 100%;
    max-width: 110px;
    font-size: 16px;
}

ul.blog_recent_list.blog_recent_list_blog_page li {
    background-color: #cccccc1c;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    border-radius: 5px;
}
.edu_social_wrapper.edu_social_wrapper_preheader {
    padding: 10px 0px;
}
.edu_social_wrapper.edu_social_wrapper_preheader ul li:nth-child(1){
    width:auto;
    height:auto;
    background-color:transparent;
}
.edu_social_wrapper.edu_social_wrapper_preheader ul li {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--Secondary-Color);
    border-radius: 50px;
}
.edu_social_wrapper.edu_social_wrapper_preheader ul li a {
    color: var(--Primary-Color);
}
form.edu-search-form.edu-search-form-color input {
    background-color: var(--Primary-Color);
    border-color: var(--Primary-Color);
    color: var(--Secondary-Color);

}
form.edu-search-form.edu-search-form-color input::placeholder{
    color:var(--Secondary-Color);
}
.edu-select-category.edu-select-category_courses h3 {
    background-color: var(--Primary-Color);
    color: var(--Secondary-Color);
}
form.edu-search-form.edu-search-form-color span.edu-search-icon a i.fas.fa-search {
    color: var(--Secondary-Color);
}
.edu_course_image_box {
    height: 230px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    overflow: hidden;
    background: var(--Primary-Color);
    padding: 10px 50px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.edu-course-content.edu-course-content_new a.edu-course-title {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.edu-course-box.edu-course-box_blog {
    height: 480px;
}
.container.team_slider2_container {
    position: relative;
    overflow: hidden;
}
section.edu_form_wrapper.enroll-wrapper {
    padding: 80px 0px;
}
section.edu_form_wrapper.enroll-wrapper .edu_form_container.withoutMapFrm {
    margin: 0;
}
.edu_contact_section.edu_contact_section_color {
    background-color:var(--Secondary-Color);
}
.edu_contact_section.edu_contact_section_color .edu_contact_section_inner .edu_contact-icon {
    width: 80px;
    height: 80px;
    background-color: var(--Alternate-Text-Color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 100px;
}
.edu_contact_section.edu_contact_section_color .edu_contact_section_inner .edu_contact-icon i {
    font-size: 40px;
    margin: 0;
}
.edu_contact_section.edu_contact_section_color .edu_contact_section_inner h4 {
    margin: 0 0 12px 0;
    color: var(--Alternate-Text-Color);
}

.edu_contact_section.edu_contact_section_color .edu_contact_section_inner a {
    color: var(--Alternate-Text-Color);
}
.edu_contact_section.edu_contact_section_color .edu_contact_section_inner h4:before {
    background: var(--Primary-Color);
}
.edu_contact_section.edu_contact_section_color .edu_contact_section_inner h4:after {
    background: var(--Primary-Color);
}
a.edu_btn.product-Btn {
    min-width: 140px;
    height: 50px;
    line-height: 50px;
    margin-top: 10px;
}
a.edu_btn.product-Btn i {
    margin-left: 10px;
}
span.edu-course-offer.edu-course-offer-color {
    background: var(--Secondary-Color);
    color: var(--Primary-Color);
    font-size: 15px;
    left: 10px;
    top: 10px;
    border-radius: 50px;
}
span.edu-course-offer.edu-course-offer-color:after {
    display: none;
}
.course_details_ul {
    height: 510px;
    position: relative;
    overflow: hidden;
    overflow-y: auto;
}
.course_details_ul::-webkit-scrollbar-track{
    border-radius: 10px;
	background-color: var(--Primary-Color);
}

.course_details_ul::-webkit-scrollbar{
    width:3px;
	background-color: #F5F5F5;
}

.course_details_ul::-webkit-scrollbar-thumb{
    background-color: #555;
}
.course_details_ul.course_details_ul_border ul {
    border: none;
}

p.edu_courses_des.mb_30.edu_para_ellipse {
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.edu_courses_detail h4 a {
    color: var(--Alternate-Text-Color);
}
.edu-course-accordian.edu-course-accordian-flex {
    display: flex;
    flex-wrap: wrap;
}
.edu_courses_imgbox.edu_courses_imgbox01 {
    text-align: center;
}
.edu_courses_imgbox.edu_courses_imgbox01 img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 60px 0px;
}
.edu_sglblog_inner.bgshadowradios.edu_singleBlog1 {
    margin-bottom: 30px;
}
.edu_form_container_main.edu_form_container.withoutMapFrm .edu_field_holder {
    margin: 0;
}

.edu_form_container_main.edu_form_container.withoutMapFrm button.edu_btn.enquiryFormSubmit {
    margin-top: 30px;
}
.edu-register-account {
    margin-top: 20px;
}

.edu-register-account a {
    color: var(--Primary-Color);
    font-weight: 600;
}
.send_otp {
    transform: translate(10px, 10px);
    position: relative;
    bottom: 50px;
    left: 5px;
    color: darkblue;
    cursor: pointer;
}

section.edu_courseInfo_wrapper.edu_courseInfo_wrapper_privacyPolicy h1 {
    font-size: 30px;
    font-weight: 700;
    padding: 40px 0 10px 0;
    color:var(--Alternate Color);
}









/********************************************************
    27. Responsive CSS Start
*******************************************************/

@media (min-width: 1750px) {
    header .container-fluid {
        max-width: 1730px;
    }
    footer.edu_footer_wrapper .container-fluid {
        max-width: 1730px;
    }
}
@media (max-width: 1440px) {
    .main_menu_wrapper ul>li>a {
        padding: 12px 10px;
    }
}
@media(max-width:1300px){
    .edu_social_wrapper ul li {
        margin-right: 10px;
    }
}

@media (min-width: 1200px) {
    
    .container {
        max-width: 1170px;
        padding: 0;
    }
    .edu_banner_text {
        width: 75%;
        margin: auto;
    }
    .edu_heading_wrapper {
        width: 60%;
        margin: 0px auto 41px;
    }
    .edu_footer_about p {
        width: 90%;
    }
}
@media(max-width:1200px){
    .edu_services_section.edu_services_box-color {
        height: 300px;
    }
  .team_slider {
    padding: 0 0px 30px;
}
    .edu_header_top.edu_header_top1 .col-xl-4.col-lg-4.col-md-4.col-sm-12.col-12 {
        width: 100%;
        display: block;
        max-width: 100%;
        flex: auto;
    }
    .edu_social_wrapper.edu_social_wrapper_preheader ul {
        justify-content: center;
        padding: 10px 0px;
    }
    .edu_header_top.edu_header_top1 .col-xl-8.col-lg-8.col-md-8.col-sm-12.col-12{
        width: 100%;
        display: block;
        max-width: 100%;
        flex: auto;
    }
    .edu_header_top.edu_header_top1 .edu_header_info {
        justify-content: center;
        padding: 0 0 15px;
    }
    /*============responsive toggle css start=============*/
    .menu_btn {
        width: 50px;
        display: inline-block;
        text-align: center;
        padding: 0;
    }
    .menu_btn span {
        display: block;
        width: 18px;
        height: 2px;
        transition: 0.3s;
        margin: 0 auto 3px;
        background:var(--Alternate-Text-Color);
    }
    .menu_btn_wrap.open .menu_btn span:nth-child(2) {
        opacity: 0;
        visibility: hidden;
    }
    .menu_btn_wrap.open .menu_btn span:nth-child(1) {
        transform: translate(0px, 4px) rotate(-48deg);
    }
    .menu_btn_wrap.open .menu_btn span:nth-child(3) {
        transform: translate(0px, -6px) rotate(48deg);
    }
    .main_menu_wrapper {
        position: fixed;
        left: -300px;
        top: 0;
        bottom: 0;
        width: 300px;
        z-index: 999;
        overflow: hidden;
        overflow-y: auto;
        background: var(--Secondary-Color);
        box-shadow: 2px 4px 28px 0px rgba( 0, 0, 0, 0.1);
        height: 100vh;
    }
    .main_menu_wrapper.open {
        left: 0;
        padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    }
    .main_menu_wrapper,
    .main_menu_wrapper.open {
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }
    .main_menu_wrapper li {
        width: 100%;
        text-align: left;
        padding-bottom: 15px;
        border-bottom: 1px solid #e4e4e4;
    }
    .main_menu_wrapper li.has_submenu {
        padding-left: 0;
    }
    .main_menu_wrapper li.has_submenu>ul {
        display: none;
    }
    .main_menu_wrapper li:last-child {
        border: none;
        padding-bottom: 0;
    }
    .main_menu_wrapper li>ul>li {
        padding-left: 25px;
    }
    .main_menu_wrapper ul>li>a {
        padding: 15px 20px 0px;
        width: 100%;
    }
    .main_menu_wrapper li.has_submenu:before,
    .main_menu_wrapper li.has_submenu:after {
        position: absolute;
        bottom: 0;
        content: '';
    }
    .main_menu_wrapper li.has_submenu:after {
        right: 21px;
        width: 12px;
        height: 2px;
        top: 25px;
    }
    .main_menu_wrapper li.has_submenu:before {
        right: 26px;
        width: 2px;
        height: 12px;
        top: 20px;
    }
    .main_menu_wrapper li.has_submenu.open::before {
        content: unset;
    }
    .main_menu_wrapper::-webkit-scrollbar {
        width: 3px;
    }
    .main_menu_wrapper::-webkit-scrollbar-track {
        background-color: var(--Primary-Color);
    }
    .main_menu_wrapper::-webkit-scrollbar-thumb {
        background-color: #787878;
    }
    .edu_header_wrapper .edu_btn {
        margin: 0;
    }
    .edu_social_wrapper ul li {
        margin-right: 10px;
    }
    .edu_header_info ul li {
        margin-left: 10px;
        padding: 6px 0 6px 10px;
    }
    .edu_header_top {
        font-size: 13px;
    }
    .menu_btn span:nth-child(2) {
        width: 12px;
    }
      .menu_btn {
        display: block;
    }
    ul.sub_menu {
        position: absolute;
        width: max-content;
        min-width: 200px;
        top: 60px;
        left: 0;
        z-index: 9;
        transform: translate(20px, 0px);
        transition: 0.3s;
        opacity: 0;
        visibility: hidden;
        border: none;
        border-radius: 0 0 3px 3px;
        padding: 0 0 15px;
        background: var(--Secondary-Color);
        box-shadow: 0px 6px 6px 0 rgba(0, 0, 0, 0.06);
    }
    ul.sub_menu li {
        display: block;
        text-align: left;
        padding: 0 15px;
    }
    ul.sub_menu li a {
        display: block;
        padding: 12px 20px 0;
        overflow: hidden;
        position: relative;
    }
    .main_menu_wrapper>ul>li:hover ul.sub_menu {
        transform: translate(0px, 0px);
        visibility: visible;
        opacity: 1;
    }
}
@media (max-width: 1199.98px) {
    .main_menu_wrapper ul>li>a {
        padding: 12px 6px;
        font-size: 14px;
    }
    .edu_header_wrapper .edu_btn {
        margin: 0 0 0 10px;
    }
    .edu_about_time {
        -webkit-transform: unset;
        -moz-transform: unset;
        -ms-transform: unset;
        -o-transform: unset;
        transform: unset;
        font-size: 28px;
        position: unset;
        writing-mode: unset;
        margin-top: 20px;
        text-align: center;
        width: 100%;
    }
}

@media (min-width: 991.98px) {
  
}





@media (max-width: 991.98px) {
    .sglblog_sidebar.sglblog_recent1 {
    padding: 0px 0 50px;
}
    .edu_sglblog_inner.bgshadowradios.edu_singleBlog1 img {
    width: 100%;
    max-width: 250px;
    display: block;
}
    .edu_sglblog_section.edu_sglblog_section_Res {
    padding: 80px 0 0px;
}
    body {
        font-size: 14px;
        line-height: 26px;
    }
    .sglblog_sidebar.sglblog_sidebar_res {
    padding: 0 0 50px;
}
    /*.menu_btn {*/
    /*    width: 50px;*/
    /*    display: inline-block;*/
    /*    text-align: center;*/
    /*    padding: 0;*/
    /*}*/
    /*.menu_btn span {*/
    /*    display: block;*/
    /*    width: 18px;*/
    /*    height: 2px;*/
    /*    transition: 0.3s;*/
    /*    margin: 0 auto 3px;*/
    /*    background:var(--Alternate-Text-Color);*/
    /*}*/
    /*.menu_btn_wrap.open .menu_btn span:nth-child(2) {*/
    /*    opacity: 0;*/
    /*    visibility: hidden;*/
    /*}*/
    /*.menu_btn_wrap.open .menu_btn span:nth-child(1) {*/
    /*    transform: translate(0px, 4px) rotate(-48deg);*/
    /*}*/
    /*.menu_btn_wrap.open .menu_btn span:nth-child(3) {*/
    /*    transform: translate(0px, -6px) rotate(48deg);*/
    /*}*/
    /*.main_menu_wrapper {*/
    /*    position: fixed;*/
    /*    left: -300px;*/
    /*    top: 0;*/
    /*    bottom: 0;*/
    /*    width: 300px;*/
    /*    z-index: 999;*/
    /*    overflow: hidden;*/
    /*    overflow-y: auto;*/
    /*    background: var(--Secondary-Color);*/
    /*    box-shadow: 2px 4px 28px 0px rgba( 0, 0, 0, 0.1);*/
    /*}*/
    /*.main_menu_wrapper.open {*/
    /*    left: 0;*/
    /*}*/
    /*.main_menu_wrapper,*/
    /*.main_menu_wrapper.open {*/
    /*    -webkit-transition: all 0.3s;*/
    /*    -moz-transition: all 0.3s;*/
    /*    -ms-transition: all 0.3s;*/
    /*    -o-transition: all 0.3s;*/
    /*    transition: all 0.3s;*/
    /*}*/
    /*.main_menu_wrapper li {*/
    /*    width: 100%;*/
    /*    text-align: left;*/
    /*    padding-bottom: 15px;*/
    /*    border-bottom: 1px solid #e4e4e4;*/
    /*}*/
    /*.main_menu_wrapper li.has_submenu {*/
    /*    padding-left: 0;*/
    /*}*/
    /*.main_menu_wrapper li.has_submenu>ul {*/
    /*    display: none;*/
    /*}*/
    /*.main_menu_wrapper li:last-child {*/
    /*    border: none;*/
    /*    padding-bottom: 0;*/
    /*}*/
    /*.main_menu_wrapper li>ul>li {*/
    /*    padding-left: 25px;*/
    /*}*/
    /*.main_menu_wrapper ul>li>a {*/
    /*    padding: 15px 20px 0px;*/
    /*    width: 100%;*/
    /*}*/
    /*.main_menu_wrapper li.has_submenu:before,*/
    /*.main_menu_wrapper li.has_submenu:after {*/
    /*    position: absolute;*/
    /*    bottom: 0;*/
    /*    content: '';*/
    /*}*/
    /*.main_menu_wrapper li.has_submenu:after {*/
    /*    right: 21px;*/
    /*    width: 12px;*/
    /*    height: 2px;*/
    /*    top: 25px;*/
    /*}*/
    /*.main_menu_wrapper li.has_submenu:before {*/
    /*    right: 26px;*/
    /*    width: 2px;*/
    /*    height: 12px;*/
    /*    top: 20px;*/
    /*}*/
    /*.main_menu_wrapper li.has_submenu.open::before {*/
    /*    content: unset;*/
    /*}*/
    /*.main_menu_wrapper::-webkit-scrollbar {*/
    /*    width: 3px;*/
    /*}*/
    /*.main_menu_wrapper::-webkit-scrollbar-track {*/
    /*    background-color: var(--Primary-Color);*/
    /*}*/
    /*.main_menu_wrapper::-webkit-scrollbar-thumb {*/
    /*    background-color: #787878;*/
    /*}*/
    /*.edu_header_wrapper .edu_btn {*/
    /*    margin: 0;*/
    /*}*/
    /*.edu_social_wrapper ul li {*/
    /*    margin-right: 10px;*/
    /*}*/
    /*.edu_header_info ul li {*/
    /*    margin-left: 10px;*/
    /*    padding: 6px 0 6px 10px;*/
    /*}*/
    /*.edu_header_top {*/
    /*    font-size: 13px;*/
    /*}*/
    /*.menu_btn span:nth-child(2) {*/
    /*    width: 12px;*/
    /*}*/
    .edu_banner_text h1 {
        font-size: 42px;
        line-height: 55px;
    }
    .edu_banner_button>div {
        width: 40px;
        height: 40px;
        font-size: 20px;
        line-height: 40px;
    }
    .edu_banner_section {
        padding: 150px 0 150px;
    }
    .edu_banner_text h4 {
        font-size: 20px;
    }
    .edu_banner_text {
        font-size: 16px;
    }
    .edu_action_section h1 {
        font-size: 40px;
        margin: 9px 0 4px;
    }
    .edu_footer_heading,
    .edu_services_section h4,
    .edu_team_identity a,
    .edu_courses_detail h4,
    .edu_contact_section h4,
    .edu_form_container h4 {
        font-size: 20px;
    }
    .edu_heading {
        font-size: 32px;
    }
    .main_menu_wrapper li.has_submenu:before,
    .main_menu_wrapper li.has_submenu:after {
        background-color: var(--Primary-Color);
    }
    .edu_page_title_text h1 {
        font-size: 28px;
        line-height: 36px;
    }
    .edu_mission_text h1 {
        font-size: 32px;
        line-height: 35px;
    }
    .edu_mission_text h6 {
        font-size: 16px;
    }
    .edu_vission_img,
    .edu_about_img {
        text-align: center;
    }
    .edu_form_container {
        padding: 30px 20px;
    }
    .edu_callToAction_wrapper {
        margin-top: 80px;
    }
    .edu_banner_button {
        top: 45.5%;
    }
    .blog_glry_list>li>a img {
        width: 100%;
    }
    .blog_glry_list>li {
        width: calc(100% / 5);
    }
    .edu-select-category ul li ul li:hover>ul {
        left: auto;
        right: 100%;
    }
}

@media (max-width: 767.98px) {
    .edu_courses_imgbox.edu_courses_imgbox01 {
    background-color: transparent;
}
    .edu_courses_imgbox.edu_courses_imgbox01 img {
    width: 100%;
    max-width: 100%;
    padding: 0px 0px;
}
    section.edu_form_wrapper.enroll-wrapper.contactpage {
    padding: 80px 50px;
}
    .edu_social_wrapper ul,
    .edu_header_info {
        justify-content: center;
    }
    .edu_header_wrapper .edu_btn,
    .edu_btn {
        min-width: 160px;
        height: 45px;
        line-height: 45px;
    }
    .edu_banner_button {
        top: unset;
        bottom: 80px;
    }
    .edu-course-search-slider .edu_banner_button {
        top: 50%;
        bottom: auto;
    }
    .edu_action_section.center:before {
        height: 1px;
        width: auto;
        top: 0;
        bottom: unset;
        right: 0;
    }
    .edu_action_section.center:after {
        height: 1px;
        width: auto;
        top: unset;
        bottom: 0;
        left: 0;
    }
    .edu_about_time {
        position: unset;
        transform: unset;
        writing-mode: unset;
        margin-top: 30px;
        text-align: center;
        width: 100%;
    }
    .edu_header_info ul {
        justify-content: center;
    }
    .edu_social_wrapper ul {
        justify-content: center;
    }
    .edu_header_info ul li:before {
        content: unset;
    }
    .edu_courses_wrapper .nav-tabs .nav-link.active:before,
    .edu_courses_wrapper .nav-tabs .nav-link.active:after {
        content: unset;
    }
    .login_submit_btn {
        /*text-align: center;*/
        margin-bottom: 20px;
    }
    /*.backToHome {*/
    /*    text-align: center;*/
    /*}*/
    .edu_ic_list>li {
        width: 100%;
    }
    .blog_glry_list>li {
        width: calc(100% / 3);
    }
    .edu-search-form {
        margin-top: 10px;
    }
    .edu-select-category,
    .edu-select-category h3 {
        width: 100%;
        max-width: 100%;
    }
    .edu-course-accordian {
        margin-top: 20px;
    }
    .edu-cousre-learn-list {
        margin-top: 50px;
    }
    .spacer-bottom,
    .edu-course-slider {
        padding-bottom: 60px;
    }
    .spacer-top {
        padding-top: 60px;
    }
    .edu-course-wrap,
    .edu-trending-course {
        padding-bottom: 30px;
    }
}

@media (max-width: 575.98px) {
.edu_team_wrapper {
    padding: 77px 20px 80px;
}
.edu-course-box.edu-course-box_blog {
    height: 540px;
    padding-top: 30px;
}
.edu-course-img img {
    height: auto;
}
    .main_menu_wrapper {
        left: -200px;
        width: 200px;
    }
    .edu_logo {
        text-align: center;
    }
    span.edu-course-offer.edu-course-offer-color {
    background: var(--Primary-Color);
    color: var(--Secondary-Color);
}
.edu-course-content {
    text-align: center;
}
    .edu_logo img {
        max-height: 40px;
    }
    .edu_course_image_box {
    height: 260px;
    width: 260px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
    .menu_btn_wrap {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
    }
    .edu_banner_text h1 {
        font-size: 32px;
        line-height: 35px;
    }
    .edu_about_small_img {
        border: 6px solid #e4e4e4;
        float: unset;
        max-height: unset;
        max-width: 100%;
        margin-top: 20px;
    }
    .edu_courses_content {
        padding: 30px 20px 0px;
    }
    .videoPlayBtn {
        font-size: 30px;
        width: 45px;
        height: 45px;
        line-height: 45px;
    }
    #scroll {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 24px;
    }
    .edu_client_quote {
        width: 100%;
        margin-top: 10px;
        text-align: center;
    }
    .edu_client_img {
        flex-wrap: wrap;
        justify-content: center;
    }
    .edu_client_quote h4 {
        font-size: 18px;
    }
    .edu_testimonial_section>p {
        font-size: 16px;
    }
    .status img {
        width: 50%;
    }
    .edu_courses_wrapper .nav-tabs .nav-link {
        padding: 5px 10px;
    }
    .sglblog_quotewrap {
        flex-direction: column;
    }
    .sglblog_quotewrap p {
        width: 100%;
        padding-left: 0;
    }
    .edu-select-category ul ul,
    .edu-select-category ul li ul li:hover>ul {
        left: 0;
        top: auto;
    }
    .edu-enroll-btn {
      bottom: 70px;
}
.edu_services_section.edu_services_box-color {
    height: auto;
    min-height:auto;
    padding: 20px 10px;
}
}

@media (max-width: 480px) {
    .edu_callToAction_bg_inner {
    background-color: rgb(255 110 102);
}
    .edu_heading_wrapper {
    margin-bottom: 20px;
}
    section.edu_videoGallery_wrapper.edu_videoGallery_wrapper_Res {
    padding: 40px 0 20px;
}
    section.edu_gallery_wrapper.edu_gallery_wrapper_res {
    padding: 40px 0 40px;
}
    .edu_page_title_wrapper {
         padding: 40px 0 40px;
    }
    section.edu_contact_wrapper.edu_contact_wrapper_res {
    padding: 40px 0 0px;
}
    section.edu_form_wrapper.enroll-wrapper.edu_form_wrapper.enroll-wrapper_res {
    padding: 40px 0px;
}
    .edu_copyright_wrapper {
         margin-top: 0;
    }
    footer.edu_footer_wrapper {
    padding: 40px 0 0;
}
    footer.edu_footer_wrapper.edu-footer-gradmo {
    padding: 0;
}
    .edu-course-content-wrap.edu-course-content-wrap_res {
    padding: 40px 0 40px;
}
    .spacer-top {
    padding-top: 40px;
}
    section.edu_callToAction_wrapper.edu_callToAction_wrapper_res {
    margin-top: 40px;
}
section.edu_partner_wrapper.edu_partner_wrapper_res {
    padding: 40px 0 20px;
}
section.edu_testimonial_wrapper.edu_testimonial_wrapper_res {
    padding: 40px 0 40px;
}
    .edu_contact_section.edu_contact_section_color {
        height: auto;
        min-height: auto;
        padding: 15px 10px;
}
    section.edu_contact_wrapper.edu_contact_wrapper1 {
    padding: 40px 0 20px;
}
    section.edu_form_wrapper.enroll-wrapper.contactpage {
    padding: 40px 20px;
}
    section.edu_services_wrapper.edu_services_wrapper_res {
    padding: 40px 0 20px;
}
    .sglblog_sidebar.sglblog_recent1 {
    padding: 0 0 20px;
}
    h4.edu_cmntitle.mb_50 {
    margin-bottom: 0px;
}
    .edu_sglblog_inner.bgshadowradios.edu_singleBlog1 img {
        max-width: 150px;
    }
    .sglblog_sidebar.sglblog_sidebar_res {
    padding: 0 0 20px;
}
.edu_sglblog_section.edu_sglblog_section_Res {
    padding: 40px 0 0px;
}
    section.edu_courses_single.edu_courses_single_Res {
    padding: 50px 0px 10px;
}
    .edu-course-box.edu-course-box_blog {
    height: 480px;
}
    .edu_course_image_box {
    height: 180px;
    width: 180px;
    padding: 10px 25px;

}
    section.edu_mission_wrapper.edu_mission_wrapper_res .edu_mission_text h1 {
    font-size: 24px;
}
    section.edu_mission_wrapper.edu_mission_wrapper_res .edu_mission_text h6 {
    font-size: 14px;
}
    section.edu_mission_wrapper.edu_mission_wrapper_res {
    padding: 40px 0 40px;
}
    section.edu_vission_wrapper.edu_vission_wrapper_Res {
    padding: 40px 0 20px;
}
    section.edu_about_wrapper.edu_about_wrapper_responsive {
    padding: 50px 0 0px;
}
    section.edu_team_wrapper.edu_team_wrapper_res {
    padding: 40px 20px 50px;
}
    section.edu_courses_wrapper.edu_courses_wrapper_res.edu_courses_main {
    padding: 40px 0 40px;
}
    section.edu_selection_wrapper.edu_selection_wrapper_res {
    padding: 50px 0px 50px;
}
  section.edu_about_wrapper.edu_about_wrapper_res {
    padding: 40px 0px 20px;
}
.edu_heading {
    font-size: 25px;
}
section.edu_about_wrapper.edu_about_wrapper_res a.edu_btn {
    margin-top: 5px;
}
section.edu_services_wrapper.edu_services_wrapper_res {
    padding: 45px 0 20px;
}
.edu_subTitle {
    letter-spacing: 1px;
    font-size: 14px;
}
    .sglblog_cmntbox {
        flex-direction: column;
    }
    .sglblog_cmntdata {
        width: 100%;
    }
    .sglblog_cmntimg {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .sglblog_userreply {
        margin-left: 20px;
    }
    section.edu_courseInfo_wrapper.edu_courseInfo_wrapper_privacyPolicy {
        padding: 20px 0 20px;
    }
    section.edu_courseInfo_wrapper.edu_courseInfo_wrapper_privacyPolicy h1 {
        font-size: 22px;
        padding: 20px 0 10px 0;
    }
}

@media (max-width: 420px) {
    .blog_glry_list>li>a img {
        height: inherit;
    }
    
}
@media(max-width:380px){
    .edu_banner_text h4 {
        font-size: 16px;
}
}

/* ---- Front header: profile account menu ---- */
.front-profile-wrap .front-profile-trigger {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	max-width: 220px;
	text-decoration: none;
	color: inherit;
}
.front-profile-wrap .front-profile-trigger::after {
	margin-left: 2px;
	vertical-align: middle;
}
.front-profile-trigger-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	background: rgba(77, 74, 129, 0.12);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.front-profile-trigger-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.front-profile-trigger-avatar--ph {
	color: var(--Primary-Color, #4d4a81);
	font-size: 0.95rem;
}
.front-profile-trigger-name {
	font-weight: 600;
	font-size: 0.92rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.front-profile-dropdown {
	min-width: 300px;
	max-width: min(360px, 96vw);
	padding: 0;
	margin-top: 10px;
	border: none;
	border-radius: 14px;
	background-color: #ffffff;
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
	overflow: hidden;
}
.front-profile-dropdown-inner {
	padding: 14px 14px 12px;
	max-height: calc(100vh - 120px);
	overflow-y: auto;
}
.front-profile-head {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin-bottom: 12px;
}
.front-profile-avatar {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	overflow: hidden;
	flex-shrink: 0;
	background: rgba(77, 74, 129, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--Primary-Color, #4d4a81);
	font-size: 1.25rem;
}
.front-profile-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.front-profile-head-text {
	min-width: 0;
	flex: 1;
}
.front-profile-display-name {
	font-weight: 700;
	font-size: 1rem;
	color: #1a1a2e;
	line-height: 1.25;
	word-break: break-word;
}
.front-profile-hello {
	font-size: 0.9rem;
	color: #555;
	margin-top: 2px;
}
.front-profile-email {
	font-size: 0.8rem;
	color: #777;
	margin-top: 4px;
	word-break: break-all;
}
.front-profile-messages-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 8px 10px;
	margin-bottom: 10px;
	background: rgba(77, 74, 129, 0.06);
	border-radius: 10px;
}
.front-profile-messages-link {
	font-weight: 600;
	font-size: 0.88rem;
	color: var(--Primary-Color, #4d4a81);
	text-decoration: none;
}
.front-profile-messages-link:hover {
	color: var(--Primary-Color, #4d4a81);
	text-decoration: none;
	opacity: 0.88;
}
.front-profile-messages-link i {
	margin-right: 6px;
	opacity: 0.9;
}
.front-profile-see-all {
	font-size: 0.82rem;
	font-weight: 600;
	color: #64748b;
	text-decoration: none;
}
.front-profile-see-all:hover {
	text-decoration: underline;
	color: #334155;
}
.front-profile-links {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.front-profile-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 10px;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 500;
	color: #1e293b;
	text-decoration: none;
	transition: background 0.12s ease;
}
.front-profile-link i {
	width: 20px;
	text-align: center;
	color: var(--Primary-Color, #4d4a81);
	font-size: 0.95rem;
}
.front-profile-link:hover {
	background: rgba(77, 74, 129, 0.08);
	color: #0f172a;
	text-decoration: none;
}
.front-profile-link--accent {
	font-weight: 600;
	color: var(--Primary-Color, #4d4a81);
}
.front-profile-link--danger {
	color: #b91c1c;
}
.front-profile-link--danger i {
	color: #b91c1c;
}
.front-profile-link--danger:hover {
	background: rgba(185, 28, 28, 0.08);
	color: #991b1b;
}
.front-profile-hint {
	font-size: 0.82rem;
	color: #64748b;
	margin: 6px 0 4px;
	padding: 0 10px;
	line-height: 1.35;
}
.front-profile-divider {
	height: 1px;
	background: rgba(0, 0, 0, 0.06);
	margin: 10px 0;
}
.front-profile-footer-actions {
	margin-bottom: 8px;
}
.front-profile-footer-actions .front-share-app-btn {
	width: 100%;
	padding: 10px 14px;
	font-size: 0.9rem;
	border-radius: 10px;
}
.front-profile-version {
	text-align: center;
	font-size: 0.72rem;
	color: #94a3b8;
	margin-top: 10px;
	padding-top: 8px;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}
@media (max-width: 576px) {
	.front-profile-wrap .front-profile-trigger-name {
		max-width: 120px;
	}
}


.edu-home-wrap { max-width: 1100px; margin: 0 auto; padding: 16px 12px 32px; font-family: inherit; }
/* Home hero slider layout lives in application/views/frontend/home.php (avoid grid here — it broke the track width). */
.edu-home-search {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 0;
	background: #fff;
	border: 1px solid #e2e6ef;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0,0,0,.04);
	margin-bottom: 28px;
}
.edu-home-search input {
	flex: 1;
	border: 0;
	padding: 14px 16px;
	font-size: 0.95rem;
	outline: none;
	min-width: 0;
}
.edu-home-search input::placeholder { color: #9aa3b5; }
.edu-home-search button {
	background: #5881f2;
	color: #fff;
	border: 0;
	padding: 14px 22px;
	font-weight: 600;
	font-size: 0.95rem;
	white-space: nowrap;
	cursor: pointer;
	border-radius: 0 14px 14px 0;
}
@media (max-width: 575px) {
	.edu-home-search { flex-wrap: wrap; border-radius: 16px; }
	.edu-home-search input { width: 100%; border-radius: 16px 16px 0 0; }
	.edu-home-search button { width: 100%; border-radius: 0 0 14px 14px; }
}
.edu-home-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}
.edu-home-section-head h2 {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 700;
	color: #1a1a1a;
}
.edu-home-section-head a {
	font-size: 0.9rem;
	font-weight: 600;
	color: #5881f2;
	text-decoration: none;
}
.edu-home-section-head a:hover { text-decoration: underline; }
.edu-home-scroll-row {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	padding-bottom: 8px;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
}
.edu-home-scroll-row > * { scroll-snap-align: start; flex-shrink: 0; }
.edu-home-inst-card {
	width: 260px;
	max-width: 85vw;
	background: #fff;
	border-radius: 16px;
	padding: 16px 16px 18px;
	box-shadow: 0 4px 18px rgba(0,0,0,.07);
	border: 1px solid #f0f2f7;
	text-decoration: none;
	color: inherit;
	display: block;
	transition: box-shadow .2s;
}
.edu-home-inst-card:hover {
	box-shadow: 0 6px 22px rgba(88,129,242,.15);
	color: inherit;
	text-decoration: none;
}
.edu-home-badge {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 8px;
	background: #e8f0fe;
	color: #3a5fc9;
	margin-bottom: 10px;
}
.edu-home-inst-card h3 {
	margin: 0 0 6px;
	font-size: 1rem;
	font-weight: 700;
	color: #1a1a1a;
}
.edu-home-inst-card p {
	margin: 0;
	font-size: 0.85rem;
	color: #777;
	line-height: 1.4;
}
.edu-home-live-stack {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}
.edu-home-live-card {
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,.08);
	border: 1px solid #f0f2f7;
}
.edu-home-live-thumb {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	background: #eef1f8;
	display: block;
}
.edu-home-live-body { padding: 16px 16px 18px; }
.edu-home-live-body h3 {
	margin: 0 0 8px;
	font-size: 1.05rem;
	font-weight: 700;
	color: #1a1a1a;
}
.edu-home-live-date { font-size: 0.88rem; color: #777; margin-bottom: 12px; }
.edu-home-tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.edu-home-tag {
	font-size: 0.72rem;
	font-weight: 600;
	padding: 5px 10px;
	border-radius: 8px;
}
.edu-home-tag--blue { background: #e8f0fe; color: #3a5fc9; }
.edu-home-tag--orange { background: #fff3e6; color: #c65f0a; }
.edu-home-btn-join {
	display: block;
	width: 100%;
	text-align: center;
	background: #5881f2;
	color: #fff !important;
	font-weight: 600;
	padding: 12px 16px;
	border-radius: 12px;
	text-decoration: none;
	border: 0;
	cursor: pointer;
	font-size: 0.95rem;
}
.edu-home-btn-join:hover { background: #466bd9; color: #fff !important; text-decoration: none; }
.edu-home-muted { color: #777; font-size: 0.9rem; text-align: center; padding: 12px; }
@media (max-width: 1199px) {
	.edu-home-live-stack { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 991px) {
	.edu-home-live-stack { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575px) {
	.edu-home-live-stack { grid-template-columns: 1fr; }
}

/********************************************************
    Institute / batch frontend pages — content width = home (1080px)
    Overrides institute-frontend.css (720px) via higher specificity.
********************************************************/
body .inst-detail-page .inst-detail-container {
	max-width: 1080px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 16px;
	padding-right: 16px;
}
@media (max-width: 575.98px) {
	body .inst-detail-page .inst-detail-container {
		padding-left: 12px;
		padding-right: 12px;
	}
}
body .inst-detail-page .inst-detail-panel,
body .inst-detail-page .inst-panel-stack {
	max-width: 100%;
}

/* Institute / batch UI when institute-frontend.css is not loaded (e.g. teacher tool pages). */
body .inst-detail-page .inst-detail-panel {
	background: #e8eef9;
	border-radius: 16px;
	padding: 16px 14px 18px;
	margin-top: 12px;
	border: 1px solid rgba(77, 74, 129, 0.1);
	box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}
body .inst-detail-page .inst-panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
	padding: 0 2px;
	flex-wrap: wrap;
	row-gap: 8px;
}
body .inst-detail-page .inst-panel-head h3 {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 700;
	color: #1a1a2e;
	letter-spacing: -0.02em;
}
body .inst-detail-page .inst-panel-intro {
	margin: 0 2px 14px;
	font-size: 0.88rem;
	color: #64748b;
	line-height: 1.45;
	max-width: 720px;
}
body .inst-detail-page .inst-see-all {
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--Primary-Color, #4d4a81);
	white-space: nowrap;
}
body .inst-detail-page .inst-see-all:hover {
	text-decoration: none;
	opacity: 0.85;
	color: var(--Primary-Color, #4d4a81);
}
body .inst-detail-page .inst-list-filter-bar {
	background: #fff;
	border-radius: 14px;
	padding: 14px;
	margin-bottom: 16px;
	border: 1px solid rgba(77, 74, 129, 0.1);
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
	box-sizing: border-box;
}
body .inst-detail-page .inst-list-filter-fields {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 14px;
	align-items: flex-end;
}
body .inst-detail-page .inst-list-filter-item {
	flex: 1 1 160px;
	min-width: 0;
}
body .inst-detail-page .inst-list-filter-item.inst-list-filter-grow {
	flex: 2 1 220px;
}
body .inst-detail-page .inst-list-filter-item label {
	display: block;
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #64748b;
	margin-bottom: 6px;
}
body .inst-detail-page .inst-list-filter-item .edu_form_field {
	width: 100%;
	min-height: 44px;
	border-radius: 10px;
	font-size: 0.92rem;
	border: 1px solid rgba(15, 23, 42, 0.12);
	padding: 8px 12px;
	box-sizing: border-box;
}
body .inst-detail-page .inst-list-filter-item textarea.edu_form_field {
	min-height: 88px;
	resize: vertical;
	line-height: 1.45;
}
body .inst-detail-page .inst-list-filter-item input[type="file"].edu_form_field {
	padding: 8px 10px;
	min-height: 44px;
	font-size: 0.85rem;
	background: #fafbfc;
}
body .inst-detail-page .inst-list-filter-actions {
	margin-top: 14px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-start;
	align-items: center;
}
body .inst-detail-page .inst-list-filter-actions .btn {
	min-height: 44px;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	font-weight: 600;
	border-radius: 10px;
}
@media (min-width: 768px) {
	body .inst-detail-page .inst-list-filter-bar {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-end;
		gap: 14px 16px;
		padding: 16px 18px;
	}
	body .inst-detail-page .inst-list-filter-fields {
		flex: 1 1 auto;
		min-width: 0;
	}
	body .inst-detail-page .inst-list-filter-actions {
		margin-top: 0;
		flex: 0 0 auto;
		align-self: flex-end;
	}
}
body .inst-detail-page .inst-card-body {
	flex: 1;
	min-width: 0;
}
body .inst-detail-page .inst-card-title-sm {
	font-weight: 600;
	font-size: 1rem;
	margin: 0 0 6px;
	color: #1a1a2e;
	line-height: 1.35;
}
body .inst-detail-page .inst-card-sub {
	font-size: 0.84rem;
	color: #64748b;
	margin: 0 0 4px;
	line-height: 1.4;
}
body .inst-detail-page .inst-batch-card,
body .inst-detail-page .inst-review-card {
	background: #fff;
	border-radius: 14px;
	padding: 14px 14px 14px 12px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.15s ease, border-color 0.15s ease;
	max-width: 100%;
	box-sizing: border-box;
}
body .inst-detail-page a.inst-batch-card:hover,
body .inst-detail-page a.inst-review-card:hover {
	box-shadow: 0 6px 20px rgba(15, 23, 42, 0.1);
	border-color: rgba(77, 74, 129, 0.15);
	text-decoration: none;
	color: inherit;
}
body .inst-detail-page .inst-teacher-card-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid rgba(15, 23, 42, 0.06);
}
body .inst-detail-page .inst-teacher-card-actions .btn {
	font-weight: 600;
	border-radius: 8px;
}
body .inst-detail-page .inst-teacher-card-actions .btn i {
	margin-right: 6px;
}
body .inst-detail-page .inst-teacher-card-text {
	font-size: 0.88rem;
	color: #475569;
	margin: 6px 0 0;
	line-height: 1.45;
}
body .inst-detail-page .inst-attend-row {
	display: flex;
	gap: 8px;
	align-items: center;
	margin-top: 10px;
	font-size: 0.9rem;
	color: #334155;
	cursor: pointer;
}
body .inst-detail-page .inst-attend-row input {
	cursor: pointer;
}

/* Card grids on institute-style pages (batch list, teacher CRUD lists, etc.) — must live here because
   front_header does not load institute-frontend.css on every route. */
body .inst-detail-page .inst-card-grid {
	max-width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	align-items: stretch;
}
@media (min-width: 576px) {
	body .inst-detail-page .inst-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (min-width: 992px) {
	body .inst-detail-page .inst-card-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media (min-width: 1200px) {
	body .inst-detail-page .inst-card-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
body .inst-detail-page .inst-card-grid > p {
	grid-column: 1 / -1;
}
body .inst-detail-page .inst-card-grid > .inst-detail-summary-card {
	grid-column: 1 / -1;
}
body .inst-detail-page .inst-card-grid .inst-batch-card {
	flex-direction: column;
	align-items: stretch;
	padding: 0;
	overflow: hidden;
	height: 100%;
	border-radius: 16px;
}
/* Teacher / resource cards are divs; batch browse cards are usually anchors — accent bar only on div cards */
body .inst-detail-page .inst-card-grid div.inst-batch-card {
	border: 1px solid rgba(77, 74, 129, 0.12);
	box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
	border-top: 3px solid var(--Primary-Color, #4d4a81);
}
body .inst-detail-page .inst-card-grid .inst-batch-card .inst-card-body {
	padding: 14px 14px 16px;
}
body .inst-detail-page .inst-card-grid .inst-batch-card .inst-card-chevron {
	display: none;
}
body .inst-detail-page .inst-card-grid .inst-review-card {
	height: 100%;
	border: 1px solid rgba(77, 74, 129, 0.12);
	box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
	border-top: 3px solid var(--Primary-Color, #4d4a81);
	box-sizing: border-box;
}
body .inst-detail-page .inst-list-directory-panel {
	width: 100%;
}
body .inst-detail-page .inst-list-pagination {
	flex-wrap: wrap;
}

/* Mobile top bar — back control (views use .inst-detail-mobile-back; legacy .inst-back) */
body .inst-detail-page .inst-detail-mobile-bar .inst-detail-mobile-back,
body .inst-detail-page .inst-detail-mobile-bar .inst-back {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--Primary-Color, #4d4a81);
	font-size: 1.1rem;
	border-radius: 10px;
	text-decoration: none;
}
body .inst-detail-page .inst-detail-mobile-bar .inst-detail-mobile-back:hover,
body .inst-detail-page .inst-detail-mobile-bar .inst-back:hover {
	background: rgba(77, 74, 129, 0.08);
	color: var(--Primary-Color, #4d4a81);
	text-decoration: none;
}

@media (min-width: 768px) {
	body .inst-detail-page .inst-detail-mobile-bar {
		display: none;
	}
}

@media (max-width: 767.98px) {
	body .inst-detail-page {
		overflow-x: hidden;
	}
	body .inst-detail-page:has(.inst-detail-mobile-bar) .inst-panel-head h3 {
		display: none;
	}
	body .inst-detail-page:has(.inst-detail-mobile-bar) .inst-panel-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}
	body .inst-detail-page .inst-see-all {
		white-space: normal;
		line-height: 1.35;
	}
	body .inst-detail-page .inst-detail-panel {
		margin-top: 8px;
		padding: 12px 10px 14px;
		border-radius: 14px;
	}
	body .inst-detail-page .inst-panel-intro {
		font-size: 0.84rem;
		margin-bottom: 12px;
	}
	body .inst-detail-page .inst-teacher-card-actions .btn {
		flex: 1 1 auto;
		min-width: calc(50% - 6px);
	}
}

/* Exam builder (teacher/exams) */
body .exb-page {
	overflow-x: hidden;
}
body .exb-page .exb-field .edu_form_field,
body .exb-page .exb-field textarea.edu_form_field,
body .exb-page .exb-field input.edu_form_field,
body .exb-page .exb-field select.edu_form_field {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	display: block;
	min-height: 44px;
	height: auto;
	margin-top: 0;
	border-radius: 10px;
	padding: 10px 12px;
	border: 1px solid rgba(15, 23, 42, 0.12);
	font-size: 0.92rem;
}
body .exb-page .exb-field textarea.edu_form_field {
	min-height: 96px;
	resize: vertical;
	line-height: 1.45;
	padding: 10px 12px;
}
body .exb-page .exb-field input[type="file"].edu_form_field {
	padding: 8px 10px;
	font-size: 0.82rem;
	background: #fafbfc;
}
body .exb-page .exb-field .edu-auth-select {
	width: 100%;
	min-width: 0;
}
body .exb-page .exb-field .edu-auth-select-menu {
	z-index: 120;
}
body .exb-page .exb-card {
	overflow: visible;
}
@media (max-width: 767.98px) {
	body .exb-page .inst-detail-container {
		padding-left: 10px;
		padding-right: 10px;
	}
	body .exb-page .exb-card {
		padding: 14px 12px;
		border-radius: 14px;
	}
	body .exb-page .exb-field-grid,
	body .exb-page .exb-question-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	body .exb-page .exb-actions {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}
	body .exb-page .exb-actions .btn {
		width: 100%;
		min-height: 44px;
		margin: 0;
	}
	body .exb-page .exb-answer-wrap {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}
	body .exb-page .exb-answer-buttons {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 8px;
		width: 100%;
	}
	body .exb-page .exb-answer-btn {
		width: 100%;
		min-width: 0;
		height: 44px;
	}
	body .exb-page .exb-local-item {
		flex-direction: column;
		align-items: stretch;
	}
	body .exb-page .exb-local-actions {
		width: 100%;
		padding-top: 4px;
	}
	body .exb-page .exb-local-edit,
	body .exb-page .exb-local-remove {
		min-height: 36px;
		padding: 6px 0;
	}
	body .exb-page .inst-card-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	body .exb-page .inst-card-grid .inst-batch-card .inst-card-body {
		padding: 12px;
	}
	body .exb-page .inst-teacher-card-actions {
		flex-direction: column;
		align-items: stretch;
	}
	body .exb-page .inst-teacher-card-actions .btn {
		width: 100%;
		min-width: 0;
	}
}


/* ---------- Public auth pages (login / aligned with Gradmo header) ---------- */
.edu-auth-page {
	min-height: 54vh;
	background: linear-gradient(180deg, #eef2fb 0%, #f6f8fc 45%, #f6f8fc 100%);
	padding-bottom: 48px;
}
.edu-auth-shell {
	overflow: hidden;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 12px 40px rgba(43, 66, 120, 0.12), 0 2px 8px rgba(43, 66, 120, 0.06);
	border: 1px solid rgba(72, 109, 230, 0.12);
}
.edu-auth-aside {
	background: linear-gradient(155deg, #5878ee 0%, #4a6ae4 45%, #3d5dce 100%);
	color: #fff;
	align-items: stretch;
	min-height: 540px;
}
.edu-auth-aside-inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px 36px;
	width: 100%;
}
.edu-auth-aside-title {
	font-size: 1.85rem;
	font-weight: 700;
	margin: 0 0 12px;
	letter-spacing: 0.02em;
}
.edu-auth-aside-text {
	font-size: 0.95rem;
	opacity: 0.95;
	line-height: 1.55;
	margin: 0 0 20px;
	max-width: 320px;
}
.edu-auth-aside-list {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	font-size: 0.88rem;
}
.edu-auth-aside-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	opacity: 0.95;
}
.edu-auth-aside-list i {
	opacity: 0.9;
}
.edu-auth-aside-visual {
	margin-top: auto;
	text-align: center;
	pointer-events: none;
	user-select: none;
}
.edu-auth-aside-visual img {
	max-width: 100%;
	height: auto;
	max-height: 200px;
	object-fit: contain;
	filter: drop-shadow(0 8px 24px rgba(15, 23, 42, 0.2));
}
.edu-auth-main {
	background: #fff;
}
.edu-auth-main-inner {
	padding: 28px 24px 32px;
}
@media (min-width: 992px) {
	.edu-auth-main-inner {
		padding: 40px 44px 44px;
	}
}
.edu-auth-breadcrumb {
	font-size: 0.82rem;
	color: #64748b;
	margin-bottom: 12px;
}
.edu-auth-breadcrumb a {
	color: #4a6ae4;
	font-weight: 600;
	text-decoration: none;
}
.edu-auth-breadcrumb a:hover {
	text-decoration: underline;
}
.edu-auth-breadcrumb-sep {
	margin: 0 6px;
	color: #cbd5e1;
}
.edu-auth-heading {
	font-size: 1.55rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 6px;
}
.edu-auth-sub {
	font-size: 0.92rem;
	color: #64748b;
	margin: 0 0 24px;
	line-height: 1.5;
}
.edu-auth-form-card {
	border: 0;
	box-shadow: none;
	padding: 0;
	margin: 0;
}
.edu-auth-page .edu-auth-tabs {
	border: 0;
	gap: 8px;
	flex-wrap: nowrap;
}
.edu-auth-page .edu-auth-tabs .nav-item {
	flex: 1 1 50%;
	text-align: center;
}
.edu-auth-page .edu-auth-tabs .nav-link {
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	font-weight: 600;
	font-size: 0.9rem;
	color: #475569;
	padding: 10px 12px;
	background: #f8fafc;
}
.edu-auth-page .edu-auth-tabs .nav-link:hover {
	border-color: #cbd5e1;
	color: #334155;
}
.edu-auth-page .edu-auth-tabs .nav-link.active {
	color: #fff;
	background: linear-gradient(135deg, #5b7af0, #4a6ae4);
	border-color: transparent;
}
.edu-auth-tab-content {
	padding-top: 4px;
}
.edu-auth-field {
	margin-bottom: 18px;
}
.edu-auth-label {
	display: block;
	font-size: 0.8rem;
	font-weight: 600;
	color: #334155;
	margin-bottom: 6px;
}
.edu-auth-page .edu_field_holder {
	margin-bottom: 0;
}
.edu-auth-input,
.edu-auth-page .edu_form_field {
	border-radius: 10px;
	border: 1px solid #e2e8f0;
	padding: 12px 14px;
	font-size: 0.95rem;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.edu-auth-page select.edu_form_field,
.edu-auth-page select.edu-auth-input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #ffffff;
	padding-right: 46px;
	cursor: pointer;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
	background-image:
		linear-gradient(45deg, transparent 50%, #64748b 50%),
		linear-gradient(135deg, #64748b 50%, transparent 50%),
		linear-gradient(to right, transparent, transparent);
	background-position:
		calc(100% - 18px) calc(50% - 3px),
		calc(100% - 12px) calc(50% - 3px),
		calc(100% - 44px) 50%;
	background-size:
		6px 6px,
		6px 6px,
		1px 60%;
	background-repeat: no-repeat;
}
.edu-auth-page select.edu_form_field:hover,
.edu-auth-page select.edu-auth-input:hover {
	border-color: #cbd5e1;
	transform: translateY(-1px);
}
.edu-auth-page select.edu_form_field:focus,
.edu-auth-page select.edu-auth-input:focus {
	border-color: #4a6ae4;
	box-shadow: 0 0 0 3px rgba(74, 106, 228, 0.15);
	outline: none;
	transform: translateY(0);
}
.edu-auth-page select.edu_form_field:disabled,
.edu-auth-page select.edu-auth-input:disabled {
	background-color: #f1f5f9;
	cursor: not-allowed;
	opacity: 0.8;
}
.edu-auth-page select.edu_form_field::-ms-expand,
.edu-auth-page select.edu-auth-input::-ms-expand {
	display: none;
}

/* --- Auth custom animated dropdown (replaces native select UI) --- */
.edu-auth-select-native {
	position: absolute !important;
	left: -99999px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}
.edu-auth-select {
	position: relative;
	width: 100%;
}
.edu-auth-select-btn {
	width: 100%;
	text-align: left;
	border-radius: 10px;
	border: 1px solid #e2e8f0;
	padding: 12px 46px 12px 14px;
	font-size: 0.95rem;
	background: #ffffff;
	color: #0f172a;
	cursor: pointer;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.edu-auth-select-btn:hover {
	border-color: #cbd5e1;
	transform: translateY(-1px);
}
.edu-auth-select.is-open .edu-auth-select-btn,
.edu-auth-select-btn:focus {
	border-color: #4a6ae4;
	box-shadow: 0 0 0 3px rgba(74, 106, 228, 0.15);
	outline: none;
	transform: translateY(0);
}
.edu-auth-select-value {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.edu-auth-select-caret {
	flex: 0 0 auto;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 7px solid #64748b;
	transition: transform 0.18s ease;
}
.edu-auth-select.is-open .edu-auth-select-caret {
	transform: rotate(180deg);
}
.edu-auth-select-menu {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 8px);
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-radius: 12px;
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
	padding: 8px;
	margin: 0;
	list-style: none;
	max-height: 260px;
	overflow: auto;
	z-index: 30;
	opacity: 0;
	transform: translateY(-6px) scale(0.98);
	pointer-events: none;
	transition: opacity 0.16s ease, transform 0.16s ease;
}
.edu-auth-select.is-open .edu-auth-select-menu {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}
.edu-auth-select-option {
	border-radius: 10px;
	padding: 10px 12px;
	font-weight: 600;
	font-size: 0.92rem;
	color: #0f172a;
	cursor: pointer;
	transition: background 0.12s ease, color 0.12s ease;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.edu-auth-select-option:hover,
.edu-auth-select-option.is-active {
	background: rgba(74, 106, 228, 0.1);
	color: #1e3a8a;
}
.edu-auth-select-option.is-selected {
	background: linear-gradient(135deg, rgba(91, 122, 240, 0.16), rgba(74, 106, 228, 0.12));
}
.edu-auth-select-check {
	display: none;
	color: #4a6ae4;
}
.edu-auth-select-option.is-selected .edu-auth-select-check {
	display: inline-flex;
}
.edu-auth-page .edu_form_field:focus {
	border-color: #4a6ae4;
	box-shadow: 0 0 0 3px rgba(74, 106, 228, 0.15);
	outline: none;
}
.edu-auth-password-wrap {
	position: relative;
}
.edu-auth-password-wrap .edu-auth-input,
.edu-auth-password-wrap .edu_form_field {
	padding-right: 48px;
	width: 100%;
}
.edu-auth-toggle-pw {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	border: 0;
	background: transparent;
	color: #64748b;
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	cursor: pointer;
}
.edu-auth-toggle-pw:hover {
	background: #f1f5f9;
	color: #334155;
}
.edu-auth-row-split {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 12px;
}
.edu-auth-page .edu-auth-row-split .loginLinks.checkbox_holder {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
}
.edu-auth-page .edu-auth-row-split .checkbox_holder input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: #4a6ae4;
	cursor: pointer;
}
.edu-auth-forgot {
	font-size: 0.88rem;
	font-weight: 600;
	color: #4a6ae4;
	text-decoration: none;
}
.edu-auth-forgot:hover {
	text-decoration: underline;
}
.edu-auth-page .verification_otp {
	width: 100%;
	margin-bottom: 8px;
}
.edu-auth-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	margin-top: 8px;
}
.edu-auth-actions--otp {
	margin-top: 16px;
}
.edu-auth-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 22px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 0.93rem;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.edu-auth-btn--primary {
	background: linear-gradient(135deg, #5b7af0, #4a6ae4);
	color: #fff !important;
	box-shadow: 0 4px 14px rgba(74, 106, 228, 0.35);
}
.edu-auth-btn--primary:hover {
	filter: brightness(1.05);
	color: #fff !important;
	text-decoration: none;
	box-shadow: 0 6px 18px rgba(74, 106, 228, 0.4);
}
.edu-auth-btn--ghost {
	background: #f1f5f9;
	color: #334155 !important;
	border: 1px solid #e2e8f0;
}
.edu-auth-btn--ghost:hover {
	background: #e2e8f0;
	color: #0f172a !important;
	text-decoration: none;
}
.edu-auth-btn--outline {
	background: #fff;
	color: #4a6ae4 !important;
	border: 2px solid #4a6ae4;
}
.edu-auth-btn--outline:hover {
	background: #eff3ff;
	text-decoration: none;
}
.edu-auth-otp-intro {
	font-size: 0.88rem;
	color: #64748b;
	line-height: 1.5;
	margin: 0 0 20px;
}
.edu-auth-otp-send-row .edu-auth-btn {
	width: 100%;
}
@media (min-width: 576px) {
	.edu-auth-otp-send-row .edu-auth-btn {
		width: auto;
		min-width: 160px;
	}
}
.edu-auth-resend {
	font-size: 0.88rem;
}
.edu-auth-link-btn {
	background: none;
	border: 0;
	padding: 0;
	color: #4a6ae4;
	font-weight: 600;
	cursor: pointer;
	font-size: inherit;
}
.edu-auth-link-btn:hover:not(:disabled) {
	text-decoration: underline;
}
.edu-auth-link-btn:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}
.edu-auth-register {
	text-align: center;
	margin: 28px 0 0;
	padding-top: 22px;
	border-top: 1px solid #f1f5f9;
	font-size: 0.92rem;
	color: #64748b;
}
.edu-auth-register a {
	font-weight: 700;
	color: #4a6ae4;
	text-decoration: none;
}
.edu-auth-register a:hover {
	text-decoration: underline;
}
.edu-auth-page #registerStep1 .edu-auth-register {
	border-top: 0;
	padding-top: 0;
	text-align: left;
	font-size: 0.88rem;
	color: #64748b;
}
.edu-auth-page #registerStep1 .edu-auth-register a {
	font-weight: 700;
}
.edu-auth-page .reg_pw_toggle.edu-auth-toggle-pw {
	padding: 0;
}
@media (max-width: 991px) {
	.edu-auth-aside {
		min-height: auto;
	}
	.edu-auth-actions {
		flex-direction: column;
		align-items: stretch;
	}
	.edu-auth-actions .edu-auth-btn,
	.edu-auth-actions #otp_login_verify_wrap {
		width: 100%;
	}
	.edu-auth-actions #otp_login_verify_wrap .edu-auth-btn {
		width: 100%;
	}
}




