:root {
	--regular_fs      : 16px;
	--xl_fs           : 40px;
	--md_fs           : 22px;
	--sm_fs           : 14px;
    --border_color    : #ced4da;
	
    --color_darkblue  : #0428d1;
	--color_secondary : #373941;
	--color_dark      : #2d2d32;
	--color_purple    : #e3ccff;
	--color_cyan      : #bce5f8;
	--color_pink      : #f79999;

    --color_primary   : #ff6a06;
    --color_text      : #463d3a;
    --color_border    : rgb(204 214 245/1);
    --color_light_bg  : #ecefff;
    --lg_padding      : 80px;
    --lg_margin       : 80px;
}
body {
	font-family: 'Lato', sans-serif;
	font-size: var(--regular_fs);
	color: var(--color_text);
    line-height: 30px;
}
h1, h2, h3, h4 {
    font-family: 'Gloock', serif;
}
.bg_theme_light {
    background: var(--color_light_bg);
}
a {
	text-decoration: none;
	transition: all .3s;
    color: var(--color_primary);
}
a:hover {
	text-decoration: underline;
}
.breadcrumb-item.active {
    color: inherit;
}
h2.sec_title {
    text-align: center;
    font-size: var(--sm_fs);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--color_dark);
    font-size: 28px;
}
.login_button {
    min-width: 120px;
}
.btn {
	text-transform: capitalize;
	font-size: 14px;
    padding: 0.375rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    white-space: nowrap;
}
.page-item.active .page-link {
    background-color: var(--color_primary);
    border-color: var(--color_primary);
}
.pagination-sm .page-link {
    color: #000;
}
.btn:focus {
	box-shadow: none !important;
}
.btn:active {
	transform: scale(0.95);
}
.btn:hover {
	text-decoration: none;
}
.btn-primary, .btn-primary:hover, .btn-primary:focus {
    color: #fff;
    background-color: var(--color_primary);
    border-color: var(--color_primary);
    transition: .3s;
}

.btn-outline-dark {
    color: var(--color_text);
    border-color: var(--color_text);
}
.btn-outline-dark:hover {
    background: var(--color_text);
}
.text-primary {
    color: var(--color_primary) !important;
}


.navbar-toggler {
    padding: .25rem;
}


@media(min-width: 992px) {        
    .py-5 {
        padding-top: 4.5rem!important;
        padding-bottom: 4.5rem!important;
    }
    .px-5 {
        padding-left: 4.5rem!important;
        padding-right: 4.5rem!important;
    }
    .ps-5 {
        padding-left: 4.5rem!important;
    }
    .pe-5 {
        padding-right: 4.5rem!important;
    }
    .my-5 {
        margin-top: 4.5rem!important;
        margin-bottom: 4.5rem!important;
    }
    .pb-5 {
        padding-bottom: 4.5rem!important;
    }
    .pt-5 {
        padding-top: 4.5rem!important;
    }
    .mb-5 {
        margin-bottom: 4.5rem!important;
    }
    .mt-5 {
        margin-top: 4.5rem!important;
    }
}
@media (min-width: 768px){
    .mt-md-0 {
        margin-top: 0!important;
    }
    .mb-md-0 {
        margin-bottom: 0!important;
    }
}

.navbar-light .navbar-nav .nav-link {
    color: var(--color_text);
    text-transform: capitalize;
    font-weight: 600;
    margin: 0 5px;
}


.hamburger {
    border: 0;
    padding: 0;
    background: transparent;
}
.hamburger .line {
    width: 28px;
    height: 2px;
    background-color: #000;
    display: block;
    margin: 6px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
}
.hamburger .line:nth-child(1) {
    margin-top: 0;
}
.hamburger .line:nth-child(3) {
    margin-bottom: 0;
}

.navbar-light .navbar-brand img {
    width: 100%;
}
.header_form {
    width: 55%;
    border: 1px solid var(--border_color);
    position: relative;
    border-radius: .25rem;
}
.header_form:after {
    content: "";
    height: 70%;
    width: 1px;
    background: var(--border_color);
    position: absolute;
    top: 50%;
    left: calc(40% - 1px);
    transform: translateY(-50%);
    z-index: 11;
}
.header_form select.form-select {
    border: 0;
    width: 40%;
    color: var(--color_text);
    box-shadow: none !important;
    font-weight: 600;
    font-size: var(--regular_fs);
}
.header_form .btn {
    min-width: auto;
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    width: 20%;
    border-radius: .25rem;
}
.header_form .input-group {

}
header .nav-item a.btn.btn-outline-dark {
    border-radius: 50px;
    margin: 0 7px;
}
header .nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
}
button.nav_search {
    height: 37px;
    width: 37px;
    border: 0;
    background: transparent;
    font-size: 20px;
    padding: 0;
    margin-left: 5px;
}

