/*footer*/
.footer {
    background-color: #ffffff;    
    padding: 42px 20px 30px;
box-shadow: 0px -45px 13px 0px rgba(0, 0, 0, 0.00), 0px -29px 12px 0px rgba(0, 0, 0, 0.01), 0px -16px 10px 0px rgba(0, 0, 0, 0.02), 0px -7px 7px 0px rgba(0, 0, 0, 0.03), 0px -2px 4px 0px rgba(0, 0, 0, 0.04);
}
.footer-container {
    display: flex;
  {###justify-content: space-between;###}
    text-align: center;
    justify-content: center;
    margin-bottom: 32px;
}
.footer-logo img {
    width: 100%;
    max-width: 170px;
}
.text-blue {
    font-size: 18px;
    color: #002B60;
    font-weight: 700;
    font-family: "Inter", serif;
    margin-top: 24px;
    margin-bottom: 24px;
}
.text-gray {
    color: #748A96;
    font-family: "Inter", serif;
    font-size: 18px;
    font-weight: 400;
    max-width: 385px;
    margin-bottom: 24px;
}
.awards {
    display: flex;
        justify-content: center;
    gap: 24px;
}
.awards img {
    height: 100%;
    max-height: 58px;
}
.footer-section ul{
    padding: 0;
}
.footer-section ul li {
    list-style: none;
    margin-bottom: 24px;
}
.footer-section h5 {
    font-size: 18px;
    color: #002B60;
    font-weight: 600;
    font-family: "Inter", serif;
    margin-bottom: 24px;
}
.footer-section ul li a {
    text-decoration: none;
    color: #748A96;
    font-size: 18px;
    font-family: "Inter", serif;
    font-weight: 400;
}
.footer-section ul li:last-child {
    margin-bottom: 0;
}
.txt-sky-blue {
    color: #69B3E3;
    font-size: 15px;
    font-weight: 400;
    font-family: "Roboto", serif;
}
.footer-bottom {
    display: flex;
        justify-content: center;
    align-items: center;
    padding: 16px 0;
}
.social-icons {
    display: flex;
    align-items: center;
    gap: 24px;
}

@media(max-width:768px){
    .footer-container {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        margin-bottom: 25px;
        gap: 25px;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .footer-section h5 {
        margin-bottom: 15px;
    }
    .footer-section ul li {
        margin-bottom: 15px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    .txt-sky-blue {
        text-align: center;
    }
}
@media(max-width:480px){
     .text-blue {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .footer-section h5 {
        margin-bottom: 12px;
    }
    .footer-section ul li {
        margin-bottom: 12px;
    }
}