/*#####  #####    #####  ######## ####### ###### 
##      ##   ##  ##   ##    ##    ##      ##   ##
######  ##   ##  ##   ##    ##    ######  ######
##      ##   ##  ##   ##    ##    ##      ##   ##
##       #####    #####     ##    ####### ##    #*/
:root {
    --footer-text-color: hsl(0, 0%, 85%);
    --footer-text-color-focus: white;
    --footer-text-line-focus: #e95122;
    --subscribe-form-field: #450386;
    --subscribe-form-button: #450386;
}

footer {
    position: relative;
    color: var(--footer-text-color);
}

/* .wrap:before, */
footer:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-image: url("../images/Wave.22351cce3f80.svg");
    background-repeat: no-repeat;
    background-position: 1%;
    background-size: cover;
}

.themes {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 2cm;
    margin-left: auto;
    margin-right: auto;
}

.themes .fa:hover {
    font-size: larger;
    font-weight: bold;
    cursor: pointer;
}

.footer_container {
    position: relative;
    padding: 5% 2% 2% 2%;
    display: flex;
    justify-content: space-between;
}

.brand_links,
.brand_connect {
    display: flex;
    width: 50%;
}

.table,
.form,
.icons,
.links {
    width: 50%;
}

.links ul {
    list-style: none;
}

.foot_links {
    color: var(--footer-text-color);
    text-decoration: none;
}

.foot_links:is(:focus, :hover) {
    color: var(--footer-text-color-focus);
    text-decoration: underline var(--footer-text-line-focus) 3px;
}

.social_icons {
    padding-left: 8%;
}

.brand_connect .fa {
    color: #450386;
}

.brand_connect .fa-envelope-o {
    font-size: 21px;
}

.brand_connect .fa-whatsapp,
.brand_connect .fa-map-marker {
    font-size: 24px;
}

.social_icons .fa {
    color: #450386;
    font-size: 24px;
}

.social_icons :nth-child(2) :nth-child(1),
.social_icons :nth-child(3) :nth-child(1) {
    font-size: 22px;
    margin-right: 3px;
}

.social_icons .fa:hover,
.brand_connect tr:hover td .fa {
    color: #e95122;
}

.brand_connect .map_pin {
    text-align: center;
}

/* .social_icons img {
    width: 15%;
} */

/* tr:hover td img, */
/* .social_icons table .fa:is(:focus, :hover) {
    color: #e95122;

    filter: sepia(1) saturate(20) brightness(2);
} */

/* td img {
    width: 70%;
    height: auto;
    margin-bottom: -4px;
} */

td .foot_links {
    padding-left: 5%;
}

.full_logo {
    width: 70%;
}

/* this form class covers merch, careers  & contact.*/
.form form {
    padding: 0 5px;
    width: max-content;
    /* width: min-content; */
    border: 1px solid var(--subscribe-form-button);
    border-radius: 4px;
}

#sub_field {
    border: none;
    padding: 7px 7px;
    background-color: transparent;
    color: var(--footer-text-color-focus);
}

#sub_field:focus {
    outline: none;
}

.form :placeholder {
    outline: 2px solid red;
    color: silver;
    opacity: 0.6;
}

.sub_btn {
    margin: 5px 0;
    border: 1px solid transparent;
    background-color: var(--footer-text-line-focus);
    border-radius: 4px;
    padding: 5px;
    color: var(--footer-text-color);
}

.sub_btn:is(:focus, :hover) {
    background-color: var(--subscribe-form-button);
    /* border: 1px solid var(--footer-text-line-focus); */
    cursor: pointer;
}

@media screen and (max-width: 1024px) {
    .form form {
        border: 1px solid var(--navbar-text-scrolled);

    }

    .footer_container {
        flex-direction: column;
    }

    .brand_links,
    .brand_connect {
        width: 100%;
        flex-direction: row;
    }

    .table,
    .form,
    .icons,
    .links {
        margin: 1%;
        width: 100%;
    }

    .full_logo {
        width: 40%;
    }

    .social_icons {
        padding-left: 0%;
    }

    .brand_connect .fa-map-marker {
        color: var(--navbar-text-scrolled);
    }
}

@media screen and (max-width: 500px) {

    .brand_links,
    .brand_connect {
        flex-direction: column;
    }

    .full_logo {
        width: 30%;
    }

    footer {
        padding-bottom: 5%;
        z-index: -1;
    }
}