/* 
 * new-module-common.css
 * Description: Common styles for new ACF modules
 * Author: Dev
 * Created: 2025
 * Version: 1.0
 * Note: Only loaded when new modules are rendered
 */

:root {
    --primary-color: #5a5b5d;
    --secondary-color: #ad237a;
}

.kbh_flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0;
}

.kbh_nm_container {
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 768px) {
    .kbh_nm_container {
        max-width: 750px;
    }
}

@media (min-width: 992px) {
    .kbh_nm_container {
        max-width: 970px;
    }
}

@media (min-width: 1200px) {
    .kbh_nm_container {
        max-width: 1250px;
    }
}

@media only screen and (min-width: 992px) {
    .kbh_mobile {
        display: none;
    }
}

@media only screen and (max-width: 991px) {
    .kbh_desktop {
        display: none;
    }
}

.bg_pink_swatch {
    background-image: url(/wp-content/uploads/2025/08/swash_pink_full.jpg);
    background-repeat: no-repeat;
    background-size: cover !important;
}

.bg_yellow_swatch {
    background-image: url(/wp-content/uploads/2025/10/bg_yellow_swatch.webp);
}

.bg_green_swatch {
    background-image: url(/wp-content/uploads/2025/10/bg_swash_green.webp);
}

.bg_white_swatch_btn,
.hover_white_swatch_btn:hover {
    background: url(/wp-content/uploads/2025/10/white_btn_swatch.webp) center/100% 100% no-repeat;
}

.bg_pink_swatch_btn,
.hover_pink_swatch_btn:hover {
    background: url(/wp-content/uploads/2025/10/pink_btn_swatch5.webp) center/100% 100% no-repeat;
}

.bg_green_swatch_btn,
.hover_green_swatch_btn:hover {
    background: url(/wp-content/uploads/2025/10/green_btn_swatch.webp) center/100% 100% no-repeat;
}

.kbh_new_module .kbh_new_module_top_area * {
    margin: 0;
}

.kbh_new_module {
    padding: 75px 0 75px;
}

.kbh_new_module_top_area .kbh_module_image,
.kbh_new_module_top_area .kbh_module_copy,
.kbh_new_module_medium_area {
    padding-bottom: 50px;
}

.kbh_new_module_top_area .kbh_module_image {
    text-align: center;
}

.kbh_new_module_top_area .kbh_module_headline {
    text-align: center;
    padding-bottom: 24px;
}

.kbh_new_module_top_area .kbh_module_copy p {
    text-align: center;
}

.kbh_new_module_bottom_area a {
    /* font-family: 'Trend Slab'; */
    font-weight: 600;
    padding: 18px 55px;
    font-size: 15px;
    display: block;
    width: fit-content;
    text-align: center;
    margin: 0 auto !important;
}

/* cta bottom color */
.bg_pink_swatch_btn,
.bg_green_swatch_btn {
    color: #fff !important;
}

.hover_white_swatch_btn:hover,
.bg_white_swatch_btn {
    color: #ad237a;
}

.kbh_bg-white {
    background: #fff !important;
}

.kbh_new_module .hover_pink_swatch_btn:hover {
    color: #fff;
}

/* general slider white and gray start */
.kbh_slider_general_gray .slick-dots,
.kbh_slider_general_white .slick-dots {
    left: 50%;
    transform: translateX(-50%);
    bottom: -60px;
    padding-top: 39px;
}

.kbh_slider_general_gray .slick-dots li,
.kbh_slider_general_white .slick-dots li {
    width: 18px;
    height: 18px;
    background: #ff000000;
    border-radius: 50px;
    border: 2px solid #fff;
}

.kbh_slider_general_gray .slick-dots li {
    border: 2px solid #858585;
}

.kbh_slider_general_white .slick-dots li.slick-active {
    background: #fff;
}

.kbh_slider_general_gray .slick-dots li.slick-active {
    background: #858585;
}

.kbh_slider_general_gray button.slick-arrow:before,
.kbh_slider_general_gray button.slick-arrow:after,
.kbh_slider_general_white button.slick-arrow:before,
.kbh_slider_general_white button.slick-arrow:after {
    display: none;
}

.kbh_slider_general_gray button.slick-arrow,
.kbh_slider_general_white button.slick-arrow {
    z-index: 1;
    width: 35px;
    height: 101px;
}

.kbh_slider_general_gray button.slick-arrow {
    filter: brightness(0) invert(0.5);
}

.kbh_slider_general_gray .slick-prev.slick-arrow,
.kbh_slider_general_white .slick-prev.slick-arrow {
    left: 0;
    background: url(/wp-content/uploads/2025/08/Polygon-left.png) center/contain no-repeat;
}

.kbh_slider_general_gray .slick-next.slick-arrow,
.kbh_slider_general_white .slick-next.slick-arrow {
    right: 0;
    background: url(/wp-content/uploads/2025/08/Polygon-right.png) center/contain no-repeat;
}

@media only screen and (max-width: 991px) {

    .kbh_slider_general_gray button.slick-arrow,
    .kbh_slider_general_white button.slick-arrow {
        width: 19px;
        top: 100%;
        transform: unset;
    }

    .kbh_slider_general_gray .slick-dots,
    .kbh_slider_general_white .slick-dots {
        max-width: calc(100% - 80px);
    }
}

@media only screen and (max-width: 767px) {
    .kbh_slider_general_gray button.slick-arrow .kbh_slider_general_white button.slick-arrow {
        width: 20px;
    }
}

/* general slider white and gray end */
.kbh_zigzag_img,
.kbh_zigzag_img img {
    width: 100%;
    object-fit: contain;
    height: 18px;
    object-position: left;
    margin-bottom: 20px;
    display: block;
}

.kbh_btn_infant_mgnt {
    color: #ad237a;
    font-size: 16px;
    line-height: 24px;
    padding: 10px 40px 10px 0;
    position: relative;
    font-weight: 600;
}

.kbh_btn_infant_mgnt:after {
    content: "";
    width: 30px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 51%;
    transform: translateY(-50%);
    background: url(/wp-content/uploads/2025/08/Vector-Smart-Object-2.png) center / contain no-repeat;
}

.kbh_btn_infant_mgnt.white {
    color: #fff;
}

.kbh_btn_infant_mgnt.white:after {
    background: url(/wp-content/uploads/2025/09/white_anchor.png) center / contain no-repeat;
}

.kbh_img_mask img {
    mask: url(/wp-content/themes/kinderberry-hill-conversion/assets/svg/scallop_right.svg);
    mask-size: 100%;
    -webkit-mask-position: left top;
    -webkit-mask: url(/wp-content/themes/kinderberry-hill-conversion/assets/svg/scallop_right.svg);
    -webkit-mask-size: 100%;
    -webkit-mask-position: left top;
}

.kbh_sync_slider_for.slick-slider,
.kbh_sync_slider_nav.slick-slider {
    margin: 0 !important;
}

/* general popup style */
.kbh-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.kbh-popup-content {
    -webkit-box-shadow: 0px 0px 9px 1px rgba(0, 0, 1, 0.09);
    -moz-box-shadow: 0px 0px 9px 1px rgba(0, 0, 1, 0.09);
    box-shadow: 0px 0px 9px 1px rgba(0, 0, 1, 0.09);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    max-height: 85%;
    overflow-y: auto;
    background: #fff;
    max-width: 800px;
    width: 90%;
    padding: 40px;
    border-radius: 10px;
    position: relative;
}

.kbh-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 34px;
    cursor: pointer;
}

/* general video style */
.kbh_video-title {
    font-size: 36px;
    line-height: 130%;
    font-weight: 600;
}

.kbh_video-wrapper video,
.kbh_video-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.kbh_video-wrapper video {
    object-fit: cover;
}

.kbh_video-wrapper .kbh_video-frame {
    /* aspect-ratio: 16 / 9; */
    aspect-ratio: 16 / 12;
}

.kbh_bottom_50 {
    padding-bottom: 50px;
}

/* fancy box  */
.fancybox__container .fancybox__toolbar {
    bottom: 0;
    top: unset;
    background: transparent;
}

.fancybox__container .fancybox__toolbar__items--left {
    width: 100%;
    justify-content: center;
}

.fancybox__container .fancybox__counter {
    color: #504f4f;
}

.fancybox__container .fancybox__caption {
    color: #504f4f;
    font-size: 17px;
}

.fancybox__container .fancybox__image,
.fancybox__container .fancybox__html5video,
.fancybox__container .fancybox__iframe {
    border: 10px solid #fff;
    border-left-width: 15px;
    border-right-width: 15px;
}

.fancybox__container .fancybox__backdrop {
    background: url(/wp-content/uploads/2025/09/Layer-852-copy.jpg) center/ contain repeat;
}

.fancybox__container .fancybox__content {
    -webkit-box-shadow: 0px 0px 9px 1px rgba(0, 0, 1, 0.09);
    -moz-box-shadow: 0px 0px 9px 1px rgba(0, 0, 1, 0.09);
    box-shadow: 0px 0px 9px 1px rgba(0, 0, 1, 0.09);
}

.fancybox__container .fancybox__carousel::before,
.fancybox__container .fancybox__carousel::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.fancybox__container .fancybox__carousel::before {
    background: url(/wp-content/uploads/2025/09/Untitled-2.png) top left/ auto no-repeat;
}

.fancybox__container .fancybox__carousel::after {
    background: url(/wp-content/uploads/2025/09/Untitled-1.png) bottom right/ auto no-repeat;
}

.fancybox__container .fancybox__slide {
    justify-content: center;
}

.fancybox__container .fancybox__nav .carousel__button {
    filter: brightness(0) invert(0.5);
    height: 110px;
}

.fancybox__container .fancybox__nav .is-prev {
    background: url(/wp-content/uploads/2025/08/Polygon-left.png) center / contain no-repeat;
}

.fancybox__container .fancybox__nav .is-next {
    background: url(/wp-content/uploads/2025/08/Polygon-right.png) center/contain no-repeat;
}

.fancybox__container .fancybox__nav .carousel__button svg {
    display: none;
}

.fancybox__container .fancybox__toolbar__items.fancybox__toolbar__items--right {
    bottom: calc(100vh - 80px);
    position: absolute;
    right: 0;
}

.fancybox__container .has-image[data-image-fit=contain] .fancybox__image {
    width: 761px !important;
    height: 417px !important;
    object-fit: cover;
}

/* tab functionality css */
.kbh_tab_wrapper {}

.kbh_tab_wrapper .tab-container {
    display: flex;
    gap: 30px;
}

.kbh_tab_wrapper .tab-pane {
    display: none;
}

.kbh_tab_wrapper .tab-pane.active {
    display: block;
}

/* Right Column */
.kbh_tab_wrapper .tab-links,
.kbh_tab_wrapper .tab-content {
    width: 50%;
}

/* hover anchor svg */
.kbh_a_circle_svg,
.kbh_a_circle {
    color: #ad237a !important;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    line-height: 24px;
    padding: 5px 0px 5px 0;
    position: relative;
    font-weight: 600;
    align-items: center;
    display: flex;
    gap: 15px;
}

.kbh_a_circle_svg .kbh_icon_circle,
.kbh_a_circle_svg .icon-circle {
    display: inline-flex;
    margin-top: -3px;
}

span.kbh_icon-circle {
    display: flex;
}

.kbh_a_circle_svg svg {
    padding: 6px 6px 6px 8px;
    -webkit-box-shadow: 0px 0px 9px 1px rgba(0, 0, 1, 0.09);
    -moz-box-shadow: 0px 0px 9px 1px rgba(0, 0, 1, 0.09);
    box-shadow: 0px 0px 9px 1px rgba(0, 0, 1, 0.09);
    border-radius: 50%;
    background: #bb2b91;
    width: 31px;
    height: 31px;
}

.kbh_a_circle_svg path {
    fill: #ffffff;
}

.kbh_a_circle_svg:hover svg {
    background: #ffffff;
}

.kbh_a_circle_svg:hover path {
    fill: #bb2b91;
}

/* center image  */
.kbh_center_image img {
    width: 36px;
    height: 36px;
}

.kbh_center_image {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* general before and after  */
.kbh_before,
.kbh_after {
    position: relative;
}

.kbh_before:before,
.kbh_after:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}

.squiggle {
    padding-bottom: 25px;
}

.squiggle img {
    width: 100%;
    object-fit: contain;
    height: 18px;
    object-position: left;
}

/* tabs style  */
.kbh_general_tab .tab-content {
    display: none;
}

.kbh_general_tab .tab-content.active {
    display: block;
}

.kbh_mrb_15px {
    margin-bottom: 15px;
}

@media only screen and (min-width: 1200px) {

    .fancybox__container .fancybox__nav .is-prev {
        left: 90px;
    }

    .fancybox__container .fancybox__nav .is-next {
        right: 90px;
    }
}

@media only screen and (min-width: 992px) {

    .kbh_dsk_img_mask img {
        mask: url(/wp-content/themes/kinderberry-hill-conversion/assets/svg/scallop_right.svg);
        mask-size: 100%;
        -webkit-mask-position: left top;
        -webkit-mask: url(/wp-content/themes/kinderberry-hill-conversion/assets/svg/scallop_right.svg);
        -webkit-mask-size: 100%;
        -webkit-mask-position: left top;
    }

}

