html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
}
* {
  box-sizing: border-box;
}
a,
a:link,
a:visited,
a:active,
a:hover,
button,
input,
select,
textarea,
i {
    text-decoration: none;
    outline: none;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

input,
select,
textarea {
    width: 100%;
    outline: none;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
    box-shadow: none;
}

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

img {
    max-width: 100%;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

:root {
    scrollbar-width: thin !important;
    --green-color: #1DBBB2;
    --lightgrey-color: #f9f9f9;
    --grey1-color: #f9f9f9;
    --grey2-color: #3B3B3B;
    --grey3-color: #f1f1f1;
    --grey4-color: #353535;
    --grey5-color: #808080;
    --grey6-color: #606060;
    --grey7-color: #E8EAEE;
    --grey8-color: #E8EAEE;
    --white-color: #ffffff;
    --blue-color: #17274F;
    --orange-color: #F79320;
}



/* ============================================================================ 

        Header Css

============================================================================ */

.header {
    position: sticky;
    top: 0;
    /*background-color: var(--lightgrey-color);*/
    background-color: #f7f7f7;
    width: 100%;
    z-index: 100;
    padding-top: 5px;
    padding-bottom: 5px;
}

.nav-link {
    color: var(--grey2-color);
    font-size: 16px;
    font-family: 'Visby CF Medium';
}

.nav-link:hover,.nav-link.active {
    color: var(--orange-color);
}

.contact_menu_class {
    background: var(--orange-color);
    border-radius: 500px;
    color: #fff;
    padding: 6px 25px !important;
}

.nav-link.contact_menu_class {
    font-family: 'Visby CF Heavy';
}

.nav-link.contact_menu_class:hover {
    color: var(--white-color);
}
.navbar-toggler {
    box-shadow: none !important;
    outline: none !important;
}

.navbar-toggler-icon {
    background: url(../img/menuicon.png) no-repeat center;
    background-size: contain;
    width: 25px;
    /*filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(7deg) brightness(104%) contrast(101%);*/
}
/* ============================================================================ 

        Footer Css

============================================================================ */




/* ============================================================================ 

        Pages Css

============================================================================ */

.comtitle_main {
    font-family: 'Visby CF Medium';
    font-size: 72px;
    color: var(--white-color);
    line-height: 74px;
        margin-bottom: 20px;
}

.comcontent, .comcontent p {
    font-family: 'Visby CF Light';    
    font-size: 16px;    
    line-height: 22px;
}

.mb3 {
    margin-bottom: 3rem;
}

.color_grey1 {
    color: var(--grey1-color);
}

.color_grey2 {
    color: var(--grey2-color);
}

.color_green {
    color: var(--green-color);
}

.combuttonlink {
    background: var(--green-color);
    color: var(--white-color);
    font-size: 24px;
    font-family: 'Visby CF Bold';
    padding: 15px 45px;
    border-radius: 500px;
}
.combuttonlink.orangebg {
    background: var(--orange-color);
}
.combuttonlink:hover {
    color: var(--white-color);
}

#counter_section {
    background-color: var(--grey3-color);
    padding-top: 72px;
    padding-bottom: 72px;
}

.comtitle {
    font-family: 'Visby CF Demi Bold';
    font-size: 36px;
}

.box_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.iki_line {
    background: var(--green-color);
    height: 2px;
    width: 50px;
    margin-top: 10px;
}

.counter_digit {
    font-family: 'Visby CF Demi Bold';
    font-size: 56px;
    color: var(--grey4-color);
    line-height: 60px;
}
.counter_text {
    font-family: 'Visby CF Medium';
    font-size: 12px;
    color: var(--grey5-color);
}
.counter_content_wrapper {
    max-width: 612px;
    margin: 0 auto 35px;
    text-align: center;
}
.pagebox_grid {
    display: flex;
    gap: 1em;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}
.pagebox_wrap {
    width: 32%;
}
.pagebox_title {
    color: var(--orange-color);
    font-size: 26px;
    font-family: 'Visby CF Demi Bold';
    margin-top: 15px;
    line-height: 25px;
}
#latest_page_section .pagebox_button {
    margin-top: 0;
}
.pagebox_content {
    padding-top: 15px;
    padding-bottom: 15px;
}
.pagebox_button a {
    font-size: 16.07px;
    background-color: var(--orange-color);
    font-family: 'Visby CF Demi Bold';
    color: var(--white-color);
    border-radius: 500px;
    display: inline-block;
    padding: 6px 20px;
    /*border: 1px solid var(--orange-color);*/
}
.pagebox_button a.greenbg {
    background-color: #1DBBB2;
}
#latest_page_section {
    padding-top: 72px;
    padding-bottom: 72px;
}


