#main_index {
    padding-bottom: 0!important;
    overflow: hidden;
}

#main_index a:hover {
    text-decoration: none;
}

/*.container {*/
/*    max-width: 100%;*/
/*  padding: 0 8.5%;*/
/*}*/

body > br {
    display: none;
}


/*topspace*/
.industry_topContact {
    background-color: #39205C;
    order: 1;
    text-align: center;
}
.industry_topContactContent a{
    color:#fff;
    text-decoration: none;
}

.industry_topContactContent {
    display: flex;
    justify-content: center;
    padding: 0.8rem 0;
    /*padding-left: 5rem;*/
}

.industry_topContactText {
    font-size: 0.875rem;
    color: #fff;
    margin-right: 0!important;
    letter-spacing: 2px;
    /*cursor: pointer;*/
}

.industry_topContactText a:hover {
    color: #333;
}

@media all and (max-width: 991.5px) { 
    .industry_topContact {
        display: none;
    }
}


/*navbar*/

.navbar_type10 {
    padding: 0;
}

.navbar_type10 .d-flex {
    display: flex !important;
    flex-direction: column;
    padding: 0;
    max-width: 100%;
}

.navbar_type10 .nav_logo {
    order: 2;
    margin: 1rem auto;
}

.navbar_type10 .nav_search {
    display: none;
}

.nav_bottom .menu .nav_item:hover {
    background-color: #F7F1F7;
}

.nav_bottom .menu .nav_item .dropdown a {
    font-weight: 300 !important;
    font-size: .9rem;
    text-transform: uppercase;
    color: #39205c;
    padding: 10px 3vw;
    letter-spacing: 2px;
}

.sticky-top .nav_bottom .p-0 {
    justify-content: center!important;
}

/*Video Banner custom*/
.customVideo {
position: relative;
}
.m_custom_video{
    display: none;
}
.videoPlay {
    position: absolute;
    z-index: 99;
    bottom: 1.5rem;
    right: 4rem;
}
.videoPlay button {
    width: 2rem;
    height: 2rem;
    display: inline-block;
    background: rgba(256,256,256,0.7);
    position: relative;
    border-radius: 50%;
    border: none;
}
.videoPlay button:focus {
    outline: none;
}
.videoPlay button.paused {
    background: rgba(256,256,256,1);
}
.videoPlay button:after {
    content: "\f04c";
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    width: 100%;
    height: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    font-weight: 700;
    font-size: .9rem;
}
.videoPlay button.paused:after {
    content: "\f04b";
    left: 1px;
}

.videoMute {
    position: absolute;
    z-index: 99;
    bottom: 1.5rem;
    right: 1.5rem;
}
.videoMute button {
    width: 2rem;
    height: 2rem;
    display: inline-block;
    background: rgba(256,256,256,1);
    position: relative;
    border-radius: 50%;
    border: none;
}
.videoMute button:focus {
    outline: none;
}
.videoMute button.muted {
    background: rgba(256,256,256,.7);
}
.videoMute button:before {
    content: "\f028";
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    width: 100%;
    height: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 1px;
    font-weight: 700;
    font-size: .9rem;
}
.videoMute button.muted:after {
    content: "\f715";
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    width: 100%;
    height: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    font-weight: 700;
    font-size: .9rem;
}

@media (max-width: 1200.5px) {
    .nav_bottom .menu .nav_item .dropdown a {
        padding: 10px 2vw;
    }
}

@media only screen and (max-width: 768px) {
    .videoPlay {
        bottom: 1rem;
        right: 3.5rem;
    }
    .videoMute {
        bottom: 1rem;
        right: 1rem;
    }
}
@media only screen and (max-width: 767.5px) {
    .website_custom_video{
        display: none;
    }
    .m_custom_video{
        display: block;
    }
    .m_custom_video .embed-responsive{
        aspect-ratio: 1/1.7777777777778;
    }
}

/*setting*/

.hp-title {
    color: #39205C;
    font-style: italic;
    font-size: 1.4rem;
}

