@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;300;400;500;600;700;800;900&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    font-family: "Noto Sans", sans-serif;
    background-color: #23292e;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
}

/* ====================================NavBar===================================================== */

#mainNav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #23292e;
}

.topMenu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #126e51;
    color: #fff;
    padding: 5px 10px;
}

.topMenu .menuLinks span {
    font-size: 14px;
    font-weight: 600;
    padding: 5px 10px;
    position: relative;
}

.topMenu .menuLinks span.active::after {
    content: "";
    background-color: #fff;
    width: 80%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 10px;
    border-radius: 100px;
}

.topMenu .menuBtn {
    font-size: 13px;
    font-weight: 600;
}

.topMenu .menuBtn i {
    padding-right: 10px;
}

nav {
    display: flex;
    align-items: center;
    padding: 3px 0;
}

nav .navLogo img {
    width: 220px;
}

nav .navBtn button,
nav .navBtn a {
    background-color: #0e684e;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    padding: 8px 10px;
    font-family: Arial, Helvetica, sans-serif;
    border: 0;
    margin-left: 10px;
}

.marque {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    background-color: #444444;
    padding: 2px 0;
    width: 560px;
    margin-left: 10px;
}

.marque .marqueContent p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
    text-wrap: nowrap;
    animation: marquee 15s linear infinite;
    z-index: -1;
}

.marque .marqueImg {
    background-color: #444444;
    z-index: 1;
}

.marque .marqueImg img {
    width: 35px;
    margin-right: 10px;
    animation: popUP 1.5s linear infinite;
}

@keyframes popUP {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.marque:hover p {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

nav .navUser {
    display: flex;
}

nav .navUser input {
    background-color: #444444;
    border: 1px solid #555555;
    outline: 0;
    color: #fff;
    padding: 7px;
    margin-left: 8px;
    max-width: 190px;
}

nav .navUser input:hover,
nav .navUser input:focus {
    background-color: #23292e;
    border: 1px solid #fff;
}

nav .navUser input::placeholder {
    color: #dddddd;
    font-size: 13px;
    padding-left: 10px;
}

.responNav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #16191c;
}

.responNav .resLeft {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
}

.responNav .resLeft i {
    font-size: 25px;
    color: #fff;
}

.responNav .resLeft img {
    width: 101px;
}

.responNav .resRight {
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 0.5rem;
}

.responNav .resRight button,
.responNav .resRight a {
    font-size: 13px;
    color: #fff;
    border: 0;
    background-color: #126e51;
    padding: 5px;
    margin: 7px 5px 0;
}

.responNav .resRight span {
    font-size: 12px;
    font-weight: 600;
    padding-right: 10px;
    color: #fff;
    text-decoration: underline;
}

/* ===============================leftSidebar==================================================== */

#leftSidebar {
    position: fixed;
    left: 0;
    width: 17%;
}

#leftSidebar .leftHeading {
    background-color: #126e51;
    padding: 1px 5px;
}

#leftSidebar .leftHeading h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 0;
}

#leftSidebar .leftlink {
    padding: 10px 15px;
}

#leftSidebar .leftlink h5 {
    display: block;
    font-size: 12px;
    color: #fff;
    padding: 3px 0;
}

#leftSidebar .leftlink h5 i {
    color: #fff;
    margin-right: 5px;
}

/* ===============================tableSection==================================================== */

#tableSection img {
    width: 100%;
}

/* ===============================rightSideSection==================================================== */

.rsTop {
    background-color: #16191c;
}

.rsTopHeading h4 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background-color: #126e51;
    padding: 5px;
    margin-bottom: 0;
}

.rsTop .rstopDets {
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.rsTop .rsTopContent {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding: 0 5px;
}

.rsTop .rsTopContent p {
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-align: end;
}

.rsmidContent {
    padding: 5px;
}

.rsmidContent img {
    width: 100%;
}

/* ===============================GameSection==================================================== */

.gametHeading h1 {
    color: #fff;
    font-size: 16px;
    background-color: #126e51;
    margin: 10px 0;
    padding: 5px 10px;
}

.gametContent div {
    padding: 5px;
}

.gametContent div img {
    width: 100%;
    border-radius: 10px;
}

/* ===============================Footer==================================================== */

footer {
    border-top: 1px dashed #eee;
    padding: 10px 0;
    position: relative;
    margin-top: 20px;
}

.footerTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footerTop .ftPara {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translate(-50%, 0);
}

.footerTop .ftPara p {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
}

.footerTop .ftSocial img {
    width: 24px;
    margin-right: 10px;
}

.footerMid {
    text-align: center;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
}

.footerMid .footermidTop span {
    font-size: 14px;
    padding: 10px 5px;
}

.footerMidBottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.fmBleft {
    display: flex;
    gap: 10px;
}

.fleftImg img {
    width: 100px;
}

.fleftConent {
    text-align: start;
    font-size: 13px;
    color: #fff;
}

.fleftConent span {
    font-weight: 900;
}

.fleftConent p {
    margin-bottom: 0;
}

.fmBRight img {
    height: 30px;
}

.footerBottom {
    border-top: 1px dashed #eee;
    padding: 10px 0;
    text-align: center;
    color: #fff;
    font-size: 13px;
}

@media only screen and (max-width: 768px) {
    .footerTop .ftPara {
        left: 25%;
    }
    .footerMidBottom {
        flex-direction: column;
    }
    .fleftConent {
        text-align: center;
    }
    .fmBleft {
        flex-direction: column;
    }
}