.testimonials_wrappper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 40px;
}
.testimonials_box {
    width: 32%;
}
.testimonials_imgbox img {
    width: 100%;
}
.testimonials_imgbox {
    position: relative;
    overflow: hidden;
    background: var(--white-color);
    z-index: 0;
}   
.testimonials_imgbox::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 220px; 
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3), transparent);
  z-index: 9; 
  pointer-events: none;
}
.testimonials_imgbox .image,
.testimonials_intro_section,
.testimonials_intro,
.testimonials_name {
  position: relative;
  z-index: 1;
}
.testimonials_intro {
    font-family: 'Visby CF Regular';
    font-size: 16px;
    color: var(--white-color);
}
.testimonials_name {
    font-family: 'Visby CF Demi Bold';
    font-size: 16px;
    color: var(--white-color);
}
.testimonials_intro_section {
    position: absolute;
    bottom: 0;
    padding: 35px;
    z-index: 10;
}
#testimonials_section {
    padding-top: 72px;
    padding-bottom: 72px;
}

/******/
.testimonials_imgbox {
    position: relative;
    overflow: hidden;
    background: var(--white-color);
    z-index: 0;
    cursor: pointer; /* indicate clickable */
}

.testimonials_imgbox .image,
.testimonials_imgbox video {
    width: 100%;
    height: auto;
    display: block;
}

.testimonials_imgbox video {
    max-height: 100%;
    object-fit: cover;
}
.testimonials_imgbox::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 220px; 
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3), transparent);
  z-index: 9; 
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.testimonials_imgbox.video-playing::before {
  opacity: 0;
}



.box_features .features_inner {
    padding: 28px;
    min-height: 170px;
    display: flex;
    flex-wrap: wrap;
}
.features_inner {
    background: var(--grey7-color);
    border-radius: 30px;
    padding: 30px;
}
.features_half {
    width: 49%;
}
.features_upper, .features_bottom{
    display: flex;
    gap: 1rem;
}
.features_eight {
    width: 80%;
}
.features_four {
    width: 40%;
}
.features_upper {
    margin-bottom: 20px;
}
.features_intro_content {
    font-family: 'Visby CF Light';
    font-size: 16px;
    color: var(--grey6-color);
    line-height: 18px;
}
.box_features .features_inner .pagebox_title { 
    display: flex;
    align-items: end;
}
.features_inner .pagebox_title {
    line-height: 28px;
    margin-bottom: 8px;
    margin-top: 0;    
}
#features_section {
    padding-top: 72px;
    padding-bottom: 72px;
}
.logo_block {
    background-color: var(--grey8-color);
    border-radius: 30px;
    padding: 20px 35px;
}
.academic_partner_logos .academic_logo_block,
.corporate_partner_logos .academic_logo_block,
.corporate_pagepartner_logos .academic_logo_block,
.about_logos .academic_logo_block,
.university_academic_partner_logos .academic_logo_block,
.university_logos .academic_logo_block {
  display: flex;
  align-items: center;
  justify-content: center;
}
.academic_logo_block .image {
  max-width: 100%;
  max-height: 100%;
}
.academic_logo_block {
  padding: 10px;
  min-height: 120px;
}
.academic_logo_block .image img {
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
}
#partner_logo_section {
    padding-top: 72px;
    padding-bottom: 72px;
}
.about_logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    /*padding: 20px;*/
}
.about_logos img {
  object-fit: contain;
  justify-self: center; 
}
.university_logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    /*padding: 20px;*/
}
.university_logos img {
  object-fit: contain;
  justify-self: center; 
}
.logo_full_box_inner h2, .logolist_content_wrapper h2 {
    margin-bottom: 35px;
}