.purple-title {
    font-style: unset;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    background: -webkit-linear-gradient(#39205C 35%, #B8A7C6);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.hp-content {
    font-size: 1rem;
    color: #4d4d4d;
    line-height: 1.8;
    transition: ease .5s;
}

.hp-button {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(to right bottom, #6c4b9a, #210442, #6c4b9a);
  padding: 8px 2vw;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  z-index: 0;
  transition: ease .4s;
}

/* Create an animated border using a ::before element */
.hp-button::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(90deg, 
    #6c4b9a, #210442, #6c4b9a, #210442, #6c4b9a);
  background-size: 300% 300%;
  border-radius: 4px;
  z-index: -1;
  animation: borderMove 6s linear infinite;
}


.hp-button:hover {
    color: #fff;
    text-decoration: none;
    transform: scale(1.05);
}

/* Keep button background and content above */
.hp-button > * {
  position: relative;
  z-index: 1;
}

/* Border animation keyframes */
@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

.white-wording {
    color: #fff!important;
    -webkit-text-fill-color: unset!important;
}

@media (max-width: 1200.5px) {
    
    .hp-title {
        font-size: 18px;
    }
    
    .purple-title {
        font-size: 42px;
    }
}

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

@media (max-width: 767.5px) {
    .hp-button {
        padding: 8px 7vw;
    }
}


/*homepage number*/
.hp-number {
    padding: 5rem 6rem;
    position: relative;
    /*background-image: radial-gradient(at bottom left, #B8A7C6, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));*/
}

.hp-number::before {
    content: "";
    height: 30vw;
    width: 30vw;
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translate(0, -50%);
    border-radius: 50%;
    background-color: #B8A7C6;
    filter: blur(50px);
    opacity: .6;
    z-index: -1;
}

.hp_why_left_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 95%;
}

.hp_why_point {
    /*background-color: #569DAA;*/
    background: linear-gradient(to right bottom, #e6e6e6, #fdfdfd, #e6e6e6);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}

.hp_why_point:first-child {
    /*background-color: #0A4D68;*/
    background: linear-gradient(to right bottom, #6c4b9a, #210442, #6c4b9a);
}

.hp_why_point:hover {
    /*background-color: #0A4D68;*/
    background: linear-gradient(to right bottom, #6c4b9a, #210442, #6c4b9a);
    transform: translateY(-10px);
}

.hp_why_point:hover .hp_why_title{
    color: #fff;
}

.hp_why_point:hover .hp_why_keyword{
    color: #e6e6e6;
}

.hp_why_point:first-child .hp_why_icon {
    /*background-color: rgba(255, 255, 255, 0.8);*/
    background: linear-gradient(to right bottom, #e6e6e6, #fdfdfd, #e6e6e6);
}

.hp_why_point:first-child .hp_why_icon img {
    filter: unset;
}

.hp_why_icon {
    width: fit-content;
    padding: 15px;
    /*background-color: rgba(0, 0, 0, 0.8);*/
    background: linear-gradient(to right bottom, #6c4b9a, #210442, #6c4b9a);
    border-radius: 15px;
}

.hp_why_point:hover .hp_why_icon {
    background: linear-gradient(to right bottom, #e6e6e6, #fdfdfd, #e6e6e6);
}

.hp_why_point:hover .hp_why_icon img {
    filter: unset;
}

.hp_why_icon img {
    filter: brightness(0) invert(1);
}

.hp_why_point:hover .hp_why_icon {
    animation: 1s jello;
}

.hp_why_icon img {
    max-width: 50px;
}

.hp_why_title {
    font-size: 18px;
    color: #39205c;
    font-weight: 600;
    margin: 30px 0 15px;
    font-style: italic;
    text-transform: uppercase;
    /*letter-spacing: 1px;*/
}

.hp_why_point:first-child .hp_why_title{
    color: #fff;
}

.hp_why_keyword {
    font-size: 14px;
    color: #4d4d4d;
    margin-bottom: 0;
}

.hp_why_point:first-child .hp_why_keyword{
    color: #e6e6e6;
}

.hp_why_right_box {
    /*padding-top: 1.5rem;*/
}

.hp_why_count {
    display: flex;
    /*background-color: #569DAA;*/
    background: linear-gradient(to right bottom, #6c4b9a, #210442, #6c4b9a);
    padding: 2rem 2.5rem;
    border-radius: 15px;
    justify-content: space-around;
    gap: 20px;
    position: absolute;
    right: -5%;
    top: 100%;
    transform: translate(0, -50%);
    width: 95%;
}

.hp_why_count_point {
    position: relative;
    padding-bottom: 10px;
}

.hp_why_count_point::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    width: 4vw;
    height: 3px;
    background-color: rgb(255,255,255,0.3);
    border-radius: 30px;
    transition: all 0.35s ease-in-out;
}

.hp_why_count_point:hover::before {
    width: 7vw;
}

.hp_count_point {
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-size: 50px;
    color: #fff;
    font-weight: 600;
    line-height: 1;
}

.running_word {
    font-size: 30px;
}

.hp_count_text {
    font-size: 13px;
    font-weight: 400;
    color: #e6e6e6;
    margin-top: 6px;
    margin-bottom: 3px;
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hp_why_group {
    position: relative;
    margin-top: 2rem;
}

.hp_why_img {
    border-radius: 15px;
    overflow: hidden;
}

@media (max-width: 1200.5px) {
    
    .hp-number {
        padding: 5rem 2rem 5rem 1rem;
    }
    .hp_why_icon img {
        max-width: 40px;
    }
    .hp_why_icon {
        padding: 12px;
        border-radius: 12px;
    }
    .hp_why_left_box {
        width: 100%;
    }
    .hp_why_point {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    .hp_why_title {
        margin: 20px 0 10px;
        font-size: 18px;
    }
    .hp_why_group {
        margin-top: 1.5rem;
    }
    .hp_count_point {
        font-size: 40px;
    }
    .running_word {
      font-size: 25px;
    }
    .hp_why_count {
        padding: 1.5rem;
        border-radius: 20px;
        gap: 15px;
    }
    
}

@media (max-width: 991.5px) {
    
    .hp-number {
        padding: 5rem 1rem 5rem 0rem;
    }
    
    .hp_count_point {
        font-size: 30px;
    }
    
    .hp_count_text {
        font-size: 10px;
    }
    
    .running_word {
        font-size: 20px;
    }
    .hp_why_right {
        display: flex;
        align-items: center;
    }
    .hp_why_right_box {
      padding-top: 0;
    }
    
}

@media (max-width: 767.5px) {
    
    .hp-number {
        padding: 5rem 0rem;
    }
    
    .hp_why_img img {
        min-height: 250px;
        object-fit: cover;
    }
    .hp_why_count {
        padding: 1.5rem;
        border-radius: 20px;
        gap: 20px;
        position: relative;
        flex-direction: column;
        width: 90%;
        right: 0;
        top: unset;
        transform: unset;
        margin-top: -3rem;
        margin-left: auto;
    }
    .hp_count_point {
        font-size: 35px;
    }
    
    .hp_count_text {
        font-size: 13px;
    }
    
    .running_word {
        font-size: 25px;
    }
    .hp_why_count_point::before {
        width: 40px;
    }
    .hp_why_count_point:hover::before {
        width: 60px;
    }
    .hp_why_left_box {
        margin-top: 2.5rem;
        gap: 20px;
        grid-template-columns: 1fr;
    }
    .hp_why_point {
        padding: 25px;
    }
}


/*homepage popular*/

.hp-wording-spacing {
  padding: 0;
  overflow: hidden;
}

.running-wording {
  display: flex;
  white-space: nowrap;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin: 0;
  padding: .5rem 0;
}

.running-wording span {
  margin-right: 80px;
}

.hp-wording.white-wording {
  background-color: #2f1e50;
  color: #fff;
}

.hp-wording.purple-wording {
  background-color: #fff;
  color: #2f1e50;
}

/* animation */
.run-left .running-wording {
  animation: marquee-left 25s linear infinite;
}

.run-right .running-wording {
  animation: marquee-right 25s linear infinite;
}

/* keyframes */
@keyframes marquee-left {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes marquee-right {
  0% { transform: translate3d(-50%, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@media (max-width: 767.5px) {
  .running-wording span:nth-child(n+7) { 
    display: none; /* hide extra spans on smaller screens */
  }
}






.index_wrapper_4{
    position:relative;
    background: linear-gradient(to bottom, #fff 35%, #F7F1F7 35%);
    padding: 0 6rem 5rem;
}
.index_wrapper_4:after{
    position: absolute;
    content: "";
    background-image: url(https://cdn1.npcdn.net/images/C_SERVICES_1_a8teh1_1769439442.png?md5id=2752a6fc31927efaf4ff9f54b1c769cb&type=4);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    bottom: 0px;
    right: -50px;
    width: 40vw;
    height: 28vw;
    object-fit: contain;
}
.hp_pro_content{
    letter-spacing:2px;
    margin-bottom:1rem;
}

/*Component - Product listing*/
#index_4_2{
    flex:0 0 70%;
    max-width:70%;
}

#main_index .ex_hpservice_slide {
    margin-block: 0;
    background-color: transparent;
    padding: 0;
    margin-bottom: -5px;
}

#main_index .ex_hpservice_slide .services-content:hover {
    animation:j_shakeslow 0.2s linear 0.1s 2;
    cursor: pointer;
}

#main_index .ex_hpservice_slide .services-content {
    height: 19vw;
}

#main_index .ex_hpservice_slide .services-text h3.title {
    display: none;
}

#main_index .ex_hpservice_slide .service_btn {
    display: none;
}

#main_index .ex_hpservice_slide .services-content .overlay {
    display: none;
}

#main_index .ex_hpservice_slide .services-text h3.title::after {
    display: none;
}

#main_index .ex_hpservice_slide .controls.left i,
#main_index .ex_hpservice_slide .controls.right i{
    color: #39205c;
    background-color: #fff;
    padding: .5rem;
    font-size: 1rem;
    border-radius: 500px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
}


@keyframes j_shakeslow{
    25%{transform:rotate(1deg);}
    75%{transform:rotate(-1deg);}
}

@media screen and (max-width: 1200.5px) {
    .index_wrapper_4 {
        padding: 0 1rem 4rem;
    }
    
    .index_wrapper_4::after {
        bottom: -36px;
        right: -70px;
        width: 43vw;
        height: 43vw;
    }
    
    #main_index .ex_hpservice_slide .services-content {
        height: 21vw;
    }
}

@media screen and (max-width: 991.5px){
    /*#index_4_2{*/
    /*    flex:0 0 100%;*/
    /*    max-width:100%;*/
    /*}   */
    /*.index_wrapper_4{*/
    /*    padding: 3% 9% 35%;*/
    /*}*/
    
    #main_index .slick-dotted.slick-slider {
        /*margin-bottom: -27px;*/
        margin-bottom: 0px;
    }
    
    #main_index .ex_hpservice_slide .slick-dots {
        display: none!important;
    }

}
@media screen and (max-width: 767.5px){
    .index_wrapper_4{
        padding: 0rem 1rem 3rem;
        background: linear-gradient(to bottom, #fff 45%, #F7F1F7 45%);
    }
    
    .hp-popular .hp-title {
        margin-bottom: 1rem;
    }
    
    #main_index .ex_hpservice_slide .services-content {
        height: 350px;
    }
    
    #index_4_2{
        flex:0 0 100%;
        max-width:100%;
    }   
    
    .index_wrapper_4::after {
        display: none;
    }

}

/*homepage products*/

.hp-products {
    padding: 5rem 6rem 4rem;
    background-color: #F7F1F7;
}

.hp_product_tab {
    margin-bottom: 1rem;
}

.hp_product_tab ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 8px;
    justify-content: center; /* or flex-start */
}


.hp_product_tab li {
    width: fit-content;
}

.tablinks.active {
    color: #fff;
}
.tablinks {
    background-color: #fff;
    font-size: 18px;
    line-height: .9;
    padding: 10px 30px;
    border-radius: 3px;
    font-weight: 400;
    color: #333;
    position: relative;
    cursor: pointer;
    text-align: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tablinks.active::before {
    opacity: 1;
}
.tablinks::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, #6c4b9a, #210442, #6c4b9a);
    border-radius: 3px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: -1;
    
}

.tablinks span {
    position: relative;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

#main_index .productSlider-1 .product_img .product_box {
  margin: 20px 0;
  border: none;
  background-color: transparent;
}

#main_index .productSlider-1 .product_img .product_box .content {
    text-align: center!important;
}

#main_index .productSlider-1 .slick-track .slick-slide {
  margin: 0 15px;
  height: auto;
  flex: 1;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}

