
.footer-top{
    background-color: #fff;
    padding: 100px 0px;
}
.footer-inner-wrap{
   width: 100%;
   display: flex;
   gap: 95px;
}

.footer-col{
    display: flex;
    gap: 37px;
    flex-direction: column;
}
.footer-col ul{
    padding: 0px;
    display: flex;
    list-style: none;
}
.footer-social{
    gap: 30px;
}
.contact-touch{
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.contact-touch h6{
    color: var(--text-400);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.32px;
}
.contact-touch a{
    color: var(--primary-color);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.2px;
    text-decoration: none;
}
ul.footer-menu-ul {
    display: grid;
    grid-template-columns: repeat(2, auto);
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 42px 62px;
  }
  
  .footer-menu-ul a {
    color: var(--text-400);    
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.32px;
    text-decoration: none;
  }
  .get-links{
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .get-links a{
    display: inline-flex;
  }

.footer-copyright{
    background-color: #F1F4F1;
    padding: 10px;
    text-align: center;
    color: var(--text-400);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.32px;
}
.back-to-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: var(--primary-color);
    outline: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    min-width: 45px;
    max-width: 45px;
    min-height: 45px;
    max-height: 45px;
    border: 1px solid #fff;
    z-index: 11;
    transition: all 0.1s;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.back-to-top img {
    width: 21px;
    transform: rotate(-90deg);
    position: relative;
    top: 1px;
    transition: all 0.1s;
}  

@media screen and (max-width: 1180px) {
    ul.footer-menu-ul{
        gap: 40px 45px;
    }
    .footer-inner-wrap{
        gap: 80px;
        justify-content: space-between;
    }
}

@media screen and (max-width: 1024px) {
    .footer-inner-wrap{
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .footer-col{
        width: 41%;
    }
}


@media screen and (max-width: 767px) {
    .footer-top{
        padding: 60px 0px;
    }
    .footer-inner-wrap{
        gap: 70px 15%;
        
    }
    .footer-col{
        width: auto;
    }
}


@media screen and (max-width: 560px) {
    .footer-inner-wrap{
        gap: 40px;
        flex-direction: column;
    }
    ul.footer-menu-ul{
        gap: 20px 15px;
    }
    .footer-col{
        gap: 25px;
    }
}


