61 lines
989 B
CSS
61 lines
989 B
CSS
.footer-section {
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
background-size: cover;
|
|
min-height: 300px;
|
|
color: white;
|
|
}
|
|
|
|
.footer-logo img {
|
|
height: 60px;
|
|
background: #fff;
|
|
padding: 8px 12px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.footer-title {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.footer-links {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.footer-links li {
|
|
margin-bottom: 10px;
|
|
color: #cbd5e1;
|
|
}
|
|
|
|
.footer-links a {
|
|
color: #cbd5e1;
|
|
text-decoration: none;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
.footer-links a:hover {
|
|
color: #fff;
|
|
}
|
|
|
|
.footer-bottom {
|
|
border-top: 1px solid rgba(255,255,255,0.2);
|
|
font-size: 14px;
|
|
color: #cbd5e1;
|
|
}
|
|
|
|
.footer-section .container {
|
|
max-width: 1200px;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.footer-section {
|
|
text-align: center;
|
|
}
|
|
|
|
.footer-logo {
|
|
justify-content: center;
|
|
}
|
|
}
|