.logo_full_box {
    display: flex;
    align-items: center;
}
.logo_title {
    color: var(--blue-color);
    font-family: 'Visby CF Bold';
    font-size: 42px;
    line-height: 42px;
    width: 24%;
}
.logo_title span {
    color: var(--orange-color);
}
.academic_partner {
    margin-bottom: 15px;
}
.logo_list {
    width: 75%;
    border-left: 2px solid #AFAFAF;
    padding-left: 2%;
}
.bottom_info_box .pagebox_title {
    margin-top: 0;
    margin-bottom: 0;
}
.bottom_info_box {
    margin-bottom: 12px;
}
.bottom_info_box .pagebox_title span {
    margin-right: 10px;
}
#features_section .row {
    align-items: center;
}
.footer {
    background-color: #f7f7f7;
    padding-top: 72px;
    padding-bottom: 72px;
    margin-top: 72px;
}
.copyright_info p {
    margin-bottom: 0;
}
.footer_inco_block img {
    margin-right: 5px;
}
.footer_inco_block, .footer_inco_block a {
    font-family: 'Visby CF Regular';
    font-size: 20px;
    color: #2A2A2A;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer_inco_block a:hover {
    color: var(--orange-color);
}
.quick_links, .quick_links a {
    font-family: 'Visby CF Regular';
    font-size: 20px;
    color: #2A2A2A;
}
.quick_links {
    display: inline-flex;
}
.quick_links a:hover {
    color: var(--orange-color);
}
.copyright_info {
    font-family: 'Visby CF Regular';
    font-size: 15px;
    color: #252525;
}
.social_info {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
}
.inline-menu span {
    font-weight: bold;
}
.kaizen_inner_wrapper {
    background-color: #17274F;
    padding: 112px 50px;
    border-radius: 30px;
}
.kaizen_btn_link.btn_link1.pagebox_button {
    margin-top: 0;
}
.kaizen_center_content {
    margin-top: 15px;
    margin-bottom: 15px;
}
.kaizen_btn_link.btn_link1.pagebox_button.withoutbg_btn a {
    background: transparent;
    border: 1px solid #ffffff;
}
.kaizen_center_title {
    font-family: 'Visby CF Bold';
    font-size: 36px;
    color: #fff;
    text-align: center;
    line-height: 35px;
    /*margin-bottom: 15px;*/
}
.kaizen_center_content {
    font-family: 'Visby CF Light';
    font-size: 16px;
    color: #fff;
    text-align: center;
}
.kaizen_button_section {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 10px;
}
.kaizen_center_image img {
    width: 100%;
    border-radius: 30px;
}
.kaizen_center_image {
    margin-top: 50px;
    margin-bottom: 50px;
}
.kaizen_center_title span {
    color: #F79320;
}
.content_in_wrap {
    max-width: 640px;
    margin: 0 auto;
}
.mt_40 {
    margin-top: 40px;
}
.latest_product_section ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    /*justify-content: center;*/
}
.latest_product_section ul li {
    background: #F1F1F1;
    border-radius: 24px;
    padding: 40px 20px;
    width: 32.49%;
}
.latest_product_section {
    margin-top: 25px;
}
.product_title {
    color: #17274F;
    font-size: 24px;
    font-family: 'Visby CF Demi Bold';
    line-height: 25px;
    min-height: 50px;
}
/*.single_corporate_section .product_short_features {
    min-height: 185px;
}*/
.product_short_info {
    color: #3B3B3B;
    font-size: 16px;
    font-family: 'Visby CF Light';
    margin-top: 10px;
    margin-bottom: 20px;
}
.product_short_features ul li {
    width: 100%;
    padding: 0;
    color: #3B3B3B;
    font-size: 16px;
    font-family: 'Visby CF Demi Bold';
}
.product_short_features ul {
    display: block;
    width: 100%;
}
.product_short_features ul li img {
    margin-right: 6px;
}
.product_short_features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product_short_features ul li {
  position: relative;
  padding-left: 20px; 
  margin-bottom: 2px;
}

