footer{
    padding: 45px 0 40px;
    background: linear-gradient(90deg, #FAFDFF 27.31%, #F4FFFB 86.54%);
}
.footerWrapper{
    display: flex;
    justify-content: space-between;
}
.footCol{
    max-width: max-content;
}
.footCol .footHeading{
    font-weight: 700;
    font-size: 17px;
    line-height: 150%;
    margin-bottom: 20px;
    color: #1C3D5A;
}
.footCol a,
.footCol p{
    font-weight: 500;
    font-size: 15px;
    line-height: 150%;
    color: #6B6E98;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footCol p a{
    margin-left: -5px;
}
.footCol a strong,
.footCol p strong{
    font-weight: 700;
    font-size: 15px;
    line-height: 150%;
    color: #1C3D5A;
}
.footCol a:hover{
    text-decoration: underline;
}
.footCol p.flex-start{
    align-items: flex-start;
}
.footCol > p,
.footCol > a{
    margin-top: 20px;
}
.footCol > p:first-child,
.footCol > a:first-child{
    margin-top: 0;
}
.footCol > p.timings{
    margin-top: 5px;
    margin-left: 25px;
    line-height: 200%;
}
.copyrightDiv{
    padding: 16px 0 14px;
    background: #E9FFF7;
}
.copyrightWrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.copyrightWrapper p,
.copyrightWrapper a{
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #1C3D5A;
}
.socialIcons{
    display: flex;
    align-items: center;
    gap: 15px;
}
.termsWrapper{
    transform: translateX(-100px);
}
.sslSvg{
    margin-top: 30px;
    margin-left: -30px;
}
@media (max-width: 991px) {
    .termsWrapper {
        transform: none;
    }
}
@media (max-width: 767px) {
    .footerWrapper{
        flex-wrap: wrap;
        gap: 40px 0;
    }
    .footCol{
        max-width: 45%;
        width: 100%;
    }
}
@media (max-width: 575px) {
    .footCol{
        max-width: 100%;
        width: 100%;
    }
    .copyrightWrapper{
        flex-direction: column;
        gap: 15px;
    }
    .sslSvg {
        margin-left: 0px;
    }
}