:root
{
  --light-white: #DADDF0;
  --Spacial: #035D51;
  --light-blue: #009798;
  --dark: #00212B;
  --special-dark: #002B36;
  --text: #bbbbbb;
  --headingColor: #ee0758;  
}
body{
	width: 100vw;
	overflow-x: hidden;
	padding: 0;
	margin: 0;
}
h5{
	font-family: "sanserif";
	color: var(--light-white);
}
*{
    font-family: 'Poppins';
}
.foot-container{
	width: 100vw;
    overflow-x: hidden;
	margin:auto;
    text-align: center;
    justify-content: space-around;
}
.row{
	display: flex;
	flex-wrap: wrap;
    text-align: center;
}
ul{
	list-style: none;
    text-align: left;
}
a{
    padding-left: 20%;
}
.footer{
	background-color: #24262b;
    padding: 70px 0;
}
.footer-col{
   width: 30%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
    text-align: center;
}
.footer-col h4::before{
	content: '';
	position: absolute;
    right: 40%;
	bottom: -10px;
	background-color: #e91e63;
	height: 2px;
	box-sizing: border-box;
	width: 100px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	/* text-transform: capitalize; */
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: var(--text);
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 21.5%;
}

.credit{
    text-align: center;
    color: white;
    margin-top: 40px;
}
.credit i{
    color: #E73B78;
}
.credit .script{
    color: white;
}

@media (max-width:900px){
    .footer-col{
        width: 50%;
        margin-bottom: 30px;
    }

}

@media (max-width:640px){

    .footer-col{
        width: 100%;
    }
}