.footer {
    height: fit-content;

    width: 100%;
    position: relative;
    padding-bottom: 10px;
}

.footer .footer-container {
    display: flex;
    width: 100%;
    height: fit-content;
}

.footer .footer-container .left {
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 30px;
}

.footer .footer-container .left img {
    width: 250px;
    margin-left: 100px;
    cursor: pointer;
}

.footer .footer-container .left img:first-of-type {
    margin-top: 40px;
}

.footer .footer-container .right {
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding-bottom: 30px;
}

.footer .footer-container .right .collum {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}

.footer .footer-container .right .collum h1 {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin-top: 0;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
}

.footer .footer-container .right .collum a {
    color: #fff;
    font-size: 20px;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
    text-decoration: none;
    transition: all cubic-bezier(.46, .43, .1, .99) 0.2s;
}

.footer .footer-container .right .collum a:hover {
    color: #9264c7;
}

.footer .copyright {
    margin-left: 100px;
    color: #fff;
    font-size: 20px;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
}

.footer .copyright a {
    color: #fff;
}

.footer .copyright .small {
    font-size: 15px;
    opacity: 0.5;
}


@media (max-width: 956px) {
    .footer .footer-container .right {
        width: 90%;
        margin-left: 0;
        justify-content: center;
        gap: 0px 20px;
        flex-wrap: wrap;
    }
}

@media (max-width: 1340px) {
    .footer .footer-container .right .collum h1 {
        font-size: 20px;
    }

    .footer .footer-container .right .collum a {
        font-size: 18px;
    }
}

@media (max-width: 808px) {
    .footer .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer .footer-container .left iframe {
        display: none;
    }

    .footer .footer-container .left {
        margin-bottom: 10px;
        width: 100%;
        height: max-content;
        display: flex;
        flex-direction: row;
        gap: 10px;
        padding-bottom: 30px;
        align-items: center;
        justify-content: center;
    }


    .footer .footer-container .left img:first-of-type {
        margin-top: unset;
    }

    .footer .footer-container .left img {
        margin-left: 0;
        padding-top: 30px;
        width: 40%;
    }



    .footer .copyright {
        margin-left: 0px;
        text-align: center;
        width: 100%;
        font-size: 13px;
    }

    .footer .footer-container .right .collum h1 {
        font-size: 15px;
    }

    .footer .footer-container .right .collum a {
        font-size: 14px;
    }
}
