.footer-bottom {
    background-color: #000;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 300;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    color: #fff;
}

footer {
    padding: 50px 0;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
}

footer .container {
    position: relative;
}

footer .about-footer {
    margin-bottom: 30px;
}

footer .about-footer img {
    max-width: 280px;

}

footer .text {
    margin: 10px 0 30px 0;
    line-height: 1.6;
}

footer .footer-icons {
    margin-top: 20px;
    margin-bottom: 30px;
}

footer .footer-icons a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    margin-bottom: 10px;
}

footer .footer-icons a:hover {
    color: #FFB700;
}

footer .footer-icons a svg {
    width: 16px;
    height: 16px;
    padding: 10px;
    border-radius: 50%;
    background-color: #FFB700;
    color: #000;
}

footer .footer-col ul {
    padding-left: 0;
    position: relative;
}

footer .footer-col {
    position: relative;
}

footer .footer-col::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #000;
    transition: all 0.3s;
    border-radius: 10px;
}

footer .footer-col:hover::before {
    height: 110%;
}

footer .footer-col ul li a {
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
}

footer .footer-col ul li {
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 300;
    list-style: none;
    margin-top: 7px;
    transition: all 0.5s;
}

footer .footer-col ul li:hover a {
    color: #e40000;
}

footer .footer-col ul li:hover {
    transform: translateX(10px);
}


footer .footer-col ul li .icon {
    margin-right: 10px;
    color: #e40000;
}


.heading3 {
    position: relative;
    margin-bottom: 30px;
}

.heading3 h2 {
    position: relative;
    font-size: 20px;
    color: #fff;
    background-color: #e40000;
    border-radius: 50px;
    text-align: center;
    padding: 6px 0;
    transition: all 0.3s;
}

footer .footer-col:hover h2 {
    background-color: #fff;
    color: #000;
    transform: scale(1.1);
}

footer .footer-col p {
    font-size: large;
    font-weight: 400;
    margin-top: 10px;
    color: #fff;

}

footer .disclaimer {
    margin-top: 20px;
    text-align: center;
}

footer .disclaimer p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

footer .disclaimer p strong {
    color: #ffb70060;
}

footer .about-footer .icon .img-box {
    width: 120px;
    display: inline-block;
}

footer .about-footer .icon img {
    width: 100%;
}

footer .cta-box {
    text-align: center;
}

footer .cta-box p {
    margin-bottom: 0;
    font-size: 38px;
    font-weight: 700;
    color: #FFB700;
    animation: textAnime 1s infinite alternate;
}

@keyframes textAnime {
    0% {
        color: #FFB700;
    }

    50% {
        color: #e40000;
    }

    100% {
        color: #FFB700;
    }
}

@media (min-width:992px) and (max-width:1200px) {
    footer .about-footer .icon .img-box {
        width: 100px;
        display: inline-block;
    }

}

@media (max-width:992px) {
    footer .footer-icons a {
        display: inline-flex;
        margin-left: 20px;
    }

    footer {
        background-position: center;
    }

}

@media only screen and (max-width: 720px) {

    .footer-bottom {
        background-color: #FFB700;
        font-size: larger;
        font-weight: bold;
        text-align: center;
        padding: 10px 5px 3px 5px;
    }


    footer .text {
        margin: 10px 0 30px 0;
        line-height: 1.6;
    }

    footer .footer-icons {
        text-align: center;
    }

    footer .footer-icons .call {
        margin-left: 30%;
    }

    footer .footer-icons .call a {
        color: #fff;
    }

    footer .footer-icons .whatsapp a {
        color: #fff;
    }
}


@media (max-width:768px) {

    .footer-bottom {
        min-height: 140px;
    }
}

@media (max-width:568px) {
   footer .footer-icons a {
        display: flex;
        margin-left: 0;
    }
    footer .cta-box p {
        margin-bottom: 0;
        font-size: 24px;
        font-weight: 700;
        color: #FFB700;
        animation: textAnime 1s infinite alternate;
    }
}