/**
 * RMPRS Footer CSS
 * Exact styles from React component
 */

 
/* Start footer  */
footer {
    margin-top: 50px;
    background-color: var(--second-color);
    padding: 30px 0;
}
footer a{
    text-decoration: none;
}
footer ul,
footer ol{
    list-style: none;
}
.fo{
    margin-top: 40px;
}
footer .box{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
footer .box .fo-box{
    max-width: 25%;
    padding: 5px 10px;
    min-width: 200px;
}
@media (max-width:768px){
    footer .box .fo-box{
            max-width: none;
    }
}
footer .box .fo-box h1{
    font-size: 18px;
    color: white;
    word-spacing: 3px;
    letter-spacing: .4px;
    line-height: 1.6;
    margin: 0 0 8px;
    opacity: .9;
}
footer .box .fo-box hr{
    border: none;
    height: 2px;
    background-color: white;
    border-radius: 5px;
    opacity: .9;
    margin-bottom: 9px;
}
footer .box .fo-box p,footer .box .fo-box ol li a{
    color: white;
    font-size: 13px;
    line-height: 1.6;
    word-spacing: 2px;
    letter-spacing: 1px;
    font-weight: 100;
}
footer .box .fo-box a{
    border-bottom: 1px solid;
    padding-bottom: 2px;
    line-height: 2 !important;
}
footer .box .fo-box a:hover{
    color: var(--main1-color);
}
footer .box .fo-box ol{
    padding-right: 5px;
}
/* End footer  */
/* Start Designer */
.topfooter{
    background-color:#133b4f ;
}
.topfooter .container{
    display: flex;
    padding: 10px;
    justify-content: space-between;
    
}
.topfooter .container span{
    font-size: 12px;
    color: white;
    letter-spacing: 1.6px;
    word-spacing: 2px;
}
.topfooter .container span:first-child{
    order: 2;
    flex-grow: 1;
    text-align: center;
}
.topfooter .container span:last-child{
    order: 1;
    padding-left: 10px;
}
.topfooter .container span a{
    color:white;
    text-decoration: none;
    font-weight: bold;
    transition: .5s;
}
.topfooter .container span a:hover{
    color: var(--main-color);
}
@media (max-width:768px){
    .topfooter .container{
            flex-direction: column;
            justify-content: center;
            align-items: center;
            line-height: 1.8;
    }
    .topfooter .container span:first-child{
            order: 1;
    }
}
/*End Designer */