footer{
    width: 100%;
    padding: 0 10%;
    background: #f3f6fa;
}

footer .footer{
    display: flex;
    justify-content: space-between;
    padding: 4% 0;
    border-bottom: var(--border);
}

footer .footer .footer-in .foot-head{
    font-family: 'Sunflower', sans-serif;
    font-weight: 900;
    font-size: 1rem;
}

footer .footer .footer-in p{
    margin: 12px 0;
}

footer .footer .flex{
    display: flex;
    justify-content: space-between;
    width: 55%;
}

footer .footer .flex .footer-in-2{
    width: 40%;
}

footer .footer .flex .footer-in-2 div{
    display: flex;
    width: 100%;
    justify-content: space-between;
}

footer .footer .flex .footer-in-2 div ul li{
    margin: 12px 0;
    font-size: 0.9rem;
}

footer .footer .no-flex{
    width: 35%;
}

footer .footer .no-flex p{
    font-size: 0.9rem;
}

footer .footer .no-flex .mail-sub{
    width: 100%;
    height: 45px;
    border: var(--border);
    background: #fff;
    display: flex;
    justify-content: space-between;
    margin: 8% 0;
}

footer .footer .no-flex .mail-sub input{
    width: 70%;
    background: none;
    border: none;
    outline-style: none;
    font-size: 0.95rem;
    padding: 10px;
}

footer .footer .no-flex .mail-sub button{
    background: var(--main-color);
    font-size: 0.95rem;
    border: none;
    height: 45px;
    width: 30%;
    padding: 10px 20px;
    color: #fff;
    font-family: 'Sunflower', sans-serif;
    font-weight: bold;
    cursor: pointer;
}

footer .footer .no-flex .socialBtns{
    display: flex;
}

footer .footer .no-flex .socialBtns a i{
	border: var(--border);
	font-size: 1rem;
	margin-right:1.7rem;
	border-radius: 50px;
	height: 45px;
	width: 45px;
	background: #fff;
	color:  #000000;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

footer .footer .no-flex .socialBtns a i:hover{
    background: var(--main-color);
    color: #fff;
}

footer .copyright{
    display: flex;
    justify-content: space-between;
    padding: 1% 0 2% 0;
}

footer .copyright p{
    color: var(--text-color);
    font-size: 0.9rem;
}

footer .copyright p a{
    color: rgb(44, 44, 136);
}

@media only screen and (max-width:991px) {
    footer{
        padding: 0 6%;
    }
    
    footer .footer{
        display: block;
        padding: 10% 0;
    }
    
    footer .footer .flex{
        width: 100%;
    }
    
    footer .footer .no-flex{
        width: 100%;
    }
    
    footer .footer .no-flex .mail-sub{
        margin: 4% 0;
    }
    
    footer .footer .no-flex .mail-sub input{
        width: 80%;
    }
    
    footer .footer .no-flex .mail-sub button{
        width: 20%;
        padding: 15px 20px;
    }
    
    footer .copyright{
        display: block;
        text-align: center;
        padding: 2% 0 2% 0;
    }
    
    footer .copyright p{
        margin: 0 0 2% 0;
    }
}

@media only screen and (max-width:420px) {
    footer{
        padding: 0 2.5%;
    }
    
    footer .footer{
        display: block;
        padding: 13% 0;
    }
    
    footer .footer .flex{
        width: 100%;
        display: block;
    }

    footer .footer .flex .footer-in-2{
        width: 100%;
        margin: 10% 0;
    }

    footer .footer .flex .footer-in-2 div{
        justify-content: start;
        gap: 0 50px;
    }
    
    footer .footer .no-flex .mail-sub{
        margin: 4% 0;
    }
    
    footer .footer .no-flex .mail-sub input{
        width: 75%;
    }
    
    footer .footer .no-flex .mail-sub button{
        width: 25%;
        padding: 15px;
        font-size: 0.85rem;
    }

    footer .footer .no-flex .socialBtns a i{
        border: var(--border);
        font-size: 0.85rem;
    }
    
    footer .copyright p{
        margin: 0 0 5% 0;
    }
}