.footerSec {
    background-color: #141414;
    padding: 120px 30px 0px;
    position: relative;

    * {
        color: #fff;
    }

    &::before {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        background-image: url(../images/common/footer-bg.png);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        width: 700px;
        height: 100%;
        z-index: 1;
    }

    .scrollToTopBtnDiv {
        position: absolute;
        right: 100px;
        top: -30px;
        cursor: pointer;
        z-index: 18;
        animation: jump 1s ease-in-out alternate infinite;

        .scrollToTopBtn {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: #FFB600;
            display: flex;
            justify-content: center;
            align-items: center;

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

    .footerCont {
        position: relative;
        z-index: 2;

        .footerTop {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #fff;
            padding-bottom: 50px;

            .footerTopLeft {
                display: flex;
                align-items: center;
                .footerTopHead {
                    font-size: 75px;
                    line-height: 1.2;
                    font-weight: 800;
                    width: calc(100% - 300px);
                    text-transform: uppercase;
                    color: #fff;
                    .ftTitle {
                        color: #008FFF;
                    }
                }
                img{
                    width: 285px;
                    margin-left: 15px;
                    display: inline-block;
                }
            }

            .footerTopRt {
                .btnWrap {
                    margin-top: 0;
                }
            }
        }

        .footerMid {
            padding: 50px 0px;

            .footLogo {
                width: 100%;
                max-width: 170px;
                height: 75px;
                margin-bottom: 20px;

                a {
                    display: block;
                    width: 100%;
                    height: 100%;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                    }
                }
            }

            .footIconWrap {
                padding-top: 20px;

                ul {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 15px;

                    li {
                        width: 40px;
                        height: 40px;
                        border-radius: 50%;
                        background-color: #fff;
                        transition: all 0.3s;

                        a {
                            display: block;
                            width: 100%;
                            height: 100%;
                            padding: 8px;

                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: contain;
                                transition: all 0.3s;
                            }
                        }

                        &:hover {
                            background-color: #008FFF;

                            a {
                                img {
                                    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(797%) hue-rotate(173deg) brightness(106%) contrast(104%);
                                }
                            }
                        }
                    }
                }
            }

            .footMidHead {
                margin-bottom: 15px;

                p {
                    color: #008FFF;
                    font-size: 22px;
                    font-weight: 600;
                }
            }

            .footerMenu {
                column-count: 2;

                li {
                    margin-bottom: 12px;

                    a {
                        font-size: 18px;
                        transition: all 0.5s;

                        &:hover {
                            color: #008FFF;
                        }
                    }
                }
            }

            .footerAddWrap {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;

                .footerAdd {
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: space-between;

                    .footerAddInn {
                        width: calc(50% - 15px);

                        &:not(:last-child) {
                            margin-bottom: 20px;
                        }

                        .footerAddHead {
                            font-weight: 600;
                        }

                        .footAddTxt {
                            display: flex;
                            gap: 12px;

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

            }
        }
    }

    .footerBtm {
        width: 100%;
        max-width: 85%;
        margin: 0px auto;
        background-color: #FFB600;
        border-radius: 15px 15px 0px 0px;
        padding: 8px 15px;
        position: relative;
        z-index: 2;

        .footerBtmCol {
            .footerBtmInn {
                p {
                    text-align: left;
                    font-size: 14px;
                    color: #000;
                }

                a {
                    font-size: 14px;
                    color: #000;
                }
            }

            &:nth-child(2) {
                .footerBtmInn {
                    p {
                        text-align: center;
                    }
                }
            }

            &:last-child {
                .footerBtmInn {
                    p {
                        text-align: right;
                    }

                    a,
                    b,
                    strong {
                        color: #000;
                    }
                }
            }
        }
    }
}

@keyframes jump {
    0% {
        top: -50px;
    }

    100% {
        top: -35px;
    }
}

/* Responsive */

@media (max-width: 1768px) {
    .footerSec {
        .footerCont {
            .footerTop {
                .footerTopLeft {
                    .footerTopHead {
                        font-size: 65px;
                    }
                }
            }
        }
    }
}

@media (max-width: 1600px) {
    .footerSec {
        .footerCont {
            .footerTop {
                .footerTopLeft {
                    .footerTopHead {
                        width: calc(100% - 275px);
                    }
                    img {
                        width: 260px;
                    }
                }
            }
            .footerMid {
                .footerMenu {
                    li {
                        a {
                            font-size: 16px;
                        }
                    }
                }

                .footerAddWrap {
                    .footerAdd {
                        .footerAddInn {
                            .footAddTxt {
                                font-size: 16px;
                                line-height: 26px;

                                img {
                                    width: 25px;
                                    height: 25px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1440px) {
    .footerSec {
        padding-top: 90px;

        .footerBtm {
            max-width: 90%;
        }
    }
}


@media (max-width: 1366px) {
    .footerSec {
        .footerBtm {
            .footerBtmCol {
                .footerBtmInn {
                    p {
                        font-size: 13px;
                    }
                }
            }
        }
    }
}

@media (max-width: 1360px) {
    .footerSec {
        .footerBtm {
            max-width: 100%;
        }
    }
}

@media (max-width: 1280px) {
    .footerSec {
        .footerCont {
            .footerTop {
                .footerTopLeft {
                    .footerTopHead {
                        font-size: 50px;
                        width: calc(100% - 215px);
                    }
                    img {
                        width: 200px;
                    }
                }
            }
        }
    }
}

@media (max-width: 1240px) {
    .footerSec {
        .footerBtm {
            .footerBtmCol {
                flex: 0 0 auto;
                width: 100%;

                .footerBtmInn {
                    p {
                        text-align: center !important;
                    }
                }
            }
        }
    }
}

@media (max-width: 1199px) {
    .footerSec {
        &::before {
            width: 70%;
        }

        .scrollToTopBtnDiv {
            right: auto;
            left: 50%;
            transform: translateX(-50%);

            .scrollToTopBtn {
                width: 56px;
                height: 56px;
            }
        }

        .footerCont {
            .footerTop {
                .footerTopLeft {
                    .footerTopHead {
                        font-size: 50px;
                    }
                }
            }

            .footerMid {
                .row {
                    row-gap: 30px;
                }
            }
        }
    }
}

@media (max-width: 1024px) {
    .footerSec {
        padding-top: 60px;

        &::before {
            width: 100%;
        }

        .footerCont {
            .footerTop {
                flex-direction: column;
                justify-content: center;
                gap: 20px;
                text-align: center;
            }
        }
    }
}

@media (max-width: 991px) {
    .footerSec {
        .footerCont {
            .footerTop {
                .footerTopLeft {
                    .footerTopHead {
                        font-size: 35px;
                        width: calc(100% - 155px);
                    }
                    img {
                        width: 140px;
                    }
                }
            }
        }
    }
}

@media (max-width: 768px) {
    .footerSec {
        padding: 60px 0px 0px;

        &::before {
            background-size: cover;
            background-position: left top;
        }

        .footerCont {
            /* .footerTop {
                .footerTopLeft {
                    .footerTopHead {
                        font-size: 35px;
                    }
                }
            } */

            .footerMid {
                .footerMenu {
                    li {
                        a {
                            font-size: 15px;
                        }
                    }
                }

                .footerAddWrap {
                    flex-direction: column;
                    row-gap: 20px;

                    .footerAdd {

                        .footerAddInn {
                            width: 100%;

                            .footAddTxt {
                                font-size: 15px;
                                line-height: 25px;
                            }
                        }
                    }
                }
            }
        }

        .footerBtm {
            max-width: calc(100% - 30px);
        }
    }
}


@media(max-width: 575px) {
    .footerSec {
        .footerCont {
            .footerTop {
                .footerTopLeft {
                    text-align: center;
                    align-items: center;
                    flex-direction: column;
                    justify-content: center;
                    .footerTopHead {
                        width: 100%;
                    }
                    img {
                        margin-left: 0;
                    }
                }
            }
        }
        .footerBtm {
            padding: 8px 15px 70px;
        }
    }
}

@media(max-width: 480px) {
    .footerSec {
        & .footerCont {
            & .footerTop {
                & .footerTopLeft {
                    .footerTopHead {
                        font-size: 30px;
                    }
                }
            }
        }
    }
}