/* Remove Scroll Button Arrow in Input Type Number Button*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}


@font-face {
    font-family: 'Berlin Sans FB';
    src: url('../fonts/BerlinSansFB-Reg.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Berlin Sans FB Demi';
    src: url('../fonts/BerlinSansFBDemi-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


/* poppins-regular - latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v20-latin-regular.eot');
    /* IE9 Compat Modes */
    src: local(''),
        url('../fonts/poppins-v20-latin-regular.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/poppins-v20-latin-regular.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/poppins-v20-latin-regular.woff') format('woff'),
        /* Modern Browsers */
        url('../fonts/poppins-v20-latin-regular.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../fonts/poppins-v20-latin-regular.svg#Poppins') format('svg');
    /* Legacy iOS */
}

/* poppins-500 - latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/poppins-v20-latin-500.eot');
    /* IE9 Compat Modes */
    src: local(''),
        url('../fonts/poppins-v20-latin-500.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/poppins-v20-latin-500.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/poppins-v20-latin-500.woff') format('woff'),
        /* Modern Browsers */
        url('../fonts/poppins-v20-latin-500.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../fonts/poppins-v20-latin-500.svg#Poppins') format('svg');
    /* Legacy iOS */
}

/* poppins-600 - latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v20-latin-600.eot');
    /* IE9 Compat Modes */
    src: local(''),
        url('../fonts/poppins-v20-latin-600.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/poppins-v20-latin-600.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/poppins-v20-latin-600.woff') format('woff'),
        /* Modern Browsers */
        url('../fonts/poppins-v20-latin-600.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../fonts/poppins-v20-latin-600.svg#Poppins') format('svg');
    /* Legacy iOS */
}

/* poppins-700 - latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v20-latin-700.eot');
    /* IE9 Compat Modes */
    src: local(''),
        url('../fonts/poppins-v20-latin-700.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/poppins-v20-latin-700.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/poppins-v20-latin-700.woff') format('woff'),
        /* Modern Browsers */
        url('../fonts/poppins-v20-latin-700.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../fonts/poppins-v20-latin-700.svg#Poppins') format('svg');
    /* Legacy iOS */
}


* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    letter-spacing: 1px;
    color: var(--theme-white);
}

body {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    background-image: url(../Game/webBackground_6.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: var(--theme-white);
}

.berlinFB {
    font-family: 'Berlin Sans FB';
}

.berlinDemi {
    font-family: 'Berlin Sans FB Demi';
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    padding: 0px;
}
.cusH{
    margin: inherit!important;
}
ul,
ol {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.ulDisc {
    list-style: disc !important;
    padding-left: 32px;
    margin-bottom: 12px;
}

a,
a:hover {
    color: var(--theme-white);
    text-decoration: none;
}




.f-16 {
    font-size: 16px;
}

.f-18 {
    font-size: 18px;
}

.f-20 {
    font-size: 20px;
}

.f-22 {
    font-size: 22px;
}

.f-36 {
    font-size: 36px;
}



:root {
    --theme-color: rgb(245, 45, 58);
    --theme-color-two: rgb(184 93 245);
    --theme-default: #100f0f;
    --theme-peta-text: #aaa;
    --theme-white: #fff;
    --theme-black: #060609;
    --theme-gray-light: rgba(100, 100, 100, 0.40);
    --theme-ccc: #ccc;
}

.cl-b {
    color: black;
}

.cl-peta {
    color: var(--theme-peta-text);
}

.f-20 {
    font-size: 20px
}


.cusBtn {
    display: inline-block;
    padding: 15px 25px;
    background: linear-gradient(90deg, rgba(243, 67, 79, 1) 0%, rgb(245, 45, 58) 100%);
    color: var(--theme-white);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    white-space: nowrap;
    font-weight: 600;
}

.cusBtn:hover {
    background: linear-gradient(90deg, rgb(245, 45, 58) 0%, rgba(243, 67, 79, 1) 100%);
}

/* =======================================================================================================================================
                                                    HOME  PAGE
======================================================================================================================================= */
/* ============================================  Header  ============================================ */
.logo {
    color: var(--theme-black);
    max-width: 200px;
}

#loadingDiv {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    z-index: 0;
}

.bannerImg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -5;
}



.blackLayer {
    background-color: rgba(0, 0, 0, 0.75);
    height: 100%;
    width: 100%;
    z-index: -3;
}

