.hm_about_img {
    margin-left: 50px;
}
.hm_about_img img {
    position: absolute;
}
.hm_about_img {
    margin-left: 50px;
    position: relative;
    height: 100%;
}
.image2 {
    left: 0;
    bottom: 130px;
}
.image3 {
    right: 0;
    bottom: 130px;
}

.image1 {
    left: 50%;
    transform: translate(-50%, -50%) !important;
    top: 50%;
    z-index: 9;
}
.paragraph_white p{
    color: #E7E7E7;
}
.flex_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hm_service_title p {
    width: 650px;
}
#hm_services ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
#hm_services ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #8990B7;
    padding: 26px 0px;
}
#hm_services ul li:last-child{
    border-bottom: 1px solid #8990B7;
}
.s_left span {
    color: #00BA43;
    font-size: 16px;
    font-weight: 500;
}
.s_left h4{
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 500;
    margin: 0;
}
#hm_services ul li div {
    width: 33.3%;
}
.s_centre {
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0px 80px;
}
.s_centre img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.s_left {
    display: grid;
    align-content: space-between;
    height: 160px;
}
.s_right{
    display: grid;
    align-content: space-between;
    height: 160px;
}
.product_title_right {
    width: 610px;
}
.product_title_right a {
    margin-top: 30px;
}
.product_active_item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    height: 530px;
}
.hm_product_active_img {
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
}
.hm_product_active_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hm_product_active_description h5 {
    font-size: 22px;
    font-weight: 500;
    color: #1A1818;
}
.hm_product_active_description p {
    margin: 10px 0px 30px;
    color: #686868;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
}
.hm_product_active_description {
    padding: 30px 5px 10px;
}
.hm_product_list {
    background: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    height: 400px;
    display: grid;
    align-content: space-between;
}
.hm_product_img {
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}
.hm_product_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hm_product_list_description h5 {
    color: #1A1818;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}
.hm_product_list_description {
    height: 170px;
}
#hm_product_slider .owl-nav{
    display: flex;
    align-items: center;
    margin-top: 60px;
    gap: 12px;
}
#hm_product_slider .owl-nav button {
    width: 44px;
    height: 44px;
    background: #008E33 !important;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 20px !important;
    opacity: 1;
    transition: all .5s linear;
}
#hm_product_slider .owl-nav button.disabled{
    opacity: .5;
}
.hm_product_list span {
    color: #13216C;
    font-size: 16px;
    font-weight: 500;
}
.business_partners_left h4 {
    margin: 16px 0px 35px;
}
.business_partners_right ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: inline-block;
    width: 100%;
}
.business_partners_right ul li{
    border-left: 1px solid #008E33;
    width: 33.3%;
    float: left;
    padding: 0 16px;
}
.business_partners_right ul li p{
    font-size: 14px;
    margin: 0;
}
.business_partners_right ul li span {
    color: #1A1818;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 10px;
}
.business_partners_right {
    margin-left: 65px;
}
.business_partners ul li {
    float: left;
    width: 18.1%;
    height: 100px;
    position: relative;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin: 10px;
    overflow: hidden;
}
.business_partners ul li {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: #FFFFFF; /* fallback */
    transition: all .5s linear;
}

