
/* footer and licens */
.footer{
    width:100%;
    height:auto;
    position: relative;
    bottom: 0;
    top:5%;
    background-color:rgb(0, 77, 139,0.8) ;
    color:white;
    display:flex;
    padding:20px 0;
    margin: 5% 0 0 0;
}
.footer-left{
    width:30%;
    padding:0 20px;
}
.footer-mid{
    width:30%;
    padding:0 20px;
}
.footer-right{
    width:22%;
    padding:0 20px;
}
.footer-right2{
    width:18%;
    padding:0 20px;
}
.title{
    width:100%;
    text-align: center;
    padding:10px 0;
    font-weight: 600;
}
.title span{
    font-size:20px;
}
.about{
    width:100%;
    font-size:15px;
    text-align: justify;
    padding:5px 20px;
    line-height: 22px;
}
.about .dept{
    display:flex;
    flex-direction: column;
}
.dept span{
    padding:3px 10px; 
}
.about-contact{
  
    width: 80px;
    display:flex;
    justify-content:space-between;
    padding:10px;
}
.about-contact i{
    font-size:20px;
    color:white;
}
.about-contact i:hover{
    scale:1.2;
}
.about img{
    width:25px;
    height:25px;
}
.about a{
    list-style:none;
    text-decoration: none;
    color:white;
    font-size:13px;
}
.licens{
    width:100%;
    padding:15px;
    position: relative;
    top:14%;
    bottom:0;
    text-align: center;
    background:rgb(95, 183, 255);
    color:rgb(0, 0, 0);
    font-size:15px;
}

/* HD screen */
@media (max-width: 1366px) {
    .footer-left{
        width:30%;
        padding:0 10px;
    }
    .footer-mid{
        width:30%;
        padding:0 10px;
    }
    .footer-right{
        width:20%;
        padding:0 1cqmin;
    }
    .footer-right2{
        width:20%;
        padding:0 10px;
    }
    .title span{
        font-size:18px;
    }
    .about{
        width:100%;
        text-align: justify;
        padding:5px 20px;
        line-height: 22px;
    }
    .about span{
        font-size:13px;
    }
    .about-contact i{
        font-size:18px;
        color:white;
    }
    .licens{
        padding:10px;
        font-size:13px;
    }
}


/* PHone */
@media (max-width: 787px) {
    .footer{
        display:block;
        padding:10px 0;
    }
    .footer-left, .footer-mid, 
    .footer-right, .footer-right2{
        width:100%;
        padding:0 10px;
    }
    .title{
        width:100%;
        text-align: center;
        padding:5px 0;
        font-weight: 600;
    }
    .title span{
        font-size:15px;
    }
    .about{
        width:100%;
        font-size:14px;
        text-align: justify;
        padding:5px 20px;
        line-height: 20px;
    }
    .about-contact{
        display:flex;
        justify-content:space-around;
        padding:0 10px;
    }
    .about .dept{
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 0px;
    }
    

    .licens{
        width:100%;
        padding:10px;
        position: relative;
        top:14%;
        bottom:0;
        text-align: center;
        background:rgb(95, 183, 255);
        color:rgb(0, 0, 0);
        font-size:13px;
    }
    .licens span{
        font-size:12px;
    }
}