*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
overflow-x:hidden;
}

/* Header */

header{
position:fixed;
top:0;
left:0;
width:100%;
background:#000;
padding:15px 3%;
display:flex;
justify-content:space-between;
align-items:center;
z-index:1000;
}

.logo{
color:white;
font-size:30px;
font-weight:bold;
}
.menu-logo img {
    max-height: 60px;
    width: auto;
    max-width: 400px;
}

nav ul{
display:flex;
list-style:none;
}

nav ul li{
position:relative;
}

nav ul li a{
color: white;
padding: 15px 10px;
display: block;
text-decoration: none;
font-size: 15px;
}

nav ul li:hover{
background:#ff9800;
}


/* Dropdown */

.submenu{
position:absolute;
top:100%;
left:0;
width:220px;
background:white;
display:none;
}

.submenu li{
border-bottom:1px solid #ddd;
}

.submenu li a{
color:#333;
}

nav ul li:hover .submenu{
display:block;
}

.menu-btn{
display:none;
font-size:30px;
color:white;
cursor:pointer;
}

/* Slider */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:sans-serif;
}

.banner-slider{
position:relative;
width:100%;
height:100vh;
overflow:hidden;
}
.banner-interpage {
    position: relative;
    width: 100%;
    height: 40vh;
    overflow: hidden;
}
.curriculum-list ul li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    font-size: 15px;
}
.curriculum-list ul li, .curriculum-list {
    list-style: none;
}
.cours-search-bx {
    text-align: center;
    border-radius: 4px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.15);
    padding: 20px 20px 15px 20px;
}
.slide{
position:absolute;
width:100%;
height:100%;
opacity:0;
transition:1s;
}

.slide.active{
opacity:1;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
}

.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.45);
}
.contentinterpage {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    max-width: 650px;
    animation: fadeUp 1s ease;
}
.content{
position:absolute;
top:50%;
left:10%;
transform:translateY(-50%);
color:white;
max-width:650px;
animation:fadeUp 1s ease;
}

.content h1{
font-size:45px;
margin-bottom:20px;
}

.content p{
font-size:22px;
margin-bottom:25px;
line-height:1.6;
}

.btn{
display:inline-block;
background:#ff9800;
padding:15px 35px;
color:white;
text-decoration:none;
border-radius:5px;
}

.prev,
.next{
position:absolute;
top:50%;
transform:translateY(-50%);
font-size:40px;
color:white;
background:rgba(0,0,0,.4);
padding:15px;
cursor:pointer;
z-index:100;
}

.prev{
left:20px;
}

.next{
right:20px;
}

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(50px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/* Responsive */

@media(max-width:991px){

.banner-slider{
height:600px;
}

.content{
left:5%;
right:5%;
}

.content h1{
font-size:40px;
}

.content p{
font-size:18px;
}

.prev,
.next{
font-size:25px;
}

}

@media(max-width:576px){
.menu-logo img{
    max-height: 30px;
    width: auto;
    max-width: 200px;
}
.banner-slider{
height:500px;
}

.content h1{
font-size:28px;
}

.content p{
font-size:16px;
}

.btn{
padding:12px 25px;
}

}
.event-time {
    color: #fff;
    background-color: #4c1864;
    text-align: center;
    padding: 15px 0px;
    border-radius: 4px;
}
.event-time .event-date {
    font-size: 55px;
    font-family: rubik;
    font-weight: 700;
    line-height: 55px;
}
.event-info .event-title {
    font-family: rubik;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 24px;
	margin-top: 10px;
}
.event-info .event-title a {
    color: #000;
	text-decoration: none;
}
.event-info .media-post {
    margin-bottom: 10px;
}
.event-info .media-post li a {
    text-transform: capitalize;
    font-size: 14px;
    color: #757575;
}
.media-post li {
    list-style: none;
    display: inline-block;
    font-size: 13px;
    text-transform: capitalize;
    margin-right: 5px;
}

/* Alumni Section */

.alumni-section{
    padding:80px 8%;
    background:#000;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:40px;
    color:#fff;
    margin-bottom:15px;
}

.section-title p{
    color:#d6d6d6;
}

.alumni-wrapper{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.alumni-card{
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
    text-align:center;
    transition:.4s;
}

.alumni-card:hover{
    transform:translateY(-10px);
}

.alumni-image{
    width:120px;
    height:120px;
    margin:auto;
    margin-bottom:20px;
}

.alumni-image img{
    width:100%;
    height:100%;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #003366;
}

.alumni-content p{
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}

.alumni-content h3{
    color:#003366;
    margin-bottom:8px;
}

.alumni-content span{
    color:#ff9800;
    font-weight:600;
}

/* Sections */
.copyright a {
    color:#ff9800;
	text-decoration: none;
}
.page-banner .container {
    display: table;
    height: 100%;
}
.page-banner-entry {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.page-banner h1 {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 0;
}
.breadcrumb-row {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}

section{
padding:55px 8%;
}

.title{
text-align:center;
font-size:40px;
color:#003366;
margin-bottom:50px;
}

/* About */

.about{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.about img{
width:100%;
border-radius:10px;
}

.about-text{
line-height:1.8;
text-align: justify;
}

/* Principal */

.principal{
background:#f8f8f8;
}

.principal-box{
display:grid;
grid-template-columns:300px 1fr;
gap:50px;
align-items:center;
text-align: justify;
}

.principal-box img{
width:100%;
border-radius:10px;
}

/* Statistics */

.stats{
background:#000;
display:grid;
grid-template-columns:repeat(4,1fr);
color:white;
text-align:center;
padding:80px 8%;
}

.stats h2{
font-size:55px;
}

/* News */

.news-container{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.news{
box-shadow:0 0 15px rgba(0,0,0,.1);
padding:25px;
border-radius:10px;
transition:.5s;
}

.news:hover{
transform:translateY(-10px);
}

/* Gallery */

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.gallery img{
width:100%;
height:250px;
object-fit:cover;
border-radius:10px;
cursor:pointer;
transition:.5s;
}

.gallery img:hover{
transform:scale(1.05);
}

.popup-image{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.9);
display:none;
justify-content:center;
align-items:center;
z-index:9999;
}

.popup-image img{
width:80%;
max-width:800px;
border-radius:10px;
}

.popup-image span{
position:absolute;
top:20px;
right:40px;
font-size:60px;
color:#fff;
cursor:pointer;
}

/* Footer */

footer{
background:#002147;
color:#fff;
padding:60px 8%;
}

.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:40px;
}

.footer-box h3{
margin-bottom:20px;
}

.footer-box ul{
list-style:none;
}

.footer-box ul li{
margin:10px 0;
}

.footer-box ul li a{
color:#fff;
text-decoration:none;
}

.copyright{
text-align:center;
margin-top:40px;
border-top:1px solid rgba(255,255,255,.2);
padding-top:20px;
}

/* Animation */

.animate{
opacity:0;
transform:translateY(60px);
transition:1s;
}

.animate.show{
opacity:1;
transform:translateY(0);
}

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(50px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/* Mobile */

@media(max-width:991px){

.menu-btn{
display:block;
}

nav{
position:absolute;
top:100%;
left:-100%;
background:#003366;
width:100%;
transition:.5s;
}

nav.active{
left:0;
}

nav ul{
flex-direction:column;
}

.submenu{
position:relative;
width:100%;
display:none;
}

.about,
.principal-box,
.news-container,
.gallery,
.stats{
grid-template-columns:1fr;
}

.hero h1{
font-size:40px;
}

}
