.site_footer {
    padding: 40px;
    position: relative;
}
.site_footer .footer_background_image_holder {
    position: absolute;
    height: 100%;
    width: 100%;
    inset: 0px;
    color: transparent;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
}
.site_footer .container {
    position: relative;
    z-index: 1;
}
.site_footer .footer_top_heading_holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0 20px;
}
.site_footer .footer_top_heading_holder .footer_main_heading {
    font-size: 3.75rem;
    font-weight: 600;
    line-height: 1;
    color: #40464E;
}
.site_footer .each_footer_list_heading {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.75rem;
    color: #ffffff;
    margin-bottom: 16px;
}
.site_footer .footer_ul_lists_holder {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style-type: none;
}
.site_footer .footer_ul_lists_holder .footer_li_list_holder .each_anchor_holder {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    line-height: 1.5rem;
    text-transform: capitalize;
    color: #bcbcbc;
}
.site_footer .footer_ul_lists_holder .footer_li_list_holder .each_anchor_holder.address_holder {
    max-width: 251px;
}
.site_footer .footer_ul_lists_holder .footer_li_list_holder .each_anchor_holder.lowercase {
    text-transform: lowercase;
}
.site_footer .footer_ul_lists_holder .footer_li_list_holder .each_anchor_holder:hover {
    color: #ffffff;
}
.icon_circular_holder {
    min-width: 32px;
    max-width: 32px;
    min-height: 32px;
    max-height: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #0974F2;
    border-radius: 100%;
}
.site_footer .footer_ul_lists_holder .footer_li_list_holder .each_anchor_holder:hover .icon_circular_holder {
    background: #0974F2;
}
.site_footer .footer_ul_lists_holder .footer_li_list_holder .each_anchor_holder:hover .icon_circular_holder svg {
    fill: #ffffff;
}
.site_footer .flexbox_holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 20px;
}
.site_footer .border_top_bottom_holder {
    border: 2px solid #4C4B4B;
    border-width: 2px 0;
    padding: 32px 0;
}
.site_footer .copyright_holder {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .site_footer .footer_top_heading_holder .footer_main_heading {
        font-size: 3rem;
    }
    .site_footer .footer_ul_lists_holder .footer_li_list_holder .each_anchor_holder {
        font-size: .875rem;
    }
}
@media (max-width: 768px) {
    .site_footer .footer_top_heading_holder .footer_main_heading {
        font-size: 2.25rem;
    }
    .site_footer .each_footer_list_heading {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
  .four_col_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer_top_heading_holder {
    flex-direction: column;
    gap: 15px;
  }
  .footer_top_heading_holder h4{
    order: 2;
  }
  .footer_top_heading_holder img{
    order: 1;
  }
  .col_grid_item{
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }
  .social_holder{
    min-width: 104px;
  }
  .site_footer .flexbox_holder {
    justify-content: center !important;
  }
  .four_col_grid {
    grid-template-columns: 1fr;
  }
}