@media only screen and (max-width: 991px) {
    .kbh_tab_wrapper .tab-container {
        flex-wrap: wrap;
    }

    .kbh_tab_wrapper .tab-links,
    .kbh_tab_wrapper .tab-content {
        width: 100%;
    }

    .kbh_new_module {
        padding: 75px 30px 75px;
    }

    .kbh_new_module_top_area .kbh_module_headline {
        padding-bottom: 20px;
    }

    .kbh_new_module_medium_area {
        padding-bottom: 50px;
    }

    .kbh_video-title {
        font-size: 30px;
    }

    .fancybox__container .fancybox__nav .carousel__button {
        top: calc(100% - 86px);
        transform: unset;
        width: 19px;
    }

    .fancybox__container .fancybox__toolbar__items--left {
        padding-bottom: 7px;
    }

    .kbh_new_module_top_area .kbh_module_copy {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .kbh_new_module_medium_area {
        padding-bottom: 40px;
    }

    .kbh_new_module {
        padding: 75px 15px 75px;
    }
}

/* General Css End */
/* animated scroll slider css  */
.infinity_scroll_slider_ltr,
.infinity_scroll_slider_ltr .wrap {
    width: 100vw;
    display: grid;
    gap: 28px;
}

.infinity_scroll_slider_ltr .slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    touch-action: pan-y;
    /* allow horizontal dragging without interfering with vertical page scroll */
}

.infinity_scroll_slider_ltr .track {
    display: flex;
    gap: 29px;
    will-change: transform;
    user-select: none;
}

/* Make the entire card a clickable anchor */
.infinity_scroll_slider_ltr .slide {
    flex: 0 0 81%;
    max-width: 303px;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
    cursor: grab;
}

.infinity_scroll_slider_ltr .slider.dragging .slide {
    cursor: grabbing;
}

.infinity_scroll_slider_ltr .center-line {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 49.8%, rgba(124, 137, 255, 0.18) 50%, transparent 50.2%);
    opacity: 0;
    transition: opacity .25s ease;
}

.infinity_scroll_slider_ltr .kbh_green_bg {
    background: url(/wp-content/uploads/2025/10/Group-2-copy1.webp) center/100% 100% no-repeat;
}

.infinity_scroll_slider_ltr .kbh_pink_bg {
    background: url(/wp-content/uploads/2025/10/Group-1-copy1.webp) center/100% 100% no-repeat;
}

.infinity_scroll_slider_ltr .kbh_blue_bg {
    background: url(/wp-content/uploads/2025/10/Group-3-copy.webp) center/100% 100% no-repeat;
}

.infinity_scroll_slider_ltr .kbh_yellow_bg {
    background: url(/wp-content/uploads/2025/10/Group-2-copy.webp) center/100% 100% no-repeat;
}

.infinity_scroll_slider_ltr .kbh_orange_bg {
    background: url(/wp-content/uploads/2025/10/Group-2-copy.webp) center/100% 100% no-repeat;
}

@media (max-width: 768px) {}

/* home location module start  */
.kbh_home_location .kbh_new_module_top_area {
    padding-bottom: 20px;
}

.kbh_home_location .locations-row {
    display: flex;
    gap: 25px;
    padding: 20px 10px;
    min-width: max-content;
}

.kbh_home_location .location-card {
    overflow: hidden;
}

.kbh_home_location_module .kbh_pink_bg .card-content:after,
.kbh_home_location_module .kbh_green_bg .card-content:after,
.kbh_home_location_module .kbh_yellow_bg .card-content:after,
.kbh_home_location_module .kbh_blue_bg .card-content:after {
    /*     content: ""; */
    /*     position: absolute; */
    /*     top: 0px; */
    /*     left: 0; */
    /*     width: 100%; */
    /*     z-index: -1; */
    /*     height: 100%; */
}

.kbh_home_location_module .kbh_pink_bg .card-content:after {
    /*     background: url(https://kinder-berry.codupstaging.com/wp-content/uploads/2025/08/Group-1-copy1.png) center/100% 100% no-repeat; */
}

.kbh_home_location_module .kbh_blue_bg .card-content:after {
    /*     background: url(https://kinder-berry.codupstaging.com/wp-content/uploads/2025/08/Group-3-copy.png) center/100% 100% no-repeat; */
}

.kbh_home_location_module .kbh_yellow_bg .card-content:after {
    /*     background: url(https://kinder-berry.codupstaging.com/wp-content/uploads/2025/08/Group-2-copy.png) center/100% 100% no-repeat; */
}

.kbh_home_location_module .kbh_green_bg,
.kbh_home_location_module .kbh_green_bg .card-content:after {
    /*     background: url(https://kinder-berry.codupstaging.com/wp-content/uploads/2025/08/Group-2-copy1.png) center/100% 100% no-repeat; */
}

.kbh_home_location_module .kbh_pink_bg .card-content:after {
    /*     background: url(https://kinder-berry.codupstaging.com/wp-content/uploads/2025/08/Group-1-copy1.png) center/100% 100% no-repeat; */
}

.kbh_home_location .location-info p img {
    object-fit: contain;
    height: 33px;
    width: 24px;
}

.kbh_home_location .kbh_card-video,
.kbh_home_location .card-image {
    height: 214px;
}

.kbh_home_location .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kbh_home_location .card-content {
    padding: 35px 20px 63px;
    position: relative;
    margin-top: -8px;
    z-index: 0;
}

.kbh_home_location .location-title {
    color: white;
    font-size: 17px;
    position: relative;
    text-overflow: ellipsis;
    /* width: 100%; */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding-bottom: 0;
    margin-bottom: 5px;
    min-height: 48px;
}

.kbh_home_location .location-info {
    padding: 11px 0 0px;
}

.kbh_home_location .location-info p,
.kbh_home_location .location-info p a {
    color: #fff !important;
    font-size: 16px;
    line-height: 1.4;
}

.kbh_home_location .location-info p.phone,
.kbh_home_location .location-info p.address {
    display: flex;
    gap: 20px;
}

.kbh_home_location .location-info .distance {
    padding-left: 44px;
    font-size: 18px;
}

.kbh_home_location .location-info.address {
    font-weight: 500;
}

.kbh_home_location .distance {
    font-size: 13px;
    opacity: 0.9;
}

.kbh_home_location .phone {
    font-weight: 500;
}

.kbh_home_location .card-buttons {
    display: flex;
    padding-top: 5px;
    flex-direction: column;
    gap: 15px;
}

.kbh_home_location .virtual-tour {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 12px 0 12px 6px;
    gap: 20px;
    position: relative;
    width: fit-content;
    transition: opacity 0.3s ease;
}

.kbh_home_location .virtual-tour:hover {
    opacity: 0.8;
}

.kbh_home_location a.virtual-tour img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    z-index: 1;
    position: relative;
}