form.search_header input[type="text"] {
    display: none;
    height: 100%;
    border: 0;
    border-radius: 0;
    padding-left: 30px;
}
form.search_header.active {
    position: absolute;
    background: #fff;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 99;
}
form.search_header.active input[type="text"] {
    display: block;
}
form.search_header.active .search_btns {
    position: absolute;
    top: 0;
    right: 20px;
    height: 100%;
    display: flex;
    align-items: center;
}
.search_btns {
   
}
form.search_header.active button.nav_search {
    z-index: 1;
}
form.search_header button.close_search {
    display: none;
}
form.search_header.active button.close_search {
    display: inline-block;
}
form.search_header.active button.close_search {
    display: inline-block;
    background: transparent;
    border: 0;
    font-size: 26px;
    opacity: .24;
    margin-left: 15px;
}


.hero {
    /* background: #f6efe9; */
}
.hero .owl-nav {
    display: none;
}
.sub_text {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
}
.title_with_line span {
    width: 100px;
    height: 2px;
    background: #000;
    display: inline-block;
    margin-bottom: 10px;
    margin-left: 10px;
}
p.hero_para {
    font-size: 16px;
}
.hero_single {
    padding: var(--lg_padding) 0;
    background: #f6efe9;
    margin-bottom: 140px;
}
img.hero_img {
    margin-bottom: -218px;
}   

