@charset "utf-8";
/* CSS Document */

.footer {
	height: auto;
	border: 0.5vh solid #DA168B; 
}
.footer-nav {
	margin: 0;
    padding: 0;
    display: flex;
}
.footer-nav li {
	margin: 0 auto;
	padding-top: 2vh;
	text-align: center;
	list-style-type: none;
}
.footer-nav li a {
	transition: all 0.3s ease;
	color: white;
	text-decoration: none;
	font-size: 1.5em;
    font-family: 'Montserrat', sans-serif;
} 
.footer-nav li a:hover {
    color: #DA168B;
    transform: translateY(-3px);
}
.footer-info {
	display: flex;
	justify-content: center;
	gap: 5vw;
	flex-wrap: wrap;
}
.footer-info ul {
	width: auto;
	padding: 0px;
	
}
.footer-info a {
	display: inline-block;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 700;
}
.footer-info a:hover {
	color: #DA168B;
	transform: scale(1.05)
}
.footer-info li {
	font-family: 'Montserrat', sans-serif;
	text-decoration: none;
	list-style: none;
	color: white;
	padding: 1vh
}
.nav-container p {
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	color: white;
}
@media (max-width:768px) {
    .footer-nav {
        display: none;
    }
    .footer-info {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
    
    .footer-info ul {
        width: 80vw;
        padding-left: 0;
        margin: 1vh 0;
    }
}
