@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x:hidden;
    height: 100%;
    scroll-behavior: smooth;
 
}

.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: all 2s ease;
}

.reveal.active {

    transform: translateY(0px);
    opacity: 1;
}

.topbar {
    width: 100%;
    height: 100px;
    background-color: #284B70;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #000;
    position: relative;
    top: 0;




}

.left-nav {

    display: flex;
    align-items:center;
    padding: 2% 2%;
    margin: 2% 2%;

}

.left-nav img {
    margin-top: 7px;
    width: 70px;
    height: 80px;
}

.web-name h1 {
    font-size: 28px;
    margin: 20px 15px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

.right-nav {
    display: flex;
    align-items:center;
    margin: 1vw 1vw;
}

    .right-nav a {
        animation: Slide_left 4s ease;
        white-space: nowrap;
        margin: 0vw 1vw 0vw 1vw;
        text-decoration: none;
        color: #e9870e;
        font-size: 12px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing:1px;
    }

.right-nav a:hover,
.right-nav a.active{
    border-bottom: 2px solid #e9870e;
    color: rgb(255, 255, 255);
    font-size: 14px;
    transition: ease 0.3s;
}

.right-nav2 {
    overflow: hidden;
    height: 0vw;
    justify-content: center;
    text-align: center;
    width: 100%;
    background-color: #284b70;
    position: relative;
    right: 0;
    display: grid;
    transition: 0.5s ease;

}

    .right-nav2 a {
        padding: 7px;
        animation: Slide_left 4s ease;
        font-weight: 700;
        gap: 2px;
        margin: 13ox 0vw 1vw 0vw;
        text-decoration: none;
        color: #e9870e;
        font-size: 12px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .right-nav2 a:hover
     {
        border: 2px solid #e9870e;
        color: rgb(255, 255, 255);
        font-size: 14px;
        transition: ease 0.3s;
        border-radius: 10px;
    }

.dropdown2 a {

    text-decoration: none;

    display: inline-block;
}

/* Styling the dropdown content */
.dropdown2-content {
    display: none;
    position: relative;
    background-color: #333;
    min-width: 160px;
    z-index: 1;
}

/* Styling the dropdown content links */
.dropdown2-content a {
    color: #fff;
    padding: 10px;
    display: block;
    text-decoration: none;
}


.dropdown2:hover .dropdown-content {
    display: block;
}



/* Styling the dropdown link */
.dropdown a {

    text-decoration: none;

    display: inline-block;
}

/* Styling the dropdown content */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    z-index: 1;
}

/* Styling the dropdown content links */
.dropdown-content a {
    color: #fff;
    padding: 10px;
    display: block;
    text-decoration: none;
}


.dropdown:hover .dropdown-content {
    display: block;
}



.menu {
    font-weight: 900;
    font-size: 40px;
    cursor: pointer;
    display: none;
    border: none;
    background: transparent;
}

#check {
    display: none;
}





@media(max-width:1118px) {
    .right-nav a {
        display: none;
    }

    .dropdown {
        display: none;
    }

    .menu {

        display: block;
        color: #e9870e;
        border-radius: 10px;
    }

}



@media(max-width:600px) {
    .web-name h1 {
        font-size: 5.3vw;
    }

    .left-nav img {
        margin-top: 7px;
        width: 60px;
        height: 65px;


    }
}


.livecount {
    float: unset;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    color: #000;
    top: 102px;
    right: 0;
    border-radius: 50px 0px 0px 50px;
    z-index: 1;
    padding: 2vw;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.19);
}

    .livecount h3 {
        font-family: "Nunito", sans-serif;
        text-transform: capitalize;
        white-space: nowrap;
        font-weight: 600;
      
        margin:0vw 1vw 0vw 0vw;
        font-size: 15px;
    }
    .livecount h1 {
        font-family: "Nunito", sans-serif;
        text-transform: capitalize;
        white-space: nowrap;
        font-weight: 600;
       
        font-size: 15px;
    }