.product_short_features ul li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 12px;
  height: 12px;
  background-image: url('../img/check_1.png');
  background-size: contain;
  background-repeat: no-repeat;
}
.course_detail_btn {
    margin-top: 30px;
}
.kaizen_course_search_wrapper {
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
    align-items: center;
}
.kaizen_course_select, .kaizen_course_select select {
    border: 0;
    background: #f7f7f7;
    color: #252525;
    font-family: 'Visby CF Bold';
    font-size: 30px;
}
.kaizen_course_search {
    background: #f7f7f7;
    border-radius: 49px;
    margin-top: 30px;
    margin-bottom: 55px;
}
.kaizen_course_select select {
    width: 100%;
    appearance: none;            /* Remove default arrow (for most modern browsers) */
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    border: 0;
    appearance: none;          /* Standard */
    -webkit-appearance: none;  /* Safari/Chrome */
    -moz-appearance: none;     /* Firefox */
    background: none;   
}
.kaizen_course_select {
    position: relative;
}
.kaizen_course_select .custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 14px;
    color: #252525;
    left: 330px;
}
.mission_label {
    font-family: 'Visby CF Demi Bold';
    font-size: 24px;
    color: #1DBBB2;
    line-height: 30px;
    margin-bottom: 10px;
}
.mission_conten {
    color: #3B3B3B;
    font-size: 16px;
    font-family: 'Visby CF Light';
}
.border_box_wrap {
    border: 1px solid #E4E4E4;
    border-radius: 24px;
    padding: 40px 35px;
}
.border_box_wrap {
    margin-bottom: 25px;
}
.features_last_bottom {
    margin-top: 20px;
}
.mission_conten ul {
    display: flex;
    gap: 1rem;
    margin-top: 20px;
}
.role_based_lable {
    color: #3B3B3B;
    font-size: 16px;
    font-family: 'Visby CF Bold';
    margin-top: 15px;
}
.role_based_content ul li {
    background: #F1F1F1;
    border: 1px solid #e4e4e4;
    border-radius: 12px;
    padding: 5px 15px;
}
.role_based_content ul {
    margin-top: 12px;
}
.page-id-70 #partner_logo_section {
    padding-top: 72px;
}
.role_based_content.in_label ul li {
    color: #5b5b5b;
    font-family: 'Visby CF Demi Bold';
    font-size: 24px;
}
.role_based_content.in_label ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
#features_section .latest_product_section {
    margin-top: 72px;
}
#phase_section {
    padding-top: 72px;
    padding-bottom: 72px;
}
.phase_label {
    font-family: 'Visby CF Demi Bold';
    font-size: 16px;
    color: #3b3b3b;
    margin-bottom: 5px;
}
.phase_title {
    font-family: 'Visby CF Demi Bold';
    font-size: 24px;
    color: #1DBBB2;
    line-height: 25px;
    margin-bottom: 15px;
    min-height: 75px;
}
.phase_content {
    color: #3B3B3B;
    font-size: 16px;
    font-family: 'Visby CF Light';
    line-height: 20px;
    min-height: 100px;
}
#learner_support {
    padding-top: 72px;
    padding-bottom: 72px;
}
.learner_data_inlabel {
    font-family: 'Visby CF Medium';
    font-size: 16px;
    color: #3b3b3b;
}
.learner_data_innumber {
    font-family: 'Visby CF Demi Bold';
    font-size: 16px;
    color: #252525;
}
.learner_data {
    margin-top: 30px;
}
.learner_data {
    margin-top: 30px;
    display: flex;
    gap: 2rem;
}
span.learner_data_innumber {
    border: 1px solid #d2d2d2;
    border-radius: 18px;
    padding: 8px 18px;
}
.learner_data_in {
    gap: 1rem;
    display: flex;
    align-items: center;
    flex-wrap:wrap;
}
.learner_data_in img {
    margin-right: 5px;
}
.inner_wrapper_bx {
    padding-top: 72px;
    padding-bottom: 72px;
    background-color: #F7F7F7;
}
.inner_wrapper_bx .comtitle_main {
    font-family: 'Visby CF Medium';
    font-size: 72px;
    color: #F79320;
}
.inner_wrapper_bx .comcontent {
    font-family: 'Visby CF Medium';
    font-size: 16px;
    color: #5B5B5B;
}
.inner_wrapper_bx .combuttonlink {
    background: #1DBBB2;
}
.inner_wrapper_bx .row {
    align-items: center;
}
.page-id-10 .counter_content_wrapper {
    max-width: 100%;
}
.contactbottom_inner_wrapper {
    background: #17274F;
    border-radius: 30px;
    padding: 55px;
}
.contactbottom_inner {
    max-width: 650px;
    margin: 40px auto;
    text-align: center;
}
.contactbottom_inner .pagebox_button {
    padding-top: 20px;
}
#contact_bottom_section {
    padding-top: 72px;
    padding-bottom: 72px;
}
.instructor_info_box {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
}
.instructor_designation {
    font-family: 'Visby CF Bold';
    font-size: 12px;
    color: #3b3b3b;
    text-transform: capitalize;
}
.instructor_duration {
    font-family: 'Visby CF Light';
    font-size: 12px;
    color: #3b3b3b;
}
.instructor_image_name {
    font-family: 'Visby CF Bold';
    font-size: 18px;
    text-transform: capitalize;
}
.instructor_img_bg {
    background-color: #F79320;
    border-radius: 30px;
    height: 258px;
}
.instructor_image_box img {
    border-radius: 30px;
    position: relative;
    top: -26px;
}
#main_banner_section img {
    width: 100%;
}
#logolist_section {
    padding-top: 72px;
    padding-bottom: 72px;
    text-align: center;
}
#main_info_section .role_based_content.in_label ul {
    margin-bottom: 15px;
}
#main_info_section {
    padding-top: 72px;
    padding-bottom: 72px;
}
.main_info_right {
    padding-right: 18px;
}
#main_info_section .row {
    align-items: center;
}
/*.pagebox_button {
    margin-top: 45px;
}*/
.snapshot-group .phase_title {
    margin-top: 16px;
}
/*.container .row {
    align-items: center;
}*/
.snapshot-group .phase_inner_box {
    min-height: 355px;
}
.snapshot-group .phase_title {
    margin-top: 16px;
    min-height: 60px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
}
.enterprise_bottom .pagebox_title {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-right: 35px;
}
.partners_warpper img {
    width: 100%;
}
.partner_title {
    font-size: 24px;
    color: #17274F;
    font-family: 'Visby CF Demi Bold';
    line-height: 25px;
    min-height: 50px;
        margin-bottom: 20px;
}
.partners_img {
    margin-bottom: 15px;
}
.partner_content {
    font-family: 'Visby CF Regular';
    color: #3b3b3b;
    font-size: 16px;
    min-height: 270px;
}
.authority_section {
    margin-bottom: 10px;
}
.authority_section strong {
    font-family: 'Visby CF Demi Bold';
    font-size: 16px;
    color: #3b3b3b;
}
.partner_box_insection {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}
.partner_box_wrap {
    width: 32%;
    background: #f1f1f1;
    border-radius: 30px;
    padding: 40px 25px;
}
#partners_section {
    padding-bottom: 72px;
}
#phase_section .row {
    align-items: center;
}
.courselist-group .phase_inner_box {
    min-height: 245px;
}
.new_image_content_section {
    background-color: #17274F;
}
.new_image_content_section .row {
    align-items: center;
}
.new_image_content_section .comtitle {
    color: #F79320;
}
.new_image_content_section .comcontent {
    color: #ffffff;
}
.new_info_new_content {
    width: 450px;
}
.new_image_content_section .pagebox_button {
    margin-top: 35px;
}
#join_the_course_section {
    padding-top: 72px;
    padding-bottom: 72px;
}
.pagebox_buttons_wrapper {
    display: flex;
    gap: 1rem;
    margin-top: 35px;
}
.course_intro_element {
    font-family: 'Visby CF Medium';
    font-size: 14px;
    color: #3b3b3b;
    margin-top: 10px;
    display: inline-block;
}
.pagebox_button.grey_wrapper a {
    background-color: #8D8D8D;
}
#join_the_course_section .mission_conten {
    margin-top: 5px;
    margin-bottom: 15px;
}
.mission_label_in {
    font-family: 'Visby CF Demi Bold';
    font-size: 16px;
    color: #3b3b3b;
}
.contact_form_page {
    background-color: #F9F9FB;
    border-radius: 30px;
    padding: 35px;
}
.contact_form_page label {
    font-family: 'Visby CF Medium';
    font-size: 16px;
    color: #808080;
    width: 100%;
}
.contact_form_page input[type="text"],.contact_form_page input[type="email"],.contact_form_page textarea {
    border-bottom: 1px solid #D6D6D6;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    background: transparent;
}
.contact_form_page p {
    margin-bottom: 35px;
}
.contact_form_page textarea {
    height: 100px;
    width: 100%;
    resize: unset;
}
.contact_form_page input[type="submit"] {
    background-color: #17274F;
    border: 1px solid #17274F;
    border-radius: 8px;
    padding: 8px;
    color: #FCFCFC;
    font-family: 'Visby CF Demi Bold';
    font-size: 16px;
}
.c_info_inner span.social_icon
    width: 30px;
}
.c_info_inner span.social_icon {
    width: 30px;
}
.c_info_inner {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.c_info_block {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #D6D6D6;
}
.c_info_block {
    display: flex;
    flex-wrap: wrap;
}
.c_info_wrapper:first-child {
    margin-right: 50px;
}
.social_label {
    font-size: 20px;
    font-family: 'Visby CF Medium';
    color: #0D0D0D;
}
.social_value {
    font-family: 'Visby CF Regular';
    color: #808080;
    font-size: 16px;
}
.social_icon {
    width: 30px;
}
.c_info_block_social:last-child {
    padding-top: 25px;
    padding-bottom: 25px;
    gap: 1rem;
    align-items: center;
}
.c_info_block_social {
    display: flex;
    flex-wrap: wrap;
}
.c_info_inner_icons {
    display: flex;
    gap: 1rem;
}
#partner_logo_about_section {
    padding-top: 72px;
}
.course_duration {
    font-family: 'Visby CF Bold';
    font-size: 24px;
    color: #F9F9F9;
    margin-bottom: 8px;
}
#contact_info_section {
    padding-top: 72px;
    padding-bottom: 72px;
}
.video-content {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}
.video-content .actual-video, .video-content .actual-video iframe {
    height: 100%;
    width: 100%;
    border-radius: 30px;
}
.video-thumbnail, .video-thumbnail>img.thumb {
    width: 100%;
    height: 100%;
}
.video-thumbnail {
    position: absolute;
    inset: 0 0 0 0;
}
.video-thumbnail .play-btn {
    all: unset;
    cursor: pointer;
}
.video-thumbnail .play-b {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.w-auto {
    width: auto !important;
}
.modules_section .product_short_info {
    margin-bottom: 8px;
}
.modules_section .product_title {
    margin-bottom: 25px;
}
.membering_inner_img {
    position: relative;
}
.innerinfox {
    position: absolute;
    bottom: 0;
    padding: 25px;
}
.membering_title {
    font-family: 'Visby CF Demi Bold';
    font-size: 24px;
    color: #fff;
    line-height: 24px;
    margin-bottom: 15px;
}
.membering_content {
    font-family: 'Visby CF Medium';
    font-size: 16px;
    color: #fff;
    line-height: 20px;
}
.extra_box {
    position: relative;
}
.extra_inner_leftbox {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fff;
    padding: 25px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
}
.extra_label {
    font-size: 56px;
    color: #353535;
    font-family: 'Visby CF Demi Bold';
    line-height: 56px;
}
.extra_content {
    color: #808080;
    font-family: 'Visby CF Medium';
    font-size: 12px;
}
.certification_inner {
    padding-top: 70px;
    padding-bottom: 70px;    
    background-color: #17274F;
    padding-left: 140px;
    padding-right: 140px;
    border-radius: 30px;
}
.certificate_title {
    font-family: 'Visby CF Bold';
    font-size: 36px;
    color: #fff;
    text-align: center;
        line-height: 40px;
    margin-bottom: 30px;
}
.certificate_content {
    font-family: 'Visby CF Light';
    font-size: 16px;
    color: #fff;
    text-align: center;
}
#certification_section {
    padding-top: 70px;
    padding-bottom: 70px;
}

