footer {

    background: url(../images/Footer_Bg.webp) no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

footer .cnt-footer {
    padding: 40px 0 20px;
}

footer .cnt-footer a {
    text-align: center;
    display: block;
    padding: 20px 10px;
    background-color: #ff4800;
    color: #fff;
    letter-spacing: 1px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.4s;
    border-radius: 20px 2px;
}

footer .cnt-footer a.btn2 {
    background-color: #ffc400;
    color: #000;
}

footer .cnt-footer a:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: #fff;
    color: #000;
}

footer .cnt-footer a svg {
    margin-right: 5px;
    transition: all 0.4s;
}

footer .cnt-footer a:hover svg {
    transform: scale(1.3);
}


footer .main-footer {
    padding: 30px 0 30px;
}

footer .abt-col .logo {
    width: 300px;
    margin-bottom: 20px;
    border-radius: 6px;
}

footer .abt-col p.text {
    color: #cecece;
    letter-spacing: 1px;

}

footer .abt-col a {
    display: inline-block;
    margin-bottom: 16px;
    color: #ffc400;
    text-transform: uppercase;
}

footer .abt-col .img-box img {
    display: inline-block;
    width: 100px;
}

footer .heading h4 {
    color: #000;
    padding: 10px 0;
    font-weight: 700;
    background-color: #ffc400;
    margin-bottom: 20px;
    border-radius: 50px;
}

footer ul li a {
    padding-left: 20px;
    display: block;
    margin-bottom: 10px;
    color: #cecece;
    transition: all 0.4s;

}

footer ul li a svg {
    margin-right: 8px;
    color: #ffc400;
}

footer ul li a:hover {
    color: #fff;
    transform: translateX(10px);
}

footer .disclaimer p {
    margin-top: 20px;
    color: #535353;
    text-align: center;
}

footer .disclaimer p strong {
    color: #cecece;
}

footer .copyright {
    text-align: center;
    background-color: #000;
    color: #fff;
    padding: 15px 0;
}

footer .copyright p {
    margin-bottom: 0;
}

@media (max-width:1200px) {
    footer .cnt-footer a {
        padding: 20px 4px;
        letter-spacing: 0;
        font-size: 16px;
        font-weight: 600;
    }
}

@media (max-width:992px) {
    footer .abt-col {
        margin-bottom: 30px;
    }
        footer .cnt-footer a {
       margin-bottom: 20px;
    }
}

@media (max-width:568px) {
    footer .abt-col .logo {
        width: 260px;
        margin-bottom: 20px;
        border-radius: 6px;
    }

}