.mobile-menu-btn {
  display: flex;
  justify-content: space-between;
  position: fixed;
  z-index: 999;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffff;
  box-shadow: 0 -3px 12px #27497d17;
  padding: 8px 15px 0;
  align-items: flex-start;
  height: 65px;
  box-sizing: inherit;
}

.mobile-footer-menu {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.server-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.icon-menus-showings {
  height: 24px;
  width: 24px;
  background: url(https://d8it4huxumps7.cloudfront.net/uploads/images/menu/menu-spirit-icons.svg) no-repeat;
  transform: scale(1.1);
  opacity: 1;
}

.server-text {
  font-size: 14px;
  display: block;
  /* margin-top: 5px; */
  font-weight: 500;
  min-width: 29px;
  color: #1c4980;
  text-align: center;
  cursor: pointer;
  font-family: "Inter", sans-serif !important;
  ;
}

.icon-learn {
  background-position: 0px -34px;
  transition: .4s;
}

.icon-pratice {
  background-position: 0px -68px;
  transition: .4s;
}

.icon-mentorship {
  background-position: 0px -170px;
  transition: .4s;
}

.icon-job {
  background-position: 0px -136px;
  transition: .4s;
}

.icon-Blogs {
  background-position: 0px -100px;
  transition: .4s;
}




.image-zoom {
  transition: transform 0.5s ease-out;
}

.image-zoom:hover {
  transform: scale(1.1);
}
.post-thumb {
  position: relative; /* Ensure the pseudo-elements are positioned relative to the .post-thumb */
}

.post-thumb::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(14, 165, 234, 0.5); /* Change color and opacity as needed */
  transform: scale(0);
  transition: transform 500ms ease, opacity 500ms ease; /* Transition scale and opacity */
  pointer-events: none; /* Ensure the pseudo-element doesn't interfere with mouse events */
}

.post-thumb::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(14, 165, 234, 0.5); /* Change color and opacity as needed */
  transform: scale(1);
  opacity: 0;
  transition: transform 500ms ease, opacity 500ms ease; /* Transition scale and opacity */
}

.post-thumb:hover::after {
  transform: scale(1);
}

.post-thumb:hover::before {
  opacity: 1;
  transform: scale(0);
}

.footer a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #aeb1b8;
  transition: color 0.3s ease; 
}

.footer a:before {
  position: absolute;
  content: '';
  width: 0%;
  height: 1px;
  background-color: #0EA5EA; 
  bottom: 0;
  left: 0;
  transition: width 0.5s ease;
}

.footer a:hover:before {
  width: 100%;
}

.footer a:hover {
  text-decoration: none !important; 
  color: #0EA5EA !important;
}
.footer-social{
  width: 40px;
  height: 40px;
  background-color: rgb(20 49 85) !important;
}
.footer-social:hover{
  background-color: rgba(5, 104, 226, 0) !important;
}

.footer-hover:hover{
  color: #0EA5EA !important;
  transition: color 0.3s ease; 
}

.hover-fx {
  font-size: 36px;
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  text-align: center;
  position: relative;
  color: #0EA5EA;
  background-color: rgba(255, 255, 255, 0.1);
  transition: 300ms;
}

.hover-fx:after {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: '';
  box-sizing: content-box;
  box-shadow: 0 0 0 3px #0EA5EA;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 300ms;
}



.hover-fx:hover:after {
  opacity: 1;
  transform: scale(1.15);
}
.activeLinks{
  color: #000;
}