#main_index .productSlider-1 .product_img .product_box .product_img_frame img {
    border-radius: 0;
    background-color: #fff;
}

#main_index .productSlider-1 .product_img .product_box h6 {
    color: #000;
  font-weight: 400 !important;
  text-align: center;
  font-size: 15px;
}
#main_index .productSlider-1 .product_img .product_box .align-top {
    font-weight: 600 !important;
    font-size: 14px;
}
#main_index .productSlider-1 .product_img .slick-prev::before,
#main_index .productSlider-1 .product_img .slick-next::before {
  text-shadow: none;
  color: #999;
  font-size: 25px;
}

#main_index .productSlider-1 .product_img .slick-prev {
    left: -20px;
    z-index: 2;
}

#main_index .productSlider-1 .product_img .slick-next {
  right: -20px;
  z-index: 2;
}
#main_index .productSlider-1 .product_img .product_box .product_img_frame{
    border: none;
  border-radius: 0;
    position: relative;
    width: 100%;
    height: 0;
    /*padding-bottom: 100%;*/
    overflow: hidden;
}

#main_index .productSlider-1 .product_img .product_box .product_img_frame img {
    object-fit: contain !important;
    border-radius: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100% !important;
    height: 100%;
}

#main_index .productSlider-1 .product_img .product_box .product_img_frame .add_to_cart {
    position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 5%;
  width: 90%;
}

