/*-----fotter----*/
.footer {
    background-color: #1B1717;
    color: #fff;
    font-family: Helvetica;
    font-size: 14px;
    padding: 0 32px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1376px;
    padding:20px 0 0;
    margin: auto;
}

.footer-logo {
    width: 152px;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-family: Helvetica;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 8px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin-top: 0;
}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul li a {
    font-family: Helvetica;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    text-decoration: none;
}

.footer-col ul li a img {
    margin-right: 10px;
}

.footer-col ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1376px;
    padding: 15px 0;
    border-top: 1px solid #D9D9D9;
    display: flex;
    justify-content:left;
    flex-wrap: wrap;
    gap:10px;
    font-size: 14px;
    color: #fff;
    margin: 0 auto;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 767px) {
    .footer {
        padding: 0 15px;
    }

    .footer-container {
        gap: 20px;
        padding: 40px 0 20px;
    }

    .footer-bottom {
        justify-content: center;
        gap: 10px;
        padding-bottom: 50px;
    }
}

.footer-col li.social-icon i {
    margin-right: 15px;
}

@media only screen and (min-width: 1024px){    
    #backToTopBtn {
        position: fixed;
        bottom: 60px;
        right: 30px;
        z-index: 999;
        width: 50px;
        height: 50px;
        background-color: #b5b5b5;
        border: none;
        border-radius: 50%;
        box-shadow: 0 0px 10px rgba(0,0,0,0.1);
        display: none;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: transform 0.3s ease;
    }
    
    #backToTopBtn:hover {
        transform: scale(1.1);
    }
    
    html {
        scroll-behavior: smooth;
    }
}

@media only screen and (max-width: 1023px){
    #backToTopBtn{
        display: none !important;
    }
}
