footer {
    background-color: var(--bg-light);

    color: var(--bg-dark);


    a {
        color: var(--bg-dark);
        text-decoration: none;
    }
}

.grid-footer {
    padding: 40px 0;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-gap: var(--gap-xl);


}

.g-footer-col {
    display: flex;
    flex-direction: column;
    gap: var(--gap-m);

    ul {
        list-style-type: none;

        li {
            padding-bottom: 5px;
        }
    }


}

.footer-bottom {
    background-color: var(--bg-dark);
    color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;


    a {
        color: var(--bg-light);

    }
}


/* contact button - START */

/* Position the button */
.contact-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--main-red);
    font-size: 1.2rem;
    color: white;
    padding: 10px 30px;
    cursor: pointer;
    font-size: 1.2rem;
    border: none;
    border-radius: 20px;
    display: none;
    transition: all 0.2s ease-in-out;



    @media (max-width: 768px) {
        display: none;
    }
}

.contact-button:hover {
    transform: scale(1.05);
}

/* Style the form container */
.form-container {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: white;
    box-shadow: 0px 0px 10px -5px var(--bg-dark);
    padding: 40px 20px;
    max-width: 400px;
    z-index: 99;
    border-radius: 20px;



    .pop-input,
    .pop-textarea {
        margin: 10px 0 20px 0;
        padding: 10px;
        border: 1px solid var(--bg-dark);
        border-radius: var(--radius-m);
        font-size: 1.05rem;
        font-family: 'Roboto';

    }

    .pop-btn {
        background-color: var(--success);
        color: white;
        font-size: 1.2rem;
        font-weight: 400;
        padding: 10px;
        border-radius: var(--radius-m);
        border: none;
    }

    /* Style the close button */
    .close-button {
        position: absolute;
        right: 10px;
        cursor: pointer;
        background-color: none;
        background-color: white;
        border: none;
        padding: 10px;
    }

    .pop-form-check {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin: 10px 0 20px 0;

        p {
            margin: 0 10px;
            font-size: 0.82rem;
        }

        & input {
            margin: 0;
        }
    }


}

/* contact button - END */