@import url('https://fonts.googleapis.com/css?family=Poppins:400,700,800,900&display=swap');
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins',sans-serif;
}
html{
    height: 100%;
    width: 100%;
}
body{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)),
    url("background.jpg") center center no-repeat;
    background-size: 100%;
    margin: 0;
    padding: 100px 0px;
    box-sizing: border-box;
    font-family: sans-serif;
    height: 100%;
	width:100%;
}
.navbar{
	position: fixed;
	top: 0;
	z-index: 99999;
	padding:25px 0;
}
.navbar .logo{
	font-size: 1.5em;
	text-transform: uppercase;
	font-weight: 750;
	letter-spacing: 2px;
}
.navbar ul.nav{
	margin-right: 15%;
}
.navbar ul.nav li.active,
.navbar ul.nav li:hover{
	background:rgba(255, 255, 255, 0.5);
	color: #000;
}
.navbar ul.nav li a{
	color: #fff;
	font-size: 1em;
	font-weight: 500;
}
.navbar ul.nav li.active a,
.navbar ul.nav li:hover a{
	color: #000;
}

h1{
    text-align: center;
    color: #1785eb;
    font-size: 45px;
    position: absolute;
    top: 20%;
    left: 44.5%;
}

.container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: auto;
    position: absolute;
    top: 30%;
    left: 20%;
}

.our-team{
    border-radius: 5px;
    background: #ceccc5;
    text-align: center;
    overflow: hidden;
    position: relative;
    margin: 0px 25px;
    padding: 30px 70px;
}

.our-team .pic{
    display: inline-block;
    width: 130px;
    height: 130px;
    margin-bottom: 0px;
    z-index: 1;
    position: relative;
}

.our-team .pic::before{
    content: "";
    width: 100%;
    height: 0;
    border-radius: 50%;
    background: #1785eb;
    position: absolute;
    bottom: 135%;
    right: 0;
    left: 0;
    opacity: 0.2;
    transform: scale(3);
    transition: all 0.3 linear 0s;
}

.our-team:hover .pic::before{
    height: 100%;
}

.our-team .pic::after{
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #1785eb;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.our-team .pic img{
    width: 100%;
    height: auto;
    border-radius: 50%;
    transform: scale(1);
    transition: all 0.9s ease 0s;
}

.our-team:hover .pic img{
    box-shadow: 0 0 0 14px #f7f5ec;
    transform: scale(0.7);
}

.our-team .team-content{
    margin-bottom: 30px;
}

.our-team .title{
    font-size: 22px;
    font-weight: 700;
    color: #4e5052;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.our-team .post{
    display: block;
    font-size: 15px;
    color: #4e5052;
}

.our-team .social{
    width: 100%;
    padding: 0;
    margin: 0;
    background: #1785eb;
    position: absolute;
    bottom: -100px;
    left: 0;
    transition: all 0.5s ease 0s;
}

.our-team:hover .social{
    bottom: 0;
}

.our-team .social li{
    display: inline-block;
}

.our-team .social li a{
    text-decoration: none;
    display: block;
    padding: 10px;
    font-size: 17px;
    color: #fff;
    transition: all 0.3s ease 0s;
}

.our-team .social li a:hover{
    color: #1785eb;
    background: #f7f5ec;
}

@media (max-width: 720px){
    .container{
        flex-direction: column;
    }
    .our-team{
        width: 80%;
        margin-top: 30px;
    }
}