footer{
    background-color: #F8F8F8;
    /*height: 467px;*/
}
footer .container{
    height: 280px;
    display: grid
;
}
.footerImg{
    text-align: center;
    padding: 20px;
}
.footerImg img{
    width:328px;
    height:93px;
}
.footerContent{
    display: flex;
    justify-self: anchor-center;
    column-gap: 110px;
    margin-bottom: 20px;
}
.footerEnd{
    background-color: #003399;
    color: #ffffff;
    height: 102px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.footerEnd p{
    font-size: 1em;
    margin: 0;
}
.footerContent h3{
    width: 100%; 
    text-align: left; 
    margin-bottom: 10px;
}
.footer-list {
    display: flex;
    gap: 10px;
}
.footerContent ul {
    display: flex;
    flex-direction: column; 
}
.footerContent ul li{
    list-style: none;
}

.footerContent ul.pageLinks{
    flex-direction: row;
    gap: 15px;
    margin-top: 16px;
}

.footerContent ul.pageLinks li a:link,
.footerContent ul.pageLinks li a:visited,
.footerContent ul.pageLinks li a:hover,
.footerContent ul.pageLinks li a:active {
  color: #003399;
}

.footer-list li a img {
    height: 25px;
    width: 25px;
    padding: 5px;
}
.footer-list li {
    transition: background-color 0.3s ease-in-out, border-radius 0.3s ease-in-out;
    border-radius: 5px;
    width: 35px;
    height: 35px;
}

.footer-list li:hover {
    background-color: #96cbff69;
    border-radius: 10px;
    transform: scale(1.1); /* Zoom in effect */
}

.footer-list li.twitterLogo img{
    padding-top: 2px;
    width: 30px;
    height: 30px;
}
body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

@media only screen and (min-width: 0) and (max-width: 500px) {
    footer .container {
        height: auto;
        display: flow;
    }
    footer .footerImg{
        padding: 20px 0;
    }
    .footerImg img {
        width: 100%;
        height: auto;
        max-width: 328px;
    }
    .footerEnd p{
        font-size: 17px !important;
        margin: 0;
    }
    .footerContent {
        display: flex;
        justify-self: anchor-center;
        column-gap: 86px;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
    }
    .footerContent h3{
        text-align: center;
    }
    .footerEnd{
        flex-direction: column;
    }
    .footerEnd .dot{
        display: none;
    }
}
@media only screen and (min-width: 501px) and (max-width: 800px) {
    footer .container {
        height: auto;
        display: flow;
    }
    .footerContent {
        display: flex;
        justify-self: anchor-center;
        column-gap: 70px;
        flex-wrap: unset;
        width: 90%;
        justify-content: center;
        flex-direction: row;
    }
}

@media only screen and (min-width: 801px) and (max-width:1024px) {
    .footerContent {
        display: flex;
        justify-self: anchor-center;
        column-gap: 100px;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1280px) {
}

@media only screen and (min-width: 1281px) and (max-width: 1419px) {
}

@media only screen and (min-width: 1420px) and (max-width: 1579px) {
}

@media only screen and (min-width: 1580px) {
}