/*blog*/
.inside-title {
    font-size: 33px;
    line-height: 44px;
    margin: 15px 0 30px;
    font-weight: 600;
    max-width: 650px;
}
.blog-inside-section .row {
  row-gap: 20px;
}

.blog-inside-image img {
  max-height: 400px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.blog-inside-content {
  margin-top: 10px;
}

.blog-inside-list {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 20px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-5);
}

.blog-inside-list li {
  margin-right: 10px;
}

.blog-inside-list li svg {
  fill: var(--color-1);
}

.blog-inside-list li span {
  color: var(--color-2);
  font-size: 16px;
  margin-left: 4px;
}

.blog-inside-description {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.3;
  color: var(--color-3);
}
.blog-inside-description h5{
    font-size: 18px;
}

.blog-inside-description h6{
    font-size: 16px;
}

.blog-social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
  padding: 20px 10px;
  border-radius: 20px;
  background: var(--white);
}

.blog-social-list li:not(:first-child) {
  margin-left: 20px;
}

.blog-social-list li a {
  border-radius: 6px;
  height: 30px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-social-list li a svg {
  fill: var(--white);
}

.blog-social-list li a.instagram {
  background: linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
}

.blog-social-list li a.facebook {
  background: #006aff;
}

.blog-social-list li a.xraay {
  background: var(--black);
}

.blog-social-list li a.linkedin {
  background: #0a66c2;
}

.recent-post {
  padding: 20px;
  border-radius: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.recent-post h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-3);
  margin-bottom: 20px;
}

.recent-post h3:before {
  margin-right: 5px;
  content: "🌳";
  font-size: 16px;
}

.recent-post-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 0;
  margin-bottom: 20px;
}

.recent-post figure {
  margin-right: 10px;
}

.recent-post figure img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}

.recent-post-card article {
  width: calc(100% - 100px);
}

.recent-post-card span {
  font-size: 14px;
  font-weight: normal;
  color: var(--color-2);
  margin-bottom: 10px;
  display: block;
}

.recent-post-card a {
  font-size: 18px;
  color: var(--color-3);
  line-height: 1.2;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.recent-post-wrapper li:not(:last-child) {
  border-bottom: 1px solid var(--border-5);
  margin-bottom: 10px;
}

.sloutions-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 30px;
  flex-direction: column;
  margin-top: 20px;
  background: url(/assets/img/solutions.webp) center/cover no-repeat;
}

.solutions-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: var(--bg-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solutions-icon svg {
  fill: var(--white);
}

.sloutions-wrapper article {
  text-align: center;
  margin-top: 20px;
}

.sloutions-wrapper article h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--white);
}

.sloutions-wrapper article a {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  justify-content: center;
  color: var(--white);
}

.sloutions-wrapper article a svg {
  fill: var(--bg-3);
}

.call-link {
  padding: 15px 20px;
  border-radius: 20px;
  background: var(--bg-3);
  transition: 0.3s ease-in-out;
  display: inline-block;
  font-weight: bold;
  max-width: 200px;
  margin: 20px auto 0;
}

.call-link:hover {
  background: var(--bg-1);
  color: var(--color-1);
}

/*blog end*/


/* addition-box-about */
.about-page .row {
  row-gap: 24px;
}

