body{
    font-family: "Montserrat", sans-serif;
}
footer{
    background-color: #1e1b4b;
    padding-top: 50px;
    padding-bottom: 100px;
}
.footer_top_area{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer_social_area a i{
    font-size: 18px;
    background-color: #7c3aed;
    color: #fff;
    padding: 10px;
    border-radius: 100px;
}
.footer_bottom_area{
    margin-top: 50px;
}
.footer_heading{
    font-size: 24px;
    line-height: 29px;
    font-weight: 600;
    color: #a78bfa;
    margin-bottom: 25px;
}
.footer_list_items{
    list-style-type: none;
    padding: 0px;
}
.footer_list_items li a{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
}
.footer_list_items li a:hover{
    color: #7c3aed;
}
.footer_list_items li a i{
    padding-right: 10px;
}



/* Mobile (Small Screens) */
@media (min-width: 320px) and (max-width: 480px) {
    
    .footer_top_area{
      display: flex !important;
      flex-direction: column !important;
    }
    .footer_heading{
      text-align: center;
    }
    .footer_contact_area, .footer_quick_links{
      text-align: center;
    }
  }
  
  
  /* Mobile (Medium Screens) */
  @media (min-width: 481px) and (max-width: 767px) {
    
    .footer_top_area{
      display: flex !important;
      flex-direction: column !important;
    }
    .footer_heading{
      text-align: center;
    }
    .footer_contact_area, .footer_quick_links{
      text-align: center;
    }
  }
  
  
  /* Tablets (Small) */
  @media (min-width: 768px) and (max-width: 1024px) {
    
  }
  
  
  /* Laptops & Small Desktops */
  @media (min-width: 1025px) and (max-width: 1200px) {
    
  }
  
  
  /* Large Screens (Desktops) */
  @media (min-width: 1201px){
   
  }
  
  