﻿@font-face {
    font-family: sanfransisco;
    src: url("../fonts/SFUI/SFUIText-Regular.otf");
}

@font-face {
    font-family: thin;
    src: url("../fonts/SFUI/SFUIText-Light.otf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: sanfransisco;
}

.home-container {
    padding: 0;
}

.navigation-shared {
    position: fixed;
    background-color: white;
    backdrop-filter: blur(12px);
    z-index: 200;
    height: 4em;
    width: 100%;
    display: flex;
    /* justify-content: space-between;*/
}

    .navigation-shared a {
        color: black;
        text-decoration: none;
        font-size: 13px;
    }

.navigation-items {
    padding: 0em 0.2em 0 0.2em;
    /*    border: 1px solid blue;*/
    width: 100%;
    height: 4em;
    display: flex;
    justify-content: space-between;
    place-items: center;
}

    .navigation-items .mainNav {
        margin-left: 9em;
    }

    .navigation-items ul {
        display: flex;
        gap: 1.5em;
        place-items: center;
        justify-content: space-evenly;
        color: black;
    }

    .navigation-items .image-logo {
        transform: scale(0.7);
    }


.nav-util .util-bttn {
    width: 6em;
    height: 2em;
    text-align: center;
    border-radius: 0.2em;
    background-color: dodgerblue;
    place-content: center;
    overflow: hidden;
}
.nav-util #manage {
    margin-top: 1em;
    height: 100%;
    color: black;
    font-size: 12px;
    cursor: pointer;
}
/*.nav-util .manage-text {
    color: black;
    height: 2em;
    display: flex;
    justify-content: center;
    cursor: pointer;
  
    width: 14em;
}*/
.nav-util a {
    color: white;
}

.menu-icon {
    display: none;
}
/*--------------------------------------HERO SECTION--------------------------------------*/
.carousel {
    margin-top: 3.7em;
}

.carousel-inner {
    transform: scale(0.98);
    border-radius: 0.6em;
}

.carousel-item img {
    width: 100%;
    height: 43em;
    object-fit: cover;
}

.stats-container {
    width: 100%;
    height: 17em;
    background-color: whitesmoke;
    display: flex;
}

    .stats-container .stats {
        /*       border: 1px solid black;*/
        height: 17em;
        width: 100%;
        display: flex;
        flex-direction: column;
        text-align: center;
        place-content: center;
    }

.stats .figure {
    font-size: 3em;
}

.stats .figure-info {
    overflow: hidden;
    color: darkgrey;
    margin-top: -1em;
    line-height: 1.2em;
}

/*--------------------------------------ARTICLES SECTION--------------------------------------*/
.articles-section h1 {
    margin-block: 3em;
    text-align: center;
    font-weight: 500;
    font-size: 2.8em;
}

.article-wrapper {
    padding: 0em 2em 1em 2em;
    display: flex;
    gap: 0.9em;
}

.article-cont {
    background-color: whitesmoke;
    height: 24em;
    width: 20em;
    border-radius: 0.9em;
    padding: 0 0.5em 0 0.5em;
}

    .article-cont:hover {
        background-color: rgb(56, 56, 56);
        color: white;
        transition: 0.7s;
    }

    .article-cont img {
        width: 100%;
        height: 15em;
        border-radius: 0.7em;
        object-fit: cover;
        transform: scale(0.94);
    }

    .article-cont p {
        font-size: 13px;
        line-height: 1.4em;
        overflow: hidden;
        font-weight: 500;
    }

    .article-cont .article-image {
        width: 100%;
        height: 16em;
        border-radius: 0.7em;
        background-color: dodgerblue;
    }

.article-text {
    height: 37%;
    display: grid;
    grid-auto-rows: 3fr 1fr;
}

    .article-text p {
        height: 100%;
    }

    .article-text div {
        width: 100%;
        height: 100%;
        padding-left: 1em;
        font-size: 13px;
    }

    .article-text a {
        color: darkgrey;
    }
/*--------------------------------------ABOUT SECTION--------------------------------------*/
.about-container .about-bttn {
    margin: 7em auto 4em auto;
    text-align: center;
    border: 1px solid black;
    width: 7em;
    height: 2em;
    border-radius: 1em;
    place-content: center;
}

