#navigation{
    background-color: indigo;
    font-weight: bolder;
    color: white;
    padding: 0px;
}
/*@media (max-width: 600px) {
    .row{
      display: flex;
      flex-direction: column;
    }
  }*/
@media only screen and (min-width: 992px) {
    .hov:hover{
        border-top: 3px solid #FF5733 ;
    }
    .active{
        border-top: 3px solid #FF5733 ;
    }
    .hov{
        margin-left: 20px;
    }
    .hov a:hover{
        color: orange;
    }
    #logo img{
        height:20%;
        width:50%;
    }
}
body{
    background: #eee
}

.news{
    width: 160px;
    background-color: indigo;
}
#lnews{
    width: 120%;
}
.news-scroll a{
    text-decoration: none;
}
.dot{
    height: 6px;
    width: 6px;
    margin-left: 3px;
    margin-right: 3px;
    margin-top: 2px !important;
    background-color: rgb(207,23,23);
    border-radius: 50%;
    display: inline-block
}
/*#cards{
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}*/
#chead{
    background-color: #561386;
    color: white;
    border-bottom: 4px solid #FF5733 ;
}
.blink_me {
    animation: blinker 3s linear infinite;
  }
  
  @keyframes blinker {
    25%{
        color: red;
    }
    50% {
      color: red;
    }
    75%{
        color: indigo;
    }
    100%{
        color: indigo;
    }
  }
  img {  
    -webkit-user-drag: none; 
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
 }