body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
}

a {
    text-decoration: none;
}

* {
    transition: all 0.3s;
}

/* header area css*/

.nav {
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.20);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    transition: all 0.4s ease-in-out;
}


.sticky {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9;
    border-top: 0;
    background-color: #fff !important;
    padding: 10px 0px;
    border-bottom: none;
    box-shadow: 0 10px 30px -10px rgb(0 64 128 / 20%);
} 
 
.navbar-brand {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
}

.sticky .navbar-brand { 
    color: #212121; 
}

.navbar li.nav-item {
    padding: 0 12px;
}

.navbar a.nav-link {
    color: #fff;
    font-weight: 500;
    transition: all 0.2s;
}


.sticky a.nav-link {
    color: #212121; 
}

.navbar a.nav-link:hover {
    color: #56299a;
    transition: all 0.2s;
}


.navbar-nav {
    align-items: center;
}

a {
    color: #56299a;
}

.btn-one {
    background-color: #56299a;
    color: #fff;
    padding: 15px 50px;
    border-radius: 8px; 
    display: inline-block;
    font-size: 18px;
}

.btn-one:hover {
    background-color: #3e0496;
    color: #fff;
    transition: all 0.3s;
}

.banner {
    background:rgba(0, 0, 0, 0.75) url(img/banner.jpg);
    background-position: center;
    background-size: cover;
    background-blend-mode: overlay;
    color: #fff;
    height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.card-one {
    background-color: #3e0496;
    color: #fff;
    transition: all 0.3s; 
    padding: 25px;
    border-radius: 8px;
    height: 100%;
}

.admissions {
    background:rgba(0, 0, 0, 0.75) url(img/bg.jpg);
    background-position: center;
    background-size: cover;
    background-blend-mode: overlay;
    color: #fff;
    padding: 200px 0 100px 0;
}

.footer {
    background-color: #212121;
    color: #fff;
    padding: 25px 0;
}