.addition-box-about {
  height: 250px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.addition-box-about a::after {
  position: absolute;
  inset: 0;
  content: "";
  transition: 0.3s ease-in-out;
  background: rgba(0, 0, 0, 0.5);
}

.addition-box-about a {
  display: flex;
  padding: 20px;
  position: relative;
  height: 100%;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.addition-box-about img {
  inset: 0;
  position: absolute;
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.addition-box-about-span {
  background: var(--white);
  height: 30px;
  position: absolute;
  transition: 0.3s ease-in-out;
  max-width: 100px;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-1);
  width: 100%;
  border-radius: 20px;
}

.addition-box-content {
  position: relative;
  font-size: 14px;
  line-height: 1.2;
  hyphens: auto;
  display: -webkit-box;
  transition: 0.3s ease-in-out;
  z-index: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transform: translateX(-200%);
  text-overflow: ellipsis;
  color: var(--white);
}

.addition-box-about a:hover:after {
  background: rgba(0, 0, 0, 0.8);
}

@media screen and (min-width: 992px) {
  .addition-box-about {
    height: 350px;
  }

  .addition-box-about a:hover .addition-box-about-span {
    position: absolute;
    top: 30px;
    transition: 0.3s ease-in-out;
    left: 60px;
  }

  .addition-box-about a:hover .addition-box-content {
    transform: translateX(0);
  }
}




/* contact page */
.contact-page .row {
  row-gap: 40px;
}

 .contact-box {
     line-height:1.2;
  border-radius: 15px;
  box-shadow: 0 0 10px #ede9ff;
  min-height: 320px;
  height: 100%;
  padding: 15px;
  background:linear-gradient(270deg, rgba(42,97,20,0.6685049019607843) 0%, rgba(42,97,20,0.8981967787114846) 60%);
}
.contact-box-2{
  min-height: 200px;
}
.contact-box figure {
  width: 100px;
  height: 100px;
  margin-top: -40px;
}
.contact-box figure img {
  width: 100%;
  height: 100%;
}
.contact-box  hr{
    margin:10px 0;
}
.contact-box article{
    margin-top:20px;
}
.contact-box article h4 {
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
  color: #fff;
}
.contact-box article ul {
  padding: 0;
  margin-bottom:20px;
  min-height:110px;
}
.contact-box-2 article ul{
    min-height:fit-content;
}
.contact-box article ul li:not(:last-child) {
  margin-bottom: 10px;
}
.contact-box article ul li {
  display: flex;
  align-items: center;
  list-style: none;
  color: white;
}
.contact-box article ul li i {
  font-size: 16px;
}
.contact-box article ul li a,
.contact-box article ul li span {
  font-size: 14px;
  margin-left: 10px;
  color: currentColor;
  text-decoration: none;
  font-weight: 500;
}
.contact-box #map ,.contact-box #map2 {
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
}

.contact-form-area {
  padding: 1.5rem;
  background: #f8f9f9;
  border-radius: 10px;
  box-shadow: -3px -2px 26px -14px rgba(0, 0, 0, 0.35);
  border: 1px solid #eaeaea;
  position: relative;
  z-index: 1;
}

.contact-form-area h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-form-area h4:after {
  content: "";
  height: 3px;
  width: 80px;
  display: block;
  margin-top: 20px;
  background-color: var(--default);
  animation: titleAnimation 10s infinite;
}

@keyframes titleAnimation {
  0% {
    width: 80px;
  }

  50% {
    width: 100%;
  }

  100% {
    width: 80px;
  }
}

.forms-wrapper input,
.forms-wrapper textarea {
  width: 100%;
  border: 1px solid #eaeaea;
  border-radius: 0.2rem;
  color: #626262;
  padding: 0.5rem 1rem;
  font-family: "Roboto", sans-serif;
  outline: none;
  font-size: 14px;
}

.forms-wrapper textarea {
  resize: vertical;
  min-height: 100px;
  max-height: 150px;
}

.forms-wrapper button {
  background: var(--default);
  color: var(--white);
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em #714da6;
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  width: 100%;
  cursor: pointer;
}

.forms-wrapper button .icon {
  background: var(--white);
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em var(--default);
  right: 0.3em;
  transition: all 0.3s;
}

.forms-wrapper button:hover .icon {
  width: calc(100% - 0.6em);
}

.forms-wrapper button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: var(--default);
}

.forms-wrapper button:hover .icon svg {
  transform: translateX(0.1em);
}

.forms-wrapper button:active .icon {
  transform: scale(0.95);
}

#map {
  height: 280px;
}

@media screen and (min-width: 768px) {
  .contact-form-area h4 {
    font-size: 30px;
  }

  .contact-form-area {
    padding: 3rem 4rem;
  }
  .forms-wrapper button {
    width: fit-content;
  }

}



/*mehsul full-story*/
.mehsul_full_all {
  padding: 50px 0;
}