/* Create a rotating gradient overlay */
.business_partners ul li::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 150%;
    height: 150%;
    background: linear-gradient(45deg, #008E33, #F3F4F7, #008E33);
    animation: rotateGradient 6s linear infinite;
    z-index: -1;
    opacity: 0;
    transition: all .5s linear;
}
.business_partners ul li:hover::before{
opacity: 1;
transition: all .5s linear;
}
/* Optional: Keep text/content visible above the gradient */
.business_partners ul li * {
    position: relative;
    z-index: 2;
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.business_partners ul li::after {
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    width: 100%;
    height: 99%;
    background: #fff;
    transform: translate(-50%, -50%);
    border-radius: 6px;
}
.business_partners ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: inline-block;
    width: 100%;
}
.business_partners ul li img {
    max-width: 150px;
    max-height: 60px;
    position: relative;
    z-index: 9;
}
.business_partners {
    margin-top: 50px;
}
#counter span.plus:after {
  content: "+";
  display: inline-block;
}
.hm_blog_img {
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.hm_blog_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hm_blog_img span {
    background: #008E33;
    color: #fff;
    font-size: 13px;
    padding: 3px 10px;
    border-radius: 50px;
    position: absolute;
    right: 18px;
    top: 18px;
    font-weight: 500;
}
.date {
    color: #008E33;
    font-size: 13px;
    font-weight: 500;
}
.hm_blog_wrap {
    text-decoration: none;
}
.hm_blog_details h5 {
    color: #1A1818;
    font-size: 20px;
    font-weight: 500;
    margin: 5px 0px 15px;
}
.hm_blog_details{
    margin-top: 20px;
}
#blog_slider .owl-nav {
    display: flex;
    align-items: center;
    margin-top: 60px;
    gap: 12px;
    position: absolute;
    left: -51%;
    top: 74%;
}
#blog_slider .owl-nav button {
    width: 44px;
    height: 44px;
    background: #008E33 !important;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 20px !important;
    opacity: 1;
    transition: all .5s linear;
}
#blog_slider .owl-nav button.disabled{
    opacity: .5;
}
.hm_blog_left {
    margin-right: 50px;
}
.wave path {
    animation: waveMotion 8s ease-in-out infinite;
    transform-origin: center;
  }

  @keyframes waveMotion {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(10px);
    }
  }
  footer {
    background: #13216C;
    padding: 80px 0px 60px;
    position: relative;
    overflow: hidden;
}
  footer .container{
    position: relative;
    z-index: 9;
  }
.submscribe_input {
    background: transparent;
    border: 0;
    outline: none;
    box-shadow: none;
    color: #fff;
    width: 100%;
}
.subscribe_input_wrap form {
    display: flex;
    align-items: center;
}
.subscribe_input_wrap .wpcf7-not-valid-tip {
    position: absolute;
    bottom: -40px;
}
.subscribe_input_wrap .wpcf7-response-output {
    position: absolute;
    bottom: -70px;
    color: #fff;
}
.submscribe_input::placeholder{
    color: #909CDA;
    font-size: 14px;
    font-weight: 500;
}
.ftr_top h4 {
    font-size: 32px;
    color: #FFFFFF;
    font-weight: 500;
    width: 500px;
}
.ftr_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #3A4893;
    padding-bottom: 50px;
    margin-bottom: 50px;
}
.wave {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
}
.wave svg {
    width: 100%;
}
.copy_right {
    background: #04104C;
    text-align: center;
    padding: 15px;
}
.copy_right p{
    margin: 0;
    color: #ABAEBD;
    font-size: 13px;
    font-weight: 300;
}
.copy_right p a {
    color: #ABAEBD;
    text-decoration: none;
}
.ftr_social_media a {
    width: 40px;
    height: 40px;
    background: #04104C;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
}
.ftr_social_media {
    display: flex;
    gap: 28px;
    margin-top: 60px;
}
.ftr_logo_wrap p {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    width: 300px;
}
.ftr_logo {
    margin-bottom: 30px;
    display: flex;
}
.ftr_title {
    color: #FFFFFF99;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 20px;
}
.ftr_menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    display: flex;
    margin-bottom: 15px;
    line-height: 20px;
}
.ftr_address a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    display: flex;
    margin-bottom: 15px;
    line-height: 20px;
}
.ftr_address a iconify-icon{
    margin-right: 10px;
    color: #008E33;
    font-size: 22px;
}
#hm_services ul li {
  opacity: 0;
  transform: translateX(200px);
}
.ftr_social_media2{
    display: none;
}

