/* --------------------
-GLOBAL CSS 
--------------------- */
.theme-bg{background-color: #ffe7ee;}
.left-right-section ul li{list-style: disc;}
.left-right-section ul{
    margin-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Start Menu css */
.navbar .menu-item {
  position: relative;
}
.navbar .menu-item > .sub-menu {
  display: block;
  position: absolute;
  top: 80%;
  left: -15px;
  width: 220px;
  padding: 10px;
  margin: 0;
  list-style: none;

  background: var(--color-white);
  border-radius: 15px;
  border: none;
  box-shadow: var(--box-shadow);

  opacity: 0;
  visibility: hidden;

  transform: rotateX(-75deg);
  transform-origin: 0% 0%;
  transition: all 0.3s ease;
  z-index: 999;
}
.navbar .menu-item.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}
.navbar .sub-menu li a {
  display: block;
  font-size: 16px;
  padding: 6px 15px;
  font-weight: 500;
  color: var(--color-dark);
  text-transform: capitalize;

  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.navbar .sub-menu li a:hover {
  background: var(--theme-color);
  color: var(--color-white);
  padding-left: 32px;
}
/* .navbar .sub-menu li a::before {
  content: "//";
  position: absolute;
  left: 15px;
  top: 6px;
  color: var(--color-white);

  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
} */

.navbar .sub-menu li a:hover::before {
  opacity: 1;
  visibility: visible;
}
.navbar .menu-item-has-children > a::after {
   display: inline-block;
  margin-left: 5px;
  vertical-align: baseline;
  font-family: 'Font Awesome 6 Pro';
  content: "\f107";
  font-weight: 600;
  border: none;
  font-size: 14px;
}

@media (min-width: 992px) {
   .menu-item-has-children .sub-menu a::before {
      display: none;
    }
}

/* ---------------------------------
Contact Form 7 css start from here 
------------------------------------- */
.contact-page-form br{display: none;}
.input-group p{
    position: relative;
    display: flex;
    background: #fff;
    border-radius: 50px;
    width: 100%;
}

.input-group .wpcf7-form-control-wrap{width: 100%;}

/* -----------------------
SERVICE CARD CSS START FROM HERE  
----------------------------------*/
.service-cards .team-img{border: unset; border-radius: 10px;}
.service-cards .team-img img{ border-radius: 10px; height: 250px; object-fit:cover;}
.service-cards .team-item {box-shadow: 0 0 5px #cdcdcd; border-radius: 10px}
.service-cards .team-content {padding-left: 10px; padding-right: 10px; padding-bottom: 20px;}
.service-cards .team-content p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

