  .footer_section
  {
    width: 100%;
    height: auto;
    background-color: ghostwhite;
    padding: 5% 2%;
    position: relative;
  }
  .footer_content_container
  {
    width: 90%;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    z-index: 2;
  }
  .footer_content_side,.footer_image_side
  {
    width: 48%;
  }
  .footer_content_side h1
  {
    font-size: 45px;
    font-weight: 700;
  }
  .footer_image_side h3
  {
    color: ghostwhite;
    font-weight: 800;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: auto;
    padding: 2% 0px;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
    font-size: 25px;
  }
  .footer_contact_info
  {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
    width: 100%;
    flex-wrap: wrap;
  }
  .footer_contact_info div
  {
    width: 48%;
    margin-bottom: 10%;
    text-align: left;
  }
  .email_us p,#phone,.address p,.footer_social_links p
  {
    margin-bottom: 5px;
    font-size: 22px;
    font-weight: 700;
    color: #222525;
    text-transform: capitalize;
  }
  .email_us a, .phone p, .address address
  {
    font-size: 20px;
    font-weight: 600;
    color: #7b7b7b;
    font-style: normal;
  }
  .phone p
  {
    margin-bottom: 0px;
  }
  .footer_image_side
  {
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border-radius: 10px;
    height: auto;
    aspect-ratio: 18/12;
    position: relative;
  }

  .footer_image_side img
  {
    width: 100%;
    margin: 0px auto;
    display: block;
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
  }
  .links
  {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    width: 100%;
    margin-top: 25px;
  }
  .links a i
  {
    font-size: 25px;
    transition: 0.2s all linear;
  }
  .links a:nth-child(1) i
  {
    color: blue;
  }
  .links a:nth-child(2) i
  {
    color: deeppink;
  }
  .links a:nth-child(3) i
  {
    color: red;
  }
  #sp-footer
  {
    height: auto !important;
  }
  @media (max-width:1600px ) 
  {
    .footer_content_container  
    {
      width: 90%;
    }
  }
  @media (max-width: 1366px) 
  {
    .footer_section
    {
      padding: 8% 2%;
    }
    .footer_content_container  
    {
      width: 95%;
    }     
  }
  @media (max-width: 1280px) 
  {
    .footer_content_side h1
    {
      font-size: 35px;
    }  
    .email_us p, #phone, .address p
    {
      font-size: 18px;
    }
    .email_us a, .phone p, .address address
    {
      font-size: 16px;
    }
  }
  @media (max-width: 1024px) 
  {
    .footer_content_container
    {
      flex-direction: column-reverse;
      gap: 60px;
    }
    .footer_content_side,.footer_image_side
    {
      width: 90%;
      margin: 0px auto;
    }
    .footer_section
    {
      padding: 5% 2%;
    }
    .footer_image_side img{
      object-position: right;
    }
  }
  @media (max-width: 650px) 
  {
    .footer_contact_info
    {
      flex-direction: column;
    }  
    .footer_contact_info div
    {
      width: 100%;
    }
    .footer_image_side
    {
      height: auto;
      aspect-ratio: 3/3;
    }
  }