.team_wrapper {
    /*background-color: #F79320;
    border-radius: 30px;
    height: 425px;*/
    height: 425px;
    border-radius: 30px;
    overflow-x: hidden;
    position: relative;
}
.team_wrapper >span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 320px;
    background-color: #F79320;
    border-radius: 30px;
    z-index: 1;
}
.team_wrapper>img {
    position: relative;
    object-fit: cover;
    height: 100%;
    width: 100%;
    object-position: top;
    z-index: 2;
}
/*.team_wrapper img {
    position: relative;
    top: -100px;
}*/
.container2 {
    padding-left: 80px;
    padding-right: 80px;
}
.box_wrap {
    max-width: 228px;
    padding: 12px 24px;
}
#kaizen_center_section {
    padding-top: 72px;
    padding-bottom: 72px;
}


/* Full-width wrapper */
.custom-select-wrapper {
  width: 100%;
  max-width: 100%;
  position: relative;
  font-family: sans-serif;
}

/* Custom select base */
.custom-select {
  position: relative;
  width: 100%;
  /*border: 1px solid #ccc;*/
  /*border-radius: 8px;*/
  background: transparent;
  cursor: pointer;
  /*padding-right: 60px; */
  box-sizing: border-box;
}

/* Selected value */
.selected {
  /*padding: 12px 16px;*/
   color: #252525;
   font-family: 'Visby CF Bold';
   font-size: 30px;
}

