
.footer{	    
    position: relative;          
}

.footer:before{    
    content: '';    
    height: 0px;    
    position: absolute;
    top: -50px;
    border-bottom: 50px solid var(--brown-color);
    border-left: 100vw solid transparent;
    z-index: 0;
}

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

.footer-menu a{
    color: white;
    font-family: var(--secondary-font);
    font-size: 14px;
    font-weight: bold;
    line-height: 30px;    
}

.footer-menu .current-menu-item a{
    text-decoration: underline;
}

.footer a.social-link{
    text-decoration: none !important;
}

.fz-footer{
    font-size: 15px;
}

.quiz {
    position: fixed;
    bottom: 20px;
    right: 15px;
    z-index: 3;
}

.quiz-content {
    height: auto;
    min-height: 100px;
    background: #ccd0d8 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00082729;
    border-radius: 10px;
    width: 250px;
    padding: 10px;
    display: none;
}

.quiz-content.show {
    display: block;
}

.quiz * {
    color: #303956;
}

.quiz .rating button {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
}

.quiz textarea {
    width: 100%;
    border: 1px solid #303956;
    border-radius: 10px;
    outline: none;
    background: none;
    min-height: 80px;
    font-family: 'Roboto';
    font-size: 14px;
    letter-spacing: 0.3px;
    color: #303956;
    padding: 10px;
    resize: none;
}

.quiz .btn-quiz {
    min-width: 100%;
    margin-top: 10px;
}

.quiz .closeQuiz {
    width: 40px;
    height: 40px;
    background: var(--aqua-color);
    border-radius: 50%;
    color: white;
    float: right;
    margin-top: 20px;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quiz .closeQuiz * {
    color: white;
}

.quiz .btn{
    text-decoration: none;
}

@media all and (max-width: 767px){
    .logo-footer{
        width: 163px;
        height: 50px;
    }

    .fz-footer{
        font-size: 10px;
    }  

    .quiz {        
        right: 0px;
    }

    .quiz .quiz-content.show {
        margin: 0px auto;
    }  

}

@media all and (min-width:  768px){
    .footer:before{
        top: -98px;
        border-bottom: 100px solid var(--brown-color);
    }
    .footer-menu-container{
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        border-bottom: 1px #B8B8B8 solid;
        margin-bottom: 5px;
    }    

    .footer-menu li{
        display: inline-block;
        margin-right: 15px;
        position: relative;
    }

    .footer-menu li:after{
        content:  '|';
        position: absolute;
        right: -14px;
        top: 3px;
        color: white;
        font-weight: bold;

    }

    footer .menu-footer-menu-container{
        margin-left: 15%;
        max-width: 70%;
    }
}