@charset "utf-8";

*{
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
}
body{
 height: 100%;
     width: 100%;

}

header {
    min-height: 60px;
    width: 100%;
	background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7));
	background-position: center;
	background-size: cover;
	position: relative;
}
nav {
	display: flex;
	padding: 2% 6%;
	justify-content: space-between;
	align-items: center;
}
nav img {
	width: 150px;
	
}
.nav-links{
	flex: 1;
	text-align: right;
}
.nav-links ul li{
	list-style: none;
	display: inline-block;
	padding: 8px 12px;
	position: relative;
}
.nav-links ul li a{
	color: white;
	text-decoration: none;
	font-size: 13px;
}
.nav-links ul li::after{
	content: '';
	width: 0px;
	height: 2px;
	background: #f44336;
	display: block;
	margin: auto;
	transition: 0.5s;
}

.nav-links ul li:hover::after{
	width: 100%;
	
}
h1 {
	font-size: 36px;
	font-weight: 600;
	text-align: center;
}

p{
	text-align: center;
	color: #777777;
	font-size: 14px;
	font-weight: 300;
	line-height: 22px;
	padding: 10px;
}
h3{
	text-align:center;
	font-weight: 600;
	margin: 10px 0;
		
}
.star {
    width: 30px;
    height: 30px;
    margin-top: 10px;
}

.campus{
	
	height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	
}
.mydiv{
	width: 80%;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.imgdiv{
	flex-basis: 30%;
	position: relative;
}

.imgdiv img{
	width: 100%;
}

.info{
 width: 90%;
	padding: 15px 0;
	box-sizing: border-box;
	border-radius:3px;
	background:  #FFDAB9;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -50px;
	
	
}
.pic{
	filter: grayscale(100%);
}

.layer{
	width: 100%;
	position: absolute;
	top:0;
	border-bottom: 2px solid #002366;
	max-height: 0;
	overflow: hidden;
	transition: max-height 1s;
	
		
}

.layer:hover{
	max-height: 500px;
	
}
.text-box {
    margin-top: 30px;
}

.facil{
	padding: 50px;
	display: flex;
	align-items: center;
	
}

.mydiv2{
	width: 80%;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	
}
.imgdiv2{
    flex-basis: 30%;
    position: relative;
    border-radius: 10px;
}
.imgdiv2 img{
    width: 100%;
    border-radius: 10px;	
}
.imgdiv2 p{
	padding: 0;
	
}
.imgdiv2 h3{
	margin-top: 16px;
	margin-bottom: 15px;
	text-align: left;
}
.testi{
	padding: 50px;
	display: flex;
	align-items: center;
}
.mydiv3{
	width: 80%;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.imgdiv3{
	 flex-basis: 44%;
    position: relative;
    border-radius: 10px;
	margin-bottom: 5%;
	text-align: left;
	background: #FFDAB9;
	padding: 25px;
	cursor: pointer;
	display: flex;
}
.imgdiv3 img{
	height: 40px;
	margin-left: 5px;
	margin-right: 30px;
	border-radius: 50%;
}
.mydiv3 p{
	padding: 0;
	text-align: left;
}
.mydiv3 h3{
	margin-top: 15px;
	text-align: left;
}
.footimg{
    width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
}
.footimg a{
    height: 50px;
    width: 50px;
    background:#FFFFFF;
    border-radius: 50%;
    text-align: center;
	line-height: 70px;
    margin: 10px;
    -webkit-box-shadow: 2px 2px 2px 2px #F38BA0;
    box-shadow: 2px 2px 2px 2px #FF0000;
}

.footimg a img{
    width: 30px;
    height: 30px;
    border-radius: 50%;
	transition: all 0.3s linear;
}
.footimg a img:hover{
	transform: scale(1.4);
}
footer h5 {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: -20px;
	margin-bottom: 40px;
}
hr {
    height: 1px;
    background-color: #767373;
}
















