/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 2019.12.11., 11:20:18
    Author     : Gábor
*/

.footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #055ca4;
}



.footer-blue {
    color: #FFFFFF;
    background-color: #055ca4;  
    height: 150px;
    width: 100%;
    padding: 1rem;
}


.footer-blue-link {
    padding-left: 20px;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    line-height: 24px;
    text-decoration: none;
    transition: color .3s;
}

.footer-blue-link:hover {
    color:  #FFC300;
    transition: color .2s;
    text-decoration: none;
}

.copyright {
    font-size: smaller;
    line-height: normal;
}

.footer-gray {
    color: #001e69;
    background-color: #eaeffa;  
    min-height: 60px;
    height: auto;
    font-weight: 700;
    font-size: 17px;
    width: 100%;    
    padding-top: 15px;
    padding-bottom: 15px;
}

.footer-gray-link {
    padding-left: 20px;
    color: #001e69;
    font-size: 13px;
    font-weight: 700;
    line-height: 24px;
    text-decoration: none;
    transition: color .3s;
}

.footer-gray-link:hover {
    color:  #FFC300;
    transition: color .2s;
    text-decoration: none;
}

@media (max-width: 768px){
    .footer-gray {
        text-align: center;
    }
    .footer-gray-link {
        padding-left: 0px;
    }
    .footer-gray-main {
        padding-top: 10px;

    }
    
}