/* Footer Styles */
footer {
    margin: 0px;
    text-align: left;
    font-family: Nexa, sans-serif;
    font-weight: light;
    color: #ffffff;
    background-color: black;
    padding: 0vw 15vw;
    width: 100%;
}
footer p{
    text-align: center;
}
  
.footer-logo{
    align-items: start;
    display: flex;
}

.footer-logo-image{
    height: 40px;
    padding: 10px 0px 0px;
    margin: 10px 0px;
}

.content-footer{
    display: flex;
    flex-direction: row;
    gap: 5vw;
}

.site-map{
    display: flex;
    gap: 5vw;
}

.footer-tree {
    background-color: #000000;
    padding: 20px 0;
    color: #ffffff;
}
  
.tree-header {
    font-weight: bold;
    font-size: larger;
    text-transform: capitalize;
    margin-bottom: 10px;
    padding-left: 0px;
    position: relative;
}
  
.tree {
    list-style: none;
    margin: 0;
    padding-left: 0px;
    position: relative;
}

.tree li {
    position: relative;
    padding-left: 20px;
    margin: 0;
}

.tree li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    border-left: 1px solid rgb(255, 255, 255);
}

.tree li::after {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 10px;
    height: 1px;
    background-color: rgb(255, 255, 255);
}

.tree li:last-child::before {
    height: 12px;
}

.tree a {
    text-decoration: none;
    color: #ffffff;
}
  
.tree a:hover {
    text-decoration: underline;
}

.content-footer-right{
    flex: 1;
    padding: 10px;
}

.devnote {
    padding: 10px;
}

/* Responsive styles for footer */
@media (max-width: 900px) {
    footer{
        padding: 0 5vw ;
    }
}
