
.search-cancel{
    position: absolute;
    top: 13px;
    z-index: 8882;
    right: 30px;
    color: #205AAC;
    cursor: pointer;
    transform: scale(1, 0);
}

.search-btn{
    cursor: pointer;
    color: white;
}

.search-form{
    display: block;
    width: 100%;
    position: absolute;
    top: 0px;
    z-index: 8880;
    transform: scale(1, 0);
    transform-origin: top;
    background-color: white;
}

.show-search{
    transform: scale(1, 1);
}

.search-form input{
    display: block;
    padding: 15px;
    border: 0px ;
    color: #205AAC;
    background-color: white;
}

.search-form input:focus{
    outline: none;
}


footer .top{
    position: relative;
}


footer{
    background: #041f46;
    min-height: 400px;
    padding: 20px 80px;
}

footer .top{
    display: flex;
    padding: 20px 0px;
    border-bottom: 1px solid #205AAC;
}

footer .top img{
    width: 60px;
    display: inline;
    max-height: 60px;
}

footer .middle{
    padding: 30px 0px;
}

footer .middle .wrapper{
    display: flex;
}

footer .middle .wrapper .box{
    flex: 1;
    margin: 20px 10px;
}

footer .middle .wrapper .box h3{
    color: white;
    font-size: .9em;
}

footer .middle .wrapper .box ul{
    list-style: none;
}

footer .middle .wrapper .box ul li a{
    color: rgb(250,250, 250, 0.7);
    line-height: 2;
    font-size: .9em;
}

footer .bottom .wrapper{
    border-top: 1px solid #205AAC;
    padding: 40px 0px 20px 0px;
}

footer .bottom .wrapper p{
    font-size: .6em;
    color: rgb(250,250, 250, 0.7);
}


@media only screen and (max-width: 700px){
    footer .middle .wrapper {
        flex-direction: column;
    }
}


@media only screen and (max-width: 450px){
    footer{
        padding: 20px;
    }
    
    footer .top img{
        width: 60px;
    }
    
    footer .bottom .wrapper{
        padding: 20px 0px 0px 0px;
    }
}