/* Dropdown options */
.options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #f7f7f7;
  /*border: 1px solid #ccc;*/
  border-top: none;
  border-radius: 0 0 8px 8px;
  z-index: 10;
}

.option {
  padding: 12px 24px;
  cursor: pointer;
}

.option:hover {
  background-color: #f2f2f2;
}

/* Go button (overlaps select box) */
.go-button {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  padding: 6px 12px;
  font-size: 14px;
  background-color: #ff6b00;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  z-index: 11;
}

.go-button:hover {
  background-color: transparent;
}
.go-button {
    background: transparent;
    border: 0px;
    padding: 0;
}
#features_section .pagebox_button, #phase_section .pagebox_button {
    margin-top: 25px;
}
.testimonial_content_wrapper .comcontent {
    margin-top: 15px;
    margin-bottom: 15px;
}
.extra_slider_section.owl-carousel .extra_box img {
    border-radius: 15px;
    overflow: hidden;
}



.course-in-slider .slide-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: #000;
}

.course-in-slider .slide-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.course-in-slider .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 0 0 20px 20px;
}

.course-in-slider .overlay h3 {
  margin: 0 0 5px;
  font-size: 18px;
}

.course-in-slider .overlay p {
  margin: 0;
  font-size: 14px;
}

/* Ensure Owl doesn’t break border radius */
.course-in-slider.owl-carousel .owl-stage-outer {
  overflow: hidden;
}

