.footer {
    padding: 40px 0 20px 0;
    width: 100%;
    margin-top: 70px;
    border-top: 1px solid #c3c3c33c;

    .footer_wrapper {
        .footer_logo {
            img {
                max-height: 120px;
                width: 120px;
                object-fit: contain;
            }

            margin-bottom: 10px;
        }

        .footer_wrap {
            p {
                font-size: 14px;
                font-weight: 400;
                color: #A3ABB6;
                line-height: 20px;
            }

            h4 {
                font-size: 20px;
                font-weight: 600;
                color: #fff;
                padding-bottom: 12px;
            }

            .qr {
                display: flex;
                justify-content: center;

                img {
                    height: 120px;
                    width: 120px;
                    object-fit: contain;
                }
            }

            ul {
                li {
                    padding-bottom: 5px;

                    a {
                        font-size: 14px;
                        font-weight: 400;
                        color: #A3ABB6;

                        &:hover {
                            color: #ffffff;
                        }
                    }
                }
            }
        }

        .footer_icon {
            padding-top: 20px;

            h5 {
                font-size: 18px;
                font-weight: 500;
                color: #fff;
                padding-bottom: 2px;
                text-align: center;
            }

            ul {
                display: flex;
                align-items: center;
                justify-content: center;

                li {
                    a {
                        line-height: 0px;

                        i {
                            height: 35px;
                            width: 35px;
                            background-color: #3b5998;
                            margin: 0 6px;
                            border-radius: 5px;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            font-size: 20px;
                            color: #fff;
                        }

                        .twitter {
                            background-color: #00acee;
                        }

                        .insta {
                            background-color: #d65737;
                        }

                        .linkedin {
                            background-color: #0A66C2;
                        }
                    }
                }
            }
        }
    }
}

.sponsor_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 50px;

    .sponsor_item {
        margin: 0 12px;

        img {
            max-height: 42px;
            width: 120px;
            object-fit: contain;
            filter: grayscale(100%);
            cursor: pointer;

            &:hover {
                filter: grayscale(0%);
            }
        }
    }
}

.footer_bottom {
    padding: 20px 0;
    width: 100%;
    background-color: #202125;

    .footer_bottom_contaner{
        display: flex;
        justify-content: space-between;
        align-items: center;
        ul{
            li{
                display: inline-block;
                padding-right: 20px;
                a{
                    font-size: 13px;
                    font-weight: 300;
                    color: #bfbebe;
                    &:hover{
                        color: $white;
                    }
                    i{
                        font-size: 11px;
                        margin-right: 2px;
                    }
                }
            }
        }
        .copy_text {
            font-size: 14px;
            font-weight: 300;
            color: #cdcbcb;
        }
    }
}