/*==========================================================
KITTU BITTU FOODS
FOOTER.CSS V2
PART 1
==========================================================*/

/*==========================================================
FOOTER
==========================================================*/

.site-footer{

    position:relative;

    overflow:hidden;

    margin-top:10px;

    background:linear-gradient(
        135deg,
        #23402A,
        #2F5938,
        #3D6B45
    );

    color:#ffffff;

}

/* Decorative Background */

.site-footer::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    top:-240px;

    left:-240px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

}

.site-footer::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    right:-180px;

    bottom:-180px;

    border-radius:50%;

    background:rgba(255,255,255,.03);

}

/*==========================================================
CONTAINER
==========================================================*/

.site-footer .container{

    position:relative;

    z-index:2;

    padding:30px 0 20px;

}

/*==========================================================
GRID
==========================================================*/

.footer-grid{

    display:grid;

    grid-template-columns:

        1.5fr

        1fr

        1fr

        1.2fr;

    gap:55px;

    margin-bottom:30px;

}

/*==========================================================
BRAND
==========================================================*/

.footer-brand{

    max-width:380px;

}

.footer-logo{

    width:120px;

    height:120px;

    object-fit:contain;

    display:block;

    margin-bottom:20px;

    filter:

        drop-shadow(0 12px 30px rgba(0,0,0,.25));

}

.footer-brand h2{

    color:#ffffff;

    margin-bottom:12px;

    font-size:2rem;

}

.footer-brand p{

    color:rgba(255,255,255,.82);

    line-height:1.9;

    margin-bottom:12px;

}

.footer-brand strong{

    color:#FFD56A;

}

/*==========================================================
SOCIAL
==========================================================*/

.footer-social{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    margin-top:25px;

}

.footer-social a{

    width:50px;

    height:50px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.10);

    color:#ffffff;

    font-size:20px;

    transition:.35s;

}

.footer-social a:hover{

    background:var(--secondary);

    color:var(--primary-dark);

    transform:translateY(-5px);

}

/*==========================================================
FOOTER COLUMNS
==========================================================*/

.footer-column h3{

    color:#ffffff;

    font-size:1.35rem;

    margin-bottom:24px;

    position:relative;

    display:inline-block;

}

.footer-column h3::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:55px;

    height:3px;

    border-radius:999px;

    background:linear-gradient(
        90deg,
        var(--secondary),
        #FFD56A
    );

}

.footer-column ul{

    list-style:none;

    margin:0;

    padding:0;

}

.footer-column ul li{

    margin-bottom:14px;

    color:rgba(255,255,255,.82);

    line-height:1.8;

}

.footer-column ul li:last-child{

    margin-bottom:0;

}

.footer-column ul li a{

    color:rgba(255,255,255,.82);

    text-decoration:none;

    transition:.30s ease;

}

.footer-column ul li a:hover{

    color:#FFD56A;

    padding-left:8px;

}

/*==========================================================
CONTACT
==========================================================*/

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:14px;

}

.footer-contact i{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    background:rgba(255,255,255,.10);

    color:#FFD56A;

}

.footer-contact a{

    color:rgba(255,255,255,.86);

    text-decoration:none;

    transition:.30s;

}

.footer-contact a:hover{

    color:#FFD56A;

}

/*==========================================================
FSSAI
==========================================================*/

.footer-license{

    margin-top:28px;

    padding:18px 20px;

    border-radius:18px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

}

.footer-license strong{

    display:block;

    color:#FFD56A;

    margin-bottom:8px;

    font-size:1rem;

}

.footer-license p{

    margin:0;

    color:#ffffff;

    font-weight:600;

    letter-spacing:.5px;

}

/*==========================================================
HOVER EFFECTS
==========================================================*/

.footer-column ul li{

    transition:.30s;

}

.footer-column ul li:hover{

    transform:translateX(5px);

}

.footer-brand,

.footer-column{

    position:relative;

    z-index:2;

}

/*==========================================================
FOOTER BOTTOM
==========================================================*/

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.12);

    padding-top:30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:25px;

}

.footer-bottom p{

    margin:0;

    color:rgba(255,255,255,.78);

    font-size:.95rem;

    line-height:1.7;

}

.footer-bottom-links{

    display:flex;

    align-items:center;

    gap:22px;

    flex-wrap:wrap;

}

.footer-bottom-links a{

    color:rgba(255,255,255,.82);

    text-decoration:none;

    transition:.30s ease;

    font-size:.92rem;

}

.footer-bottom-links a:hover{

    color:#FFD56A;

}

/*==========================================================
TABLET
==========================================================*/

@media(max-width:1200px){

.footer-grid{

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.footer-brand{

    max-width:100%;

}

}

/*==========================================================
MOBILE
==========================================================*/

@media(max-width:992px){

.footer-grid{

    grid-template-columns:1fr;

    text-align:center;

}

.footer-logo{

    margin:0 auto 20px;

}

.footer-social{

    justify-content:center;

}

.footer-column h3::after{

    left:50%;

    transform:translateX(-50%);

}

.footer-contact{

    align-items:center;

}

.footer-contact li{

    justify-content:center;

    text-align:left;

}

.footer-license{

    max-width:340px;

    margin:30px auto 0;

}

.footer-bottom{

    flex-direction:column;

    text-align:center;

}

.footer-bottom-links{

    justify-content:center;

}

}

/*==========================================================
SMALL MOBILE
==========================================================*/

@media(max-width:768px){

.site-footer .container{

    padding:60px 20px 30px;

}

.footer-grid{

    gap:35px;

}

.footer-brand h2{

    font-size:1.7rem;

}

.footer-column h3{

    font-size:1.2rem;

}

.footer-logo{

    width:100px;

    height:100px;

}

.footer-social a{

    width:46px;

    height:46px;

    font-size:18px;

}

.footer-contact i{

    width:38px;

    height:38px;

}

.footer-bottom-links{

    gap:15px;

}

}

/*==========================================================
EXTRA SMALL
==========================================================*/

@media(max-width:480px){

.footer-logo{

    width:85px;

    height:85px;

}

.footer-brand h2{

    font-size:1.5rem;

}

.footer-brand p{

    font-size:.92rem;

}

.footer-column ul li{

    font-size:.92rem;

}

.footer-license{

    padding:16px;

}

.footer-bottom p{

    font-size:.85rem;

}

.footer-bottom-links a{

    font-size:.85rem;

}

}

/*==========================================================
PERFORMANCE
==========================================================*/

.site-footer *{

    box-sizing:border-box;

}

.footer-logo{

    display:block;

    max-width:100%;

}

.footer-social a,

.footer-bottom-links a,

.footer-column ul li a{

    will-change:transform;

}

.footer-social a:hover,

.footer-column ul li a:hover{

    transform:translateY(-3px);

}

.footer-column ul li a{

    display:inline-block;

}

.footer-contact i{

    flex-shrink:0;

}


.back-to-top{

position:fixed;

right:30px;

bottom:30px;

width:52px;

height:52px;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

background:var(--primary);

color:#fff;

box-shadow:0 10px 25px rgba(0,0,0,.18);

z-index:9999;

opacity:0;

visibility:hidden;

transform:translateY(20px);

transition:.35s;

}

.back-to-top.show{

opacity:1;

visibility:visible;

transform:translateY(0);

}
/*==========================================================
END OF FOOTER.CSS
==========================================================*/