/* footer */
.footerContain{
    width: 100%;
    height: 200px;
    background-color: #4e6698;
    }
    
    .footerFlex{
        display: flex;
        align-items: center;
       justify-content: center;
        padding-top: 30px;   
    }
    
    
    .footerImg{
        width: auto;
        position: relative;
    }

    .footerImg img{
        width: 200px;
        transition: transform 0.3s ease;           
    }

    .footerImg img:hover{
        transform: scale(1.1);           
    }
    
    .footerCompany{
        color: #ffffff;
        padding: 0px;
        margin-left: 50px; 
        text-align: center;
        font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;   
    }
    
    .footerCompany a{ 
        color: #FFF;
    }

    .footerCompany h5{
        font-weight: bold;
    }

    .footerCompany p{
        padding: 0px;
        margin: 0px;
        padding-top: 0%;
    }
    
    .footerLine1{
        width: 180px;
        height: 1px;
        background-color: #ffffff;    
        margin-bottom: 15px !important;
        margin: auto;
    }
    
    .footerLine{
        width: 1px;
        height: 150px;
        background-color: #ffffff;
        margin-top: 0px !important;
        margin-left: 50px;     
    }   
    
    .footerLink{
        margin-left: 30px;
    }

    .footerLink img{
        width: 50px;
        margin-left: 10px;
        transition:  transform 0.3s ease;
    }
    
    .footerLink img:hover{
        transform: scale(1.1);
    }
    
    .footerBottom{
        width: 100%;
        color: #777777;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color:#060803 ;
        padding: 5px 0px;
    }
    
    @media(max-width:1140px){
        .footerContain{        
            height: auto;        
            }
        .footerFlex{
            height: auto;
            flex-wrap: wrap;
        }
    }
    
    @media(max-width:870px){
        .footerLine{
            display: none;
        }
        .footerCompany{
            width: 255px;
            margin: 0px;
            padding: 20px;
        }
        .footerLink{
            margin: 0px;
            padding-bottom: 30px;
        }
    }