.PlayBtn {
    z-index: 0;
    /* display: none !important; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    background-color: rgb(184 93 245);
    padding: 10px 50px;
    font-size: 18px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    box-shadow: 2px 2px 14px rgba(0, 0, 0, 0.4);
}

.PlayBtn:hover {
    background-color: rgb(245, 45, 58) !important;
}

.none {
    display: none !important;
}

.block {
    display: block !important;
}

.bgGradiant {
    background: linear-gradient(90deg, rgb(184 93 245) 0%, rgb(245, 45, 58) 100%);
}

.navGradiant {
    height: 80px;
}

.margTop {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
    margin-top: -50px;
}

.header {
    padding: 15px 20px;
    box-shadow: 2px 5px 15px rgba(124, 0, 87, 0.75);
    border-radius: 20px;
    background-color: var(--theme-white);
    border: 3px solid var(--theme-color);
    position: relative;
}

.navbar {
    margin: 0;
    padding: 0;
    list-style: none;
}

.navItem {
    padding: 10px 15px;
    white-space: nowrap;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navItem a {
    color: var(--theme-black);
    text-decoration: none;
}

.navItem:hover {
    color: var(--theme-color);
}

.navItem:hover a {
    color: var(--theme-color);
}

.navIcon {
    display: none;
    font-size: 20px !important;
    color: var(--theme-white) !important;
    margin-left: 30px;
    line-height: 0px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.fa-bars {
    color: var(--theme-white);
}

.Close {
    display: none;
    /* background: linear-gradient(90deg, rgba(243, 67, 79, 1) 0%, rgb(245, 45, 58) 100%); */
    /* background: linear-gradient(90deg, rgb(184 93 245) 0%, rgb(245, 45, 58) 100%); */
    background-color: var(--theme-white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.serchBar[type=text] {
    /* width: 100%; */
    box-sizing: border-box;
    border: 2px solid var(--theme-ccc);
    /* border: 2px solid #b85cf4; */
    color: #111111;
    border-radius: 4px;
    font-size: 16px;
    background-color: transparent;
    background-image: url('../Game/search-solid.svg');
    background-position: 15px center;
    background-repeat: no-repeat;
    background-size: 15px;
    padding: 12px 7px 12px 50px;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    outline: none;
}


.MainHVR {
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    position: relative;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
}

.DataName {
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    position: absolute;
    left: 50%;
    bottom: -100%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 2;
}

.databg {
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    position: absolute;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 40%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    height: 50px;
    z-index: 1;
    opacity: 0;
}

.HvrIMG {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.MainHVR:hover .DataName {
    bottom: 8px;
}

.MainHVR:hover .databg {
    opacity: 1;
}

.MainHVR:hover {
    transform: scale(1.01869) translate(0px, -4px);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 8px 10px 0px;
    user-select: none;
}

.HvrGIF {
    overflow: auto;
}

/* Hide Play button + controls on iOS */
video::-webkit-media-controls {
    display: none !important;
}




.gameArea {
    height: 600px;
    overflow: hidden;
    background-color: #f3434e35;
    border: 2px dashed rgba(255, 255, 255, 0.1);
}

.optiomsBar {
    background-color: #fff
}

.barImg {
    height: 50px;
    width: 50px;
}


.cusBadge {
    padding: 4px 10px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border: 1px solid #515151;
    color: #515151;
    font-weight: normal;
    margin: 5px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.cusBadge:hover {
    /* border: 1px solid rgb(184 93 245); */
    border: 1px solid rgb(245, 45, 58);
    color: rgb(245, 45, 58);
    /* color: rgb(184 93 245); */
}

iframe{
    width: 100%;
    height: 100%;
}

.adBG{
    background-color: rgba(245, 45, 58, 0.1);
    border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-border-radius: 10px;
    border: 1px solid rgba(245, 45, 58, 0.3);
}

.adsenseDiv
{
width:100% !important;
}



.vertLine{
    border-left: 1px solid var(--theme-box-BG); 
    border-left: 2px solid var(--theme-box-BG);
    height: 100%;
    position: absolute;
    left: 50%;
    margin-left: -3px;
    top: 0;
    }
    .ovrHdn{
     position: relative;
    }
    .ContactUsSize{
    font-size: 16px;
    font-weight: 300;
    }
    
    .bgUser{
    background-image: url(/assets/images/user.svg);
    }
    .bgEmail{
    background-image: url(/assets/images/email.svg);
    }
    .bgCall{
    background-image: url(/assets/images/call.svg);
    }
    .ContactUsInput{
    box-sizing: border-box;
    border: 2px solid rgba(28, 28, 28, 1);
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
      background-color: rgba(71, 71, 71, 0.20);
      background-position-x: 96%;
      background-position-y: 15px;
      background-repeat: no-repeat;
      background-size: 15px;
      padding: 12px 52px 12px 20px;
      border-radius: 12px;
      outline: none;
      width: 100%;
      transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
    }
    
    .ContactUsInput:hover {border: 2px solid #474747;}
    .ContactUsInput:focus {border: 2px solid var(--theme-color);}
    .HeadBG{
      background: linear-gradient(90deg, rgba(184, 93, 245, 0.3) 0%, rgba(245, 45, 58, 0.3) 100%);
      padding: 10px;
      border-radius: 10px;
    }
    .AboutTxt{
     font-size: 16px;
     font-weight: lighter;
    }
  
  .form-errors{
    color: red
  }
  
/* Responsive Menu Styles */
.blackBG {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.blackBG.active {
  display: block;
}

.navbar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background: #1a1a1a;
  z-index: 1000;
  padding: 20px 0;
  overflow-y: auto;
  transition: left 0.3s ease;
}

.navbar.active {
  display: block;
  left: 0;
}

.navbar .Close {
  text-align: right;
  margin-bottom: 20px;
  cursor: pointer;
}

.navbar .nav {
  margin-bottom: 15px;
}

.navbar .navItem a {
  color: #333;
  text-decoration: none;
  display: block;
  padding: 10px 0;
}

.navbar .navItem a:hover {
  color: #de3f80;
}

.navIcon {
  cursor: pointer;
}

@media (min-width: 992px) {
  .navMedia {
    display: none;
  }
  
  .navbar {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    display: flex;
    align-items: center;
    padding: 0;
    left: auto;
    overflow: visible;
  }
  
  .navbar .Close {
    display: none;
  }
  
  .navbar .nav {
    margin: 0 15px;
  }
  
  .blackBG {
    display: none !important;
  }
}

/* Mobile and Tablet Navigation */
@media (max-width: 991px) {
    .navIcon {
        display: block !important;
        font-size: 20px !important;
        color: var(--theme-white) !important;
        margin-left: 30px;
        line-height: 0px;
        cursor: pointer;
    }

    .navMedia {
        display: block !important;
    }

    .navbar {
        display: none;
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        background: #1a1a1a;
        z-index: 1000;
        padding: 20px 0;
        overflow-y: auto;
        transition: left 0.3s ease;
    }

    .navbar.active {
        display: block;
        left: 0;
    }

    .navbar .nav {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
    }

    .navbar .nav:last-child {
        border-bottom: none;
    }

    .navbar .navItem {
        padding: 0;
        margin: 0;
    }

    .navbar .navItem a {
        color: #fff;
        display: flex;
        align-items: center;
        padding: 15px 20px;
        font-size: 15px;
        transition: all 0.3s ease;
        position: relative;
    }

    .navbar .navItem a:hover {
        color: rgb(245, 45, 58);
        background: rgba(255, 255, 255, 0.05);
    }

    /* Icons for menu items */
    .navbar .navItem a::before {
        content: '';
        width: 20px;
        height: 20px;
        margin-right: 15px;
        background-size: 20px;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0.7;
        filter: invert(1);
    }

    .navbar .nav:nth-child(2) .navItem a::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L2 12h3v8h6v-6h2v6h6v-8h3L12 2z'/%3E%3C/svg%3E");
    }

    .navbar .nav:nth-child(3) .navItem a::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z'/%3E%3C/svg%3E");
    }

    .navbar .nav:nth-child(4) .navItem a::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92-1.31-2.92-2.92-2.92z'/%3E%3C/svg%3E");
    }

    .navbar .nav:nth-child(5) .navItem a::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
    }

    .navbar .nav:nth-child(6) .navItem a::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E");
    }

    .navbar .nav:nth-child(7) .navItem a::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z'/%3E%3C/svg%3E");
    }

    .Close {
        display: block;
        text-align: right;
        padding: 15px 20px;
        margin-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .Close img {
        width: 20px;
        height: 20px;
        cursor: pointer;
        filter: invert(1);
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }

    .Close img:hover {
        opacity: 1;
    }

    

    .blackBG {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.75);
        z-index: 999;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }

    .blackBG.active {
        display: block;
    }
}

