


#footer {
    background: var(--theme-footer-background);
    padding: 100px 30px 150px 30px;
    color: var(--theme-white);
    font-size: 14px;
    position: relative;
    border-radius: 40px 40px 0 0;
}

#footer .footer-top {
    padding-bottom: 30px;
}


#footer .footer-logo .logo-text-prefix {
    font-size: 2rem;
    font-family: var(--font-logo);
    line-height: 16px;
    text-align: center;
}
#footer .footer-logo  .logo-img {
    width: auto;
    height: inherit;
    /* border-radius: 50%; */
    object-fit: cover;
    /* border: 4px solid #ffdc00; */
    /* box-shadow: 0 0px 15px rgba(0, 0, 0, 1); */
    color: #ffdc00;
    font-size: 3.2rem;
    line-height: 60px;
    font-family: var(--font-logo);
    /* margin-top: 5px; */
    text-shadow: 0 2px 1px rgba(0, 0, 0, 0.7);
    padding: 0 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    /* background: rgba(0, 0, 0, 0.85); */
    position: relative;
}










#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: var(--theme-white);
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: var(--theme-social-links);
    color: var(--theme-white);
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: var(--theme-links-over);
    color: var(--theme-white);
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-white);
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: var(--theme-links-over);
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: var(--theme-white);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: var(--theme-links-over);
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: var(--theme-white);
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
}


#footer .footer-top .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: var(--theme-button);
    color: var(--theme-white);
    transition: 0.3s;
    border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
    background: var(--theme-button-over);
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .copyright a {
    color: var(--theme-links-light);
}
#footer .copyright a:hover {
    color: var(--theme-links-over);
}