.kbh_home_location a.virtual-tour:after {
    content: "";
    position: absolute;
    top: 11px;
    right: -4px;
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.kbh_home_location .schedule-tour {
    background: url(https://kinder-berry.codupstaging.com/wp-content/uploads/2025/08/Layer-796.png) center/contain no-repeat;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ba338d;
    text-align: center;
}

.kbh_home_location .location-title-img img {
    height: 14px;
}

.kbh_home_location .kbh_card-video {
    position: relative;
    display: inline-block;
    cursor: pointer;
    max-width: 100%;
    width: 100%;
}

.kbh_home_location .kbh_card-video .card-video-image {
    display: block;
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.kbh_home_location .kbh_card-video::before {
    content: "\25BA";
    /* play icon */
    font-size: 50px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 15px 20px;
    pointer-events: none;
}

.kbh_home_location .kbh_card-video .playVideo {
    display: none;
    width: 100%;
    height: auto;
}

.kbh_home_location .kbh_card-video.video-playing::before {
    opacity: 0;
}

.kbh_home_location .kbh_card-video.video-playing {
    background: #000000;
    display: flex;
}

/* Responsive design */
@media (max-width: 768px) {
    .kbh_home_location .locations-row {
        gap: 15px;
        padding: 15px 0px;
    }

    .kbh_home_location .card-content {
        padding: 44px 22px 60px;
    }

    .kbh_home_location .location-title {
        font-size: 18px;
        min-height: 42px;
    }

    .kbh_home_location .virtual-tour {
        font-size: 15px;
    }

    .kbh_home_location .location-info p.phone,
    .kbh_home_location .location-info p.address {
        gap: 25px;
    }

    .kbh_home_location .card-buttons {
        gap: 9px;
    }

    .kbh_home_location .schedule-tour {
        font-size: 16px;
    }

    .kbh_home_location a.virtual-tour img {
        width: 16px;
        height: 16px;
    }

    .kbh_home_location a.virtual-tour:after {
        top: 12px;
        right: -6px;
    }
}

.kbh_home_location .locations-row::-webkit-scrollbar {
    height: 8px;
}

.kbh_home_location .locations-row::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.kbh_home_location .locations-row::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.kbh_home_location .locations-row::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* home location module end */


/* exclusive feature start */
.kbh_exclusive_featured {
    padding: 80px 0 110px;
}

.kbh_exclusive_featured .module-item-grids {
    padding: 0 100px;
}

.kbh_exclusive_featured .kbh_slider_general_gray button.slick-next.slick-arrow,
.kbh_exclusive_featured .kbh_slider_general_white button.slick-next.slick-arrow {
    background: url(/wp-content/uploads/2025/08/Polygon-right.png) center / contain no-repeat !important;
    -webkit-transform: rotate(359deg) translateY(-50%) !important;
    -moz-transform: rotate(359deg) translateY(-50%) !important;
    transform: rotate(359deg) translateY(-50%) !important;
    -o-transform: rotate(359deg) translateY(-50%) !important;
    width: 35px !important;
    height: 101px !important;
    border: none;
}

.kbh_exclusive_featured .module-grid-item {
    padding: 0 30px !important;
}

.kbh_exclusive_featured a.btn-bg-white,
.kbh_exclusive_featured a.btn-bg-magenta {
    font-size: 16px;
    line-height: 30px;
    padding: 10px 40px 10px 0;
    position: relative;
    font-weight: 600;
}

.kbh_exclusive_featured a.btn-bg-magenta {
    color: #ad237a;
}

.kbh_exclusive_featured a.btn-bg-white {
    color: #fff;
}

.kbh_exclusive_featured a.btn-bg-white:before,
.kbh_exclusive_featured a.btn-bg-magenta:before {
    content: "";
    width: 30px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 51%;
    transform: translateY(-50%);
}

.kbh_exclusive_featured a.btn-bg-white:before {
    background: url(/wp-content/uploads/2025/08/Vector-Smart-Object-2.png) center/ contain no-repeat;
}

.kbh_exclusive_featured a.btn-bg-magenta:before {
    background: url(/wp-content/uploads/2025/08/Vector-Smart-Object-2.png) center/ contain no-repeat;
}

.kbh_exclusive_featured .btn-bg-white:hover:before,
.kbh_exclusive_featured .btn-bg-magenta:hover:before {
    background: url(/wp-content/uploads/2025/09/white_anchor.png) center / contain no-repeat;
}

.kbh_exclusive_featured .section-learnmore-standard {
    margin-top: 100px;
}

.kbh_exclusive_featured .module-item-grids.threeCol .module-column-content,
.kbh_exclusive_featured .module-item-grids.fourCol .module-column-content {
    padding-bottom: 0;
}

@media only screen and (max-width: 1199px) {
    .kbh_exclusive_featured .module-item-grids {
        padding: 0 50px;
    }

    .kbh_exclusive_featured .module-grid-item {
        padding: 0 15px !important;
    }
}

@media only screen and (max-width: 991px) {

    .kbh_exclusive_featured .kbh_slider_general_gray button.slick-next.slick-arrow,
    .kbh_exclusive_featured .kbh_slider_general_white button.slick-next.slick-arrow {
        width: 19px !important;
        top: 100% !important;
        transform: unset !important;
    }

    .kbh_exclusive_featured .module-item-grids {
        padding: 0 0px;
    }

    .kbh_exclusive_featured {
        padding-bottom: 75px;
    }

}

/* exclusive feature end */


/* learning programs start */
.kbh_new_module.kbh_l_n_m .kbh_module_image {
    padding-bottom: 32px;
    text-align: center;
}

.kbh_new_module.kbh_l_n_m .kbh_module_headline {
    letter-spacing: 0;
}

/* Top Tabs Bar */

.kbh_l_n_m .tabs {
    background: url(/wp-content/uploads/2025/10/scallop_right.webp) center / 100% 100% no-repeat;
    color: #fff;
    padding: 20px 25px 15px;
}

.kbh_l_n_m .tab-list {
    margin: 0 auto;
    display: flex;
    gap: 20px 40px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.kbh_l_n_m .tab {
    border-bottom: 5px solid transparent;
    padding: 0px 0;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: .2px;
    user-select: none;
    font-size: 16px;
    text-transform: uppercase;
}

.kbh_l_n_m .tab[aria-selected="true"] {
    border-color: #d1b00a;
}

/* Section Card */
.kbh_l_n_m .card {
    margin: 0;
    border: none;
    -webkit-box-shadow: 0px 0px 9px 1px rgba(0, 0, 1, 0.09);
    -moz-box-shadow: 0px 0px 9px 1px rgba(0, 0, 1, 0.09);
    box-shadow: 0px 0px 9px 1px rgba(0, 0, 1, 0.09);
}

/* Panel Layout */
.kbh_l_n_m .panel-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 60px;
    align-items: self-start;

}

.kbh_l_n_m .media_div {
    height: 100%;
}

.kbh_l_n_m .copy {
    padding-top: 65px;
    padding: 65px 57px 80px 0;
    position: relative;
    text-align: left;
    background: url(/wp-content/uploads/2025/10/Screenshot-2025-01-30-at-1.43.webp) top right / auto no-repeat;
}

.kbh_l_n_m .copy p {
    margin: 0 0 18px;
}

.kbh_l_n_m .media_div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kbh_l_n_m .copy h2 {
    margin: 0 0 16px;
    font-size: 24px;
    letter-spacing: .3px;
}

.kbh_l_n_m .squiggle {
    display: inline-block;
    height: 6px;
    width: 120px;
    margin: 8px 0 14px;
    background: repeating-linear-gradient(90deg, var(--accent) 0 12px, rgba(0, 0, 0, 0) 12px 16px);
    mask: radial-gradient(10px 6px at 10px 3px, #000 98%, #0000) 0 0/16px 6px repeat-x;
}

.kbh_l_n_m .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand);
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(192, 58, 166, .25);
}

.kbh_l_n_m .btn svg {
    width: 18px;
    height: 18px;
}

/* Curriculum strip */
.kbh_l_n_m .curriculum-wrap {
    padding: 16px 24px 25px;
    background: url(/wp-content/uploads/2025/10/Screenshot-2025-01-30-at-1.56.webp) center / 100% 100% no-repeat;
}

.kbh_l_n_m .curriculum-title {
    color: #fff;
    display: none;
    padding: 8px 17px;
    font-weight: 600;
    font-size: 16px;
    text-align: left;
    background: url(/wp-content/uploads/2025/08/Layer-8.jpg) center / 100% 100% no-repeat;
}

.kbh_l_n_m .curriculum-title-img {
    padding: 0 0 5px 42px;
    display: block;
}

.kbh_l_n_m .kbh_curriculum_item {
    cursor: pointer;
    padding: 0 14px;
}

.kbh_l_n_m .kbh_curriculum_thumb,
.kbh_l_n_m .kbh_curriculum_thumb img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: filter 1s ease;
    height: 154px;
}

.kbh_l_n_m .kbh_curriculum_label {
    text-align: center;
    font-size: 16px;
    line-height: 140%;
    color: #676767;
    padding: 15px 12px 0;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .6px;
}

/* Slick tweaks */
.kbh_l_n_m .slick-dots li button:before {
    font-size: 10px;
}

.kbh_l_n_m .slick-prev:before,
.kbh_l_n_m .slick-next:before {
    color: #9e9e9e;
}

.kbh_l_n_m .curriculum .slick-slide {
    outline: none;
}

.kbh_l_n_m .kbh_l_n_m_slider,
.kbh_l_n_m .kbh_slider_general_gray.kbh_sync_slider_nav {
    padding: 0 44px;
    margin: 0;
}

.kbh_l_n_m .kbh_l_n_m_slider .slick-list,
.kbh_l_n_m .kbh_slider_general_gray.kbh_sync_slider_nav .slick-list {
    padding: 0px !important;
}

.kbh_l_n_m .kbh_curriculum_item:hover img {
    filter: grayscale(100%);
}

.kbh_l_n_m .kbh_curriculum_item:hover .kbh_curriculum_label {
    color: #ad237a;
}

.kbh_l_n_m .kbh-popup .kbh-popup-body>img {
    float: left;
    display: block;
    margin: 0 20px 0 0;
    width: 26%;
}

.kbh_l_n_m .kbh-popup .kbh_curriculum_label {
    text-align: left;
    padding: 0;
}

.kbh_l_n_m .kbh_sync_slider_for .slick-dots,
.kbh_l_n_m .kbh_sync_slider_for .slick-arrow,
.kbh_l_n_m .kbh_sync_slider_nav .slick-dots {
    display: none !important;
}

.kbh_l_n_m .kbh_curriculum_item p,
.kbh_l_n_m .kbh_curriculum_item a,
.kbh_l_n_m .panel {
    display: none;
}

.kbh_l_n_m .panel.active {
    display: block;
}

/* Responsive */
@media only screen and (min-width: 1200px) {}

@media only screen and (min-width: 992px) {
    .kbh_l_n_m .media_div img {
        mask: url(/wp-content/themes/kinderberry-hill-conversion/assets/svg/scallop_right.svg);
        mask-size: 100%;
        -webkit-mask-position: left top;
        -webkit-mask: url(/wp-content/themes/kinderberry-hill-conversion/assets/svg/scallop_right.svg);
        -webkit-mask-size: 100%;
        -webkit-mask-position: left top;
    }

    .kbh_l_n_m .kbh_l_n_m_slider .slick-arrow,
    .kbh_l_n_m .kbh_slider_general_gray.kbh_sync_slider_nav .slick-arrow {
        width: 28px;
        top: 37%;
    }

    .kbh_l_n_m .kbh_sync_slider_nav .slick-dots,
    .kbh_l_n_m .kbh_l_n_m_slider .slick-dots {
        display: none !important;
    }

    .kbh_l_n_m .kbh-popup picture {
        float: left;
        margin: 0 20px 0 0;
        width: 26%;
    }
}

@media only screen and (max-width: 1300px) and (min-width: 992px) {

    .kbh_l_n_m .kbh_l_n_m_slider .slick-arrow,
    .kbh_l_n_m .kbh_slider_general_gray.kbh_sync_slider_nav .slick-arrow {
        top: 42%;
    }
}

@media only screen and (max-width: 1200px) {
    .kbh_l_n_m .tab-list {
        gap: 14px 26px;
    }

    .kbh_l_n_m .tab {
        font-size: 14px;
    }
}


@media only screen and (max-width: 991px) {
    .kbh_l_n_m .copy h2 {
        font-size: 20px;
    }

    .kbh_l_n_m .tabs {
        padding: 20px 15px 15px;
    }

    .kbh_l_n_m .copy p {
        margin-bottom: 26px;
    }

    .kbh_l_n_m .panel-inner {
        grid-template-columns: 1fr;
    }

    .kbh_l_n_m .kbh_curriculum_item {
        padding: 0 12px;
    }

    .kbh_l_n_m .curriculum-wrap {
        padding: 24px 10px 150px;
    }

    .kbh_l_n_m .kbh_l_n_m_slider,
    .kbh_l_n_m .kbh_slider_general_gray.kbh_sync_slider_nav {
        padding: 0 12px;
    }

    .kbh_l_n_m .curriculum-title-img {
        padding: 0 0 5px 8px;
    }

    .kbh_l_n_m .tab[aria-selected="true"] {
        border-width: 3px;
    }

    .kbh_l_n_m .copy {
        padding: 5px 20px 60px;
        background: none;
    }

    .kbh_l_n_m .kbh-popup-content {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
    }

    .kbh_l_n_m .kbh-popup img {
        float: unset;
        margin: 0 auto;
        width: 50%;
        padding-bottom: 24px;
        aspect-ratio: 1/1;
        object-fit: cover;
        height: auto;
    }

    .kbh_l_n_m .kbh-popup picture {
        margin: 0;
        height: auto;
    }

    .kbh_l_n_m .kbh_curriculum_thumb {
        height: auto;
    }

    .kbh_l_n_m .kbh-popup .kbh_curriculum_label {
        padding-bottom: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .kbh_l_n_m .kbh_new_module_top_area img {
        width: 100%;
    }

    .kbh_l_n_m .kbh_nm_container {
        padding: 0px;
    }

    .kbh_l_n_m {
        padding: 75px 0px 75px;
    }

    .kbh_l_n_m .kbh_new_module_top_area {
        padding: 0 20px;
    }
}

/* learning programs end */


/* video gallery start */

/* template A */
.videogallery_a .kbh_video_slide_content {
    /*     background: url(/wp-content/uploads/2025/08/video_sdfbg.png) center/100% 100% no-repeat; */
    /* 	 background: url(/wp-content/uploads/2025/09/Vector-Smart-Object-copy-2.png) center/100% 100% no-repeat; */
    /*    padding: 23px 21px; */



    /* background: url(../../assets/img/paper_swatch.png); */

    /* border-top-left-radius: 15px; */
    /* border-top-right-radius: 15px; */

    /*     mask: url(/wp-content/themes/kinderberry-hill-conversion/assets/svg/scallop_bottom_big.svg); */
    /*     mask-size: auto; */
    /*     -webkit-mask-position: left bottom; */
    /*     -webkit-mask: url(/wp-content/themes/kinderberry-hill-conversion/assets/svg/scallop_bottom_big.svg); */
    /*     -webkit-mask-size: auto; */
    /*     -webkit-mask-position: left bottom; */
    /*     -webkit-mask-repeat: no-repeat;  */

}

.videogallery_a .kbh_video_slide_content iframe,
.videogallery_a .kbh_video_slide_content video,
.videogallery_a .kbh_video_slide_content .kbh_video-wrapper {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.videogallery_a .kbh_video_slide_content .kbh_video-wrapper {
    -webkit-box-shadow: 0 0px 28px -5px rgba(0, 0, 0, 0.9);
    -moz-box-shadow: 0 0px 28px -5px rgba(0, 0, 0, 0.9);
    box-shadow: 0 0px 28px -5px rgba(0, 0, 0, 0.9);
    margin: 26px 26px 0;
}

.videogallery_a .kbh_sync_slider_for {
    width: 65%;
}

.videogallery_a .kbh_sync_slider_nav {
    padding: 28px 0 40px;
    width: 35%;
}

.videogallery_a .kbh_sync_slider_nav img {
    width: 100%;
}

.videogallery_a .slide_text {
    background: transparent url(/wp-content/uploads/2025/10/bg.webp) center / 100% 100% no-repeat;
    padding: 26px 86px 94px;
    margin-top: -9px;
    z-index: 1;
}

.videogallery_a .slide_text:before {
    /* background: url(/wp-content/uploads/2025/09/bg1.png) top left/ contain no-repeat; */
    /* top: -9px; */
    /* height: calc(100% + 9px); */
    /* opacity: 0; */
}

.videogallery_a .slide_text:after {
    /* background: url(/wp-content/uploads/2025/09/bg2.png) bottom right/ auto no-repeat; */
    /* opacity: 0; */
}

.videogallery_a h3 {
    padding-bottom: 4px;
    z-index: 1;
    position: relative;
    font-size: 24px;
    color: #bb2b91 !important;
    line-height: 130%;
}

.videogallery_a .kbh_video_slide_content .kbh_video-description {
    color: #5a5b5d;
}

.videogallery_a .kbh_video_slide_content .kbh_video-description p {
    margin: 0;
}

.videogallery_a .kbh_video_slide_item {
    display: flex !important;
    gap: 24px;
    padding: 12px 0;
    cursor: pointer;
    align-items: center;
    border: none !important;
}

.videogallery_a .kbh_video_slide_item>picture {
    width: calc(55% - 12px);
}

.videogallery_a .kbh_video_slide_item>h4 {
    width: calc(45% - 12px);
    color: #bb2b91 !important;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 130%;
}

.videogallery_a .banner-section,
.videogallery_a .kbh_video_slide_item img {
    width: 100%;
}

.videogallery_a .banner-slider .slider.slider-for {
    max-width: 68%;
    padding-right: 38px;
}

.videogallery_a .banner-slider .slider.slider-nav {
    max-width: 32%;
}

.videogallery_a .banner-slider .slider.slider-for,
.videogallery_a .banner-slider .slider.slider-nav {
    width: 100%;
    float: left;
}

.videogallery_a .banner-slider .slider.slider-nav {
    height: 695px;
    overflow: hidden;
}

.videogallery_a .banner-slider .slider.slider-nav {
    padding: 28px 0 0;
}


/* template B  */
.videogallery_b .kbh_new_module_top_area {
    padding-bottom: 26px;
}

.videogallery_b .kbh_video-title-container {
    gap: 33px 80px;
    padding-bottom: 49px;
}

.videogallery_b .kbh_video-title-container>* {
    width: 50%;
}

.videogallery_b .kbh_video-wrapper {
    margin-bottom: 30px;
}

@media only screen and (min-width: 992px) {
    .videogallery_a .slider-nav .slick-arrow {
        width: 60px;
        width: calc(55% - 12px);
        left: 0;
        height: 20px;
        transform: unset;
        right: unset;
    }

    .videogallery_a .slider-nav .slick-arrow.slick-prev {
        top: 0;
        background: url(/wp-content/uploads/2025/09/videoPolygon-up.png) center/contain no-repeat;
    }

    .videogallery_a .slider-nav .slick-arrow.slick-next {
        bottom: 0px;
        top: unset;
        background: url(/wp-content/uploads/2025/09/videoPolygon-below.png) center / contain no-repeat;
    }

    .videogallery_a .slider-nav img {
        transition: filter 0.3s ease, all 0.4s ease-in-out;
        filter: grayscale(100%);
        height: 133px;
    }

    .videogallery_a .slick-current .kbh_video_slide_item img,
    .videogallery_a .kbh_video_slide_item:hover img {
        filter: grayscale(0%);
    }

    .videogallery_a .slider-nav .slick-current img {
        border: 15px solid #bb2b91;
    }

    .videogallery_a .slider-nav.kbh_slider_general_white .slick-current img {
        border: 15px solid #ffffff;
    }
}

@media only screen and (max-width: 1200px) and (min-width: 992px) {
    .videogallery_a .slider-nav img {
        height: 112px;
    }

    .banner-slider .slider.slider-nav {
        height: 606px;
    }

    .videogallery_a .kbh_video_slide_item>h4 {
        font-size: 16px;
    }

    .videogallery_a .slider-nav .slick-current img {
        border: 12px solid #bb2b91;
    }

    .videogallery_a .slider-nav.kbh_slider_general_white .slick-current img {
        border: 12px solid #ffffff;
    }

    .videogallery_a .banner-slider .slider.slider-nav {
        height: 607px;
    }
}

@media only screen and (max-width: 1300px) and (min-width: 992px) {}

@media only screen and (max-width: 1200px) {
    .videogallery_b .kbh_video-title-container {
        padding-bottom: 35px;
        gap: 35px;
    }

    .videogallery_b .kbh_new_module_top_area {
        padding-bottom: 17px;
    }

    .videogallery_a .slide_text {
        padding: 26px 36px 53px;
    }
}

@media only screen and (max-width: 991px) {

    /* 	template A */
    .videogallery_a .kbh_video_slide_item img {
        height: 190px;
    }

    .videogallery_a .kbh_video_slide_item>picture {
        width: 100%;
    }

    .videogallery_a .slider-for {
        display: none;
    }

    .videogallery_a .kbh_video_slide_item {
        flex-wrap: wrap;
        padding: 0 8px;
    }

    .videogallery_a .kbh_video_slide_item>h4 {
        width: 100%;
        text-align: center;
    }

    .videogallery_a .kbh_slider_general_gray .slick-next.slick-arrow,
    .videogallery_a .kbh_slider_general_white .slick-next.slick-arrow {
        right: 10px;
    }

    .videogallery_a .kbh_slider_general_gray .slick-prev.slick-arrow,
    .videogallery_a .kbh_slider_general_white .slick-prev.slick-arrow {
        left: 10px;
    }

    .videogallery_a .kbh_new_module_medium_area {
        padding-bottom: 20px;
    }

    .videogallery_a .slick-track {
        padding-bottom: 38px;
    }

    .videogallery_a .slide_text {
        padding: 16px 20px 53px;
    }

    .videogallery_a video,
    .videogallery_a iframe {
        border-radius: 0;
    }

    .videogallery_a .kbh-popup-content {
        background: url(/wp-content/uploads/2025/09/Layer-852-copy.jpg) center / contain repeat;
        padding: 40px 0 0;
        border-radius: 0;
    }

    .videogallery_a .banner-slider .slider.slider-for,
    .videogallery_a .banner-slider .slider.slider-nav {
        max-width: 100%;
        padding-right: 0;
        float: none;
        height: auto;
    }

    .videogallery_a .kbh_slider_general_gray .slick-dots,
    .videogallery_a .kbh_slider_general_white .slick-dots {
        position: relative;
        padding: 0;
        height: 40px;
        bottom: 0;
    }

    .videogallery_a .kbh_slider_general_gray .slick-arrow,
    .videogallery_a .kbh_slider_general_white .slick-arrow {
        top: calc(100% - 78px);
    }


    /* template B	 */
    .videogallery_b .kbh_video-title-container>* {
        text-align: center;
        width: 100%;
    }

    .videogallery_b .kbh_video-title-container {
        flex-wrap: wrap;
        padding-bottom: 39px;
    }

    .videogallery_b .kbh_video-wrapper {
        margin-bottom: 19px;
    }

}

@media only screen and (max-width: 767px) {
    .videogallery_a.kbh_new_module {
        padding: 75px 0;
    }

    .videogallery_a .kbh_nm_container {
        padding: 0;
    }

    .videogallery_a .slick-list.draggable {
        padding: 0px 30px !important;
    }

    .videogallery_a .kbh-popup-content {
        width: 100%;
    }

    .videogallery_a h3 {
        font-size: 20px;
    }

}

/* video gallery end */


/* image gallery start */
.image_gallery .kbh_new_module_top_area .kbh_module_headline {
    padding-bottom: 50px;
}

.image_gallery .kbh_image_gallery_slider {
    padding: 0 63px;
    margin: 0;
}

.image_gallery .slick-dots {
    display: none !important;
}

.image_gallery .kbh_image-wrapper,
.image_gallery .kbh_video-wrapper .kbh_video-frame {
    aspect-ratio: 1 / 1;
}

.image_gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    margin-right: 10px;
    gap: 10px;
}

.image_gallery .gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.image_gallery .gallery-item .kbh_video-wrapper a:before {
    content: '';
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: url(/wp-content/uploads/2025/10/Play-Button-copy.png) center / contain no-repeat;
}

.image_gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* template a */
.image_gallery .image_galllery_a .gallery-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.image_gallery .image_galllery_a .gallery-item:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.image_gallery .image_galllery_a .gallery-item:nth-child(3) {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

.image_gallery .image_galllery_a .gallery-item:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.image_gallery .image_galllery_a .gallery-item:nth-child(5) {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}


/* template b */
.image_gallery .image_galllery_b .gallery-item:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: 100%;
    aspect-ratio: unset;
}

.image_gallery .image_galllery_b .gallery-item:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.image_gallery .image_galllery_b .gallery-item:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.image_gallery .image_galllery_b .gallery-item:nth-child(4) {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

.image_gallery .image_galllery_b .gallery-item:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.image_gallery .image_galllery_b .gallery-item:nth-child(6) {
    grid-column: 3 / 5;
    grid-row: 2 / 3;
    aspect-ratio: unset;
}

.image_gallery .image_galllery_b .gallery-item:nth-child(1) .kbh_image-wrapper,
.image_gallery .image_galllery_b .gallery-item:nth-child(1) .kbh_video-frame,
.image_gallery .image_galllery_b .gallery-item:nth-child(6) .kbh_image-wrapper,
.image_gallery .image_galllery_b .gallery-item:nth-child(6) .kbh_video-frame {
    aspect-ratio: unset;
    height: 100%;
}

.image_gallery .image_galllery_b .gallery-item:nth-child(1) .kbh_slide_inner {
    height: 100%;
}

.image_gallery .image_galllery_b .gallery-item:nth-child(6) .kbh_image-wrapper {
    max-height: 304px;
    width: 100%;
}

/* template c */
.image_gallery .image_galllery_c .gallery-item:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.image_gallery .image_galllery_c .gallery-item:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.image_gallery .image_galllery_c .gallery-item:nth-child(3) {
    grid-column: 2 / 4;
    grid-row: 1 / 3;
}

.image_gallery .image_galllery_c .gallery-item:nth-child(4) {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

.image_gallery .image_galllery_c .gallery-item:nth-child(5) {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}


@media only screen and (min-width: 992px) {}

@media only screen and (min-width: 1200px) {
    .image_gallery .kbh_nm_container {
        max-width: 1404px;
    }
}

@media only screen and (max-width: 1300px) and (min-width: 992px) {}

@media only screen and (max-width: 1550px) {
    .image_gallery .image_galllery_b .gallery-item:nth-child(6) .kbh_image-wrapper {
        max-height: 20.1vw;
        height: 100%;
    }
}

@media only screen and (max-width: 1350px) {
    .image_gallery .image_galllery_b .gallery-item:nth-child(6) .kbh_image-wrapper {
        max-height: 19.3vw;
    }
}

@media only screen and (max-width: 1200px) {
    .image_gallery .image_galllery_b .gallery-item:nth-child(6) .kbh_image-wrapper {
        max-height: 196px;
    }
}

@media only screen and (max-width: 1050px) {
    .image_gallery .image_galllery_b .gallery-item:nth-child(6) .kbh_image-wrapper {
        max-height: 17.8vw;
    }
}

@media only screen and (max-width: 991px) {

    .image_gallery .kbh_slider_general_gray button.slick-arrow,
    .image_gallery .kbh_slider_general_white button.slick-arrow {
        display: none !important;
    }

    .image_gallery .image_galllery_b .gallery-item:nth-child(6) .kbh_image-wrapper {
        max-height: 141px;
    }

    .kbh_image_gallery_slider .gallery-grid {
        animation: image_gallery_scroll 50s linear infinite;
    }

    .kbh_image_gallery_slider:hover .gallery-grid {
        animation-play-state: paused;
    }

    @keyframes image_gallery_scroll {
        0% {
            transform: translateX(100%);
        }

        100% {
            transform: translateX(-100%);
        }
    }
}

@media only screen and (max-width: 767px) {
    .image_gallery .image_galllery_b .gallery-item:nth-child(6) .kbh_image-wrapper {
        max-height: 22vw;
    }

    .image_gallery .kbh_image_gallery_slider,
    .image_gallery .kbh_nm_container {
        padding: 0;
    }

    .image_gallery {
        padding: 75px 0;
    }
}

@media only screen and (max-width: 550px) {
    .image_gallery .gallery-wrapper {
        width: 164%;
    }

    .image_gallery .image_galllery_b .gallery-item:nth-child(6) .kbh_image-wrapper {
        max-height: 39vw;
    }
}

/* image gallery end */


/* enroll start *

.kbh_enroll .kbh_tab_wrapper .tab-container {
    align-items: center;
    gap: 30px 0;
}

.kbh_enroll .kbh_tab_wrapper .tab-pane {
    padding: 30px;
    background: #fff;
    text-align: left;
    /* 	-webkit-box-shadow: 0px 0px 9px 1px rgba(0, 0, 1, 0.09); *
    -webkit-box-shadow: 0px 0px 12px 7px rgba(0, 0, 1, 0.09);
    -moz-box-shadow: 0px 0px 12px 7px rgba(0, 0, 1, 0.09);
    box-shadow: 0px 0px 12px 7px rgba(0, 0, 1, 0.09);
}

.kbh_enroll .kbh_tab_wrapper .tab-pane img,
.kbh_enroll .kbh-popup img {
    width: 100%;
    aspect-ratio: 410 / 334;
    object-fit: cover;
}

.kbh_enroll .kbh_tab_wrapper .tab-btn {
    padding: 18px 42px 18px 54px;
    border-bottom: 2px solid #d3d3d3;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

.kbh_enroll .kbh_tab_wrapper .tab-btn:nth-child(1) {
    border-top: 2px solid #d3d3d3;
}

.kbh_enroll .kbh_tab_wrapper .tab-btn .kbh_anchor_image_hover {
    display: none;
}

.kbh_enroll .kbh_tab_wrapper .kbh_flex {
    gap: 30px;
    align-items: center;
}

.kbh_enroll .kbh_tab_wrapper a.tab-link-link {
    margin-left: auto;
}

.kbh_enroll .kbh_tab_wrapper .tab-links p {
    font-size: 18px;
    line-height: 130%;
    max-height: 70px;
    overflow: hidden;
    color: #b73093 !important;
    text-align: left;
    margin: 0;
}

.kbh_enroll .kbh_tab_wrapper .tab-links img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.kbh_enroll .kbh_tab_wrapper .tab-btn.kbh_tab_pink.active,
.kbh_enroll .kbh_tab_wrapper .tab-btn.kbh_tab_pink:hover {
    background: url(/wp-content/uploads/2025/10/Magenta-Swash.webp) center / 100% 100% no-repeat;
}

.kbh_enroll .kbh_tab_wrapper .tab-btn.kbh_tab_yellow.active,
.kbh_enroll .kbh_tab_wrapper .tab-btn.kbh_tab_yellow:hover {
    background: url(/wp-content/uploads/2025/10/Gold-1.webp) center / 100% 100% no-repeat;
}

.kbh_enroll .kbh_tab_wrapper .tab-btn.kbh_tab_blue.active,
.kbh_enroll .kbh_tab_wrapper .tab-btn.kbh_tab_blue:hover {
    background: url(/wp-content/uploads/2025/10/Layer-4248-copy.webp) center / 100% 100% no-repeat;
}

.kbh_enroll .kbh_tab_wrapper .tab-btn.kbh_tab_green.active,
.kbh_enroll .kbh_tab_wrapper .tab-btn.kbh_tab_green:hover {
    background: url(/wp-content/uploads/2025/10/green.webp) center / 100% 100% no-repeat;
}

.kbh_enroll .kbh_tab_wrapper .tab-btn.kbh_tab_gray.active,
.kbh_enroll .kbh_tab_wrapper .tab-btn.kbh_tab_gray:hover {
    background: url(/wp-content/uploads/2025/10/Gray-Swash-Sample-copy-3.webp) center / 100% 100% no-repeat;
}

.kbh_enroll .kbh_tab_wrapper .tab-btn.kbh_tab_orange.active,
.kbh_enroll .kbh_tab_wrapper .tab-btn.kbh_tab_orange:hover {
    background: url(/wp-content/uploads/2025/10/Gray-Swash-Sample-copy-31.webp) center / 100% 100% no-repeat;
}

.kbh_enroll .kbh_tab_wrapper .tab-btn.active .kbh_anchor_image,
.kbh_enroll .kbh_tab_wrapper .tab-btn:hover .kbh_anchor_image {
    display: none;
}

.kbh_enroll .kbh_tab_wrapper .tab-btn.active .kbh_anchor_image_hover,
.kbh_enroll .kbh_tab_wrapper .tab-btn:hover .kbh_anchor_image_hover {
    display: block;
}

.kbh_enroll.bg_pink_swatch .tab-links p,
.kbh_enroll .kbh_tab_wrapper .tab-btn.active p,
.kbh_enroll .kbh_tab_wrapper .tab-btn:hover p {
    color: #fff !important;
}

.kbh_enroll .kbh_tab_wrapper .tab-btn.active .kbh_flex>picture img,
.kbh_enroll .kbh_tab_wrapper .tab-btn:hover .kbh_flex>picture img {
    filter: brightness(0) invert(1);
}

.kbh_enroll .kbh_copy {
    margin: 37px 0 30px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kbh_enroll .kbh-popup .kbh_copy {
    margin: 25px 0 5px;
}

@media only screen and (min-width: 992px) {}

@media only screen and (min-width: 1200px) {
    .kbh_enroll .kbh_nm_container {
        max-width: 990px;
    }
}

@media only screen and (max-width: 1300px) and (min-width: 992px) {}

@media only screen and (max-width: 1350px) {}

@media only screen and (max-width: 1200px) {
    .kbh_enroll .kbh_tab_wrapper .tab-btn {
        padding: 15px 22px 15px 34px;
    }
}

@media only screen and (max-width: 991px) {
    .kbh_enroll .kbh_tab_wrapper .tab-container {
        flex-direction: column-reverse;
    }

    .kbh_enroll .kbh_tab_wrapper .tab-pane {
        display: none;
    }
}

@media only screen and (max-width: 767px) {

    .kbh_enroll .kbh_nm_container {
        padding: 0;
    }

    .kbh_enroll {
        padding: 75px 0;
    }

    .kbh_enroll .kbh_new_module_top_area {
        padding: 0 20px;
    }

    .kbh_enroll .kbh_tab_wrapper .tab-pane {
        padding: 20px;
    }

    .kbh_enroll .kbh_tab_wrapper .kbh_flex {
        gap: 15px;
    }
}


@media only screen and (max-width: 479px) {
    .kbh_enroll .kbh_tab_wrapper .tab-btn {
        padding: 12px 12px 12px 24px;
    }

    .kbh_enroll .kbh_tab_wrapper .tab-links p {
        font-size: 16px;
    }
}

/* enroll end */




















/* enroll start */

.kbh_enroll .tab-container {
    align-items: center;
    gap: 30px 0;
}

.kbh_enroll .tab-pane {
    padding: 30px;
    background: #fff;
    text-align: left;
    /* 	-webkit-box-shadow: 0px 0px 9px 1px rgba(0, 0, 1, 0.09); */
    -webkit-box-shadow: 0px 0px 12px 7px rgba(0, 0, 1, 0.09);
    -moz-box-shadow: 0px 0px 12px 7px rgba(0, 0, 1, 0.09);
    box-shadow: 0px 0px 12px 7px rgba(0, 0, 1, 0.09);
}

.kbh_enroll .tab-pane img,
.kbh_enroll .kbh-popup .kbh_image-wrapper img {
    width: 100%;
    aspect-ratio: 410 / 334;
    object-fit: cover;
}

.kbh_enroll .tab-btn {
    padding: 18px 42px 18px 54px;
    border-bottom: 2px solid #d3d3d3;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

.kbh_enroll .tab-btn:nth-child(1) {
    border-top: 2px solid #d3d3d3;
}

.kbh_enroll .tab-btn .kbh_anchor_image_hover {
    display: none;
}

.kbh_enroll .kbh_flex {
    gap: 30px;
    align-items: center;
}

.kbh_enroll a.tab-link-link {
    margin-left: auto;
}

.kbh_enroll .tab-links p {
    font-size: 18px;
    line-height: 130%;
    max-height: 70px;
    overflow: hidden;
    color: #b73093 !important;
    text-align: left;
    margin: 0;
}

.kbh_enroll .tab-links img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.kbh_enroll .tab-btn.kbh_tab_pink.active,
.kbh_enroll .tab-btn.kbh_tab_pink:hover {
    background: url(/wp-content/uploads/2025/10/Magenta-Swash.webp) center / 100% 100% no-repeat;
}

.kbh_enroll .tab-btn.kbh_tab_yellow.active,
.kbh_enroll .tab-btn.kbh_tab_yellow:hover {
    background: url(/wp-content/uploads/2025/10/Gold-1.webp) center / 100% 100% no-repeat;
}

.kbh_enroll .tab-btn.kbh_tab_blue.active,
.kbh_enroll .tab-btn.kbh_tab_blue:hover {
    background: url(/wp-content/uploads/2025/10/Layer-4248-copy.webp) center / 100% 100% no-repeat;
}

.kbh_enroll .tab-btn.kbh_tab_green.active,
.kbh_enroll .tab-btn.kbh_tab_green:hover {
    background: url(/wp-content/uploads/2025/10/green.webp) center / 100% 100% no-repeat;
}

.kbh_enroll .tab-btn.kbh_tab_gray.active,
.kbh_enroll .tab-btn.kbh_tab_gray:hover {
    background: url(/wp-content/uploads/2025/10/Gray-Swash-Sample-copy-3.webp) center / 100% 100% no-repeat;
}

.kbh_enroll .tab-btn.kbh_tab_orange.active,
.kbh_enroll .tab-btn.kbh_tab_orange:hover {
    background: url(/wp-content/uploads/2025/10/Gray-Swash-Sample-copy-31.webp) center / 100% 100% no-repeat;
}

.kbh_enroll .tab-btn.active .kbh_anchor_image,
.kbh_enroll .tab-btn:hover .kbh_anchor_image {
    display: none;
}

.kbh_enroll .tab-btn.active .kbh_anchor_image_hover,
.kbh_enroll .tab-btn:hover .kbh_anchor_image_hover {
    display: block;
}

.kbh_enroll.bg_pink_swatch .tab-links p,
.kbh_enroll .tab-btn.active p,
.kbh_enroll .tab-btn:hover p {
    color: #fff !important;
}

.kbh_enroll .tab-btn.active .kbh_flex>picture img,
.kbh_enroll .tab-btn:hover .kbh_flex>picture img {
    filter: brightness(0) invert(1);
}

.kbh_enroll .kbh_copy {
    margin: 37px 0 30px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kbh_enroll .kbh-popup .tab-btn {
    border: none;
    padding: 0 0 11px;
}

.kbh_enroll .kbh-popup .tab-btn img {
    object-fit: contain;
    width: 59px;
    height: 45px;
}

.kbh_enroll .kbh-popup .tab-btn p {
    color: #ad237a;
}

.kbh_enroll .kbh-popup .kbh_copy {
    margin: 25px 0 5px;
}

@media only screen and (min-width: 992px) {}

@media only screen and (min-width: 1200px) {
    .kbh_enroll .kbh_nm_container {
        max-width: 990px;
    }
}

@media only screen and (max-width: 1300px) and (min-width: 992px) {}

@media only screen and (max-width: 1350px) {}

@media only screen and (max-width: 1200px) {
    .kbh_enroll .tab-btn {
        padding: 15px 22px 15px 34px;
    }
}

@media only screen and (max-width: 991px) {
    .kbh_enroll .tab-container {
        flex-direction: column-reverse;
    }

    .kbh_enroll .tab-pane.active {
        display: none;
    }
}

@media only screen and (max-width: 767px) {

    .kbh_enroll .kbh_nm_container {
        padding: 0;
    }

    .kbh_enroll {
        padding: 75px 0;
    }

    .kbh_enroll .kbh_new_module_top_area {
        padding: 0 20px;
    }

    .kbh_enroll .tab-pane {
        padding: 20px;
    }

    .kbh_enroll .kbh_flex {
        gap: 15px;
    }
}


@media only screen and (max-width: 479px) {
    .kbh_enroll .tab-btn {
        padding: 12px 12px 12px 24px;
    }

    .kbh_enroll .tab-links p {
        font-size: 16px;
    }
}

/* enroll end */

/* faq with search start */
.kbh_faq_search h2 {
    display: none;
}

.kbh_faq_search .accordion-container article.open {
    background: #F6F3F1;
    background: linear-gradient(0deg, rgba(246, 243, 241, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.kbh_faq_search .open .accordion-content {
    padding-right: 25px;
    min-height: 208px;
}

section.kbh_faq_search>.container {
    max-width: 965px !important;
}

.kbh_faq_search .kbh_video-wrapper {
    padding: 36px 36px 18px;
}

.kbh_faq_search .kbh_video-embed {
    border: 20px solid #fff;
    box-shadow: -12px 10px 30px 2px rgba(0, 0, 0, 0.2);
    max-width: 552px;
    margin: 0 auto;
}

.kbh_faq_search .kbh_video-wrapper .kbh_video-frame {
    aspect-ratio: 16 / 10;
}

.kbh_faq_search_module form.search-form {
    text-align: center;
    padding-bottom: 100px;
}

.kbh_faq_search_module form.search-form label {
    position: relative;
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.kbh_faq_search_module .search-form label input {
    color: #5a5b5d;
}

.kbh_faq_search_module .search-submit {
    width: 77px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d3d3d3;
    border-width: 0px;
    position: absolute;
    top: 4px;
    right: 4px;
}

.kbh_faq_search_module .search-form label input:focus-visible {
    outline-color: #bb2b91;
}

.kbh_faq_search.kbh_faq_resule .kbh_result_total .kbh_flex {
    justify-content: space-between;
}

.kbh_faq_search.kbh_faq_resule .kbh_result_total h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 25px;
}

.kbh_faq_search.kbh_faq_resule .kbh_result_total button {
    color: var(--secondary-color);
    background: transparent;
    margin-bottom: 15px;
    line-height: 33px;
    font-weight: 600;
    font-size: 16px;
    border: 0;
}

.kbh_faq_search.kbh_faq_resule .kbh_result_total .count {
    letter-spacing: 0.8px;
    font-weight: 600;
    font-size: 16px;
}


















@media only screen and (min-width: 992px) {}

@media only screen and (min-width: 1200px) {}

@media only screen and (max-width: 1300px) and (min-width: 992px) {}

@media only screen and (max-width: 1350px) {}

@media only screen and (max-width: 991px) {
    .kbh_faq_search_module .search-form label input {
        /* height: 60px; */
    }

    .kbh_faq_search_module .search-submit {
        /* width: 51px; */
        /* height: 52px; */
    }

    .kbh_faq_search_module .kbh-faq-top-image-wrapper {
        padding: 34px 0 37px;
    }
}

@media only screen and (max-width: 767px) {
    .kbh_faq_search .kbh_video-wrapper {
        padding: 23px 0px 18px;
    }

    .kbh_faq_search_module .kbh-faq-top-image-wrapper {
        padding: 65px 0 50px;
    }

    .kbh_faq_search_module form.search-form {
        padding-bottom: 75px;
    }

    .kbh_faq_search.job-page-faq.faqs-accord .accordion-container .article-title {
        margin: 0;
    }

    .kbh_faq_search_module .search-form label input {
        /* padding-left: 20px; */
        /* font-size: 18px; */
    }

    .kbh_faq_search.kbh_faq_resule .kbh_result_total {
        padding-bottom: 20px;
    }

    .kbh_faq_search.kbh_faq_resule .kbh_result_total .kbh_flex {
        justify-content: center;
        position: relative;
    }

    .kbh_faq_search.kbh_faq_resule .kbh_result_total button {
        position: absolute;
        bottom: -44px;
        right: 0;
    }
}

@media only screen and (max-width: 479px) {}

/* faq with search end */


/* leadership start */
.kbh_leadership .kbh_new_module_top_area .kbh_module_headline {
    padding-bottom: 50px;
}

.kbh_leadership .team-wrapper {
    flex-wrap: wrap;
    gap: 30px;
}

.kbh_leadership .card-body {
    padding: 38px 20px;
    height: 100%;
    position: relative;
    background: url(/wp-content/uploads/2025/10/swash_pink_top-copy-3.webp) top center / 100% 100% no-repeat;
    margin-top: -3px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.kbh_leadership .card-body h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
}

.kbh_leadership .card-body p {
    color: #fff;
    margin-bottom: 10px;
}

.kbh_leadership .service-badge {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    background: url(/wp-content/uploads/2025/09/gold1.png) center / contain no-repeat;
    width: 91px;
    height: 91px;
    line-height: 83px;
}

.kbh_leadership .kbh_heart_wrapper {
    align-items: center;
    justify-content: center;
}

.kbh_leadership .years-text {
    color: #fff;
}

.kbh_leadership .team-card {
    mask: url(/wp-content/themes/kinderberry-hill-conversion/assets/svg/scallop_bottom_big.svg);
    mask-size: auto;
    -webkit-mask-position: left bottom;
    -webkit-mask: url(/wp-content/themes/kinderberry-hill-conversion/assets/svg/scallop_bottom_big.svg);
    -webkit-mask-size: auto;
    -webkit-mask-position: left bottom;
    -webkit-mask-repeat: no-repeat;
    width: calc(32% - 9px);
    text-align: center;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.kbh_leadership .team-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.kbh_leadership .team-card img {
    width: 100%;
    object-fit: cover;
}

.kbh_leadership .kbh_btn_infant_mgnt {
    width: fit-content;
    margin: auto auto 15px;
}

/* 	detail page  */
.kbh_leadership_detail {
    background: url(/wp-content/uploads/2025/10/Layer-4243.webp) top center / 100% 285px no-repeat !important;
    padding: 80px 75px;
}

.kbh_leadership_detail .container {
    max-width: 1000px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    display: flex;
    gap: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Left Column */
.kbh_leadership_detail .kbh_left_wrapper {
    width: 50%;
    text-align: center;
}

.kbh_leadership_detail .kbh_item.slick-slide {
    padding: 16px;
}

.kbh_leadership_detail .kbh_bottom-img img,
.kbh_leadership_detail .kbh_left_wrapper .main img,
.kbh_leadership_detail .kbh_video-wrapper {
    width: 100%;
    border: 19px solid #fff;
    -webkit-box-shadow: 0px 0px 12px 7px rgba(0, 0, 1, 0.09);
    -moz-box-shadow: 0px 0px 12px 7px rgba(0, 0, 1, 0.09);
    box-shadow: 0px 0px 12px 7px rgba(0, 0, 1, 0.09);
}

.kbh_leadership_detail .kbh_left_wrapper .main img {
    aspect-ratio: 508 / 377;
    object-fit: cover;
}

.kbh_leadership_detail .kbh_text_wrapper {
    max-width: 350px;
    margin: 50px auto 0;
}

.kbh_leadership_detail .kbh_text_wrapper img {
    width: 100%;
}

.kbh_leadership_detail .quote {
    margin: 40px 0 25px;
}

.kbh_leadership_detail .service-badge {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    background: url(/wp-content/uploads/2025/09/gold1.png) center / contain no-repeat;
    width: 91px;
    height: 91px;
    line-height: 83px;
    text-align: center;
}

.kbh_leadership_detail .years-text {
    color: #fff;
    margin-left: -10px;
}

.kbh_leadership_detail .kbh_heart_wrapper {
    align-items: center;
    margin-left: -15px;
    padding-bottom: 53px;
}

/* Right Column */
.kbh_leadership_detail .kbh_right_wrapper {
    width: 50%;
}

.kbh_leadership_detail .role,
.kbh_leadership_detail .name {
    text-align: left;
    color: #fff;
}

.kbh_leadership_detail .name {
    font-size: 33px;
    padding: 30px 0 8px !important;
}

.kbh_leadership_detail .kbh_right_wrapper p {
    margin-bottom: 20px;
}

.kbh_leadership_detail .role {
    font-size: 20px;
    line-height: 140%;
    margin-bottom: -4px !important;
}

.kbh_leadership_detail .linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    text-decoration: none;
}

.kbh_leadership_detail.kbh_leader_pink .linkedin {
    background: #b1218a;
}

.kbh_leadership_detail .linkedin svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.kbh_leadership_detail .bottom-img {
    margin-top: 20px;
}

.kbh_leadership_detail .bottom-img img {
    width: 100%;
    max-width: 200px;
    border-radius: 8px;
}

.kbh_leadership_detail .kbh_2_column {
    width: 50%;
}

.kbh_leadership_detail .kbh_bottom-img img {
    margin: 0;
    filter: grayscale(100%);
    transform: rotate(2deg);
}

.kbh_leadership_detail .kbh_bottom-img {
    gap: 10px;
}

@media only screen and (min-width: 992px) {

    .kbh_leadership .team-card:hover .kbh_center_image,
    .kbh_leadership .team-card:hover .kbh_heart_wrapper,
    .kbh_leadership .kbh_btn_infant_mgnt {
        display: none;
    }

    .kbh_leadership_detail .kbh_left_wrapper {
        padding-right: 64px;
    }

    .kbh_leadership .team-card:hover .kbh_btn_infant_mgnt {
        display: block;
    }

    .kbh_leadership .team-card .card-body {
        transition: all 0.5s ease-in-out;
    }

    .kbh_leadership .kbh_image-wrapper {
        transition: filter 0.3s;
        transition: all 0.5s ease-in-out;
    }

    .kbh_leadership .team-card:hover .card-body {
        transform: translateY(calc(-100% - 55px));
    }

    .kbh_leadership .team-card:hover .kbh_image-wrapper {
        transform: translateY(calc(100% - 59px));
        filter: grayscale(100%);
        z-index: 1;
    }

    .kbh_leadership_detail .kbh_left_wrapper.kbh_leadership_teacher {
        padding-right: 48px;
    }
}

@media only screen and (min-width: 1200px) {
    .kbh-leadership .kbh_nm_container {
        max-width: 963px;
    }
}

@media only screen and (max-width: 1300px) and (min-width: 992px) {}

@media only screen and (max-width: 1350px) {}

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 991px) {
    .kbh_leadership .kbh_btn_infant_mgnt {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
    }

    .kbh_leadership_detail .kbh_right_wrapper {
        margin: 21px auto 0;
    }

    .kbh_leadership .kbh_center_image img {
        width: auto;
        margin: -39px auto 0;
    }

    .kbh_leadership .kbh_center_image {
        position: relative;
    }

    .kbh_leadership .card-body {
        position: static;
    }

    .kbh_leadership .team-card,
    .kbh_leadership .card-body,
    .kbh_leadership .kbh_image-wrapper {
        width: 100%;
        position: relative;
    }

    .kbh_leadership .team-card {
        margin-right: 10px;
    }

    /* 	detail page  */
    .kbh_leadership_detail .kbh_right_wrapper,
    .kbh_leadership_detail .kbh_left_wrapper,
    .kbh_leadership_detail .kbh_2_column {
        width: 100%;
    }

    .kbh_leadership_detail .kbh_flex {
        flex-wrap: wrap;
    }

    .kbh_leadership_detail {
        padding: 46px 15px 56px;
        background-size: 100% 325px !important;
    }

    .kbh_leadership_detail .name {
        font-size: 23px;
        padding: 0 0 8px !important;
    }

    .kbh_leadership_detail .role {
        margin-bottom: 10px !important;
    }

    .kbh_leadership_detail .kbh_heart_wrapper {
        padding-bottom: 0;
    }

    .kbh_leadership_detail .kbh_video-wrapper {
        margin: 16px 0;
    }

    .kbh_leadership_detail .kbh_text_wrapper {
        margin: 36px 0 27px;
    }

    .kbh_leadership_detail .quote {
        margin: 30px 0 35px !important;
    }

    .kbh_leadership_detail .kbh_2_column.kbh_image-wrapper {
        width: 189px;
        margin: -27px 0 0 auto;
    }

    .kbh_leadership_teacher ._slider {
        margin: 0 0 0 -16px;
    }

    .kbh_leadership .card-body p {
        min-height: 50px;
    }
}

@media only screen and (max-width: 767px) {}

/* leadershihp end */


/* testimonial start */
/* .kbh_new_module.testimonialnew .card {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: url(/wp-content/uploads/2025/10/Layer-903-copy-1.webp) center/ 100% 100% no-repeat;
    padding: 50px 56px 60px;
}

.kbh_new_module.testimonialnew .grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 28px 40px;
    align-items: center;
} */

/* Media ------------------------------------------ */
/* .kbh_new_module.testimonialnew .media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.kbh_new_module.testimonialnew .media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
}

.kbh_new_module.testimonialnew .play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--play);
    box-shadow: 0 8px 18px rgba(216, 67, 226, .35);
    cursor: pointer;
    border: none;
}

.kbh_new_module.testimonialnew .play:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 18px solid white;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    margin-left: 2px;
} */

/* Content ---------------------------------------- */
/* .kbh_new_module.testimonialnew .content {
    position: relative;
    padding-left: 47px;
}

.kbh_new_module.testimonialnew .quote-mark {
    position: absolute;
    top: 0;
    left: 0;
    width: 37px;
    height: 36px;
}

.kbh_new_module.testimonialnew .quote-mark img {
    width: 100%;
}

.kbh_new_module.testimonialnew .quote {
    text-align: left;
    padding: 13px 0 35px;
    margin: 0;
    color: #5a5b5d;
}

.kbh_new_module.testimonialnew .quote em {
    font-style: italic;
    font-weight: 700;
    color: #383838;
}

.kbh_new_module.testimonialnew .squiggle img {
    width: 100%;
    object-fit: contain;
    height: 18px;
    object-position: left;
}

.kbh_new_module.testimonialnew .squiggle {
    padding-bottom: 25px;
}

.kbh_new_module.testimonialnew .person,
.kbh_new_module.testimonialnew .meta {
    text-align: left;
}

.kbh_new_module.testimonialnew .person {
    color: #666666;
    font-size: 18px;
    font-family: 'Trend Slab';
}

.kbh_new_module.testimonialnew .meta {
    color: var(--muted);
    margin: 0;
}

.kbh_new_module.testimonialnew .meta span {
    display: block;
}

@media only screen and (max-width: 991px) {
    .kbh_new_module.testimonialnew .grid {
        grid-template-columns: 1fr;
    }

    .kbh_new_module.testimonialnew .kbh_module_headline {
        padding-bottom: 40px;
    }

    .image_gallery .kbh_new_module_top_area .kbh_module_headline {
        padding-bottom: 24px;
    }

    .kbh_new_module.testimonialnew .card {
        padding: 28px 16px 62px;
        background: url(/wp-content/uploads/2025/10/BG-1.webp) center / 100% 100% no-repeat;
    }

    .kbh_new_module.testimonialnew .quote-mark {
        position: relative;
    }

    .kbh_new_module.testimonialnew .content {
        padding-left: 0;
    }

    .kbh_new_module.testimonialnew {
        padding: 66px 0;
    }

    .kbh_new_module.testimonialnew .kbh_nm_container {
        padding: 0;
    }
} */

/* Video overlay state */
/* .kbh_new_module.testimonialnew .media .play {
    display: grid;
}

.kbh_new_module.testimonialnew .media.playing .play {
    display: none;
} */











































/* testimonial start */
.testimonialnew .card {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: url(/wp-content/uploads/2025/10/Layer-903-copy-1.webp) center/ 100% 100% no-repeat;
    padding: 50px 56px 60px;
}

.testimonialnew .grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 28px 40px;
    align-items: center;
}

/* Media ------------------------------------------ */
.testimonialnew .play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--play);
    box-shadow: 0 8px 18px rgba(216, 67, 226, .35);
    cursor: pointer;
    border: none;
}

.testimonialnew .play:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 18px solid white;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    margin-left: 2px;
}

/* Content ---------------------------------------- */
.testimonialnew .content {
    position: relative;
    padding-left: 47px;
}

.testimonialnew .quote-mark {
    position: absolute;
    top: 0;
    left: 0;
    width: 37px;
    height: 36px;
}

.testimonialnew .kbh_image_wrapper img,
.testimonialnew .quote-mark img {
    width: 100%;
}

.testimonialnew .quote {
    text-align: left;
    padding: 13px 0 35px;
    margin: 0;
    color: #5a5b5d;
}

.testimonialnew .quote em {
    font-style: italic;
    font-weight: 700;
    color: #383838;
}

.testimonialnew .squiggle img {
    width: 100%;
    object-fit: contain;
    height: 18px;
    object-position: left;
}

.testimonialnew .squiggle {
    padding-bottom: 25px;
}

.testimonialnew .person,
.testimonialnew .meta {
    text-align: left;
}

.testimonialnew .person {
    color: #666666;
    font-size: 18px;
    font-family: 'Trend Slab';
}

.testimonialnew .meta {
    color: var(--muted);
    margin: 0;
}

.testimonialnew .meta span {
    display: block;
}

@media only screen and (max-width: 991px) {
    .testimonialnew .grid {
        grid-template-columns: 1fr;
    }

    .testimonialnew .kbh_module_headline {
        padding-bottom: 40px;
    }

    .image_gallery .kbh_new_module_top_area .kbh_module_headline {
        padding-bottom: 24px;
    }

    .testimonialnew .card {
        padding: 28px 16px 62px;
        background: url(/wp-content/uploads/2025/10/BG-1.webp) center / 100% 100% no-repeat;
    }

    .testimonialnew .quote-mark {
        position: relative;
    }

    .testimonialnew .content {
        padding-left: 0;
    }

    .testimonialnew {
        padding: 66px 0;
    }

    .testimonialnew .kbh_nm_container {
        padding: 0;
    }
}

/* Video overlay state */
.testimonialnew .media .play {
    display: grid;
}

.testimonialnew .media.playing .play {
    display: none;
}

.kbh_one_slide_sldrsty {
    padding: 0 71px;
}

.kbh_one_slide_sldrsty .slick-dots {
    left: 50%;
    transform: translateX(-50%);


    bottom: -60px;
    padding-top: 39px;
}

.kbh_one_slide_sldrsty button.slick-arrow {
    width: 35px;
    height: 101px;
}

.bg_white_paper .kbh_one_slide_sldrsty button.slick-arrow,
.bg_white .kbh_one_slide_sldrsty button.slick-arrow {
    filter: brightness(0) invert(0.5);
}

.kbh_one_slide_sldrsty button.slick-prev.slick-arrow {
    left: 0;
    background: url(/wp-content/uploads/2025/08/Polygon-left.png) center/contain no-repeat;
}

.kbh_one_slide_sldrsty button.slick-next.slick-arrow {
    right: 0;
    background: url(/wp-content/uploads/2025/08/Polygon-right.png) center/contain no-repeat;
}

@media only screen and (max-width: 991px) {
    .kbh_one_slide_sldrsty button.slick-arrow {
        width: 28px;
        top: 100%;
        transform: unset;
    }

    .kbh_one_slide_sldrsty {
        padding: 0;
    }

    .kbh_one_slide_sldrsty button.slick-next.slick-arrow {
        right: 20px;
    }

    .kbh_one_slide_sldrsty button.slick-prev.slick-arrow {
        left: 20px;
    }

    .kbh_one_slide_sldrsty .slick-dots {
        max-width: calc(100% - 80px);
    }
}

@media only screen and (max-width: 767px) {
    .kbh_one_slide_sldrsty button.slick-arrow {
        width: 20px;
    }
}

/* testimonial end */


/* typical day schedule start */
.typicalday {
    padding-bottom: 106px;
}

.typicalday .kbh_new_module_top_area .kbh_module_copy p:not(p:last-child) {
    padding-bottom: 30px;
}

.typicalday .kbh_general_tab .tabs {
    gap: 45px;
    padding: 18px 30px 12px;
    margin-bottom: 54px !important;
    width: fit-content;
    margin: 0 auto;
    background: url(/wp-content/uploads/2025/09/Layer-4251.jpg) center / 100% 100% no-repeat;
}

.typicalday .kbh_general_tab .tab {
    color: #fff;
    text-transform: uppercase;
    border-bottom: 4px solid transparent;
}

.typicalday .kbh_general_tab .tab.active {
    border-color: #d2af2b;
}

.typicalday .kbh_card-wrapper {
    position: relative;
    margin-bottom: 45px;
    padding: 24px 20px 30px;
    width: calc(100% - 96px);
    gap: 27px;
}

.typicalday .kbh_card-wrapper:last-child {
    margin-bottom: 0;
}

.typicalday .kbh_card-wrapper.header_image_right {
    background: url(/wp-content/uploads/2025/09/paper.png) center / 100% 100% no-repeat;
    flex-direction: row-reverse;
}

.typicalday .kbh_card-wrapper.header_image_left {
    background: url(/wp-content/uploads/2025/09/paper-copy.png) center / 100% 100% no-repeat;
    margin-left: auto;
}

.typicalday .kbh_card-wrapper .right {
    gap: 0 20px;
    text-align: left;
}

.typicalday .kbh_card-wrapper .art_top_right .text_div {
    width: calc(100% - 120px);
    margin: auto;
}

.typicalday .kbh_card-wrapper .right .kbh_image-wrapper {
    max-width: 100px;
}

.typicalday .kbh_card-wrapper .art_bottom_right,
.typicalday .kbh_card-wrapper .art_bottom_left {
    flex-direction: column;
}

.typicalday .kbh_card-wrapper .art_bottom_right .kbh_image-wrapper {
    margin-left: auto;
}

.typicalday .kbh_card-wrapper .text_div {
    flex-grow: 1;
}

.typicalday .kbh_card-wrapper img {
    height: auto;
    width: 100%;
}

.typicalday .kbh_card-wrapper h3 {
    color: #bb2b91;
    font-size: 20px;
    margin: 0 0 13px;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.typicalday .kbh_card-wrapper p {
    margin-bottom: 20px;
}

.typicalday .kbh_card-wrapper .menu-link {
    color: #a5007d;
    font-weight: bold;
    text-decoration: none;
}

.typicalday .kbh_card-wrapper .menu-link span {
    font-size: 14px;
    margin-left: 5px;
}

.typicalday .kbh_card-wrapper .left img {
    width: 230px;
}

@media only screen and (min-width: 992px) {
    .typicalday .kbh_card-wrapper.header_image_right .left {
        margin-right: -116px;
    }

    .typicalday .kbh_card-wrapper.header_image_left .left {
        margin-left: -116px;
    }

    .typicalday .kbh_card-wrapper .left h3 {
        display: none;
    }

    .typicalday .kbh_card-wrapper .left {
        width: 230px;
    }
}

@media only screen and (min-width: 1200px) {}

@media only screen and (max-width: 1300px) and (min-width: 992px) {}

@media only screen and (max-width: 1350px) {}

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 991px) {
    .typicalday .kbh_card-wrapper.header_image_right .left {
        flex-direction: row-reverse;
    }

    .typicalday .kbh_card-wrapper {
        flex-direction: column !important;
        padding: 30px 25px 50px;
        margin-bottom: 57px;
        width: 100%;
    }

    .typicalday {
        padding-bottom: 75px;
    }

    .typicalday .kbh_card-wrapper .text_div h3 {
        display: none;
    }

    .typicalday .kbh_card-wrapper .left {
        display: flex;
        align-items: flex-end;
        gap: 20px;
    }

    .typicalday .kbh_card-wrapper .left img {
        margin-top: -60px;
        width: 170px;
    }
}

@media only screen and (max-width: 767px) {
    .typicalday .kbh_new_module_top_area img {
        width: 100%;
    }

    .typicalday .container-half {
        padding: 0;
    }

    .typicalday .kbh_new_module_top_area {
        padding: 0 15px;
    }

    .typicalday .kbh_card-wrapper .left img {
        width: 130px;
    }

    .typicalday .kbh_card-wrapper h3 {
        font-size: 16px;
    }
}

/*  typical day schedule end */


/* interactive infographic template A end */

.kbh_interactiveinfo_a .module-section {
    /* background: #fff url(/wp-content/uploads/2025/09/Layer-1.jpg) top left / auto no-repeat; */
    background: #fff;
    padding: 42px 60px 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.kbh_interactiveinfo_a .module-container {
    gap: 3% 6%;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Content Area */
.kbh_interactiveinfo_a .content-area {
    width: 34%;
}

.kbh_interactiveinfo_a .content-icon {
    margin-bottom: 18px;
    text-align: center;
}

.kbh_interactiveinfo_a .category-icon {
    width: 100%;
    height: 161px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.kbh_interactiveinfo_a .content-area:hover .category-icon {
    transform: scale(1.05);
}

.kbh_interactiveinfo_a .content-title {
    margin-bottom: 8px;
}

.kbh_interactiveinfo_a .squiggle img {
    height: 21px;
}

.kbh_interactiveinfo_a .content-text {
    padding-top: 10px;
}

.kbh_interactiveinfo_a .content-highlight {
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Bar Graph Area */
.kbh_interactiveinfo_a .bar-graph-area {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: end;
}

.kbh_interactiveinfo_a .bars-container {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: space-between;
}

.kbh_interactiveinfo_a .bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    max-width: 100px;
    width: 100%;
}

.kbh_interactiveinfo_a .bar-item:hover .bar-dot {
    background-color: #ff1493 !important;
    transform: scale(1.2);
}

.kbh_interactiveinfo_a .percentage-display {
    font-weight: 600;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.kbh_interactiveinfo_a .bar-container {
    position: relative;
    width: 35px;
    height: 366px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.kbh_interactiveinfo_a .bar-fill {
    width: 100%;
    height: 0%;
    border-radius: 20px 20px 0 0;
    position: relative;
    transition: height 2s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.2));
}

/* Bar colors */
.kbh_interactiveinfo_a .bar-item[data-color="teal"] .bar-fill {
    background: url(/wp-content/uploads/2025/10/green-1.webp) bottom center / 100% 100% no-repeat;
}

.kbh_interactiveinfo_a .bar-item[data-color="gray"] .bar-fill {
    background: url(/wp-content/uploads/2025/10/grey.webp) bottom center / 100% 100% no-repeat;
}

.kbh_interactiveinfo_a .bar-item[data-color="yellow"] .bar-fill {
    background: url(/wp-content/uploads/2025/10/yellow.webp) bottom center / 100% 100% no-repeat;
}

.kbh_interactiveinfo_a .bar-item[data-color="peach"] .bar-fill {
    background: url(/wp-content/uploads/2025/10/beige.webp) bottom center / 100% 100% no-repeat;
}

.kbh_interactiveinfo_a .bar-item[data-color="blue"] .bar-fill {
    background: url(/wp-content/uploads/2025/10/blue-1.webp) bottom center / 100% 100% no-repeat;
}

.kbh_interactiveinfo_a .bar-item[data-color="red"] .bar-fill {
    background: url(/wp-content/uploads/2025/10/red.webp) bottom center / 100% 100% no-repeat;
}

.kbh_interactiveinfo_a .bar-dot {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: white;
    border: 12px solid #fff;
    transition: all 0.3s ease;
    z-index: 3;
    will-change: transform;
    -webkit-box-shadow: 0 3px 14px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0 3px 14px rgba(0, 0, 0, 0.24);
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.24);
}

.kbh_interactiveinfo_a .bar-dot:before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    background: #ffffff;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.24);
}

.kbh_interactiveinfo_a .bar-item.active .bar-dot:before {
    background: #ac288c;
}

.kbh_interactiveinfo_a .bar-label {
    margin-top: 9px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    line-height: 167%;
    border-bottom: 4px solid transparent;
}

.kbh_interactiveinfo_a .bar-item.active .bar-label {
    border-color: #d2af2b;
}

/* Animation classes */
.kbh_interactiveinfo_a .bars-container.animate .bar-fill {
    animation: growBar 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.kbh_interactiveinfo_a .bars-container.animate .percentage-display {
    animation: countUp 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes growBar {
    from {
        height: 0%;
    }

    to {
        height: var(--target-height);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.kbh_interactiveinfo_a .content-navigation {
    display: none;
}

@media only screen and (min-width: 992px) {}

@media only screen and (min-width: 1200px) {
    .kbh_interactiveinfo_a .kbh_nm_container {
        max-width: 1340px;
    }
}

@media only screen and (max-width: 1300px) and (min-width: 992px) {
    .kbh_interactiveinfo_a .module-section {
        padding: 35px 40px;
    }
}

@media only screen and (max-width: 1300px) and (min-width: 992px) {
    .kbh_interactiveinfo_a .content-area {
        width: 37%;
    }
}

@media only screen and (max-width: 1350px) {}

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 991px) {
    .kbh_interactiveinfo_a .kbh_new_module_top_area .kbh_module_headline {
        padding-bottom: 30px;
        font-size: 24px;
    }

    .kbh_interactiveinfo_a .module-section {
        padding: 60px 10px 50px;
    }

    .kbh_interactiveinfo_a .content-navigation {
        display: flex;
        justify-content: space-between;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        left: 50%;
    }

    .kbh_interactiveinfo_a .nav-arrow {
        filter: grayscale(1) brightness(0.5);
        width: 24px;
        height: 65px;
        border: 0;
    }

    .kbh_interactiveinfo_a .nav-arrow-right {
        background: url(/wp-content/uploads/2025/10/Polygon-1-copy-2.webp) center/cover no-repeat;
    }

    .kbh_interactiveinfo_a .nav-arrow-left {
        background: url(/wp-content/uploads/2025/10/Polygon-1-copy.webp) center/cover no-repeat;
    }

    .kbh_interactiveinfo_a .nav-arrow:disabled:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

    .kbh_interactiveinfo_a .module-container {
        flex-direction: column-reverse;
        gap: 44px;
    }

    .kbh_interactiveinfo_a .bar-graph-area,
    .kbh_interactiveinfo_a .content-area {
        position: relative;
        width: 100%;
    }

    .kbh_interactiveinfo_a .content-area>div:first-child {
        padding: 0 36px;
    }

    .kbh_interactiveinfo_a .bar-graph-area {
        padding: 0 12px;
    }

    .kbh_interactiveinfo_a .bar-dot {
        width: 43px;
        height: 43px;
        border-width: 9px;
    }

    .kbh_interactiveinfo_a .bar-container {
        width: 22px;
        height: 255px;
    }

    .kbh_interactiveinfo_a .content-title {
        width: calc(100% - 79px);
        font-size: 24px;
    }

    .kbh_interactiveinfo_a .lightbulb-icon {
        width: 50px;
        height: 50px;
    }

    .kbh_interactiveinfo_a .percentage-display {
        margin-bottom: 17px;
    }

    .kbh_interactiveinfo_a .category-icon {
        height: 93px;
        object-fit: contain;
    }

    .kbh_interactiveinfo_a .kbh-mbl_sty {
        display: flex;
        gap: 18px;
        align-items: center;
    }

    .kbh_interactiveinfo_a .content-text {
        padding-top: 0px;
    }

    .kbh_interactiveinfo_a .content-icon {
        margin-bottom: 28px;
        width: 79px;
    }
}

@media only screen and (max-width: 767px) {
    .kbh_interactiveinfo_a .kbh_nm_container {
        padding: 0;
    }

    .kbh_interactiveinfo_a {
        padding: 75px 0 75px;
    }

    .kbh_interactiveinfo_a .bar-label {
        margin-top: 5px;
        font-size: 10px;
    }
}

@media only screen and (max-width: 479px) {
    .kbh_interactiveinfo_a .bar-label {
        font-size: 8px;
    }

    .kbh_interactiveinfo_a .percentage-display {
        font-size: 11px;
    }
}

/* Touch device styles */
@media (hover: none) and (pointer: coarse) {
    .kbh_interactiveinfo_a .bar-item:hover .bar-label {
        text-decoration: none;
    }

    .kbh_interactiveinfo_a .bar-item:hover .bar-dot {
        background-color: white !important;
        transform: none;
    }
}

/* interactive infographic template A end */

/* interactive infographic template C start */
.kbh_interactiveinfo_c {}

.kbh_interactiveinfo_c .slick-track {
    /* padding: 188px 0 199px; */
    padding: 130px 0 140px;
}

.kbh_interactiveinfo_c .kbh_slider_general_gray .slick-dots,
.kbh_interactiveinfo_c .kbh_slider_general_white .slick-dots {
    bottom: -32px;
}

.kbh_interactiveinfo_c .kbh_info_slide_card {
    /* padding: 20px 21px 25px ; */
    /* padding: 0px 20px 0px; */
    /* background: #fff; */
    /* -webkit-box-shadow: 0px 0px 12px 7px rgba(0, 0, 1, 0.09); */
    /* -moz-box-shadow: 0px 0px 12px 7px rgba(0, 0, 1, 0.09); */
    /* box-shadow: 0px 0px 12px 7px rgba(0, 0, 1, 0.09); */

}

.kbh_interactiveinfo_c .kbh_info_slide_card.slick-slide {
    position: relative;
    /* padding: 0px 20px 0px; */
    background: white;
    /* width: 1.2%; */
    width: 360px;
    z-index: 0;
}

.kbh_interactiveinfo_c .kbh_info_slide_card .kbh_card_wrapper {
    /*  padding: 35px 31px 45px; */
    -webkit-box-shadow: 0px 0px 10px 3px rgba(0, 0, 1, 0.3);
    -moz-box-shadow: 0px 0px 10px 3px rgba(0, 0, 1, 0.3);
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 1, 0.3);
    opacity: 0.5;
    padding: 20px 21px 25px;
}

.kbh_interactiveinfo_c .kbh_info_slide_card.slick-center .kbh_card_wrapper {
    opacity: 1;
}

.kbh_interactiveinfo_c .slick-track .slick-slide:not(.slick-active)+.kbh_info_slide_card.slick-slide.slick-active {
    left: 1.27%;
}

.kbh_interactiveinfo_c .slick-track .slick-slide:not(.slick-active)+.kbh_info_slide_card.slick-slide.slick-active,
.kbh_interactiveinfo_c .slick-track .slick-slide:not(.slick-active)+.slick-slide.slick-active+.slick-slide.slick-active+.slick-slide.slick-active+.slick-slide.slick-active+.slick-slide.slick-active.kbh_info_slide_card {}

.kbh_interactiveinfo_c .slick-track .slick-slide:not(.slick-active)+.slick-slide.slick-active+.slick-slide.slick-active+.slick-slide.slick-active+.slick-slide.slick-active+.slick-slide.slick-active.kbh_info_slide_card {
    left: -1.27%;
}

.kbh_interactiveinfo_c .slick-track .slick-slide:not(.slick-active)+.slick-slide.slick-active.kbh_info_slide_card .kbh_card_wrapper,
.kbh_interactiveinfo_c .slick-track .slick-slide:not(.slick-active)+.slick-slide.slick-active+.slick-slide.slick-active+.slick-slide.slick-active+.slick-slide.slick-active+.slick-slide.slick-active.kbh_info_slide_card .kbh_card_wrapper {}

.kbh_interactiveinfo_c .kbh_info_slide_card.slick-center {
    transform: scale(1.4);
    z-index: 5;
}



.kbh_interactiveinfo_c .slick-track .slick-slide:not(.slick-active)+.slick-slide.slick-active+.slick-slide.slick-active:not(.slick-center) {
    z-index: 1;
    left: 0.63%;
}

.kbh_interactiveinfo_c .kbh_info_slide_card.slick-current+.slick-active {
    z-index: 3;
    left: -0.63%;
}

.kbh_interactiveinfo_c .kbh_card-header {
    padding: 0 0 9px;
    align-items: center;
    gap: 16px;
}

.kbh_interactiveinfo_c .kbh_card-header img {
    object-fit: cover;
    height: 34px;
    width: 33px;
}

.kbh_interactiveinfo_c .kbh_card_body img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kbh_interactiveinfo_c .kbh_card-header p {
    color: #ad237a;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.kbh_interactiveinfo_c .kbh_image-wrapper,
.kbh_interactiveinfo_c .kbh_video-wrapper {
    /*     padding: 0 0 27px 0;  */
    padding: 0 0 15px 0;
    width: 100%;
}

.kbh_interactiveinfo_c .kbh_image-wrapper,
.kbh_interactiveinfo_c .kbh_video-frame {
    aspect-ratio: 410 / 304;
}

.kbh_interactiveinfo_c .kbh_copy {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
    min-height: 145px;
}

.kbh_interactiveinfo_c .kbh_copy,
.kbh_interactiveinfo_c .kbh_copy p {
    font-size: 12px;
    line-height: 150%;
}

.kbh_interactiveinfo_c .kbh_a_circle_svg {
    font-size: 11px;
    line-height: 150%;
    gap: 11px;
}

.kbh_interactiveinfo_c .kbh_a_circle_svg svg {
    width: 25px;
    height: 25px;
}

.kbh_interactiveinfo_c .kbh_mobile_overlay {
    display: none;
}

.kbh_interactiveinfo_c .kbh_icon-circle {
    display: inline-flex;
    margin-top: -3px;
}

.kbh_interactiveinfo_c .kbh_new_module_top_area .kbh_module_copy {
    padding-bottom: 11px;
}

@media only screen and (min-width: 992px) {

    .kbh_interactiveinfo_c .slick-track .slick-slide:not(.slick-active)+.slick-slide.slick-active+.slick-slide.slick-active,
    .kbh_interactiveinfo_c .kbh_info_slide_card.slick-current+.slick-active {
        transform: scale(1.2);
    }
}

@media only screen and (min-width: 1301px) {
    .kbh_interactiveinfo_c .kbh_scrolling_slider {
        padding: 0 76px;
    }
}

@media only screen and (max-width: 1300px) and (min-width: 992px) {
    .kbh_interactiveinfo_c .kbh_scrolling_slider {
        padding: 0 48px;
    }
}

@media only screen and (max-width: 1199px) and (min-width: 992px) {
    .kbh_interactiveinfo_c .kbh_info_slide_card.slick-slide {
        /* width: 1.1%; */
        width: 310px;
    }
}

@media only screen and (max-width: 800px) and (min-width: 768px) {
    .kbh_interactiveinfo_c .kbh_info_slide_card.slick-slide {
        width: 328px;
    }
}

@media only screen and (max-width: 1300px) {}

@media only screen and (max-width: 1199px) {
    .kbh_interactiveinfo_c .slick-track .slick-slide:not(.slick-active)+.slick-slide.slick-active+.slick-slide.slick-active {
        /* left: 0.75%; */
    }

    .kbh_interactiveinfo_c .slick-track .slick-slide:not(.slick-active)+.kbh_info_slide_card.slick-slide.slick-active {
        /* left: 1.4%; */
    }

    .kbh_interactiveinfo_c .slick-track .slick-slide:not(.slick-active)+.slick-slide.slick-active+.slick-slide.slick-active+.slick-slide.slick-active+.slick-slide.slick-active+.slick-slide.slick-active.kbh_info_slide_card {
        /* left: -1.4%; */
    }

    .kbh_interactiveinfo_c .kbh_info_slide_card.slick-current+.slick-active {
        /* left: -0.7%; */
    }
}

@media only screen and (max-width: 991px) {
    .kbh_interactiveinfo_c .kbh_new_module_top_area .kbh_module_headline {
        font-size: 24px;
        padding-bottom: 16px;
    }

    .kbh_interactiveinfo_c .kbh_new_module_medium_area {
        padding-bottom: 118px;
    }

    .kbh_interactiveinfo_c .kbh_info_slide_card.slick-current+.slick-active,
    .kbh_interactiveinfo_c .kbh_info_slide_card.slick-current+.slick-active+.slick-slide {
        /* left: 0.14%; */
        left: -180px;
    }

    .kbh_interactiveinfo_c .slick-track .slick-slide:not(.slick-active)+.kbh_info_slide_card.slick-slide.slick-active {
        /* left: 1.35%; */
        left: 180px;
    }

    .kbh_interactiveinfo_c .slick-track {
        padding: 120px 0;
    }

    .kbh_interactiveinfo_c .kbh_a_circle_svg {
        font-size: 12px;
    }

    .kbh_interactiveinfo_c .kbh_image-wrapper,
    .kbh_interactiveinfo_c .kbh_video-wrapper {
        padding-bottom: 9px;
    }

    .kbh_interactiveinfo_c .kbh_card-header {
        padding: 0px 0px 13px;
        gap: 15px;
    }

    .kbh_interactiveinfo_c .kbh_new_module_top_area .kbh_module_copy {
        padding-bottom: 4px;
    }

    .kbh_interactiveinfo_c .kbh_slider_general_gray .slick-dots,
    .kbh_interactiveinfo_c .kbh_slider_general_white .slick-dots {
        bottom: -60px;
    }

    .kbh_interactiveinfo_c .slick-dotted {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 820px) {}

@media only screen and (max-width: 767px) {
    .kbh_interactiveinfo_c .kbh_nm_container {
        padding: 0;
    }

    .kbh_interactiveinfo_c .slick-track {
        padding: 110px 0 110px;
    }

    .kbh_interactiveinfo_c .kbh_info_slide_card .kbh_card_wrapper {
        padding: 11px 12px 11px;
    }

    .kbh_interactiveinfo_c {
        padding: 75px 0 75px;
    }

    .kbh_interactiveinfo_c .kbh_new_module_top_area {
        padding: 0 15px;
    }

    .kbh_slider_general_gray button.slick-next.slick-arrow,
    .kbh_slider_general_white button.slick-next.slick-arrow {
        right: 10px;
    }

    .kbh_slider_general_gray button.slick-prev.slick-arrow,
    .kbh_slider_general_white button.slick-prev.slick-arrow {
        left: 10px;
    }

    .kbh_interactiveinfo_c .kbh_info_slide_card.slick-slide {
        width: 315px;
    }

    .kbh_interactiveinfo_c .slick-track .slick-slide:not(.slick-active)+.kbh_info_slide_card.slick-slide.slick-active {
        /* left: 295px; */
        left: 90px;
    }

    .kbh_interactiveinfo_c .kbh_info_slide_card.slick-current+.slick-active+.slick-slide,
    .kbh_interactiveinfo_c .kbh_info_slide_card.slick-current+.slick-active {
        /* left: 170px; */
        left: -90px;
    }
}

@media only screen and (max-width: 600px) {
    .kbh_interactiveinfo_c .kbh_info_slide_card.slick-slide {
        width: 270px;
    }
}

@media only screen and (max-width: 479px) {
    .kbh_interactiveinfo_c .kbh_info_slide_card.slick-slide {
        width: 220px;
    }
}

/* interactive infographic template C end */


/* informative scrolling learning & schedule start */
.kbh_informative_scroll .kbh_new_module_top_area .kbh_module_headline {
    padding-bottom: 21px;
}

.kbh_informative_scroll .kbh_new_module_top_area .kbh_module_copy {
    max-width: 845px;
    margin: 0 auto;
}

.kbh_informative_scroll img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kbh_informative_scroll .squiggle img {
    object-fit: contain;
    height: 18px;
}

.kbh_informative_scroll .kbh_card_body {
    padding: 34px 20px;
}

.kbh_informative_scroll .kbh_a_circle_svg {
    color: #fff !important;
}

.kbh_informative_scroll .kbh_card_text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    color: #fff;
}

.kbh_informative_scroll .kbh_a_circle_svg svg {
    background: #ffffff;
}

.kbh_informative_scroll .kbh_a_circle_svg:hover svg {
    background: #d2af2b;
}

.kbh_informative_scroll .kbh_a_circle_svg path {
    fill: #bb2b91;
}

.kbh_informative_scroll article {
    height: 100%;
}

.kbh_informative_scroll h3,
.kbh_informative_scroll .kbh_schedule_time {
    color: #fff;
}

.kbh_informative_scroll .kbh_schedule_time {
    font-weight: 600;
    letter-spacing: 1.4px;
}

.kbh_informative_scroll .squiggle {
    padding: 7px 0 15px;
}


/* kbh_informative_scroll with kbh_learning */
.kbh_informative_scroll.kbh_learning article {
    height: 437px;
}

.kbh_informative_scroll.kbh_learning img {
    transition: all 0.7s ease-in-out;
    -webkit-transition: all 0.7s ease-in-out;
    -moz-transition: all 0.7s ease-in-out;
    height: 322px;
}

.kbh_informative_scroll.kbh_learning .kbh_card.kbh_lines-1:hover img {
    height: 282px;
}

.kbh_informative_scroll.kbh_learning .kbh_card.kbh_lines-2:hover img {
    height: 256px;
}

.kbh_informative_scroll.kbh_learning .kbh_card.kbh_lines-3:hover img {
    height: 230px;
}

.kbh_informative_scroll.kbh_learning .kbh_card.kbh_lines-4:hover img {
    height: 204px;
}

.kbh_informative_scroll.kbh_learning .kbh_card.kbh_lines-5:hover img {
    height: 178px;
}

.kbh_informative_scroll.kbh_learning .kbh_card.kbh_lines-6:hover img {
    height: 152px;
}

.kbh_informative_scroll.kbh_learning .kbh_card_text {
    transition: all 0.7s ease-in-out;
    -webkit-transition: all 0.7s ease-in-out;
    -moz-transition: all 0.7s ease-in-out;
    opacity: 0;
}

.kbh_informative_scroll.kbh_learning .kbh_card:hover .kbh_card_text {
    opacity: 1;
}

.kbh_informative_scroll.kbh_learning .kbh_card_body {
    padding-top: 20px;
    position: relative;
    overflow: hidden;
}

.kbh_informative_scroll.kbh_learning .kbh_a_circle_svg {
    padding-bottom: 10px;
}


/* kbh_informative_scroll with kbh_schedule */
.kbh_informative_scroll.kbh_schedule .kbh_card {
    margin-top: -3px;
    flex-direction: column;
}

.kbh_informative_scroll.kbh_schedule .kbh_card.kbh_image_top {}

.kbh_informative_scroll.kbh_schedule .track .slide:nth-child(2n) article,
.kbh_informative_scroll.kbh_schedule .kbh_card.kbh_image_bottom {
    flex-direction: column-reverse;
}

.kbh_informative_scroll.kbh_schedule .kbh_card_body {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.kbh_informative_scroll.kbh_schedule .kbh_lines-1 .kbh_card_header img {
    height: 288px;
}

.kbh_informative_scroll.kbh_schedule .kbh_lines-2 .kbh_card_header img {
    height: 272px;
}

.kbh_informative_scroll.kbh_schedule .kbh_lines-3 .kbh_card_header img {
    height: 236px;
}

.kbh_informative_scroll.kbh_schedule .kbh_lines-4 .kbh_card_header img {
    height: 219px;
}

.kbh_informative_scroll.kbh_schedule .kbh_lines-5 .kbh_card_header img {
    height: 184px;
}

.kbh_informative_scroll.kbh_schedule .kbh_lines-6 .kbh_card_header img {
    height: 171px;
}

.kbh_informative_scroll.kbh_schedule .track .slide:nth-child(2n) .kbh_a_circle_svg {
    padding: 21px 0 10px;
}

.kbh_informative_scroll.kbh_schedule .track .slide:nth-child(2n+1) .kbh_a_circle_svg {
    padding: 21px 0;
}

@media only screen and (min-width: 992px) {}

@media only screen and (min-width: 1200px) {}

@media only screen and (max-width: 1300px) and (min-width: 992px) {}

@media only screen and (max-width: 1350px) {}

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 991px) {
    .kbh_informative_scroll .kbh_a_circle_svg {
        font-size: 15px;
    }

    .kbh_home_location .kbh_new_module_top_area h2,
    .kbh_informative_scroll .kbh_new_module_top_area .kbh_module_headline {
        font-size: 24px;
    }

    .kbh_informative_scroll .squiggle img {
        height: 14px;
    }

    .kbh_informative_scroll .kbh_schedule_time {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .kbh_informative_scroll .squiggle {
        padding: 2px 0 15px;
    }

}

@media only screen and (max-width: 767px) {}

/* informative scrolling learning & schedule end */
































/* start */


.kbh_enroll .kbh_new_module_medium_area {}





@media only screen and (min-width: 992px) {}

@media only screen and (min-width: 1200px) {}

@media only screen and (max-width: 1300px) and (min-width: 992px) {}

@media only screen and (max-width: 1350px) {}

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {}

/* end */