.owl_dots_nav {
    margin-top: 30px;
    display: flex;
    align-items: center;
}
.owl_dots_nav .owl-nav-clone {
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 24px;
    width: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.owl-dots.owl-dot-clone {
    display: flex;
    align-items: center;
}
.owl_dots_nav .owl-prev.owl-nav-clone {
    order: 1;
    margin-right: 15px;
}
.owl_dots_nav .dots {
    order: 2;
}
.owl_dots_nav .owl-next.owl-nav-clone {
    order: 3;
    margin-left: 15px;
}
.owl_dots_nav .dots button.owl-dot {
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
    margin: 2px;
    border: 3px solid #f6efe9;
    padding: 0;
}
.owl_dots_nav .dots button.owl-dot.active {
    border: 3px solid #000;
    background: #f6efe9;
}


.hero+section {
    margin-top: -140px;
}
.info_title p {
    width: 80%;
    margin-bottom: 0;
}
.info_items {
    margin-top: 132px;
}
.icon_with_info {
    display: flex;
    align-items: flex-start;
}
.icon_with_info>div {
    margin-left: 24px;
}
.icon_with_info>div h5 {
    font-weight: 800;
}
.icon_with_info img {
    margin-top: -15px;
    height: 60px;
}
.icon_with_info p {
    color: #983812;
    margin-bottom: 0;
}

.latest_card {
    padding: 24px;
}
.latest_card .card_title {
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
    margin-bottom: 18px;
}
.latest_card .card_title h5 {
    color: #fff;
    margin-bottom: 0;
}
.latest_card p.fw-bold {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 10px;
}
.latest_card p:not(p.fw-bold) {
    font-size: var(--regular_fs);
    line-height: 22px;
    margin-bottom: 35px;
}
.latest_card .card_title .time {
    letter-spacing: 2px;
    font-weight: 600;
    font-size: var(--sm_fs);
    line-height: 24px;
}


.latest_slide_nav_dot {
    display: flex;
    align-items: center;
}
.latest_slide_nav_dot .owl-nav-clone {
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 24px;
    width: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.owl-dots.owl-dot-clone {
    display: flex;
    align-items: center;
}
.latest_slide_nav_dot .owl-prev.owl-nav-clone {
    order: 1;
    margin-right: 15px;
}
.latest_slide_nav_dot .dots {
    order: 2;
}
.latest_slide_nav_dot .owl-next.owl-nav-clone {
    order: 3;
    margin-left: 15px;
}
.latest_slide_nav_dot .dots button.owl-dot {
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
    margin: 2px;
    border: 3px solid #f6efe9;
    padding: 0;
}
.latest_slide_nav_dot .dots button.owl-dot.active {
    border: 3px solid #000;
    background: #f6efe9;
}
.latest_slider .owl-nav {
    display: none;
}


.course_simple_card {
    background: #f6efe9;
    padding: 20px;
    height: 100%;
    color: var(--color_text);
    min-height: 180px;
}
.latest_section  a:hover {
    text-decoration: none !important;
}
.course_simple_card .head {
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    margin-bottom: 11px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    letter-spacing: 1px;
    font-size: var(--sm_fs);
}
.course_simple_card .body {
    line-height: 22px;
}

.title_with_line.icon img {
    margin-right: 20px;
}
.result_sub_text {
    font-family: 'Gloock', serif;
    font-size: 24px;
    margin: 70px 0;
}

.result_client {
    position: relative;
}
.result_client img.user_img {
    position: absolute;
    left: 42%;
    bottom: 0;
    transform: translateX(-50%);
    height: 441px;
    z-index: -1;
}
.result_client:after {
    content: "";
    background: #f5efe8;
    height: 100%;
    width: 50%;
    position: absolute;
    top: 0;
    left:0;
    z-index: -2;
}
.result_client:before {
    content: "";
    background: #e9c4b5;
    height: 100%;
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -2;
}


.client_img {
    width: 33.333%;
    margin-bottom: 30px;
}
.client_img img {
    width: auto;
    max-height: 50px;
    height: 100%;
    display: block;
    margin: 0 auto;
}


.standards_sec {
    background: #f5efe7;
}
.standards_image {
    display: flex;
    justify-content: space-between;
}
.standards_image img {
    max-height: 76px;
    height: 100%;
    margin-right: 15px;
}
.standards_image img:last-child {
    margin-right: 0;
}
.footer_form input, .footer_form textarea {
    width: 70%;
    display: block;
    border: 0;
    border-bottom: 1px solid #939b91;
    resize: none;
    height: 45px;
    padding: 0;
    outline: none;
}
.footer_form textarea {
    padding-top: 7px;
}
.footer_form .form_title {
    font-size: 18px;
    margin-bottom: 5px;
}
form.footer_form {
    margin-left: 50px;
}
.teach {
    margin-left: 50px;
}
.footer_item ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.footer_item ul li a {
    color: #666666;
}
.footer_item .f_title {
    font-weight: 600;
    margin-bottom: 7px;
}
.footer_item {
    margin-bottom: 20px;
}



.title_banner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}
.title_banner .title_banner_sub_text {
    margin: 0;
    font-weight: 600;
    color: #fff;
    letter-spacing: 2px;
}
.title_banner h4 {
    margin-top: 14px;
    margin-bottom: 35px;
    position: relative;
}
.title_banner h4:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 2px;
    background: #000;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}
.title_banner .title_banner_paragraph {
    font-size: 20px;
}


.details_banner.title_banner h4:after {
    display: none;
}   
.details_banner.title_banner .title_banner_paragraph {
    font-weight: 600;
}
span.small_letter_spacing {
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
}



.filter_sidebar {
    border-top: 1px solid #000;
}
.filter_sidebar .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}
.filter_sidebar .head h5 {
    font-family: 'Gloock', serif;
    margin: 0;
}


.filter_sidebar .accordion-item {
    margin-bottom: 10px;
    border: 0;
}
.filter_sidebar .accordion-item:first-of-type .accordion-button {
    border-radius: 0;
}
.filter_sidebar .accordion-button {
    background: #ffc9a7;
    box-shadow: none;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    padding: 0.7rem 1rem;
    border-radius: 0;
}
.filter_sidebar .accordion-button::after {
    content: "\f4fe";
    font-family: "bootstrap-icons";
    background: #ffffff94;
    text-align: center;
    background-image: none;
    border-radius: 50%;
    line-height: 25px;
}
.filter_sidebar .accordion-button:not(.collapsed)::after {
    content: "\F2EA";
}
.filter_sidebar .accordion-button:not(.collapsed) {
    color: #000;
}
.filter_sidebar .accordion-body {
    background: #f5efe7;
}
.filter_sidebar .accordion-body ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.form-check-input {
    width: 1.3em;
    height: 1.3em;
}
.form-check-input:checked {
    background-color: #ff6907;
    border-color: #ff6907;
}
.form-check .form-check-input {
    margin-left: -2em;
}
.form-check-input:focus {
    border-color: #ff6907;
    outline: 0;
    box-shadow: 0 0 10px 0.1rem rgb(255 105 7 / 51%);
}


.big_group {
    background: #d9b155;
    padding: 19px;
}
.big_group h5 {
    color: #fff;
    border-bottom: 1px solid #fff;
    padding-bottom: 12px;
}
.big_group p {
    line-height: 22px;
}