/* contact page */
.contact_left ul {
    padding: 0;
    margin-bottom: 0;
    list-style: none;
    margin-top: 50px;
}
.contact_left ul li h6 {
    color: #686868;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.contact_left ul li{
    margin-bottom: 40px;
}
.contact_left ul li h6 span {
    width: 32px;
    height: 32px;
    background: #008E33;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}
.contact_left ul li a{
    text-decoration: none;
    color: #232020;
    font-size: 16px;
    font-weight: 500;
}
.contact_links {
    display: flex;
    gap: 50px;
}
.social_link_wrap h6 {
    color: #686868;
    font-size: 15px;
    font-weight: 400;
}
.social_links {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}
.social_links a{
    width: 32px;
    height: 32px;
    background: #008E33;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.contact_form_wrap {
    background: #fff;
    border: 1px solid #F3F3F3;
    border-radius: 14px;
    padding: 40px;
}
.contact_form_wrap h5 {
    color: #1A1818;
    font-size: 30px;
    font-weight: 500;
}
.contact_form_wrap h6{
    font-size: 16px;
    color: #686868;
    font-weight: 400;
}
.contact_input_wrap label {
    color: #292929;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    width: 100%;
    margin-bottom: 10px;
}
.contact_input {
    border: 0;
    width: 100%;
    background: #F3F4F7;
    padding: 12px 20px;
    border-radius: 10px;
    outline: none;
    box-shadow: none;
}
.contact_input::placeholder{
    font-size: 14px;
    font-weight: 400;
    color: #AFAFAF;
}
.contact_input_wrap textarea {
    height: 110px;
    resize: none;
}
.contact_form .common_btn {
    margin-top: 30px;
}
.contact_input_wrap {
    margin-bottom: 20px;
}
.contact_form {
    margin-top: 40px;
}
.contact_left {
    width: 450px;
}
.cont_address {
    background: #F3F4F7;
    border-radius: 10px;
    padding: 28px;
}
.cont_address .locationimg{
    width: 100%;
}
.cont_title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.cont_title h4 {
    color: #686868;
    font-size: 17px;
    margin: 0;
    font-weight: 400;
}
.cont_address p {
    color: #000;
    margin-bottom: 20px;
}
.cont_address a {
    color: #00BA43;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 14px;
}
.title_sec {
    margin-bottom: 40px;
}


/*service*/
.innerbanner {
    width: 100%;
    height: 400px;
    object-fit: cover;
    position: relative;
    display: flex;
    align-items: center;
}
.innerbanner:after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 28.95%, rgba(0, 0, 0, 0) 93.06%);
    position: absolute;
    left: 0;
    top: 0;
}
.innerban_bx {
    position: relative;
    z-index: 9;
}
.innerban_bx p {
    color: #fff;
    font-size: 16px;
    line-height: 21px;
    font-weight: 200;
    margin: 0;
    width: 500px;
}
.services ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.services ul li a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
}
.services ul li:hover{
    background: #fff;
}
.services ul li span {
    width: 100px;
}
.services ul li .service_content {
    width: 400px;
}
/**/


.anime-list .title {
  text-transform: uppercase;
  margin: 0px auto 60px;
  width: fit-content;
  max-width: 1170px;
  text-align: center;
}
.anime-list ul li{
    cursor: pointer;
    position: relative;
    padding: 50px 70px;
    border-radius: 0;
    border-bottom: 1px solid #13216c42;
}
.anime-list ul li::before,
.anime-list ul li::after {
  content: "";
  transition: all 1s;
  -webkit-transition: all 1s;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0.5;
}
.anime-list ul li::after {
  opacity: 1;
  width: 0%;
}
.anime-list ul li:hover {
  border-radius: 12px;
  border-color: transparent;
}
.anime-list ul li:hover::after {
  width: 100%;
}
.anime-list ul li > div:not(.hover-img) {
  padding: 0px 12px;
}
.anime-list .genere {
  width: calc((100% / 12) * 4);
}

