*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.footer {
    display: flex;
    flex-direction: column;
    align-items: top;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(29, 5, 51);
    color: white;
    height: 300px;
}
@media  (max-width: 800px) {
    .footer-top {
        flex-direction: column;
        align-items: start;
        padding-left: 30px;
        
    }
    .footer-bottom {
        flex-direction: column;
    }
}
.footer-bottom {
    background-color: rgb(29, 5, 51);
}
.footer-top {
    display: flex;
    align-items: top;
    justify-content: space-between;
    background-color: rgb(29, 5, 51);
}
.left {
    display: flex;
    flex-direction: column;
    margin-left: 30px;
}
.top-left {
    display: flex;
    gap: 10px;
    margin-bottom: 13px;
    margin-top: 40px;
}
.logo {
    margin-top: -5px;
}
.company-name{
    font-size: 24px;
    margin-bottom: 20px;
}
.company-motto {
    font-size: 18px;
}
.image-logo {
    height: 100px;
    width: 150px;
    object-fit: cover;
    object-position: center;
}

.footer-divider {
    border-bottom: 0.5px solid grey;
    border-bottom-width: 100%;

}
.footer-bottom-divider {
    border-bottom: 0.5px solid grey;
    border-bottom-width: 100%;
    margin: 10px 0;
    align-self: center;
}

.middle {
    margin-top: 20px;
}
.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.right {
    margin-top: 20px;
    margin-right: 30px;
}
.location {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.footer-bottom-sections {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 30px 20px;
}

.footer-Linkedin-link {
    height: 20px;
    padding: 0;
    border: none;
    margin-right: 10px;
    cursor: pointer;

}
.footer-Facebook-link {
    height: 20px;
    padding: 0;
    border: none;
    margin-right: 10px;
    cursor: pointer;
}
.footer-X-link {
    height: 20px;
    padding: 0;
    border: none;
    margin-right: 10px;
    cursor: pointer;
}
.footer-Instagram-link {
    height: 20px;
    padding: 0;
    border: none;
    cursor: pointer;
}
.top-right, .top-middle {
    margin-bottom: 10px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 18px;
}
.footer-bottom-right {
    margin-right: 100px;
}
.footer-bottom-left {
    margin-left: 10px;
}