footer {
    width: 100%;
    padding: 20px;
    text-align: center;
    color: white;
    background: #111;
    box-shadow: -1px -1px 3px black, 1px 1px 3px black;
}

.footer-link {
    text-decoration: none;
    font-size: 14px;
}

#footer_content {
    background-color: var(--color-neutral-10);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 1rem 0rem;
}

#footer_contacts h1 {
    margin-bottom: 0.75rem;
}

h3 {
  color: #D89634;
  font-size: 15px;
  text-shadow: 2px 2px 5px black;
}

#footer_social_media {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
} 

#footer_social_media .footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    color: var(--color-neutral-40);
    border-radius: 50%;
    transition: all 0.4s;
}

#footer_social_media .footer-link i {
    font-size: 1.25rem;    
}

#footer_social_media .footer-link:hover {
    opacity: 0.8;
}

#instagram {
    background: linear-gradient(#7f37c9, #ff2992, #ff9807);
}
#facebook {
    background-color: #4267b3;
}
#whatsapp {
    background-color: #25d366;
}
#youtube {
    background-color: red;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
}

.footer-list .footer-link {
    color: var(--color-neutral-30);
    transition: all 0.4s;
}

.footer-list .footer-link:hover {
    color: #D89634;
}

#footer_subscribe {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#footer_subscribe p {
    color: var(--color-neutral-30);
}

#input_group {
    display: flex;
    align-items: center;
    background-color: var(--color-neutral-0);
    border-radius: 4px;
}

#input_group input {
    all: unset;
    padding: 0.75rem;
    width: 100%;
}

#input_group button {
    background-color: #7f37c9;
    border: none;
    color: var(--color-neutral-40);
    padding: 0px 1.25rem;
    font-size: 1.125rem;
    height: 100%;
    border-radius: 0px 4px 4px 0px;
    cursor: pointer;
    transition: all 0.4s;
}

#input_group button:hover {
    opacity: 0.8;
}

#footer_copyright {
    display: flex;
    justify-content: center;
    background-color: var(--color-neutral-0);
    font-size: 0.9rem;
    padding: 1.5rem;
    font-weight: 100;
}
@media screen and (max-width: 950px) {
    #footer_content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 426px) {
    #footer_content {
        grid-template-columns: repeat(1, 1fr);
        padding: 1rem 0rem;
        /*ORIGINAL*/
        /* padding: 3rem 2rem;*/
    }
}

.footer_age {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 3px 2px;
    font-size: 30px;
    border-radius: 3px;
    flex-shrink: 0;
    background-color: #8B0000;
    color: white;
    box-sizing: border-box;
    text-shadow: 2px 2px 5px black;
}
.footer_age-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 380px;
    width: 100%;
    height: 59px;
    margin: 0 auto;
    background-color: rgba(0,0,0,.3);
    box-sizing: border-box;
    box-shadow: 0px 2px 5px #000;

}
.footer_age-title {
    font-size: 11px;
    color: white;
}
.footer_age-text {
    flex: 1;
    text-align: center;
    font-size: 10px;
    color: #bbb;
}
.custom_action_button,.custom_btn,.main-gradient {
    background: #8B0000;
    box-shadow: 0px 2px 5px #000;
}
.go_top_button {
    position: relative;
    bottom: 20px;
    left: 0px;
    display: none;
    z-index: 1;
    border: 0;
    width: 48px;
    height: 48px;
    font-size: 20px;
    cursor: pointer;
}

.go_top_button svg {
    display: inline-block;
    width: 12.5px;
    height: 20px;
    margin-top: -4px;
    color: white;
    filter: drop-shadow(1px 1px 3px black);

}

.copyright_text{
    font-size: 10px;
}