.pro_card .col_one .d-flex {
    line-height: 20px;
}
.pro_card .col_one .d-flex img {
    margin-right: 15px;
    height: 24px;
    margin-top: 4px;
}


.pro_card {
    display: flex;
}
.pro_card {
    background-color: #f7ecdc;
    padding: 15px;
    margin-bottom: 15px;
}
.pro_card>* {
    padding: 0 15px;
}
.pro_card .col_one {
    width: 40%;
    border-right: 2px solid #000;
    margin-bottom: 0;
}
.pro_card .col_two {
    line-height: 20px;
}
.pro_card .col_three {

}
.col_two .description {
    font-size: 13px;
}
.col_one p {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
}
.col_two .course_para {
    letter-spacing: 2px;
    font-size: 12px;
}
span.founder {
    font-size: 12px;
}
footer.py-5 {
    border-top: 1px solid #ddd;
}




/* DETAILS PAGE CSS */
.courses_plan {
    margin-bottom: 30px;
}
.class_item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.class_items .class_item .info {
    width: 70%;
}
.class_items .class_item .price {
    width: 30%;
    text-align: right;
}
.class_item .info p {
    line-height: 20px;
    margin-bottom: 0;
}
.class_item .price {
    /* font-weight: 600; */
    font-size: 28px;
    font-family: 'Gloock', serif;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.class_item .price span {
    font-size: 18px;
    line-height: 1;
    margin-top: 2px;
    margin-right: 4px;
}
.class_items .class_item {
    margin-bottom: 15px;
}
.class_items .class_item:last-child {
    margin-bottom: 0;
}

.course_btn {
    display: flex;
    align-items: center;
}
.course_btn p {
    margin-bottom: 0;
    font-weight: 600;
    line-height: 20px;
    margin-left: 20px;
}

p.after_btn_text {
    line-height: 24px;
    margin-top: 21px;
    border-top: 1px solid #473d39;
    padding-top: 15px;
    font-weight: 600;
    font-size: 14px;
}
p.after_btn_text a {
    color: var(--color_text);
    font-style: italic;
}
.bg_theme_light_orange {
    background: #f5efe7;
}



.attend_labels {
    margin-bottom: 15px;
}
.attend_labels h5.label_title {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin-left: 7px;
}
span.label_item.bg {
    background: #fff;
}
span.label_item {
    padding: 6px 7px;
    margin-right: 7px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}
a.label {
    color: #000;
    display: inline-block;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 600;
    margin-right: 5px;
    margin-bottom: 5px;
}
a.label.purple {
    background: #bfc3f8;
}
a.label.seaGreen {
    background: #b9eaec;
}


.header_form select.form-select+.ms-options-wrap {
    width: 40%;
    margin-left: 0;
}
.header_form select.form-select+.ms-options-wrap button {
    margin: 0;
    border: 0;
    color: inherit;
    font-weight: 600;
    border-radius: 0.5rem;
}
.ms-options-wrap > .ms-options ul {
    list-style: none;
    padding: 0;
}
.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: 0;
}
.ms-options-wrap > .ms-options > ul label {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 0px 10px;
    margin: 1px 0;
    font-size: 14px;
}


.ms-options-wrap > .ms-options > ul input[type="checkbox"] {
    display: none;
}
.ms-options-wrap > .ms-options > .ms-search input {
    width: 100%;
    padding: 1px 10px;
    border: none;
    border-bottom: 0;
    outline: none;
    font-size: 14px;
    border-bottom: 1px solid #000;
    color: #000;
    border-radius: 0;
}
.ms-options-wrap > .ms-options > .ms-search input::placeholder {
    color: #000;
}
.ms-options-wrap > .ms-options {
    margin-bottom: 0;
    padding: 4px;
    width: 220px;
    box-shadow: 0px 6px 15px 0px #00000038;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    z-index: 1000;
    border: 0;
}
.ms-options-wrap > .ms-options ul {
    margin-bottom: 0;
    margin-top: 4px;
}
.ms-options-wrap > .ms-options > ul label {
    border-radius: 4px;
}
.ms-options-wrap > .ms-options > ul li.selected label, .ms-options-wrap > .ms-options > ul label:hover {
    background-color: #5f7fbd33;
}
.ms-options-wrap > button:after {
    content: ' ';
    height: 0;
    position: absolute;
    top: 50%;
    right: 8px;
    width: 0;
    border: 4px solid rgba(0, 0, 0, 0);
    border-top-color: #999;
    margin-top: -2px;
}
.ms-options-wrap > button:focus, .ms-options-wrap > button {
    padding-left: 8px;
}