.tanmay-footer{
    background: var(--footer-background);
   /* background-color: #063D34; */
    color: var(--heading-color);
}
.tanmay-footer-container{
    max-width:1300px;
    margin:auto;
    padding:70px 20px 50px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:50px;

}

.tanmay-footer-col h3{
     color:var(--accent-color);
    /* color:#f6b01a; */
    font-size:22px;
    margin-bottom:25px;
    font-weight:700;
    text-transform:uppercase;
    position:relative;
}

.tanmay-footer-col h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:80px;
    height:3px;
    background:var(--accent-color);

}

.tanmay-footer-col p{
    /* color:#D6E5E3; */
      color:var(--paragraph-color);
    line-height:1.8;
    margin-bottom:25px;
}

.tanmay-contact-info{
    list-style:none;
}

.tanmay-contact-info li{
    margin-bottom:15px;
     color:var(--paragraph-color);
    font-size:15px;
    /* color:#e5e5e5; */
}

.tanmay-contact-info i{
    /* color: #f6b01a; */
     color:var(--accent-color);
    margin-right:12px;
    width:20px;
}

.tanmay-footer-links{
    list-style:none;
}

.tanmay-footer-links li{
    margin-bottom:14px;
}

.tanmay-footer-links a{
    text-decoration:none;
    font-size:15px;
     color:var(--heading-color);
    transition:var(--transition);
}

.tanmay-footer-links a:hover{
    /* color: #f6b01a; */
    padding-left:5px;
     color:var(--accent-color);
}

.tanmay-footer-links i{
    margin-right:8px;
    font-size:12px;
}

.tanmay-newsletter-form{
    display:flex;
    margin-bottom:25px;
}

.tanmay-newsletter-form input{

     flex:1;
    height:50px;
    border:none;
    outline:none;
    padding:0 15px;
    font-size:15px;
    color:var(--text-color);
    background:var(--white);
    border-radius:var(--radius-sm) 0 0 var(--radius-sm);
}

.tanmay-newsletter-form button{
 
      border:none;
    background:var(--btn-bg);
    color:var(--white);
    width:90px;
    cursor:pointer;
    font-weight:600;
    transition:var(--transition);
    border-radius:0 var(--radius-sm) var(--radius-sm) 0;
}

.tanmay-newsletter-form button:hover{
    opacity:.9;
    background:var(--btn-hover);
}

.tanmay-footer-col h4{
    /* color: rgba(0,40,38,.85); */
      color:var(--heading-color);
    margin-bottom:15px;
    font-size:16px;
}

.tanmay-social-icons{
    display:flex;
    gap:12px;
}

.tanmay-social-icons a{
      width:42px;
    height:42px;
    border-radius:50%;
    background:var(--btn-bg);
    color:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:var(--transition);
    font-size:16px;
}

.tanmay-social-icons a:hover{
   /* background:var(--btn-hover); */
    transform:translateY(-4px);
}

.tanmay-footer-bottom{
    border-top:1px solid rgba(255,255,255,.15);
    padding:22px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
      color:var(--paragraph-color);
    max-width:1200px;
    margin:auto;
    font-size:14px;
}

.tanmay-designer{
    text-align:right;
}
/*=================================
        RESPONSIVE
==================================*/

/* Large Laptop */

@media (max-width:1200px){

    .tanmay-footer-container{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }

}

/* Tablet */

@media (max-width:768px){

    .tanmay-footer-container{
        grid-template-columns:1fr;
        gap:35px;
        padding:60px 20px 40px;
    }

    .tanmay-footer-col{
        text-align:center;
    }

    .tanmay-footer-col h3::after{
        left:50%;
        transform:translateX(-50%);
    }

    .tanmay-contact-info li{
        justify-content:center;
    }

    .tanmay-social-icons{
        justify-content:center;
    }

    .tanmay-newsletter-form{
        max-width:450px;
        margin:0 auto 25px;
    }

    .tanmay-footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .tanmay-designer{
        text-align:center;
    }

}

/* Mobile */

@media (max-width:576px){

    .tanmay-footer-container{
        padding:50px 15px 35px;
    }

    .tanmay-footer-col h3{
        font-size:20px;
    }

    .tanmay-footer-col p,
    .tanmay-contact-info li,
    .tanmay-footer-links a{
        font-size:14px;
    }

    .tanmay-newsletter-form{
        /* flex-direction:column; */
        /* gap:12px; */
    }

    .tanmay-newsletter-form input{
        /* border-radius:var(--radius-sm); */
        height:48px;
    }

    .tanmay-newsletter-form button{
        /* width:100%; */
        height:48px;
        /* border-radius:var(--radius-sm); */
    }

    .tanmay-social-icons a{
        width:40px;
        height:40px;
    }

    .tanmay-footer-bottom{
        font-size:13px;
        padding:18px 15px;
    }

}

/* Small Mobile */

@media (max-width:360px){

    .tanmay-newsletter-form{
        flex-direction:column;
        gap:12px;
        height:108px;
    }

    .tanmay-newsletter-form input{
        border-radius:var(--radius-sm);
        height:48px;
    }

    .tanmay-newsletter-form button{
        width:100%;
        height:48px;
        border-radius:var(--radius-sm);
    }

    .tanmay-footer-col h3{
        font-size:18px;
    }

    .tanmay-social-icons{
        gap:10px;
    }

    .tanmay-social-icons a{
        width:38px;
        height:38px;
        font-size:14px;
    }

}