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

body {
    overflow-x: hidden;
}

/* Navbar */

.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    position: relative;
    margin-left: 30px;
    padding: 30px 0;
    font-size: 15px;
    font-weight: 700;
    color: rgb(107, 15, 15);
    outline: none;
    transition: .5s;
}

.li {
    font-size: 17px !important;
    margin-left: 70px !important;
}

.nav-link {
    font-family: 'Jost', sans-serif;
    position: relative;
    margin-left: 0px;
    padding: 30px 0;
    font-size: 18px;
    font-weight: 700;
    color: rgb(107, 15, 15);
    outline: none;
    transition: .5s;
}

.navbar img {
    width: 500px;
    margin-left: -30px;
}

.nav-link:hover,
.nav-link.active {
    color: black !important;
}

@media (max-width:1400px) {

    .navbar img {
        width: 400px;
    }

}

@media (max-width:1200px) {

    .navbar img {
        width: 300px;
    }

}

@media (min-width: 992px) {
    .nav-link::before {
        position: absolute;
        content: "";
        width: 0px;
        height: 5px;
        bottom: 0;
        left: 50%;
        background: black;
        transition: .5s;
    }

    .nav-link:hover::before,
    .nav-link.active::before {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 991.98px) {
    .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
}

@media (max-width: 986px) {
    .navbar img {
        display: grid !important;
        place-items: center !important;
        width: 70%;
    }

    .li {
        margin-left: 0 !important;
    }
}



/* Hero Section */

.hero-header {
    background: rgb(150, 40, 40);
}

.hero-header h4 {
    font-weight: 600;
    font-size: x-large;
}

.hero-header p {
    font-size: medium;
    font-weight: 500;
}



/* Committee Section */

.box {
    margin: 20px 0px;
    padding: 5px;
    display: grid;
    place-items: center;
}

.box h4 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin-top: 20px;
    font-size: large;
    font-weight: 500;
    color: maroon;
}

.box img {
    height: 200px !important;
    width: 150px !important;
    background-size: cover;
}

.box p {
    font-weight: 500;
    font-size: medium;
}

.container h1 {
    color: maroon;
    font-size: x-large;
    font-weight: 600;
}


/* Footer */

.foot {
    background: #962828;
    font-weight: 500;
}

.bb {
    border-color: rgb(233, 200, 160) !important;
}

a {
    text-decoration: none;
    color: white;
}

.social-links a {
    text-decoration: none;
    color: white;
    font-size: larger;
}