.anime-list .redirect-link svg {
  color: var(--black-color);
}
.anime-list .hover-img{
    pointer-events: none;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 0%;
    width: 370px;
    height: 290px;
    z-index: 999;
}
.anime-list .hover-img img {
  transition: all 0.7s;
  -webkit-transition: all 0.7s;
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.anime-list li:hover .hover-img img {
  opacity: 1;
}

.ball {
  width: 70px;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  backdrop-filter: invert(1) grayscale(1);
  -webkit-backdrop-filter: invert(1) grayscale(1);
  z-index: 99999;
}
.service_list_content h6 {
    color: #1A1818;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 15px;
    width: 340px;
}
.index span {
    color: #00BA43;
    font-size: 22px;
    font-weight: 500;
}
.index {
    display: flex;
    align-items: center;
}
.service_list_content {
    width: 460px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .anime-list .hover-img {
        width: 250px;
        height: 250px;
    }
  .anime-list .hover-img img {
    border-radius: 12px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .anime-list .title {
    margin: 0px auto 40px;
  }
    .anime-list .hover-img {
        width: 160px;
        height: 210px;
    }
  .anime-list .hover-img img {
    border-radius: 12px;
  }
}

@media (max-width: 767px) {
    .index span {
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
}
    .service_list_content {
    width: unset;
}
    .service_list_content h6 {
        font-size: 20px;
        width: auto;
    }
    .services ul li a {
    display: block;
    padding: 0;
}
    .anime-list ul li {
        padding: 20px 0px;
    }
  .anime-list .title {
    margin: 0px auto 40px;
  }
  .anime-list ul li > div:not(.hover-img) {
    padding: 0px 8px;
  }
    .anime-list .index, .anime-list .genere {
        display: block;
    }
  .anime-list .anime-name {
    width: calc((100% / 12) * 8);
  }
     .anime-list .redirect-link {
        width: unset;
    }
       .anime-list .hover-img {
        width: 100% !important;
        height: 250px !important;
        position: unset;
        transform: unset !important;
        margin-top: 20px;
    }
        .anime-list .hover-img img {
        opacity: 1;
    }
  .anime-list .hover-img img {
    border-radius: 8px;
  }
}

.process_img {
    height: 240px;
    overflow: hidden;
    border-radius: 8px;
}
.process_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.process_left {
    height: 100%;
    display: grid;
    align-content: space-between;
    margin-right: 80px;
}
.process ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.process ul li{
    padding: 22px 0px;
    border-bottom: 1px solid #13216C24;
    display: flex;
    justify-content: space-between;
}
.process ul li p {
    width: 370px;
    margin: 0;
}
.process ul li h6 {
    width: 180px;
}
.process {
    margin-top: 50px;
}
.about_left .common_title {
    width: 500px;
}
.about_left ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: inline-block;
    width: 100%;
}
.about_left ul li{
    width: 33.3%;
    float: left;
}
.about_left ul li span {
    font-size: 36px;
    font-weight: 500;
   background: linear-gradient(112.63deg, #00BA43 10.04%, #0F672E 71.56%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about_left ul li p {
    color: #2D2D2D !important;
    font-size: 14px !important;
    font-weight: 400;
    width: 150px;
}
.about_right {
    margin-left: 30px;
}
.about_left {
    display: grid;
    justify-content: space-between;
    height: 100%;
}
.counter {
    display: flex;
    align-items: end;
}
.nav-pills .nav-link {
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 500;
    opacity: .5;
    position: relative;
}
.nav-pills .nav-link::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 0;
    background: transparent;
}
.nav-pills .nav-link.active::after{
background: linear-gradient(90deg, #13216C 0%, #02C648 50%, #13216C 100%);
}
.nav-pills li:first-child button{
padding-left: 0;
}
.nav-pills .nav-link.active {
    color: #fff !important;
    background-color: transparent;
    opacity: 1;
}
.mv_img {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 60px;
}
.mv_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mission_vision_content {
    margin-top: 60px;
}
.certificates ul{
    display: flex;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 20px;
}
.certificates ul li {
    background: linear-gradient(180deg, #9BA7E5 -47.08%, #13216C 100%);
    border-radius: 32px;
    padding: 30px 30px 0px 30px;
    position: relative;
    width: 20%;
    float: left;
    overflow: hidden;
}

.certificates ul li::after {
    position: absolute;
    content: '';
    width: 99%;
    height: 99%;
    top: 50%;
    left: 50%;
    background: #1F2E7D;
    transform: translate(-50%, -50%);
    border-radius: 32px;
}
.certificates ul li img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 9;
    object-fit: cover;
}
.management_title {
    width: 500px;
    margin-bottom: 40px;
}
.team_wrap {
    background: #FFFFFF;
    padding: 14px;
    border-radius: 16px;
}
.team_image {
    height: 270px;
    border-radius: 8px;
    overflow: hidden;
}
.team_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile_name h6 {
    color: #1A1818;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0px;
}
.profile_name span {
    color: #444444;
    font-size: 13px;
    font-weight: 400;
}
.profile_name {
    padding: 16px 16px 0px 16px;
}
#team_slider .owl-nav button {
    width: 44px;
    height: 44px;
    background: #008E33 !important;
    color: #fff !important;
    font-size: 24px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#team_slider .owl-nav {
    display: flex;
    gap: 12px;
    position: absolute;
    top: -120px;
    right: 0;
}
#team_slider .owl-nav .disabled{
    opacity: .5;
}
/* service detail page */
.service_detail_left {
    width: 420px;
}
.service_gallery_img {
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}
.service_gallery_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service_gallery {
    margin-top: 40px;
}
.advantage_wrap {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    height: 230px;
    margin-bottom: 20px;
}
.advantage_wrap h6 {
    color: #1A1818;
    font-size: 20px;
    font-weight: 500;
    margin: 20px 0 10px;
}
.advantages_left .row {
    --bs-gutter-x: 20px;
}
.enquiry_form {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #F3F3F3;
    box-shadow: 3px 3px 8px 6px #E0E3EA1A;
}
.enquiry_form h6 {
    color: #1A1818;
    font-size: 28px;
    font-weight: 500;
}
.enquiry_input {
    width: 100%;
    border: 1px solid #DEDFE5;
    background: #F3F4F7;
    border-radius: 10px;
    padding: 12px 20px;
    outline: none;
    box-shadow: none;
}
.enquiry_form_wrap .wpcf7-form-control-wrap {
    margin-bottom: 30px;
    display: block;
}
.enquiry_form_wrap textarea {
    height: 115px;
    resize: none;
}
.enquiry_input::placeholder{
    color: #949393;
    font-size: 15px;
    font-weight: 400;
}
.enquiry_form_wrap .common_btn {
    margin-top: 20px;
}
.enquiry_form p {
    font-size: 14px;
}
.enquiry_form_wrap {
    margin-top: 40px;
}
.advantages_left {
    margin-right: 50px;
}
.advantages {
    margin-top: 45px;
}
.product_wrap {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    display: inline-block;
    width: 100%;
    text-decoration: none;
    margin-bottom: 24px;
}
.product_wrap h5 {
    color: #1A1818;
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 500;
/*     width: 230px; */
}
.product_wrap span {
    color: #565656;
    font-size: 13px;
    margin-bottom: 10px;
    display: block;
}
.product_img img {
    max-width: 210px;
    max-height: 140px;
    object-fit: contain;
    width: 100%;
    height: 200px;
}
.product_img {
    margin-bottom: 40px;
    text-align: center;
}
#product_list {
    padding-bottom: 76px;
}
.product_title {
    color: #1A1818;
    font-size: 32px;
    font-weight: 500;
}
.product_detail_right h6 {
    color: #1A1818;
    font-size: 20px;
    font-weight: 500;
    margin: 20px 0 15px;
}
.product_detail_right ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.product_detail_right ul li {
    color: #686868;
    font-size: 16px;
    font-weight: 400;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}
