*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Inconsolata', monospace;
}

#dev{
    font-size: 20px;
}

.link1{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
}

a,a:hover{
    text-decoration: none;
    font-family: 'Rubik', sans-serif;
}

.top-bar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 25px;
    height: 50px;
    width: 100%;
    background-color: aliceblue;
}
.hone{
    text-align: center;
}
.top-bar ul{
    list-style: none;
    display: flex;
}

.top-bar ul li{
    margin: 0px 15px;
    font-size: 20px;
}

.top-bar a{
    color: black;
}

.top-bar a:hover{
    color: red;
}

nav{
    background: #00235a;
    padding: 5px 20px;
    display: flex;
    align-items: center;
}

nav a{
    color: #fff;
}

nav a:hover{
    color: #ef4b3f;
    font-family: 'Barlow Condensed', sans-serif;
}

.logo{
    flex: 1;
}

.logo a{
    display: flex;
    align-items: center;
    font-size: 20px;
    font-family: 'Inconsolata', monospace;
}

.logo a:hover{
    color: #fff;
}

.logo img{
    width: 40px;
    margin-right: 10px;
}

.menu{
    display: flex;
    align-items: center;
    list-style: none;
}

.menu li{
    padding: 15px 10px;
    font-size: 16px;
}


.toggle{
    font-size: 30px;
    display: none;
}

@media screen and (max-width:600px){
    nav{
        display: block;
        position: relative;
        padding: 15px 20px;
    }
    .menu{
        margin-top: 15px;
        display: none;
    }
    .menu.active,.toggle{
        display: block;
    }
    .toggle{
        position: absolute;
        top: 15px;
        right: 20px;
    }
}

@media(max-width:425px){
    .top-bar{
        display: none;
    }
}

@media(max-width:320px){
    .logo a{
        font-size: 18px;
    }
}

@media(max-width:768px){
    .link1{
        font-size: 18px;
    }
}

.phase2{
    height: 50px;
    width: 100%;
    background-color:aliceblue;
}

.hfour{
    position: absolute;
    margin-left: 30px;
    margin-top: 10px;
    font-size: 20px;
}

.hfour2{
    position: absolute;
    right: 30px;
    font-size: 20px;
    margin-top: 10px;
}

@media(max-width:375px){
    .hfour{
        font-size: 10px
    }
    .hfour2{
        font-size: 10px;
    }
}

.phase3{
    width: 100%;
    background-color: #2255a4;
    overflow: hidden;
    text-align: center;
    padding: 60px;
}

.phase3 h1{
    text-transform: uppercase;
    margin-bottom: 60px;
    color: #fff;
    font-size: 20px;
}

.bottom-align{
    text-transform: uppercase;
    margin-bottom: 60px;
    color: #fff;
    font-size: 20px;
}

.border{
    display: block;
    margin: auto;
    width: 160px;
    height: 3px;
    background: #3498db;
    margin-bottom: 40px;
}

.ps{
    margin-bottom: 40px;
}

.ps a{
    display: inline-block;
    margin: 0 30px;
    width: 160px;
    height: 160px;
    overflow: hidden;
    border-radius: 50%;
}

.ps a img{
    width: 100%;
    /*filter: grayscale(100%);*/
    transition: 0.4s all;
}

.ps a:hover > img{
    filter: none;
}



@media(max-width:425px){
    .ps a{
        margin: 0 11px;
        width: 50px;
        height: 50px;
    }
}

@media(width:768px){
    .ps a{
        margin: 0 20px;
    }
}

@media(width:320px){
    .ps a{
        margin: 0 10px;
        width: 70px;
        height: 70px;
    }
    .phase3 h1{
        font-size: 15px;
    }
}

.team-section{
    background-color: #00235a;
    min-height:100vh;
    padding: 70px 15px 30px;
}

.container{
    max-width: 1170px;
    margin: auto;
}

.row{
    display: flex;
    flex-wrap: wrap;
}

.team-section .section-title{
    flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 70px;
}

.team-section .section-title h1{
    font-size: 40px;
    text-align: center;
    margin: 0;
    color: #ffffff;
    font-weight: 700;
}

.team-section .team-items{
    flex-basis:100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.team-section .team-items .item{
    flex-basis: calc(25% - 30px);
    max-width: calc(25% - 30px);
    transition: all .5s ease;
    margin-bottom: 40px;
}

.team-section .team-items .item img{
    display: block;
    width: 100%;
    border-radius: 8px;
}

.team-section .team-items .item .inner{
    position: relative;
    z-index: 11;
    padding:0 15px;
}

.team-section .team-items .item .inner .info{
    background-color: #00235a;
    text-align: center;
    padding: 20px 15px;
    border-radius: 8px;
    transition: all .5s ease;
    margin-top: -40px;
}

.team-section .team-items .item:hover .info{
    transform: translateY(-20px);
}
.team-section .team-items .item:hover{
    transform: translateY(-10px);
}

.team-section .team-items .item .inner .info h5{
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.team-section .team-items .item .inner .info .social-links{
    padding-top: 15px;
}

.team-section .team-items .item .inner .info .social-links a{
    display: inline-block;
    height: 32px;
    width: 32px;
    background-color: #ffffff;
    color: #009688;
    border-radius: 50%;
    margin: 0 2px;
    text-align: center;
    line-height: 32px;
    font-size: 16px;
    transition: all .5s ease;
}

.team-section .team-items .item .inner .info .social-links a:hover{
    box-shadow: 0 0 10px greenyellow;
}

@media(max-width:991px){
    .team-section .team-items .item{
        flex-basis: calc(50% - 30px);
        max-width: calc(50% - 30px);
    }
}

@media(max-width:767px){
    .team-section .team-items .item{
        flex-basis: calc(100%);
        max-width: calc(100%);
    }
}

.title{
    text-align: center;
    text-transform: capitalize;
    color: black;
    margin: 10px 0;
    position: relative;
}

.title:after{
    content: "";
    position: absolute;
    width: 20%;
    height: 2px;
    background-image: linear-gradient(to left, transparent 5%, #726a95);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.team-row{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 0;
}

.member{
    flex: 1 1 250px;
    margin: 20px;
    text-align: center;
    padding: 20px 10px;
    cursor: pointer;
    max-width: 300px;
    transition: all 0.3s;
}

.member:hover{
    box-shadow: 0px 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-20px);
}

.member img{
    display: block;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid #726a95;
    border-radius: 50%;
    margin: 0 auto;
}

.member h2{
    text-transform: uppercase;
    font-size: 24px;
    color: black;
    margin: 15px 0;
}

.member p{
    font-size: 15px;
    color: black;
    line-height: 1.6;
}

.footer{
    padding: 40px 0;
    background-color:#00235a; ;
}

.footer .si{
    text-align: center;
    padding-bottom: 25px;
    color: #ffffff;
}

.footer .si a{
    font-size: 24px;
    color: inherit;
    border: 1px solid #ccc;
    width: 40px;
    height: 40px;
    line-height: 38px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin: 0 8px;
    opacity: 0.75;
}

.footer .si a:hover{
    opacity: 0.9;
}

.footer ul {
    margin-top: 0;
    padding: 0;
    list-style: none;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}

.footer ul li a{
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
}

.footer ul li{
    display: inline-block;
    padding: 0 15px;
    color: #ffffff;
}

.footer ul li a:hover{
    color: red;
}

.footer .copyright{
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #ffffff;
}