.text-transform-none {
    text-transform: none !important;
}

body footer {
    background-color: #fff;
    padding-top: 60px;
}

footer ul.footer-links {
    list-style: none;
    padding-left: 0;
}

footer ul.footer-links li {
    margin-bottom: 5px;
}

footer ul.footer-links li a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

footer p.footer-menu-title {
    font-size: 24px !important;
    line-height: 29px !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    padding-bottom: 15px !important;
    text-transform: capitalize !important;
    margin-bottom: 0 !important;
}

footer .join-us-btn {
    margin-top: 10px;
}

/* footer .join-us-btn a {
    font-size: 18px;
    font-weight: 400;
    line-height: 41px;
    color: var(--primary-color);
    border-radius: 38px;
    border: 2px solid #b7812f;
    padding: 10px 18px;
    text-decoration: none;
} */
.footer-btn {
    outline: none;
    cursor: pointer;
    border: 3px solid var(--primary-color);
    padding: 6px 18px;
    display: inline-block;
    font-weight: 300;
    font-size: 16px;
    border-radius: 50px;
    overflow: hidden;
    background: var(--primary-color);
    color: var(--primary-color);
    position: relative;
    z-index: 0;
    transition: color 0.3s;
    line-height: 26px;
    text-decoration: none;
}

.footer-btn::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer-btn::after {
    content: "";
    background: #f0f0f0;
    width: 120%;
    left: -10%;
    transition: transform 0.55s cubic-bezier(0.3, 1, 0.8, 1);
}

.footer-btn:hover::after {
    transform: translate3d(100%, 0, 0);
}

.footer-btn.get-in-touch:hover{
    color: #fff;
}
.footer-btn.white::after{
    background: #fff;
}
.footer-btn.get-in-touch{
    border: 2px solid #bc8418;
    background-color: #bc8418;
    color: var(--primary-color);
}
footer .footer-address h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 13px;
    color: var(--primary-color);
    line-height: 33px;
}

footer .footer-address p {
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 30px;
    letter-spacing: normal;
    line-height: 1.5;
}

footer .footer-address a {
    font-size: 16px;
    color: var(--primary-color);
    text-decoration: none;
}

footer .footer-scoial-links {
    margin-top: 30px;
    list-style: none;
    gap: 10px;
    padding-left: 0;
    margin-bottom: 30px;
}

footer .footer-scoial-links li img {
    width: 30px;
    filter: invert(1);
}

footer .footer-scoial-links li a {
    border-radius: 10px;
    background-color: #b7812f;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
}

footer .footer-site-logo {
    margin-top: 0;
    width: 170px;
    cursor: pointer;
}

footer .copyright-text {
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    color: var(--primary-color);
    margin-top: 40px !important;
    letter-spacing: 1px;
    line-height: 1.5;
}

.sponsership-logos img{
    width: 170px;
    margin-top: 20px;
}
.sponsership-logos-mob img{
    display: none;
}

@media only screen and (max-width: 865px) and (min-width: 768px) {
    footer .join-us-btn a {
        padding: 13px 20px;
    }
}

@media (max-width : 767px){
.sponsership-logos img{
    display: none;
}
.sponsership-logos-mob img{
    display: block;
    margin-top: 35px;
}
}