.about-container .text-para {
    text-align: center;
}

.about-container .excellence {
    /*    background-color: whitesmoke;*/
    height: 42em;
    display: flex;
    margin-top: 7em;
    margin-left: auto;
    margin-right: auto;
}

.excellence .image-section {
    width: 60%;
    border: 1px solid grey;
}

.excellence img {
    object-fit: cover;
}

.excellence .text-section {
    border: 1px solid grey;
    border-left: none;
    border-bottom: none;
    width: 50%;
    display: grid;
    grid-template-rows: repeat(1fr);
}

.excellence .points {
    border-bottom: 1px solid grey;
}

.excellence h1 {
    margin: 1em 0 0 0.5em;
    font-size: 1.8em;
}

.excellence p {
    color: grey;
    margin: 0.5em 0 0 1em;
    font-family: thin;
    font-size: 1em;
    line-height: 1.2em;
}
/*--------------------------------------FACULTIES SECTION--------------------------------------*/
.faculties-cont {
    margin-top: 9em;
    height: 45em;
}

    .faculties-cont h1 {
        margin-bottom: 2em;
        text-align: center;
        font-weight: 500;
        font-size: 2.8em;
    }

.faculties {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5em;
    width: 100%;
    padding: 2em;
}

    .faculties .faculty-item {
        background-color: white;
        height: 15em;
        width: 100%;
        border-radius: .7em;
        border: 1px solid grey;
        display: grid;
        grid-auto-rows: 2fr 1fr;
        cursor: pointer;
        transition: 0.5s ease;
    }

.faculty-item:hover {
    margin-top: -2em;
    background-color: rgb(56, 56, 56);
    color: white;
}

.faculty-item .emblem {
    display: flex;
    justify-content: center;
    place-items: center;
}

.emblem i {
    font-size: 5em;
    overflow: hidden;
}

.faculty-item p {
    margin-top: 0.2em;
    text-align: center;
    font-size: 12px;
    overflow: hidden;
}

.faculty-item .faculty-title {
    display: grid;
    grid-template-rows: 2fr 1fr;
}

.faculty-item .faculty-cl {
    width: 7em;
    height: 0.7em;
    margin-left: auto;
    margin-right: auto;
    border-radius: .5em;
}
/*--------------------------------------FOOTER SECTION--------------------------------------*/
.footer-section {
    height: 40em;
    background-color: dodgerblue;
    padding: 0.7em;
    display: flex;
    flex-direction: column;
}

    .footer-section .upper-footer {
        height: 80%;
        width: 100%;
        /*    background-color: greenyellow;*/
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1em;
    }

.upper-footer .footer-column {
    padding-top: 1em;
    /*   background-color: red;*/
    height: 100%;
    color: white;
    /*   border: 1px solid black;*/
}

.footer-column h2 {
    font-size: 1.8em;
    text-transform: uppercase;
}

.footer-column hr {
    width: 14em;
    height: 0.3em;
    border-radius: .8em;
}

.footer-column p {
    font-family: thin;
    font-size: 14px;
}

.footer-column img {
    background-color: transparent;
}

.footer-column ul {
    list-style-type: disc;
    list-style-position: outside;
}

.footer-column li {
    font-family: thin;
    text-decoration: underline;
    font-size: 14px;
    cursor: pointer;
}

    .footer-column li:hover {
        color: yellow;
    }

.lower-footer {
    padding: 0.5em;
    height: 20%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: white;
    font-family: thin;
}

    .lower-footer img {
        height: 100%;
        width: 10em;
        object-fit: cover;
    }

    .lower-footer .trademarks {
        font-size: 14px;
        place-content: end;
    }

    .lower-footer .logos {
        display: flex;
        gap: 1em;
        place-items: center;
    }

.logos i {
    place-content: center;
    border: 1px solid white;
    width: 2.4em;
    height: 2.4em;
    text-align: center;
    color: white;
    font-size: 30px;
    overflow: hidden;
    border-radius: 50%;
}
