@charset "utf-8";
/* CSS Document */

*{
    margin: 0;
    padding: 0;
    
    box-sizing: border-box
}

body{
    background: white;
    color: black;
}

/* NAVBAR_NEW ====================================================== */

nav{
    /*border: 1px solid blue;*/
}

.nav-link{
  font-family: "Pragati Narrow", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  color: black;
}

.nav-link:hover{
    color: red;
}

nav ul li{
    padding-top: 10px;
    font-weight: 400;
	display: inline-block; /* crete row */
	list-style: none;
	margin: 3px 3px;
    /*border: 1px solid red;*/
}

nav ul li a{
	text-decoration: none;
	position: relative;
    
}

nav ul li a::after{
	content: '';
	width: 0%;
	height: 2px;
	background: #ff004f;
	position: absolute;
	left: 0;
	bottom: -4px;
	transition: 0.5s;
}

nav ul li a:hover::after{
	width: 100%;
}

/*  ============================================================================= */
/*  ============================================================================= */

/* Large devices (desktops, 992px) */
@media only screen and (max-width: 1200px) {

   
    
} /* end of MEDIA - LG */

/*  ============================================================================= */
/*  ============================================================================= */

/* Large devices (desktops, 992px) */
@media only screen and (max-width: 992px) {

    
    
} /* end of MEDIA - LG */


/*  ============================================================================= */
/*  ============================================================================= */

/*Medium devices MD (tablets, 768px)*/ 
@media only screen and (max-width: 768px){
    
    

}/* end of MEDIA - MD */


/*  ============================================================================= */
/*  ============================================================================= */

/*Small devices SM (landscape phones, 576px)*/
@media only screen and (max-width: 576px){

    

} /* end of MEDIA - SM */