@media (max-width: 1200.5px) {
    .hp-products {
        padding: 5rem 1rem 4rem;
    }
}

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

@media (max-width: 767.5px) {
     .hp_product_tab ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
      }
      
    .hp_product_tab li {
        width: 100%;
      }
}



/**/


.products-gallery{
margin-top:40px;
text-align:center;
}

.products-group{
display:none;
gap:20px;
flex-wrap:wrap;
justify-content:center;   /* center horizontally */
/*align-items:center;*/
}

.products-item {
  flex: 0 0 calc(12.5% - 20px); /* 8 items per row */
  max-width: calc(12.5% - 20px);
  text-align: center;
}

.products-group img{
width:100%;
height:150px;
object-fit:cover;
border-radius:10px;
}

.products-group img:hover{
transform:scale(1.05);
}

.products-list{
display:flex;
justify-content:center;
flex-wrap:wrap;   /* allow wrap */
gap:10px;
padding:0;
list-style:none;
}

.products-list li{
cursor:pointer;
padding:8px 14px;
text-align:center;
border-radius:20px;
border:1px solid #ddd;
}

.products-list li.active{
background:#6a1b9a;
color:white;
border-color:#6a1b9a;
}


@media (max-width: 767.5px) {
    .products-item{
        flex:0 0 calc(50% - 20px); /* 2 per row */
        max-width:calc(50% - 20px);
    }
}

