@font-face {
    font-family: 'RoReg';
    src: url('../../fonts/Roboto-Regular.ttf');
}

@font-face {
    font-family: 'RoLight';
    src: url('../../fonts/Roboto-Light.ttf');
}

@font-face {
    font-family: 'RoMed';
    src: url('../../fonts/Roboto-Medium.ttf');
}

@font-face {
    font-family: 'RoBold';
    src: url('../../fonts/Roboto-Bold.ttf');
}

.auth-nav-container {
  /* padding: 0.5rem 2rem; */
  /* padding: 1.3rem 2rem; */ 
  padding: 2rem 1rem 0.8rem 1rem;
}

.pre-nav {
  background-color: #fff !important;
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.025) !important; */
}

.navbar-logo img {
  position: absolute;
  top: 16px;
  left: 77px;
  height: 100px;
  width: auto;
  z-index: 10;
}

.row {
  margin: 0;
}

.nav-main-links {
  gap: 50px;
}


.nav-login-button {
  position: relative;
  background: linear-gradient(to right, #f12711, #f5af19);
  color: #ffffff;
  border: 1px solid #f97316;
  padding: 0.6rem 1.9rem;
  border-radius: 7px;
  font-weight: 500;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  font-family: RoReg;
}

.nav-login-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0%;
  height: 100%;
  background: #fff;
  transition: all 0.4s ease;
  transform: translateX(-50%);
  z-index: -1;
}

.nav-login-button:hover::before {
  width: 120%;
}

.nav-login-button:hover {
  color: #000;
}

/* my  */
.nav-click-to-refer-btn {
  position: relative;
  background-color: #fff;
  color: #000;
  border: 1px solid #f97316;
  padding: 0.6rem 1.2rem;
  border-radius: 7px;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  font-family: RoReg;
}

.nav-click-to-refer-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, #f12711, #f5af19);
  transition: all 0.4s ease;
  transform: translateX(-50%);
  z-index: -1;
}

.nav-click-to-refer-btn:hover::before {
  width: 120%;
}

.nav-click-to-refer-btn:hover {
  color: #fff;
}
.nav-click-to-refer-btn img {
  width: 1rem;
  margin-right: 2px;
  transition: 0.4s ease;
  filter: brightness(0) saturate(100%)
            invert(56%) sepia(85%) saturate(1200%)
            hue-rotate(350deg) brightness(100%) contrast(100%);
}

.nav-click-to-refer-btn:hover img {
  filter: brightness(0) invert(1);
}
.nav-links {
  color: #000;
  font-weight: 500;
  text-decoration: none;
  font-size: 17.5px;
  /* font-family: sans-serif; */
  font-family: RoReg;
}

.nav-links:hover {
  color: #000;
  border-bottom: 2px solid #f12711;
}

.nav-links.active {
  color: #000;
  font-weight: 600;
  border-bottom: 2px solid #f12711;
  transition: all 0.4s ease;
}
.click-refer-txt-nav a{ 
  /* color: #000 !important; */
  display: none;
}
.click-refer-txt-nav img{ 
  width: 1rem;
  margin-right: 5px;
}
.collapse-nav-custom {
  background-color: #eef2f4;
}

@media (max-width: 1200px) {
  .nav-click-to-refer-btn { 
    padding: 0.5rem 0.5rem;
   }
}
@media (max-width: 1120px) {
   .nav-main-links .nav-links{
    font-size: 15px;
   }
   .nav-main-links {
     gap: 26px;
   }
}

@media (max-width: 991px) {
  .nav-main-links {
    display: none !important;
    /* Forces it to apply */
  }
   .navbar-logo img {
        position: static !important;  
        height: 70px;                 
        width: auto;
        margin-left: 10px;
    }
}

/* @media (max-width: 767px) { 
} */

@media (max-width: 600px) {
    .auth-nav-container {
        padding: 0.8rem 1rem;
    }
    
    .nav-login-button {
        padding: 0.5rem 1rem;
        /* margin-right: 0.8rem; */
    }
}

/* @media (max-width: 575px) {
    } */

    @media (max-width: 500px) {
        .nav-login-button {
            padding: 0.5rem 1rem;
            font-size: 12px;
        }
        .nav-click-to-refer-btn { 
          display: none;
        }
        .click-refer-txt-nav a{ 
          display: block;
        }
    }
    
    @media (max-width: 425px) {
      .navbar-logo img {
        height: 40px;
      }
    }
    
    
    