.mehsul_full_content {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.mehsul_full_content h1 {
  font-size: clamp(18px, 5.5vw, 28px);
  font-weight: 500;
  line-height: 1.3;
  text-transform:capitalize;
  color: #435969;
}

.full_mehsul_text {
  max-height: 300px;
  overflow-y: auto;
}

.mehsul_full_content p {
  font-size: clamp(18px, 5.5vw, 18px);
  font-weight: 500;
  line-height: 1.3;
  color: #435969;
}
.additional-info{
    margin-top:20px;
}
.additional-info ul {
  line-height: 1.8;
  padding-left: 2rem;
}

.additional-info ul li {
  list-style: initial;
}

/*.mehsul_full_card .mehsul_sifaris {*/
/*  grid-template-columns: initial;*/
/*}*/
.mehsul_full_card .row{
    row-gap:20px;
}
.mehsul_full_card_two{
    margin-top:20px;
}
.mehsul_sifaris{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    margin-top: 25px;
    row-gap:20px;
}
.product-order-btn{
    padding:0 12px;  
    width:100%;
}
.mehsul_sifaris a,.mehsul_sifaris button {
    font-size:14px;
  padding: 10px 15px;
  background: var(--color-1);
  text-align: center;
  color: #fff;
  border-radius: 8px;
  border:none;
  cursor:pointer; 
  width:100%;
  transition: .3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.full-table{
      margin:20px 0;
}
.full_table td:nth-child(2) {
  background: rgb(246 246 246 / 65%);
}

.full_table td {
  font-size: 14px;
}

.full_table table {

  border-radius: 10px;
  width: 100%;
}

.cedvel table {
  width: 100% !important;
}

table,
tr,
td {
  border: 1px solid #bbb;
  border-collapse: collapse;
}

.full_table td {
  padding: 10px 30px;
  overflow-wrap: break-word;
  min-width: 220px;
  line-height: 1.3;
}
@media screen and (min-width:768px){
    .product-order-btn{
    padding:0 12px;  
    width:50%;
}
}
/*mehsul full story end*/
.product-full-image img{
    width:100%;
    object-fit:cover;
    height:300px;
}
 .product-inside-full-image img{
      object-fit:contain;
 }
/* category product internal list */
.internal_cat_title {
  font-size: 40px;
  font-weight: 600;
  padding: 0 0 15px;
  margin: 0 0 45px;
  position: relative;
}

.internal_cat_title::after {
  height: 2px;
  width: 30px;
  border-radius: 10px;
  position: absolute;
  left: 0;
  content: '';
  bottom: 0;
  background: var(--color-1);
}

.internal_cat_list {
  box-shadow: 0px 1px 20px 0px rgba(218, 227, 232, 0.75);
  border-radius: 4px;
  padding: 15px;
  margin: 0 0 50px;
}
.internal_cat_list::-webkit-scrollbar {
  width: 2px;
}

.internal_cat_list::-webkit-scrollbar-track {
 background: #5acc3449;
}

.internal_cat_list::-webkit-scrollbar-thumb {
  background: #5bcc34;
}

.internal_cat_list li a,.internal_cat_list li span {
  position: relative;
  display: block;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.3;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-top: 15px;
  border-bottom: 1px solid #d9d9d9;
  color: #111111;
  transition: all 0.5s ease-out;
}

.internal_cat_list li a::before,.internal_cat_list li span::before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 1;
  color: #d9d9d9;
  transition: all 0.5s ease-out;
}

.internal_cat_list li a::after,.internal_cat_list li span::after {
  content: "";
  position: absolute;
  height: 25px;
  width: 2px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
  font-size: 28px;
  background-color: #d9d9d9;
  transition: all 0.5s ease-out;
}

.internal_cat_list li a:hover:after,
.internal_cat_list li a.active-link:after 
.internal_cat_list li span:hover:after,
.internal_cat_list li span.active-link:after {
  background: var(--default);
}

.internal_cat_list li a:hover:before,
.internal_cat_list li a:hover,
.internal_cat_list li a.active-link:before,
.internal_cat_list li a.active-link 
.internal_cat_list li span:hover:before,
.internal_cat_list li span:hover,
.internal_cat_list li span.active-link:before,
.internal_cat_list li span.active-link 
{
  color:  var(--default);
  font-weight: 600;
}


.product_inner_page_carts_search .row{
    row-gap:20px;
}
.navigation_bar_search h1{
    text-align: center;
    font-size: 35px;
    margin: 0;
}
.internal_cat_list{
  max-height: 750px;
  overflow-y: scroll;
}
.internal_cat_list ul{
    display: none;
    margin: 0 0 0 10px;
    box-shadow: none;
    background: transparent;
}
.internal_cat_list ul li a{
    font-size: 15px;
}
.widgets {
  margin-bottom: 3rem;
  background-color: #ffffff;
  padding: 30px 20px 20px;
  border-radius: 4px;
  border: 1px solid #cccccc;
  /*max-width: 70%;*/
}
.widgets .media img{
    width:44px;
    height:48px;
}
.widgets .media-body{
    width:calc(100% - 54px);
}
.widgets.widget-call-to-action-light {
  /*margin: 0 auto 3rem auto;*/
}

.media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap:10px;
}

