footer{
    width: 95%;
    height:auto;
    float: left;
    padding: 0px 0%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    background-color: black;
    margin-top: 1em;
}

.back-to-top{
    position: fixed;
    right: 75px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 2px solid var(--btn-outline);
    background: var(--btn-outline);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    z-index: 999;
}
.back-to-top i{
    font-size: 18px;
}
.back-to-top.visible{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover{
    background: var(--btn-hover);
    border-color: var(--btn-hover);
}
@media (max-width: 768px){
    .back-to-top{
        left: 12px;
        bottom: 12px;
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
}
.footer-header{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1% 0;
}
.footer-btn{
    width: fit-content;
    height: auto;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
}
.footer-container{
    width: 100%;
    /* height: 0px; */
    float: left;
    padding: 0 5%;
    background-color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
}
.footer-des{
    width: 48%;
    height: auto;
    float: right;
    margin-left: 2%;
    color: white;
}
.footer-des p{
    width: 100%;
    height: auto;
    float: left;
    margin-top: 0;
    margin-bottom: 1em;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-des small{
    width: 100%;
    height: auto;
    float: left;
    text-align: justify;
}
.footer-des a{
    color: var(--alpha);
    text-decoration: none;
}
.footer-logo-sec{
    width: 50%;
    max-width: 50%;
    height: auto;
    float: left;
    display: flex;
    align-items: center;
    /* gap: 14px; */
    justify-content: flex-end;
    /* background-color: #ffffff; */
    border-radius: 10px;
    padding: 10px;
}
.footer-logo + .footer-logo{
    margin-inline-start: 14px;
}
.footer-logo{
    width: 90px;
    min-width: 90px;
    height: auto;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 6px;
}
.footer-logo a{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-logo img{
    width: 100%;
    height: 90px;
    float: left;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}
.trustI-image{
    width: 100%;
    height: 90px;
    object-fit: contain;
    cursor: pointer;
}
@media screen and (max-width:720px) {
    .footer-des p{
        font-size: 12px;
    }
    .footer-container{
        width: 100%;
        box-sizing: border-box;;
    }
    .footer-logo-sec{
        width: 100%;
        max-width: 100%;
        padding: 8px;
        gap: 10px;
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-logo + .footer-logo{
        margin-inline-start: 10px;
    }
    .footer-logo{
        width: 75px;
        min-width: 75px;
        padding: 5px;
    }
    .footer-logo img,
    .trustI-image{
        height: 75px;
    }
}
