


.footer {
    background-image: url(/assets/images/footer.png);
    padding: 40px 0px;
  }
  
  .logo-brand-footer img {
    width: 100px;
    height: 100px;
  
  }
  
  .third-social-div {
    display: flex;
    justify-content: center;
    align-items: center;
  
  }
  
  .social-icons-div {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
  
  }
  .social-icons-div:hover{
    border: 1px solid var(--bg-primary-light);
    background-color: black;
    color: white;
    transition: 1s ease;
    cursor: pointer;
  }
  
  .social-icons {
    gap: 20px;
  }
  .footer-content{
    padding: 5px;
  }
  .footer-content h4{
    font-family: var(--font-family-tertiry);
    font-weight: 700;
    color: white;
  }
  
  .footer-content p{
    font-family: var(--font-family-tertiry);
  
   
    color: white;
  }
  .footer-btn{
  
  }
  .credit-div{
    padding: 20px 0px;
  }
  .credit-div p{
    color: white;
    font-family: var(--font-family-secondary);
  }
  .footer-btn{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    
    background: var(--bg-primary-light);
    font-family: "Montserrat", sans-serif;
    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    cursor: pointer;
    border: none;
    font-family: var(--font-family-secondary);
  
  }
  
  .footer-btn:after {
    content: " ";
    width: 0%;
    height: 100%;
    background: var(--bg-secondary);
  
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
  }
  
  .footer-btn:hover::after {
    right: auto;
    left: 0;
    width: 100%;
  }
  
  .footer-btn span {
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 10px 40px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    
    z-index: 20;
    transition: all 0.3s ease-in-out;
  }
  .footer-btn span a{
    color: white;
    text-decoration: none;
  }
  
  .footer-btn:hover span {
    color: var(--text-secondary-light);
    animation: scaleUp 0.3s ease-in-out;
  }
  
  @keyframes scaleUp {
    0% {
      transform: scale(1);
    }
  
    50% {
      transform: scale(0.95);
    }
  
    100% {
      transform: scale(1);
    }
  }
  
  .footer-menu-list{
    line-height: 30px;
    padding-left: 10px;
  }
  
  .footer-menu-list li{
    list-style: none;
  }
  
  .footer-menu-list li a{
    text-decoration: none;
    color: grey;
    font-family: var(--font-family-tertiry);
  
    
  }
  .footer hr{
    color: white;
  }
  @media (min-width: 992px) { /* Apply only on large screens */
    .footer-content {
      position: relative;
      padding-right: 20px;
    }
  
    .footer-content::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 2px;
      height: 100%;
      background-color: rgba(255, 255, 255, 0.3); /* Adjust color and opacity */
    }
  
    /* Remove vertical line from the last column */
    .col-lg-3:last-child .footer-content::after {
      display: none;
    }
  }
  .brainlyhood-credit{
    color: gold;
  }