.widgets .media .media-body h4 {
  color: #111111;
  margin-bottom: 10px;
  font-weight: 500;
}

.widgets .media .media-body span {
  color: #111111;
  display: block;
  margin-bottom: 10px;
}

.widget-schedule {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 4px;
}

.widgets .medical-section-title,
.medical-item-title{
  color: #111111;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 22px;
}

.widgets ul {
  gap: 1rem;
  display: flex;
  flex-direction: column;
}

/*@media only screen and (max-width: 992px){*/
/*  .product_inner_page_carts{*/
/*    grid-template-columns: repeat(1,1fr);*/
/*  }*/
/*  .product_inner_page_carts_search{*/
/*    grid-template-columns: repeat(2,1fr);*/
/*  }*/
/*}*/
@media only screen and (max-width: 768px){
  .internal_cat_list{
    max-height: 350px;
    overflow-y: scroll;
  }
  /*.product_inner_page_carts,.product_inner_page_carts_search{*/
  /*  grid-template-columns: repeat(1,1fr);*/
  /*}*/
}
/* category product internal list end */


/*static */

.service-page .row {
  row-gap: 20px;
}
.services-figure {
  height:250px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.services-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-article h2 {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 25px;
  color: var(--default);
}

.services-article-content {
  font-size: 16px;
  color: var(--color-3);
  line-height: 1.2;
  hyphens: auto;
  max-height: 100%;
  overflow-y: auto;
  height: 100%;
  text-align: justify;
}
.services-article-content img{
    display:none !important;
}
.services-article-content::-webkit-scrollbar {
  width: 2px;
}

.services-article-content::-webkit-scrollbar-track {
  background: #5acc3449;
}

.services-article-content::-webkit-scrollbar-thumb {
  background: #5bcc34;
}
.services-article{
    height:100%;
}

@media screen and (min-width:768px) {
  .services-figure{
    height: 300px;
  }
}
@media screen and (min-width:768px) {
  .services-figure{
    height: 400px;
  }
}
@media screen and (min-width:992px) {
  .services-article-content{
    max-height: 400px;
    padding:0 10px;
    height:100%;
  }
}


/*partnors*/
.sales-managment{
    margin-top:20px !important;
}
.partnors-managment h6,.sales-managment h6{
  margin:0 auto;
}
.partnors .row{row-gap:20px;}
.partnors_card {
    padding: 15px;
    background-color: #fff;
    border: 2px solid #e6e6e6;
    height: 150px;
    border-radius: 4px;
    transition: .3s ease-in-out;
    cursor: pointer
}

.partnors_card:hover {
    border-color: var(--default);
}

.partnors_card_image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: .3s
}

@media(min-width:280px) and (max-width:345px) {
    #partnors .row .col-10 {
        width: 100%
    }
}


.certificate-inside .row{
    row-gap:20px;
}
.certiciates_card {
        height: 400px
    }
.certiciates_card a {
    display: inline-block;
    height: 100%;
    width: 100%;
    background-image: none !important;
    border-width: 10px !important;
    border-style: solid !important;
    border-color: #a5a4a499 #bebebe99 #a5a4a47a #bebebe94 !important;
    box-shadow: rgba(0, 0, 0, .2) 0 12px 28px 0, rgba(0, 0, 0, .1) 0 2px 4px 0, rgba(255, 255, 255, .05) 0 0 0 1px inset;
}
.certiciates_card img {
    height: 100%;
    width: 100%;
   object-fit: fill;
}

@media screen and (min-width: 576px) {
   .certiciates_card {
        height: 300px;
    }
    
}
.filter_inner_area_select{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:20px;
    flex-wrap:wrap;
}
.filter_inner_area_select select{
    padding:10px;
    min-height:30px;
    min-width:150px;
    border:1px solid #ddd;
    cursor:pointer;
    outline:none;
}
.notFound{
font-size:20px;
text-align:center;
color:#000;
display:flex;
padding:10px;
min-height:45px;
align-items:center;
justify-content:center;
  background: rgba(255, 0, 0, 0.05);
  border-bottom:2px solid red;
  border-radius:2px;
}
.notFound.select-hidden{
    display:none;
}