.product_detail_right ul li::after {
    position: absolute;
    content: '';
    left: 0;
    top: 4px;
    width: 15px;
    height: 15px;
    background-color: #008E33;
    border-radius: 50px;
    border: 4px solid #a6d9b8;
}
.product_features h6{
    margin-top: 30px;
}
.product_detail_left {
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    text-align: center;
    margin-right: 50px;
    height: 400px;
}
.product_slide_img img {
    max-width: 310px !important;
    margin: auto;
    max-height: 230px;
    object-fit: contain;
}
#product_slider .owl-nav {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#product_slider .owl-nav button {
    width: 38px;
    height: 38px;
    background: #D9DCE6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #13216C;
    font-size: 22px;
}
#product_slider .owl-nav .disabled{
    opacity: .5;
}
#product_slider .owl-dots button {
    width: 20px;
    height: 2px;
    background: #13216C4D !important;
}
#product_slider .owl-dots {
    position: absolute;
    bottom: -70px;
    display: flex;
    gap: 4px;
    justify-content: center;
    width: 100%;
}
#product_slider .owl-dots .active{
    background: #13216C!important;
    width: 40px;
}
.product_sub_title {
    color: #008E33;
    font-size: 14px;
    font-weight: 500;
}
.table_title {
    color: #1A1818;
    font-size: 22px;
    font-weight: 500;
}
  .custom-table {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
  }