.course-in-slider.owl-carousel .owl-item {
  box-sizing: border-box;
  padding: 10px;
}

.extra_titlebox {
    position: absolute;
    bottom: 25px;
    left: 25px;
}
.extra_titlelabel {
    font-family: 'Visby CF Bold';
    font-size: 25px;
    color: #fff;
}
.course-maindefault-slider .owl-nav {
    position: absolute;
    right: 25px;
    bottom: 25px;
}

.course-maindefault-slider .owl-nav .left {
  margin-right: 5px; 
}

.course-maindefault-slider .owl-nav .right {
  margin-left: 5px;
}



/*******************/
.instructor-carousel {
    width: 100%;
    max-width: 760px;
    margin: auto;
}

.instructor-carousel * {
    transition: all 0.5s;
}

.instructor-carousel .owl-item.active.center {
    transform: scale(1.2);
}

.instructor-carousel .owl-stage-outer {
    padding: 40px 0 40px;
}

.image-wrapper {
    height: 346px;
    border-radius: 30px;
    overflow-x: hidden;
    position: relative;
}

.image-wrapper>img {
    position: relative;
    object-fit: cover;
    height: 100%;
    width: 100%;
    object-position: top;
    z-index: 2;
}

.image-wrapper>span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 260px;
    background-color: #F79320;
    border-radius: 30px;
    z-index: 1;
}

