.footer {
    position: fixed;
    bottom: 0;
    width: 60%;
    height: 4rem;
    background-color: #333;
    color: #fff;
    align-items: center;
    padding: 0 20% 0 20%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-weight: 400;
    font-size: 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-left {
    width: 60%;
    height: 100%;
    align-items: center;
    float: left;
    display: flex;
    justify-content: center;
}

.footer-left-div-container {
    border: none;
    border-radius: 8px;
    height: 60%;
    background-color: #f9f9f9;
    width: 60%;
    align-items: center;
    float: left;
}

.footer-left-div-container input {
    background-color: #f9f9f9;
    align-items: center;
    border: none;
    width: 75%;
    height: 95%;
    font-size: 1rem;
    outline: none;
}

.footer-left-div-container div {
    display: flex;
    width: 15%;
    height: 100%;
    float: left;
    align-items: center;
    justify-content: space-around;
}

.footer-left-div-container div img {
    width: 20px;
}

.footer-left button {
    background: linear-gradient(270deg, #29CCB7 0%, #29CC88 100%);
    color: white;
    border: none;
    height: 60%;
    margin-left: 5px;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.footer-left button:hover {
    background-color: #16a085;
}


.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40%;
    margin-top: 1%;
}

.footer-right p {
    width: 100%;
    height: 50%;
    margin: 0;
    text-align: right;
    font-size: 0.9rem;
}

.footer .button-class {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .footer {
        position: fixed;
        width: 100%;
        padding: 0;
        background-color: #fff;
        color: #333;
        align-items: center;
        z-index: 1000;
        font-weight: 400;
        font-size: 1rem;
        opacity: 1;
        transition: opacity 0.3s ease;
    }

    .footer-right {
        display: none;
    }

    .footer-left {
        width: 100%;
        height: 100%;
        align-items: center;
        float: left;
        display: flex;
        justify-content: center;
    }

    .footer-left-div-container {
        width: 50%;
    }
}