/*  */

footer .wavesh{
    transform: rotate(180deg);  
}
footer{
    background: linear-gradient(to top, #3b709f97, #3b709f97);
}


footer {
    background-color: #F5FAFA; /* Matches website background color */
    text-align: center;
    font-size: small;
}

.social-media-icons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Spacing between circles */
    padding-top: 10px;
}

.circle-container {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #3b709f97; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}
.circle-container a{
    text-decoration: none;
}
a svg {
    vertical-align: middle;
}

.circle-container:hover svg{
    fill:#3b709f97;
}
.circle-container:hover{
    background-color:#efebdf;
}


.social-media-icon {
    fill: #efebdf; /* Makes icons white to contrast the blue background */
    width: 24px;
    height: 24px;
}

.inner-footer {
    height: auto;
    width: 100%;
    padding: 2% 10%;
    justify-content:center;
}
.inner-footer a{
    color:#465eaf;
}

footer hr{
    border:none;
    border-top: 2px solid #efebdf;
    margin: 3rem 0;
    padding-left: 10%;
    width:100%;
    opacity:0.5;

}

.footer-page{
    display:flex;
    row-gap: 0.375rem;
    flex-direction: column;
    text-align: left;
    color:#efebdf;
}
.footer-pages{
    display:grid;
    grid-template-columns: repeat(5, minmax(0,1fr));
    padding-top: 1em;
}
.footer-page a{
    color:#465eaf;
    text-decoration: none;
}
#footer-main{
    font-weight: bold;
    color:#465eaf;
}

.footer-page a:hover,
#footer-main:hover{
    color:#efebdf;
}

@media (max-width:520px){
    .social-media-icons {
        display: grid;
        width: 264px;
        height:100px;
        grid-template-columns: repeat(3,1fr);
        row-gap: 1.25rem;
        column-gap: 3rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        margin:auto;
    }
    .footer-page a,
    .footer-page h4,
    .footer p {
        font-size: 8px; /* Adjust the size as needed */
    }
}
@media (max-width:715px){
    .footer-pages{
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
    .footer-menu{
        padding:0 20%;
    }
}

/*logos*/
.footer-image-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* Spacing between circles */
  }
  
.footer-image-logo {
    display: flex;
    justify-content: center;
    gap: 20px; /* Spacing between circles */
    padding-top: 10px;
    height: 50px;
  }
.footer-image-logo img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}
  
