.fixed-btn a svg {
    position: fixed;
    bottom: 10px;
    
    width: 30px;
    height: 30px;
    
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 20px;
    z-index: 998;
    color: #fff;
    opacity: 0.6;
    transition: all 0.4s;
}

.fixed-btn a.call svg {
    left: 10px;
    background-color: #0000ff;
}

.fixed-btn a.chat svg {
    right: 10px;
    background-color: #008000;
}

.fixed-btn a:hover svg{
    opacity: 1;
}

footer {
    background-color: #fff2db;
    position: relative;
}

footer .main-footer {
    padding: 80px 0;
    position: relative;
}

footer .main-footer .brand-logo img {
    width: 220px;
    margin-bottom: 20px;
}

footer .main-footer p {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.8);
}

footer .main-footer .social-icon {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

footer .main-footer .social-icon svg {
    width: 18px;
    height: 18px;
    padding: 8px;
    border: 1px solid #8a7959;
    border-radius: 4px;
    color: #8a7959;

}

footer .main-footer .social-icon svg:hover {
    color: #613f00;
    border: 1px solid #613f00;
}

footer .main-footer h6 {
    text-transform: uppercase;
    width: fit-content;
    padding: 10px 20px;
    background-color: #8a7959;
    border-left: 2px solid #613f00;
    border-right: 2px solid #613f00;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

footer .main-footer li a {
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 18px;
    color: #8a7959;
    transition: all 0.4s;
}

footer .main-footer li a svg {
    margin-right: 8px;
}

footer .main-footer li a:hover {
    color: #613f00;
}

footer .main-footer iframe {
    width: 100%;
    height: 350px;
    border-radius: 6px;
}

footer .copyright {
    background-color: #000;
    padding: 15px 0;
}

footer .copyright p {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

footer .copyright p a {
    color: #fff;
    font-weight: 700;
}


@media (max-width:1200px) {
    footer .main-footer iframe {
        width: 100%;
        height: 350px;
        margin-top: 30px;
        border-radius: 6px;
    }

}

@media (max-width:992px) {
    footer .main-footer .about-col {
        margin-bottom: 30px;
    }
}

@media (max-width:768px) {
    footer .copyright p {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        text-align: center;
        gap: 10px;
        color: #fff;
    }
}