.solid-1 {
    width: 100px;
}

.solid-2 {
    width: 90px;
}

.footer {
    background: rgb(33, 33, 33);
    padding: 20px 10vw 20px 10vw;
}

.footer * {
    color: white;
    font-family: "Outfit";
}

.inner-footer{
    display: flex;
    margin: 50px 0 100px 0;
    max-height: 240px;
    color: white;
    justify-content: space-between;
    align-items: center;
}

.footer-end {
    border-top: 1px solid #444;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.inner-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer .inner-footer p {
    all: unset;
    font-size: 17px;
    font-weight: 150;
}

.footer .footer-end p {
    all: unset;
    font-size: 15px;
    font-weight: 150;
}

.footer-end .socials {
    display: flex;
    gap: 10px;
}

hr {
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-left: 0;
}

.footer-contact-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.footer-contact-list a:not(:last-child) {
    margin-bottom: 1em;
}
.footer-contact-list a {
    display: flex;
    align-items: center;
}
.child svg {
    margin-right: 8px;
}
.footer-contact-list a:hover {
    cursor: pointer;
}

.useful-links {
    position: relative;
    text-align: left;
    margin-right: 2em;
}
.useful-links-list {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.useful-links-list a {
    all: unset;
    font-size: 20px;
    font-weight: 150;
    padding: 3px 0;
}
.useful-links-list a:hover {
    color: #f5a111;
    cursor: pointer;
}

svg {
    fill: white;
    width: 22px;
    height: 25px;
}

.FooterLogo img{
    padding-right: 2em;
    height: 75px;
}
.FooterLogo {
    display: flex;
    flex-direction: column;
}
.FooterLogo div {
    display: flex;
    flex-direction: column;
}
.FooterLogo div p {
    all: unset;
    font-size: 13px;
    font-weight: 150;
}

.right{
    display: flex;
}

.fb-icon{
    width: 22px;
    height: 25px;
    display: flex;
    justify-content: center;
}

.fb {
    display: inline-flex;
}

.footer-contact-list .child:hover, .child:hover *{
    color: #f5a111;
    fill: #f5a111;
}

@media (max-width: 720px) {

    .FooterLogo{
        display: flex;
        justify-content: start;
    }

    .FooterLogo img{
        padding: 0;
    }

    .inner-footer{
        max-height: unset;
        margin: 75px 0;
        flex-direction: column;
        gap: 50px;
    }

    .contact-info {
        justify-content: center;
        text-align: center;
    }

    .right {
        width: 100%;
        height: 100%;
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .useful-links {
        margin: 0;
    }
    
    .useful-links-list {
        flex-direction: row;
        gap: 20px;
    }

    hr {
        margin: 8px auto 8px auto;
        width: 50%;
    }
}