/* this is style for the footer */
.footer-text {
    font-size: 14px;
    color: black;
    text-align: center;
    padding: 10px;
}

.q-footer {
    width: 100%;
    background-color: white;
    color: black;
    text-align: center;
    position: fixed;
    bottom: 0;
    height: 75px;
    z-index: 1;
}

/* for the Q wave image on bottom left */
.q-wave-img {
    position: relative;
    bottom: 5%;
    left: 8%;
    width: 40px;
    height: 40px;
}

/* Configure for different screen sizes */

/* Medium devices (laptops, 768px and up) */
@media (min-width: 768px) and (max-width: 1024px) {
    .q-wave-img {
        height: 14%;
        bottom: 5%;
        left: 8%;
    }
}

/* Small devices (tablets, 576px and up) */
@media (min-width: 576px) and (max-width: 768px) {
    .q-wave-img {
        height: 10%;
        bottom: 4%;
        left: 2%;
    }
}

/* Extra small devices (phones, less than 576px) */
@media (min-width: 450px) and (max-width: 576px) {
    .q-wave-img {
        height: 30px!important;
        width: 30px!important;
        bottom: 4%;
        left: 0%;
    }
}

/* Super small devices */
@media (max-width: 450px) {
    .q-wave-img {
        display: none;
    }
}