/* Desktop Navigation */
@media (min-width: 992px) {
    .navIcon {
        display: none !important;
    }

    .navMedia {
        display: none !important;
    }

    .navbar {
        display: flex !important;
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        overflow: visible;
        flex-direction: row;
        align-items: center;
        left: auto;
    }

    .navbar .nav {
        display: inline-block;
        margin: 0;
        border: none;
    }

    .navbar .navItem {
        padding: 0 15px;
    }

    .navbar .navItem a {
        color: var(--theme-black);
        padding: 10px 0;
        font-size: 16px;
        display: block;
        white-space: nowrap;
    }

    .navbar .navItem a:hover {
        color: rgb(245, 45, 58);
        background: none;
    }

    .navbar .navItem a::before {
        display: none;
    }

    .Close {
        display: none !important;
    }

    .blackBG {
        display: none !important;
    }

    .nav-wrapper {
        margin-left: 30px;
        display: flex;
        align-items: center;
    }
}

/* Additional Header Styles */
.logo-wrapper {
    display: block;
    max-width: 200px;
}

.nav-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 991px) {
    .header {
        padding: 10px 15px;
    }

    .logo-wrapper {
        max-width: 150px;
    }

    .nav-wrapper {
        position: static;
    }

    .navbar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .navbar.active {
        transform: translateX(0);
    }
}

@media (min-width: 992px) {
    .nav-wrapper {
        margin-left: 30px;
    }
}
  