#footer_blur, #footer_blur_newsletter{
    display: none;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    background-color: #000B;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@keyframes footer_feedback_appear{
    0%{
        transform: translateY(-80px);
        opacity: 0;
    }100%{
        transform: translateY(0);
        opacity: 1;
    }
}
footer .feedback{
    animation: footer_feedback_appear forwards .25s;
    width: min(100%, 400px);
    background-color: white;
    min-height: 200px;
    height: max-content;
    border-radius: 5px;
    padding: 25px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
footer .feedback p{
    text-align: center;
}
footer .close{
    border: none;
    background-color: transparent;
    cursor: pointer;
    padding: 10px;
    aspect-ratio: 1;
    border-radius: 5px;
    margin-top: 30px;
}
footer .close:hover{
    box-shadow: 2px 2px 6px 2px #0005;
}
footer .middle{
    background-color: #0E0E0E;
    padding-bottom: 5px;
    padding-top: 0;
    width: 100%;
    text-align: center;
}
footer .middle a{
    text-decoration: underline;
    font-size: 14px;
}
footer .feedback p.feedback_error{
    font-weight: 500;
    font-size: 20px;
}
footer ul{
    padding: 0;
    margin: 0;
    list-style-type: none;
}
footer ul li{
    padding: 0;
    margin: 0;
    line-height: 25px;
}
footer p, h3{
    margin: 0;
}
footer a{
    color: #7E7E7E;
    text-decoration: none;
    font-weight: 300;
}
footer .c{
    background-color: #0E0E0E;
    padding-top: 24px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding-bottom: 20px;
    gap: 10px;
    padding-left: 5px;
}
footer .bottom{
    background-color: #277D31;
    color: white;
}
footer .c p{
    margin: 0;
    color: white;

}
footer .c div > h3, footer .c form > label{
    font-style: italic;
    font-weight: 600;
    font-size: min(11vw, 25px);
    color: white;
}
footer .c div.newsletter label{
    font-weight: 400;
    font-size: min(8vw, 20px);
}
footer .bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 10px min(60px, 3vw);
    box-sizing: border-box;
}
footer .bottom img{
    height: 90%;
    
}
footer .bottom p{
    font-size: min(16px, 2.5vw);
    font-weight: 300;
    text-align: right;
}
footer .contact-group{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
    margin: 11px 0;
}
footer .contact-group a {
    color: #8B8B8B;
    font-size: min(6vw, 13px);
}
/* footer .contact-group:nth-child(3) img{
    margin-left: 3px;
} */
footer .newsletter{
    margin-top: auto;
}
footer .c div.newsletter > p{
    font-style: normal;
    font-weight: 200;
    margin-bottom: 10px;
}
footer .right{
    display: grid;
}
footer input{
    border: none;
    background-color: white;
    border-radius: 4px;
    color: black;
    font-size: min(6vw, 13px);
    box-sizing: border-box;
    border: 1px solid transparent;
    height: 26px;
    width: 66%;
    margin: 0;
    padding: 0 5px;
}
footer input:focus{
    outline: none;
    border: 1px solid #277D31;
}
footer .newsletter div{
    display: flex;
    align-items: center;
    justify-content: start;
}
footer button.save{
    flex-grow: 1;
    font-size: min(6vw, 13px);
    padding: 0;
    height: 26px;
    border-radius: 8px;
    margin: 0 5px;
}
footer .biglogo{
    display: none;
}
@media only screen and (min-width: 600px){
    footer .c{
        justify-content: start;
        padding: 20px 20px;
        gap: min(60px, 5vw);
    }
    footer .links li{
        font-size: 20px;
        line-height: 30px;
    }
    footer .c .links > h3, 
    footer .right .contact > h3,
    footer .c .right .newsletter > label
    {
        font-weight: 400;
        font-size: min(10vw, 33px);
    }
    footer .right .contact a{
        font-size: 17px;
    }
    footer .right .contact img{
        width: 30px;
    }
    footer .c .newsletter {
        margin-top: 16px;
    }
    footer .c .right{
        width: max(300px, 20vw);
        max-width: 400px;
    }
    footer .middle{
        text-align: left;
        padding-left: 20px;
        padding-bottom: 20px;
    }
}
@media only screen and (min-width: 900px){
    footer .biglogo{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-grow: 1;
        z-index: 0;
    }
    footer .biglogo img{
        height: 90%;
        max-width: 600px;
        opacity: 0.05;
    }
}


.contact-group img{
    aspect-ratio: 1;
    width: 28px;
}
#cookie{
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: max-content;
    padding: 5px min(3vw, 60px);
    background-color: rgb(255, 255, 255);
    box-shadow: 0 -3px 7px 0px #0007;
}
#cookie > p:first-child{
    font-size: 15px;
    font-weight: 1000;
    margin-bottom: 0;
}
#cookie div{
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}
#cookie button{
    font-size: 12px;
    height: max-content;
    width: max-content;
    padding: 5px 15px;
}

#footer_blur_newsletter > div{
    max-width: calc(100% - 20px);
    background-color: white;
    border-radius: 15px;
    padding: 30px 10px;
    width: min(100%, 380px);
    min-height: 120px;
    display: grid;
}
#footer_blur_newsletter input {
    border: 1px solid black;
    margin: auto;
    margin-bottom: 10px;
}
#footer_blur_newsletter p{
    text-align: center;
    margin-bottom: 30px;
}
#footer_blur_newsletter p span{
    font-size: 24px;
}
#footer_blur_newsletter button{
    padding: 3px 7px;
    font-size: 17px;
    height: max-content;
}
#footer_blur_newsletter .options{
    /* width: 100%;
    display: flex;
    justify-content: center; */
    margin: auto;
}
#footer_blur_newsletter input:focus{
    border: 1px solid #277D31;
}