.footer {
    background: var(--Blue-Ribbon-50, #EDF7FF);
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer img {
    width: 105px;
    height: 89px;
    flex-shrink: 0;
    aspect-ratio: 105/89;
    object-fit: contain;
}

.footer h4 {
    color: var(--Blue-Ribbon-700, #0A55EB);
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 5px;
}

.footer .line {
    border: 2px solid #0D6AFF;
    width: 50px;
}

.footer ul {
    list-style: none;
    padding-left: 0px;
}

.footer ul li {
    margin-bottom: 1rem;
}

.footer ul li a {
    color: var(--French-Gray-600, #92909B);
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer .copyRight {
    border-top: 1px solid var(--Blue-Ribbon-600, #0D6AFF);
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.footer .copyRight p {
    color: var(--Blue-Ribbon-500, #288CFF);
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer .copyRight a {
    color: var(--Blue-Ribbon-500, #288CFF);
    text-align: right;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

@media(max-width:992px) {
    .footer img {
        width: 95px;
        height: 79px
    }

    .footer h4 {
        font-size: 18px;
    }

    .footer .copyRight a,
    .footer .copyRight p,
    .footer ul li a {
        font-size: 15px;
    }
}

@media(max-width:768px) {
    .footer img {
        width: 95px;
        height: 69px
    }

    .footer h4 {
        font-size: 16px;
    }

    .footer .copyRight a,
    .footer .copyRight p,
    .footer ul li a {
        font-size: 14px;
    }
}

@media(max-width:570px) {
    .footer {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .footer img {
        width: 55px;
        height: 39px
    }

    .footer h4 {
        font-size: 15px;
    }

    .footer .copyRight a,
    .footer .copyRight p,
    .footer ul li a {
        font-size: 12px;
    }
     .footer ul {
        margin-top: 10px;
     }
        .footer ul li {
            margin-bottom: 10px;
        }
}