#custom-footer .footer-widgets {
    display: flex;
    /*flex-wrap: wrap;*/
    gap: 20px;
    /* Remove the weird border on footer widgets */
    border: none;
    padding-top: 45px;
}

#custom-footer .footer-widget-1,
#custom-footer .footer-widget-2,
#custom-footer .footer-widget-3,
#custom-footer .footer-widget-4 {
    flex: 1 1 calc(25% - 20px);
    min-width: 160px;
}

#custom-footer .widget-title {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: bold;
}

#custom-footer .widget-title i {
    margin-right: 10px;
    font-size: 14px;
}

#custom-footer .menu {
    list-style: none;
    padding: 0;
}

#custom-footer .menu li {
    margin-bottom: 8px;
    font-size: 14px;
}

#custom-footer span,
#custom-footer i,
#custom-footer li {
    color: #343131;
}

#custom-footer .email-signup-form i{
    color: white;
}

/* #custom-footer i{
    color: orange;
} */

#custom-footer .menu li a {
    text-decoration: none;
    color: #343131;
    transition: color 0.3s ease;
    font-size: 12px;
}

#custom-footer .menu li a:hover {
    color: #0073aa; /* Adjust to match your theme's primary color */
}

#custom-footer .widget_nav_menu ul li::before{
    display: none;
}

#custom-footer i{
    font-size: 14px;
}

.site-info{
    font-size: 14px;
    text-align: center;
}

footer.site-footer{
    background-color: black;
}

#custom-footer{
    padding-top: 3.5em;
    padding-bottom: 1.618em;
    color: white;
    border-top: 1px solid rgb(189 189 189 / 20%);
    background: white;
}

.signup-email:focus{
    outline-color: black;
}

@media (max-width: 768px) {
    #custom-footer .footer-widgets {
        flex-direction: column;
        align-items: center;
    }

    #custom-footer .footer-widget-1,
    #custom-footer .footer-widget-2,
    #custom-footer .footer-widget-3,
    #custom-footer .footer-widget-4 {
        flex: 1 1 100%;
        max-width: 70vw;
        min-width: 170px;
    }

    #custom-footer{
        padding-bottom: 20px;
        padding-top: 70px;
    }

    /* Migrate the signup widget to the middle of the screen on mobiles */
    .signup-widget{
        margin: auto;
    }
}

.signup-widget{
    max-width: 400px;
}

/* Email signup styling */
input[type=email].signup-email{
    width: 100%;
    font-size: 14px;
    height: 47px;
    background-color: rgba(0, 0, 0, 0.03);
    border-color: transparent;
    border-radius: 50px;
    padding-left: 55px;
}

.email-signup-submit{
    border-radius: 100px;
    background-color: orange;
    color: white;
    position: absolute;
    left: 5px;
    padding: 12px 15px;
    font-size: 12px;
    top: 2px;
    height: 34px;
    width: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    margin-left: 2px;
}

.email-signup-submit:hover{
    background-color: black;
}

.email-signup-form{
    max-width: 400px;
}

.email-signup-desc{
    color: #636060;
    font-size: 13px;
}