/* Footer */
.footer{
    background: #fafafa;
    color: #2f3542;
    border-radius: 20px 0;
    position: relative;
}

.abaut span{
    color: #2f3542;
}

.slogen{
    font-size: 20px;
    font-style: italic;
    padding-left: 20px;
    color: #c2983a;
    margin-top: 0;
    padding-top: 0;
}

.c_name{
    padding-bottom: 0;
    margin-bottom: 0;
}

.f_hr {
    color: aqua;
    background-color: aqua;
}

.contact span{
    font-size: 20px;
    color: #2f3542;
}

.contact a:hover{
    text-decoration: none;
    color: #c2983a;
    animation: click 1s ease-in-out infinite;
}
    
.socials i{
    font-size: 25px;
}
    
.list_menu{
    font-size: 16px;
    list-style: none;
    color: #2f3542;
}

.list_menu a{
    text-decoration: none;
    font-family: 'Alegreya', serif !important;
    font-style: normal !important;
    color: #2f3542;
}

.list_menu a:hover{
    color: #c2983a;
    animation: click 1s ease-in-out infinite;
}

.copy{
    color: aqua;
}

.send{
    display: flex;
    justify-content: center;
}

.btn_send{
    color: #2f3542 !important;
    border: 1px solid #2f3542;
}

.btn_send:hover{
    color: #c2983a !important;
    border: 1px solid #c2983a;
    animation: click 1s ease-in-out infinite;
}

.link_rs{
    text-decoration: none;
    color: #2f3542;
}

.link_rs:hover{
    text-decoration: none;
    color: #c2983a !important;
    animation: click 1s ease-in-out infinite;
}

.copyright{
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #c2983a;
    color: #2f3542;
    background: #dfe4ea;
    width: 100%;
    height: 50px;
}
/* Footer vége */

@keyframes click {
    0%{
        margin-left: 0;
    }
    50%{
        margin-left: 10px;
    }
    100%{
        margin-left: 0;
    }
}