.custom-table th {
    background-color: #13216C;
    color: #FFFFFF;
    padding: 20px 30px;
    font-size: 15px;
    text-align: center;
    font-weight: 400;
    line-height: 17px;
}

  .custom-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #E0E1E2;
  }

  .custom-table tr {
    background-color: #F3F4F7;
  }
  .other_products .product_wrap {
    background: #FFFFFF;
    margin-bottom: 0;
}
.product_category_img {
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
}
.product_category_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product_category_name button {
    font-size: 14px;
}
.product_category_name {
    padding: 0 10px;
    margin-top: 20px;
}
.product_category_name h6 {
    color: #2C2E2D;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 5px;
}
.product_category_name p {
    color: #686868;
    font-size: 14px;
    font-weight: 300;
    line-height: 19px;
}
.product_category_list_wrap {
    text-decoration: none;
    display: inline-block;
    width: 100%;
    background: #F3F4F7;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 22px;
    min-height: 330px;
}
.product_detail_left_wrap {
    background: #FFFFFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    text-align: center;
    margin-right: 50px;
	position: sticky;
}
.product_detail_left_wrap img {
    width: 90%;
    height: 90%;
    object-fit: cover;
}
#product_category_description h6 {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0;
}
#product_category_description h6:first-child{
	margin-top: 0;
}
#product_category_description ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
#product_category_description ul li {
    color: #686868;
    font-size: 16px;
    font-weight: 400;
    padding-left: 25px;
    position: relative;
    margin-bottom: 5px;
}
#product_category_description ul li::after {
    position: absolute;
    content: '';
    left: 0;
    top: 4px;
    width: 15px;
    height: 15px;
    background-color: #008E33;
    border-radius: 50px;
    border: 4px solid #a6d9b8;
}
#product_category_description {
    padding: 50px 0;
}
#hm_services {
    overflow: hidden;
}


/*search*/
.searchbar{
	position:relative;
	cursor: pointer;
}


.togglesearch {
    background: transparent;
    position: absolute;
    top: 45px;
    right: 6%;
    width: 280px;
        height: 44px;
    display: none;
	cursor: pointer;
}

/* .togglesearch:before{
  content: "";
  position: absolute;
  top: -30px;
  right: 13px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 14px solid transparent;
  border-bottom: 14px solid #D80B15;
} */

.togglesearch .searchipt {
    padding: 5px 10px;
    outline: none;
    border: 1px solid #dfd1d1;
    font-size: 14px;
    width: 210px;
    height: 44px;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}
.togglesearch_inner {
    display: flex;
    align-items: center;
}
.togglesearch #searchBtn {
    width: 70px;
    padding: 5px 0;
    background: #008e33;
    color: #fff;
    margin-left: -4px;
    border: 1px solid #008e33;
    outline: none;
	 height: 44px;
    cursor: pointer;
	border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}
.search-bar #searchInput {
   padding: 5px 10px;
  outline: none;
	border:1px solid #dfd1d1;
	font-size:14px;
	width: 210px;
	 height: 44px;
}
.search-bar .s_btn {
    width: 70px;
    padding: 5px 0;
    background: #008e33;
    color: #fff;
    margin-left: -4px;
    border: 1px solid #008e33;
    outline: none;
	 height: 43px;
    cursor: pointer;
}
.searchresults_section{
	margin-top:40px;
}
.header .item-center {
	gap: 20px!important;
}
.searchresults_section a {
    color: #008d33;
    text-decoration: none;
}
.searchresults_section li {
    border-bottom: 1px solid #ececec;
    margin-bottom: 15px;
}
.searchresults_section li p {
    font-size: 14px;
}
.pagination .nav-links {
    display: flex;
    justify-content: center;
    width: 100%;
}
.pagination .nav-links .page-numbers.current {
    color: #008d33;
}

.pagination .nav-links .page-numbers {
    color: #000;
    text-decoration: none;
    text-align: center;
    margin-right: 20px;
}
/**/