/*homepage trainer*/
.hp-doctors {
    padding: 5rem 6rem;
    position: relative;
    background: linear-gradient(to bottom, #fff, #F7F1F7);
}

.hp-doctors::after {
    content: "";
    height: 30vw;
    width: 30vw;
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translate(0, -50%);
    border-radius: 50%;
    background-color: #efe4f4;
    filter: blur(50px);
    opacity: .6;
    z-index: -11;
}

.hp_trainer_left .purple-title {
    display: block;
}

.hp_trainer_pic {
    width: 95%;
    margin-bottom: 3rem;
    /*filter: drop-shadow(0 10px 15px #000);*/
}

.hp_trainer .hp_big_title span {
    display: block;
}

.hp_trainer .container-fluid {
    position: relative;
    z-index: 5;
}

.hp_trainer_left {
    display: flex;
    align-items: flex-end;
    /*padding-bottom: 5rem;*/
}

.hp_trainer_button {
    display: flex;
    justify-content: flex-start;
    margin-top: 2vw;
}

.hp_trainer_ebox {
    margin: 10px 20px;
    transition: all 0.4s ease-in-out;
}

.hp_trainer_ebox {
    height: auto;
    display: flex;
}

.hp_trainer_box {
    padding: 0 2rem 2.5rem;
    position: relative;
    transition: all 0.4s ease-in-out;
    text-align: center;
}

.hp_trainer_box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hp_trainer_content {
    margin-top: auto;
}



.hp_trainer_box::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60%;
    /*background-color: #cf907f;*/
    background: linear-gradient(to right bottom, #6c4b9a, #210442, #6c4b9a);
    border-radius: 25px;
    z-index: -1;
}

.hp_trainer_box:hover {
    transform: translateY(-10px);
}

.hp_trainer_img {
    border-radius: 0 0 150px 150px;
    overflow: hidden;
}

.hp_trainer_img {
    margin-bottom: auto;
}


.hp_trainer_title {
    font-size: 20px;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hp_trainer_title span {
    display: block;
    font-size: 14px;
    letter-spacing: 0;
}

.hp_trainer_keyword {
    font-size: 15px;
    color: #fff;
    margin-bottom: 0;
}

.hp_trainer_slider .slick-track {
    display: flex;
}

.hp_trainer_slider .slick-dots li {
    width: 35px;
    height: 4px;
    margin: 0;
}

.hp_trainer_slider .slick-dots li button {
    width: 35px;
    height: 4px;
    padding: 0;
}

.hp_trainer_slider .slick-dots li button::before {
    color: transparent;
    font-size: 10px;
    content: "";
    width: 35px;
    height: 4px;
    background-color: #B8A7C6;
    border-right: .5px solid #B8A7C6;
    border-left: .5px solid #B8A7C6;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.hp_trainer_slider .slick-dots li.slick-active button::before {
    opacity: 1;
    background-color: #39205C;
}



@media (max-width: 1200.5px) {
    .hp-doctors {
        padding: 5rem 1rem;
    }
    .hp_trainer_pic {
        margin-bottom: 2rem;
    }
    .hp_trainer_button {
        margin-top: 20px;
    }
    .hp_trainer_box {
        padding: 0 1.5rem 2rem;
    }
    .hp_trainer_title {
        font-size: 20px;
        margin-top: 20px;
    }
    .hp_trainer_keyword {
        font-size: 14px;
    }
}

@media (max-width: 991.5px) {
    .hp_trainer_ebox {
        margin: 10px;
    }
    .hp_trainer_left {
        padding-bottom: 2rem;
    }
}

@media (max-width: 767.5px) {
    .hp_trainer_pic {
        width: 100%;
    }
    .hp_trainer_left {
        padding-bottom: 3rem;
    }
    .hp_trainer_box {
        padding: 0 2rem 2.5rem;
    }
    
    .hp_trainer_slider .slick-dots li {
        width: 3vw;
    }
}


/*homepage photo album*/

#main_index .hp_photoGallerySliderWithTitle {
    background-color: transparent;
    padding-bottom: 4rem;
}

#main_index .hp_photoGallerySliderWithTitle .col-12 {
    padding: 0;
}

