* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    background-color: #f3f3f3;
}

.bar-1 {
    background-color: #f3f3f3;
    color: #5A3E37;
    height: 46px;
    min-width: auto;
    padding: 10px 25px;
    justify-content: space-between;
}

nav{
    box-shadow: 0px 9px 19px rgba(0, 0, 0, 0.25);
}

.college-name{
    font-family: 'Cormorant Garamond';
    padding-top: 5px; 
    font-weight:lighter;
    font-size: 20px;
}

.icon-list {
    display: flex;
    gap: 10px;
}

.icon-list li a {
    color: #5A3E37;
    text-decoration: none;
}

.mobile-navbar {
    background-color: #5A3E37;
    height: 75x;
}

.mobile-navbar a h6 {
    color: #fff;
}

.mobile-navbar button {
    color: #5A3E37;
    background-color: #5A3E37;
}

.navbar-collapse {
    background-color: #5A3E37;
    padding: 10px;
}

.caret-style{
    gap: 15px; 
    align-items: center;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .college-name{
        font-size: 19px;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .icon{
        display: none;
    }

    .college-name{
        font-size: 15px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .navbar-nav{
        margin-left: auto;
    }

    .caret-style{
        gap: 4px; 
        align-items: center;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .college-name{
        font-size: 20px;
    }

    .dsktp-view{
        font-size: 18px;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {}