* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}




/* core styling */

body {
    font-family: 'Raleway', sans-serif;
}


a {
    text-decoration: none;
}



p {
    font-family: 'Open Sans', sans-serif;
}



.logo {
    display: grid;
    
}

li {
    list-style: none;
}


/* *padding top and bottom */
.py-1 {
    padding: 1.5rem 0;
}

.py-2 {
    padding: 2rem 0;
}

.py-3 {
    padding: 3rem 0;
}


.container {
    max-width: 1100px;
    margin: auto;
}



.text-center {
    text-align: center;
}




/* 🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶 */
/* Nav Bar */
/* 🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶 */

#navbar {
    /* display: flex; */
    background: #FBBEBE;
    color: #fff;
    position: sticky;
    top: 0;
    justify-content: space-between;
    z-index: 10;
}

#navbar .nav-container {
    display: flex;
    /* background: red; */
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
}

.nav-container ul  {
    display: flex;
}

.nav-container ul li {
    padding: .6rem;
}



.nav-container ul li a {
    color: #333;
    padding: 0.8rem;
    transition: all 0.3s ease-in-out;
    border-radius: 50px;
}

.nav-container ul li a:hover {
    border-radius: 50px;
    background: green;
    color: #fff;
    padding: 0.8rem;
}


/* logo part */

.logo-main {
    display: flex;
    height: 200px;
    /* background-color: cyan; */
    align-items: center;

}
.logo-main .logo {
    /* background-color: darkcyan; */
    display: grid;
    grid-template-columns: 1fr 4fr;
}

.logo img {
    width: 80px;
    margin-right: 1rem;
}

.signature {
    font-family: 'Berkshire Swash', cursive;
    font-size: 1.5rem;
    color: #333;
}

.signature-info {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-style: italic;
    color: #333;
    max-width: 300px;
}

/* logo part end */


/* Navbar part end */




/* 🔶🔶🔶🔶🔶🔶 */
/* Header showcase */
/* 🔶🔶🔶🔶🔶🔶 */

#showcase {
    background-color: #FBBEBE;
    /* display: flex; */
    /* max-width: 1100px; */
    
    
   
}

#showcase > .container {
    display: flex;
    position: relative;
    height: 60vh;
    align-items: center;
    margin: auto;
}

.showcase-text > .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-highlight {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: #00A958;
    border-radius: 50px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.btn-highlight:hover {
    background-color: rgb(59, 209, 137);
    /* border: 1px solid; */
    box-shadow: inset 0 0 20px rgba(255, 255, 255, .5), 0 0 20px rgba(255, 255, 255, .2);
    outline-color: rgba(255, 255, 255, 0);
    outline-offset: 15px;
    text-shadow: 1px 1px 2px #427388;     
}



.teacher {
    position: absolute;
    right: 0;
    max-width: 80%;
    bottom: 0;
}


.m-heading {
    font-size: 2.5rem;
}



.l-heading {
    font-size: 1.2rem;
}




/* 🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶 */
/* Section: Great Admin Features */
/* 🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶 */






#admin > .container .grid-section {
    display: grid;
    grid-template-areas: 
        "ht ht ht"
        "i1 i2 i3";
    text-align: center;
    padding: 2rem;
    gap: 1rem;
    height: 70vh;
    /* align-items: center; */
}

.highlight-text {
    grid-area: ht;
    align-self: flex-end;
    padding-bottom: 3rem;
}

.item1 {
    padding: 0 2rem;
    grid-area: i1;
}
.item2 {
    padding: 0 2rem;
    grid-area: i2;
}
.item3 {
    padding: 0 2rem;
    grid-area: i3;
}

.fas, .fab {
    background-color: #FBBEBE;
    padding: 2rem;
    border-radius: 50px;

}



/* 🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶 */
/* Section: Student convenience */
/* 🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶 */

#student {
    background-color: #FE8585;
}
#student > .container .grid-section {
    color: #fff;
    display: grid;
    grid-template-areas: 
        "ht ht ht"
        "i1 i2 i3";
    text-align: center;
    padding: 2rem;
    gap: 1rem;
    height: 70vh;
    /* align-items: center; */
}


/* 🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶 */
/* Section: Try it */
/* 🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶 */

/* #tryit > .container .grid-section {
    display: grid;
    grid-template-areas: 
        "ht ht"
        "i1 i2";
    text-align: center;
    padding: 2rem;
    gap: 1rem;
    height: 70vh;
} */

#tryit {
    background: #FBBEBE;
}

#tryit > .container {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 3rem;
    justify-content: center;
    height: 90vh;
    align-items: center;
}



/* 🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶 */
/* Footer */
/* 🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶 */
#footer  {
    /* background-color: #FBBEBE; */
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.footer-container {
    align-items: center;
    padding: 2rem;
}

.contact > .fas {
    background-color: #00A958;
    padding: .5rem;
    border-radius: 50px;
    color: #fff;
}

.demo-container a {
    color: #333;
}

.demo-container, .contact-container {
    display: flex;
    flex-direction: column;
}

.slogan {
    font-size: 12px;
}