.homepage-featured-media {
    padding: 40px 0;
    background: #f5f5f5;
    margin-top: 2rem;
  }

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

  .feature-media-flex .featured-media-item h2 {
    font-weight: bold;
    font-size: 22px;
    color: #293f48;
    text-align: right;
  }

  .main-footer {
    display: flex;
    gap: 1em;
    justify-content: start;
    padding: 50px 10px;
    font-size: 16px;
    flex-wrap: wrap;
  }

  .main-footer {
    flex: 1;
  }

  .main-footer p {
    font-size: 14px;
  }

  .main-footer .footer-social {
    list-style: none;
    margin: 0;
    padding: 0 0 10px 0;
  }

  .main-footer .footer-social li {
    display: inline-block;
  }

  .main-footer .footer-social li a {
    display: block;
    padding: 8px;
    margin: 5px;
    background: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    box-shadow: -2px 3px 5px 1px rgba(222, 222, 222, 0.75);
    -webkit-box-shadow: -2px 3px 5px 1px rgba(222, 222, 222, 0.75);
    -moz-box-shadow: -2px 3px 5px 1px rgba(222, 222, 222, 0.75);
  }

  .main-footer .footer-social li a i {
    color: #B46D4D;
  }


  .main-footer .footer-nav-box h3, .footer-contact h3 {
    font-size: 20px;
    color: #B46D4D;

  }

  .footer-nav-box a:hover, .copyright:hover{
  text-decoration: underline 2.4px #B46D4D !important;
}
  .main-footer .footer-nav-box ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .main-footer .footer-nav-box ul li a {
    color: #4F5665;
    padding: 15px 0 0;
    display: block;
    text-decoration: none;
    font-size: 14px;
  }

  .footer-social {
    /* display: flex; */
    list-style: none;
  }

  .footer-social li:hover{
    transform: scale(1.2);
  }
  @media (max-width:768px) {
    .modal-content.register-modal .content-flex {
      display: flex;
      flex-direction: column-reverse;
  }
  }

  .profile-pulse {
  border-radius: 50%;
	animation: pulse-effect 2s infinite;
}
.profile-pulse:hover {
  animation: none;
}


@keyframes pulse-effect {
  0% {
    box-shadow: 0 0 0 0px rgba(230, 44, 19, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(94, 16, 6, 0);
  }
  
}