.tanmay-footer{
background: linear-gradient(rgba(0, 40, 38, .85), rgba(0, 40, 38, .85));
    color:#fff;
}

.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:#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: #f6b01a;
}

.tanmay-footer-col p{
    color:#D6E5E3;
    line-height:1.8;
    margin-bottom:25px;
}

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

.tanmay-contact-info li{
    margin-bottom:15px;
    color:#e5e5e5;
    font-size:15px;
}

.tanmay-contact-info i{
    /* color: rgba(0,40,38,.85); */
    color: #f6b01a;
    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;
    color:#fff;
    transition:.3s;
    font-size:15px;
}

.tanmay-footer-links a:hover{
    color: #f6b01a;
    padding-left:5px;
}

.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;
    border-radius: 10px 0px 0px 10px;
}

.tanmay-newsletter-form button{
    border:none;
    background: rgba(0,40,38,.85);
    color:#fff;
    padding:0 10px;
    cursor:pointer;
    font-weight:600;
    width: 75px;
    transition:.3s;
    border-radius: 0px 10px 10px 0px;
}

.tanmay-newsletter-form button:hover{
    opacity:.9;
}

.tanmay-footer-col h4{
    /* color: rgba(0,40,38,.85); */
    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:#f6b01a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
}

.tanmay-social-icons a: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:#ddd;
    max-width:1200px;
    margin:auto;
    font-size:14px;
}

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

/* Tablet */
@media(max-width:991px){

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

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

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

/* Mobile */
@media(max-width:576px){

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

    .tanmay-newsletter-form{
        flex-direction:column;
        gap:10px;
    }

    .tanmay-newsletter-form button{
        height:50px;
    }

    .tanmay-social-icons{
        justify-content:flex-start;
        flex-wrap:wrap;
    }

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