*{
    margin: 0;
    padding: 0;
}
body{
  overflow-x: hidden;
}
.marquee-container{
    overflow: hidden;
    box-sizing: border-box;
    padding: 0.625rem 0;
    background: #000000;
    white-space: nowrap;
    width: 100%;
}
.marquee-content{
    display: inline-block;
    padding-left: 100%;
    animation: scroll 30s linear infinite;
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: bold;
   
}
@media (max-width:760px) {
    .marquee-content{
        font-size: 1.2rem;
    }
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100%{
        transform: translateX(-100%);
    }
}
.glass{
    color:rgb(240, 86, 14);
}
.gear{
    color: #C0C0C0;
}
.eye{
    color: #000080;
}


/*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*/
.logo{
    width: 4em;
}
@media (max-width:768px) {
    .logo{
        width: 3em;
    }
}

.navbar-brand{
    font-family: "Cinzel_Decora";
}

/*Style for the navigation and toggle bar*/
.navigation{
    background-color: #FFFDD0;
}
.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;
}

    .dropdown-item:hover{
        background-color: #bd9b06ea;
    }

    .dropdown-item.active{
        background-color: #bd9b06ea;
    }

@media (min-width: 770px) {
    .nav-link:hover{
    border-bottom: 0.19rem solid #bd9b06ea;
    }
}

@media (min-width: 770px) {
    .nav-link.active{
    border-bottom: 0.19rem solid #bd9b06ea;
}
}

.social-icons {
            color: #1a1a1a;
            font-size: 1.5rem;
            margin-left: 15px;
            transition: color 0.3s;
        }

 .social-icons:hover {
            color: #b8860b; /* Gold hover color */
        }

        /*Style for footer*/
.beilan-footer{
  background: linear-gradient(to right, #2C2C2C);
  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;
}
