/* ========================================
FOOTER
======================================== */

.main-footer{
background: var(--secondary-color);
color: var(--white);
padding: 60px 0 30px 0;
}

/* Footer Grid Layout */

.footer-grid{
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
}

/* Footer Titles */

.main-footer h3{
margin-bottom: 15px;
font-size: 18px;
}

/* Footer Text */

.main-footer p{
color: #dcdcdc;
font-size: 14px;
}

/* Footer Links */

.footer-links{
list-style: none;
}

.footer-links li{
margin-bottom: 10px;
}

.footer-links a{
color: #dcdcdc;
font-size: 14px;
transition: 0.3s;
}

.footer-links a:hover{
color: var(--primary-color);
}

/* Footer Bottom */

.footer-bottom{
border-top: 1px solid rgba(255,255,255,0.15);
margin-top: 40px;
padding-top: 20px;
text-align: center;
font-size: 14px;
color: #cfcfcf;
}

/* ========================================
SOCIAL LINKS
======================================== */

.social-links{
display: flex;
gap: 15px;
margin-top: 10px;
}

.social-links a{
color: var(--white);
font-size: 18px;
transition: 0.3s;
}

.social-links a:hover{
color: var(--primary-color);
}

/* ========================================
RESPONSIVE
======================================== */

@media (max-width: 768px){

.footer-grid{
grid-template-columns: 1fr;
text-align: center;
}

.social-links{
justify-content: center;
}

}