*{
    margin: 0;
    padding: 0;
}
body{
  overflow-x: hidden;
}
.marquee-container{
    overflow: hidden;
    box-sizing: border-box;
    padding: 0.625rem 0;
    background: #d1ecf1;
    white-space: nowrap;
    width: 100%;
}
.marquee-content{
    display: inline-block;
    padding-left: 100%;
    animation: scroll 30s linear infinite;
    font-size: 1.5rem;
    color: #333;
    font-weight: bold;
   
}
@media (max-width:760px) {
    .marquee-content{
        font-size: 1.2rem;
    }
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100%{
        transform: translateX(-100%);
    }
}
.hot{
    color: rgb(240, 86, 14);
    animation: flicker 1s linear infinite;
}
@keyframes flicker {
    0%{
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50%{
        transform: translateY(-5px) scale(1.1);
        opacity: 0.8;
    }
    100%{
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}
.leaf{
    color: green;
}

/*Style to remove focus border*/
button:focus,input:focus{
    outline: none;
    box-shadow: none;
}

.navbar-toggler:focus,.form-control:focus{
    outline: none;
    box-shadow: none;
}

/*Style for toggler*/
.custom-toggler i{
    color: #000;
    font-weight: bolder;
    font-size: 1.5rem;
}

/*Style for brand logo*/
@font-face {
    font-family: "Cinzel_Decorative";
    src: url("/fonts/Cinzel_Decorative.ttf");
}

.navbar-brand{
    font-family: "Cinzel_Decora";
}

/*Style for the navigation and toggle bar*/
.navigation{
    background-color: #e9f5ff;
}
.navbar-toggler{
    border: none;
}

/*Style for the dropdown in the navigation*/
.dropdown-menu{
    border: none;
    box-shadow: 0 0 0.625rem rgba(0,0,0,0.1);
}
.nav-item.dropdown:hover .dropdown-menu{
    display: block;
}

@media (min-width: 770px) {
    .nav-link:hover{
    border-bottom: 0.19rem solid #007BFF;
    }
}

@media (min-width: 770px) {
    .nav-link.active{
    border-bottom: 0.19rem solid #007BFF;
}
}

      /*Style for footer*/
.beilan-footer{
  background: linear-gradient(to right, rgba(47, 4, 240, 0.945));
  font-family: Arial, sans-serif;
}
.beilan-footer h5{
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: white;
}
@media (max-width: 768px) {
    .beilan-footer h5{
        font-size: 1.1rem;
    }
}
.beilan-footer p{
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
  color: #f0f0f0;
}
@media (max-width: 768px) {
    .beilan-footer p{
        font-size: 0.9rem;
    }
}
.beilan-footer .small{
  font-size: 0.75rem !important;
  font-weight: 300;
}
.beilan-footer h5 a{
  text-decoration: none;
}
.socialmedia{
  color: #f0f0f0 !important;
}


