.footer {
    background-color: var(--blue);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 4rem;
    column-gap: 1rem;
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
}



.footer-logo-wrapper {
    max-width: 14rem;
}

.footer-center {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-vertical-padding{
    padding-top: 3rem;
    padding-bottom: 3rem;
    width: 100%;
}

.footer-address-header {
    color: var(--white) !important;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.footer-address {
    color: var(--white) !important;
    text-align: center;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.footer-address a {
    color: var(--white) !important;
    text-align: center;
    margin-bottom: 0.3rem;
    font-size: 1rem;
  font-family:Arial,sans-serif!important;
}
.footer-address a:hover {
    color: #0061e0 !important;
    text-align: center;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-end;
}

{##.footer-links-wrapper {
    display: flex;
    justify-content: end;
    gap: 0.5rem;
    color: var(--white) !important;
  
}

.footer-links-wrapper a {
    text-decoration: none;
    color: var(--white) !important;
  font-size: 1rem;
}

.footer-links-wrapper a:hover {
    text-decoration: none;
    color: #0061e0 !important;
  font-size: 1rem;
}##}

.footer-btn-wrapper {
    display: flex;
    justify-content: end;
}

.footer-control-wrapper {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    max-width: 6rem;
}

.footer-copyright {
    text-align: center;
    color: var(--white);
    font-size: 0.8rem;

}

.footer-bar {
  background-color: #fff;
  padding: 1rem 0;
}

.footer-bar-wrapper {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer-bar-wrapper a {
  text-decoration: none;
  color: var(--blue);
  font-size: 1rem;
}

.footer-bar-wrapper a:hover {
  color: #0061e0;
}

.footer-bar-wrapper a:not(:last-child) {
    border-right: 2px solid var(--blue);
    padding-right: 1rem;
}

@media (max-width: 991px) {

    .footer-grid {
        grid-template-columns: repeat(1, 1fr); 
        column-gap: 2rem;
           }

    .footer-center, .footer-left, .footer-right {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-left {
        display: flex;
        flex-direction: column; 
        gap: 1rem;
    
    }
  
    .footer-bar-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

}






