@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
font-family: 'Poppins' , sans-serif;
}




hr{
    width: 30px;
    height: 2px;
    background-color: #fb774b;
}


.navbar{

    font-size: 19px;
    top: 0;
    left: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);

}

.navbar-light .navbar-nav .nav-link{
    padding: 0 20px;
    color: black;
    transition: 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active{
    color: coral;
}


#navbarsupportedcontent  > ul{
    margin: 1rem;
    justify-content: fixed-end;
    align-items: flex-end;
    text-align: right;
}





.navbar-logo {
    width: 75px;
    height: auto;
  }




footer{
    background-color: #222222;
}
footer h5{
    color : #D8D8D8 ;
    font-weight: 700;
    font-size: 1.2rem;
}

footer li{
    padding-bottom: 4px;
    
}

footer li a {
    font-size: 0.8rem;
    color: #999;
    
}

footer li a:hover{
    color: #D8D8D8;
    
}

footer p{
    color: #999;
    font-size: 0.8rem;
    
}

footer .copyright a{
    color: #000;
    width: 38px;
    height: 38px; 
    background-color: #fff;
    display: inline-block;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    transition: 0.3s ease;
    margin: 0 5px;
}

footer .copyright a:hover{
    color: #fff;
    background-color: #fb774b;
}
.small-logo {
  width: 80px;
  height: auto;
}