#main_index .hp_photoGallerySliderWithTitle .container {
    max-width: 100%;
}

#main_index .hp_photoGallerySliderWithTitle .photo-gallery {
    padding: 0;
}

#main_index .hp_photoGallerySliderWithTitle .photo-gallery .outline_box {
    padding: 10px 0px;
}

#main_index .hp_photoGallerySliderWithTitle .photo-gallery .outline_box .gallery_box {
    padding-top: 70%;
}

#main_index .hp_photoGallerySliderWithTitle .photo-gallery .outline_box .gallery_box img {
    padding: 0;
    object-fit: cover;
}


.hp_photoGallerySliderWithTitle .photo-gallery .slick-slide {
    transition: all 0.3s ease-in-out;
}

.hp_photoGallerySliderWithTitle .photo-gallery .slick-slide:hover {
    transform: scale(1.1);
    z-index: 1;
    position: relative;
}

/*hp-brand*/

.hp-brand {
    padding: 2rem 0;
}

.hp-brand-spacing {
    padding: 0;
}

.hp_brand_img {
    margin: 0 1.25vw;
}



/*homepage testimonial*/

.index_wrapper_8 {
    background-color: #F7F1F7;
}

#main_index .gallerycategory {
    margin: 2rem 0;
}

#main_index .gallerycategory .slick-list.draggable {
    padding-top: 2rem;
}

#main_index .gallerycategory .img_frame {
    overflow: unset;
     height: 200px;
}

.gallerycategory .img_frame:hover img {
    transform: scale(1.05) translate(-50%, -50%);
    z-index: 1;
    position: relative;
}

.gallerycategory .img_frame:hover .more {
    display: none;
}

.hp-testimonial .purple-title,
.hp-clinics .purple-title {
  position: relative;
  display: inline-block;
  padding: 0 25px; /* space for both lines */
  margin: 0 auto;
}

/* common styles */
.hp-testimonial .purple-title::before,
.hp-testimonial .purple-title::after,
.hp-clinics .purple-title::before,
.hp-clinics .purple-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 300px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
}

/* LEFT PNG */
.hp-testimonial .purple-title::before,
.hp-clinics .purple-title::before {
  left: 0;
  transform: translate(-100%, -50%);
  background-image: url("https://cdn1.npcdn.net/images/TITLE_ELEMENT_LEFT_3dux5z_1768208025.png?md5id=2752a6fc31927efaf4ff9f54b1c769cb&new_width=923&new_height=65&type=4");
}

/* RIGHT PNG */
.hp-testimonial .purple-title::after,
.hp-clinics .purple-title::after {
  right: 0;
  transform: translate(100%, -50%);
  background-image: url("https://cdn1.npcdn.net/images/TITLE_ELEMENT_RIGHT_9vrpaj_1768208025.png?md5id=2752a6fc31927efaf4ff9f54b1c769cb&new_width=923&new_height=65&type=4");
}


.hp-testimonial {
    padding: 5rem 0 0;
    text-align: center;
}

#main_index .hp_photoGallerySlider_type4 .flix-parents {
    padding-bottom: 0!important;
}


.hp-clinics {
    text-align: center;
}


.clinic-gallery{
margin-top:40px;
text-align:center;
}

.clinic-group{
display:none;
gap:20px;
flex-wrap:wrap;
justify-content:center;   /* center horizontally */
align-items:center;
}

.clinic-item{
flex: 0 0 calc(16.66% - 20px); /* 6 items per row */
max-width: calc(16.66% - 20px);
text-align:center;
}

.clinic-group img{
width:100%;
height:150px;
object-fit:cover;
border-radius:10px;
}

.clinic-group img:hover{
transform:scale(1.05);
}

.clinic-list{
display:flex;
justify-content:center;
flex-wrap:wrap;   /* allow wrap */
gap:10px;
padding:0;
list-style:none;
}

.clinic-list li{
cursor:pointer;
padding:8px 14px;
text-align:center;
border-radius:20px;
border:1px solid #ddd;
}

.clinic-list li.active{
background:#6a1b9a;
color:white;
border-color:#6a1b9a;
}


/*homepage clinics*/

.index_wrapper_9 {
    margin: 5rem 5rem 0;
    /*background-color: #F7F1F7;*/
    background: linear-gradient(to right bottom, #e6e6e6, #fdfdfd, #e6e6e6);
    border-bottom: 5px solid #2f1e50;
    padding: 5rem 0;
    position: relative;
}

@media (max-width: 1200.5px) {
    .index_wrapper_9 {
        margin: 5rem 2rem 0;
    }
    
    #main_index .gallerycategory .img_frame {
      height: 140px;
    }
}