.profile-content {
    margin-top: 12px;
    padding: 0 10px;
    overflow: hidden;
}

.profile-content>span {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 12px;
    text-transform: capitalize;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.profile-content>h4 {
    font-size: 18px;
    line-height: 24px;
    text-transform: capitalize;
    white-space: nowrap;
    text-overflow: ellipsis;
}

ul.dropdown-menu {
    padding-top: 0px;
    padding-bottom: 0px;
}


.dropdown-hover:hover > .dropdown-menu {
  display: block;
}
.modal-footer, .modal-header, .modal-body input[type="submit"] {
        font-family: 'Visby CF Demi Bold';
        font-size: 16px;
    }
    .modal-body input {
        border: 1px solid #d3d3d3;
        border-radius: 4px;
        height: 38px;
        width: 100%;
    }
    .modal-body textarea {
        border: 1px solid #d3d3d3;
        border-radius: 4px;
        height: 80px;
        width: 100%;
    }
    .modal-body label {
       font-family: 'Visby CF Light';
        font-size: 16px;
        line-height: 22px; 
        width: 100%;
    }

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .checkout-button {
        font-size: 16.07px !important;
    background-color: var(--orange-color) !important;
    font-family: 'Visby CF Demi Bold';
    color: var(--white-color) !important;
    border-radius: 500px;
    display: inline-block !important;
    padding: 10px 20px !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .checkout-button:hover{
       font-size: 16.07px !important;
    background-color: var(--orange-color) !important;
    font-family: 'Visby CF Demi Bold';
    color: var(--white-color) !important;
    border-radius: 500px;
    display: inline-block !important;
    padding: 10px 20px !important;
}

.woocommerce {
    padding-top: 72px;
    padding-bottom: 72px;
}

body.woocommerce-cart,
body.woocommerce-checkout,
body.woocommerce-account {
        color: var(--grey2-color);
    font-size: 16px;
    font-family: 'Visby CF Medium';
}
td.product-name a {
    color: var(--grey2-color);
}
.certificate_image {
    margin-bottom: 35px;
    text-align: center;
}
li.nav-item.active>a {
    color: var(--orange-color);
}
.courses_status {
   color:#ffffff;
     font-size: 16px;
    font-family: 'Visby CF Medium';
    text-align: center;
}
.single-post article {
    font-size: 16px;
    font-family: 'Visby CF Medium';
    padding-top: 72px;
    padding-bottom: 72px;
}