.site-footer {
    background-color: #151E12;
    color: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
     font-family: "Montserrat", sans-serif;
}

.footer-bg-left
 {
    position: absolute;
    width: 236px;
    height: 236px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-bg-right{
    position: absolute;
    width: 236px;
    height: 127px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-bg-left {
    top: 0;
    left: 0;
    background-image: url('../../assets/images/footer-left1.png');
}

.footer-bg-right {
    bottom: 0;
    right: 0;
    background-image: url('../../assets/images/footer-right1.png');
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
}

.footer-left,
.footer-right{
       width: 47%;
}


.footer-bottom-icon {
    flex: 1 1 30%;
}

.footer-left h5,
.footer-right h5 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 25px;
    padding-left: 15px;
}

.footer-left p,
.footer-right p {
    color: #fff;
     font-family: "Montserrat", sans-serif;
}


.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 22px;
     font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

.footer-contact li a{
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.footer-contact li a:hover{
       color: #C6B38F;
}

.footer-contact img {
    width: 42px;
    height: 42px;
    margin-right:25px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social a img {
    width:42px;
    height: 42px;
}

.footer-social a{
    -webkit-transition: all 0.3s ease-in-out;
       transition: all 0.3s ease-in-out;
         -webkit-border-radius: 100%;
    border-radius: 100%;
}

.footer-social a:hover{
        background: #334d26;
        -webkit-border-radius: 100%;
    border-radius: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #fff;
}

.scroll-to-top {
    display: inline-block;
    background-color: #C6B38F;
    background-image: url(../images/top-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    color: #151E12;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    text-align: center;
position: absolute;
-webkit-inset-inline-end: 10%;
inset-inline-end: 10%;
bottom: 45px;
    transition: background 0.3s;
}

.scroll-to-top:hover {
    background-color: #000;
}

.copy_right{
      margin-top: 88px;
}

.copy_right p{
       font-size: 16px;
}