@media (max-width: 991.5px) {
    .clinic-item{
flex:0 0 calc(33.33% - 20px); /* 3 per row */
max-width:calc(33.33% - 20px);
}
}

@media (max-width: 767.5px) {
    .hp-testimonial .purple-title::before,
    .hp-testimonial .purple-title::after,
    .hp-clinics .purple-title::before,
    .hp-clinics .purple-title::after {
        display: none;
    }
    
    #main_index .hp_photoGallerySlider_type4 .flix-parents {
        padding-top: 0!important;
    }
    
    .clinic-item{
        flex:0 0 calc(50% - 20px); /* 2 per row */
        max-width:calc(50% - 20px);
    }
}


/*homepage about*/
.hp_about {
    padding: 5rem 6rem;
    position: relative;
}

/*.hp_about::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    bottom: -5%;*/
/*    width: 100%;*/
/*    height: 90%;*/
/*    background-image: url('https://cdn1.npcdn.net/userfiles/24136/image/line2.png');*/
/*    background-size: contain;*/
/*    background-repeat: no-repeat;*/
/*    background-position: 0 100%;*/
/*    opacity: 0.6;*/
/*}*/

.hp_about::after {
    content: "";
    height: 30vw;
    width: 30vw;
    position: absolute;
    top: 20vw;
    right: -5vw;
    z-index: -1;
    border-radius: 50%;
    background-color: #efe4f4;
    filter: blur(50px);
    opacity: .6;
}

.hp_about_box {
    padding-left: 3vw;
}

.hp_about_button {
    display: flex;
    justify-content: flex-start;
    margin-top: 1.5vw;
}

.hp_about_group {
    position: relative;
}

.hp_about_left .purple-title {
    position: absolute;
    left: 0;
    top: 5vw;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0;
    /*color: #569DAA;*/
    font-size: 2.5vw;
}

.hp_about_left .purple-title::before {
    content: "";
    width: 12vw;
    height: 1.5px;
    background-color: #0A4D68;
}

@media (max-width: 1200.5px) {
    .hp_about {
        padding: 5rem 1rem;
    }
    .hp_about_box {
        padding-left: 0;
    }
    .hp_about_button {
        margin-top: 20px;
    }
}

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

@media (max-width: 767.5px) {
    .hp_about_title {
        font-size: 20px;
    }
    .hp_about_box {
        margin-top: 2.5rem;
    }
    
    .hp_about_left .purple-title {
        font-size: 25px;
    }
}



/*footer*/

.footer_type6 {
    background-color: #F7F1F7;
    color: #000;
}

.footer_type6 a,
.footer_type6 i,
.footer_type6 p {
    color: #000!important;
}

.footer_type6 .sub_title p {
    font-weight: 500!important;
    text-transform: uppercase;
    color: #39205C!important;
    letter-spacing: 2px;
}

.footer_type6 a p:hover {
    color: #39205C!important;
}

.footer_type6 .text,
.footer_type6 .text-light {
    color: #000!important;
}
.footer_type6 .input-container input{
    caret-color: #000;
    border-bottom:1px solid #000;
    color:#000!important;
}
.footer_type6 .input-container label{
    color:#000;
}
.footer_type6 .input-container .moveUp{
    color:#000;
}
.footer_type6 .line{
    background-color:#000;
}

.footer_type6 .sub_title {
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.footer_type6 .line_top {
    border-top: 1px solid rgba(0, 0, 0, 0.25);
}

.footer_type6 .logo {
    min-height: 80px;
}

.footer_type6 .logo img {
    max-height: 70px;
}



#main_showproducts .font-weight-bold {
    font-size: 20px !important;
}

/*product page*/
.product_list_5 .product_box .img_frame img{
    object-fit: contain;
}

/*photo album*/
.ws_gallery-4 .img_frame img{
    object-fit: contain;
}
