@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

/*New Navbar*/
/* First Navbar */
#first_nav
{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    z-index: 2;
    background-color: #001748;
    width: 100%;
    height: 50px;
    z-index: 3;
}
#first_nav .ship-to , #first_nav .Registration{
  color: #fff;
      display: flex;
    align-items: center;
    gap: 20px;
}
#first_nav .ship-to p{
  font-size: 16px;
  margin: 0
}
   /* Profile Dropdown Styles */
.profile-dropdown {
    display: inline-block;
    margin-left: 15px;
}

.profile-dropdown .dropdown-toggle {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.profile-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dropdown-menu {
    min-width: 200px;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
}

.dropdown-item {
    padding: 8px 20px;
    color: #333;
    font-size: 14px;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #000;
}

.dropdown-divider {
    margin: 5px 0;
}
/* First Navbar */

.wrapper{
  background: transparent;
  position: fixed;
  width: 100%;
  z-index: 2;
  margin: 50px 0 0 0;
  transition: all 0.3s ease 0s;
}
.header-fix , .header-fix2 {
  background: #fff !important;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}
.wrapper nav{
  position: relative;
  display: flex;
  max-width: calc(100% - 200px);
  margin: 0 auto;
  height: 70px;
  align-items: center;
  justify-content: space-between;
}
nav .content{
  display: flex;
  align-items: center;
}
nav .content .links{
  margin: 0;
  padding: 0;
  display: flex;
}
.content .logo
{
    display: flex;
    align-items: center;
}
.content .logo a{
  color: #fff !important;
  font-size: 25px;
  font-family: 't1';
  margin: 0;
  cursor: pointer;
  line-height: 41px;
}
.header-fix .content .logo a , .header-fix2 .content .logo a{
  color: #001748 !important;
}
#logo_img
{
    height: 53px;
    margin-top: 7px;
    float: left;
}
.content .links li{
  list-style: none;
  line-height: 70px;
}
.content .links li i{
  margin: 0 10px 0 0;
}
.content .links li a,
.content .links li label{
  position: relative;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 26px 17px;
  transition: all 0.3s ease;
}
.header-fix .content .links li a , .header-fix2 .content .links li a{
  color: #001748 !important;
}
.content .links li a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  left: 50%;
  position: absolute;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.header-fix .content .links li a:after , .header-fix2 .content .links li a:after{
  background-color: #001748;
}
.content .links li a:hover:after {
  width: 100%;
  left: 0;
}

.content .links li label{
  display: none;
}

.wrapper .search-icon,
.wrapper .menu-icon{
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  line-height: 70px;
  width: 70px;
  text-align: center;
  margin: 0;
}
.header-fix .search-icon , .header-fix2 .search-icon
.header-fix .menu-icon , .header-fix2 .menu-icon{
  color: #001748;
}
.wrapper .menu-icon{
  display: none;
}
.wrapper #show-search:checked ~ .search-icon i::before{
  content: "\f00d";
}

.wrapper .search-box{
  position: absolute;
  height: 100%;
  max-width: calc(100% - 50px);
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.wrapper #show-search:checked ~ .search-box{
  opacity: 1;
  pointer-events: auto;
}
.search-box input{
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 17px;
  color: #001748;
  background: #ffffff;
  padding: 0 100px 0 15px;
}
.search-box input::placeholder{
  color: #001748;
}
.search-box .go-icon{
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 60px;
  width: 70px;
  background: #fff;
  border: none;
  outline: none;
  color: #001748;
  font-size: 20px;
  cursor: pointer;
}
.wrapper input[type="checkbox"]{
  display: none;
}

/* Dropdown Menu code start */
.content .links ul{
  position: absolute;
  background: #0b2150e0; /*#171c24*/
  padding: 0;
  top: 80px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
.header-fix .content .links ul , .header-fix2 .content .links ul{
  background-color: #fff;
}

.content .links li:hover > ul{

  top: 70px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}
.content .links ul li a{
  display: block;
  width: 100%;
  line-height: 30px;
  border-radius: 0px!important;
}
.content .links ul ul{
  position: absolute;
  top: 0;
  right: calc(-100% + 8px);
}
.content .links ul li{
  position: relative;
}
.content .links ul li:hover ul{
  top: 0;
}
.content .links ul label{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Responsive code start */
@media screen and (max-width: 1250px){
  .wrapper nav{
    max-width: 100%;
    padding: 0 20px;
  }
  nav .content .links{
    margin-left: 0;
  }
  .content .links li a{
    padding: 26px 13px;
  }
  .wrapper .search-box{
    max-width: calc(100% - 100px);
  }
  .wrapper .search-box input{
    padding: 0 100px 0 15px;
  }
}

@media screen and (max-width: 900px){
  .wrapper{
    background:#001748 ;
  }
  .wrapper .menu-icon{
    display: block;
  }
  .header-fix .menu-icon{
    color: #14181f !important;
  }
  .header-fix .content .links li a, .header-fix2 .content .links li a {
    color: #ffffff !important;
}
.header-fix .content .links ul, .header-fix2 .content .links ul {
    background-color: #001748;
}
  .wrapper #show-menu:checked ~ .menu-icon i::before{
    content: "\f00d";
  }
  nav .content .links{
    display: block;
    position: fixed;
    background: #14181f;
    height: 100%;
    width: 100%;
    top: 110px;
    left: -100%;
    margin-left: 0;
    padding: 0;
    max-width: 350px;
    overflow-y: auto;
    transition: all 0.3s ease;
  }
  nav #show-menu:checked ~ .content .links{
    left: 0%;
  }
  .content .links li{
    margin: 15px 20px;
  }
  .content .links li a,
  .content .links li label{
    line-height: 40px;
    font-size: 20px;
    display: block;
    padding: 8px 18px;
    cursor: pointer;
  }
  .content .links li label{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .content .links li a.desktop-link{
    display: none;
  }

  /* dropdown responsive code start */
  .content .links ul,
  .content .links ul ul{
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    max-height: 0px;
    overflow: hidden;
  }
  .content .links #show-features:checked ~ ul,
  .content .links #show-services:checked ~ ul,
  .content .links #show-items:checked ~ ul{
    max-height: 100vh;
  }
  .content .links ul li{
    margin: 7px 20px;
  }
  .content .links ul li a{
    font-size: 18px;
    line-height: 30px;
    border-radius: 5px!important;
  }
}

@media screen and (max-width: 400px){
  .wrapper nav{
    padding: 0 10px;
  }
  .content .logo a{
    font-size: 20px;
  }
  .wrapper .search-box{
    max-width: calc(100% - 70px);
  }
  .wrapper .search-box .go-icon{
    width: 30px;
    right: 0;
  }
  .wrapper .search-box input{
    padding-right: 30px;
  }
}

.dummy-text{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  z-index: -1;
  padding: 0 20px;
  text-align: center;
  transform: translate(-50%, -50%);
}
.dummy-text h2{
  font-size: 45px;
  margin: 5px 0;
}
