/*-----------------------------------------------
# Maximum Numbers of line 4-2024
-----------------------------------------------*/
.max-line-one {
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 1; /* number of lines to show */
}

.max-line-two {
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 2; /* number of lines to show */
}

.max-line-three {
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 3; /* number of lines to show */
}

/*-----------------------------------------------
# Custom Card Shapes 4-2024
-----------------------------------------------*/
.card-x {
  border: 2px solid #ededed;
  border-radius: 5px;
}


.card-title-x {
  padding: 20px 0 0 0;
  font-size: 18px;
  font-weight: 500;
  color: #012970;
  font-family: "Poppins", sans-serif;
}

.card-title-y {
  padding: 0 0 0 0;
  font-size: 15px;
  font-weight: 500;
  color: #012970;
  font-family: "Poppins", sans-serif;
}

.card-body-x {
  padding: 5px 5px 5px 20px;
}

.card-body-y {
  padding: 20px 20px 20px 20px;
}

div.nav-x {
  -bs-nav-link-hover-color:#3d55ef;
}

.image-x {
  border-radius: 5px;
    overflow: hidden
}

.image-x img {
    transition: all 0.5s ease-in-out
}

.image-x:hover img {
    transform: scale(1.1, 1.1);
    cursor: pointer
}