@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body{
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
}


.header_section{
  display: flex;
  /*justify-content: space-between;*/
  margin: 15px auto 15px auto;
}

.search_btn_container{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 16%;
}
.search_btn_container i{
  font-size: 18px;
}

.links_cont1{
  display: flex;
  justify-content: space-between;
  width: 26%;
  align-items: center;
}
.links_cont1 a{
  color: black;
  position: relative;
  font-size: 15px;
}
.links_cont1 a:hover::after{
  position: absolute;
  content: "";
  bottom: 0px;
  background: black;
  height: 2px;
  width: 100%;
  border-radius: 50%;
  display: block;
  animation: link_bottom_animation 0.3s;
}

@keyframes link_bottom_animation {
  from {width: 0px;}
  to {width: 100%;}
}

.logo_cont{
  width: 16%;
  justify-content: center;
  text-align: center;
}
.logo_cont img{
  width: 50%;
}


.links_cont2{
  display: flex;
  justify-content: space-between;
  width: 26%;
  align-items: center;
}
.links_cont2 a{
  color: black;
  position: relative;
  font-size: 15px;
}
.links_cont2 a:hover::after{
  position: absolute;
  content: "";
  bottom: 0px;
  background: black;
  height: 2px;
  width: 100%;
  border-radius: 50%;
  display: block;
  animation: link_bottom_animation 0.3s;
}

.links_cont3{
  display: flex;
  justify-content: flex-end;
  width: 16%;
}

.links_cont3 img{
  width: 20px;
  margin-left: 15px;
  cursor: pointer;
}

#gift_link{
  position: relative;
}

#gift_link::before{
  position: absolute;
  top: -5px;
  right: 0px;
  content: "";
  display: block;
  background: #FF9898;
  border-radius: 20px;
  width: 8px;
  height: 8px;
  z-index: 9999;
}




/*<!-------------------------------------------------Icons------------------------------------------------------->*/
.icons_container{
  width: 15%;
  display: flex;
  justify-content: flex-start;
}
.icons_container img{
  width: 15%;
  height: 30%;
  margin: 0px 7px 0px 7px;
  transform: translateY(120%);
  cursor: pointer;
}
/*.icons_container img:hover{
  animation: icon_animation 0.5s;
}

@keyframes icon_animation {
  from {transform: scale(1);}
  to {transform: scale(1.1);}
}*/


/*<!-------------------------------------------------Icons Ends------------------------------------------------------->*/



/*********************************************************MOBILE HEADER**************************************************/
.mobile_header{
  display: none;
}
.mobile_nav{
  display: flex;
  justify-content: space-between;
}
.collapse_btn_containter{
  width: 30%;
  display: flex;
  justify-content: flex-start;
}
.openbtn {
    font-size: 20px;
    cursor: pointer;
    background: none;
    color: black;
    border: none;
  }
.mobile_logo_container{
  width: 40%;
  display: flex;justify-content: center;
  align-items: center;
}
.mobile_logo_container img{
  width: 50%;
}
.mobile_nav_icons_container{
  width: 30%;
  display: flex;
  justify-content: flex-end;
}
.mobile_nav_icons_container img{
  transform: translateY(130%);
  height: 30%;
  width: 20%;
  margin: 0px 7px 0px 7px;
}
/***********************************************************************************************************/
/*<!-------------------------------------------------SIDEBAR------------------------------------------------------->*/
.sidebar_logo{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -15% 10px 0% 10px;
}
.sidebar_logo img{
  width: 40%;
}

.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #FF9898;
    overflow-x: hidden;
    transition: 0.2s;
    padding-top: 60px;
    font-family: 'Poppins', sans-serif;
  }

  .nav_ul_siderbar{
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0px;
  }
  .nav_li_siderbar{
    text-decoration: none;
    font-size: 14px;
    color: black;
    display: block;
    transition: 0.3s;
    white-space: nowrap;
    margin: 10px;
    position: relative;
  }
  .icon_mob_sidebar{
    position: absolute;
    right: 30px;
  }

   .nav_li_siderbar a{
    text-decoration: none;
    color: black;
    padding: 5px 30px 5px 30px;
    border-radius: 100px;
    border: 2px solid transparent;
    transition: 1s;
  }
  
  
  .sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 20px;
    font-size: 32px;
    margin-left: 50px;
    color: black;
  }
  
/*<!---------------------Mobile Dropdowns-------------------------->*/

/*.dropdown_mob{
  list-style: none;
  padding: 0px;
  display: none;
  font-size: 14px;
}
.nav_li_siderbar:hover > .dropdown_mob{
  display: block;
  animation: ani 1s;
}

@keyframes ani {
  from {opacity: 0.3;}
  to {opacity: 1;}
}*/
/* width */

/*<!----------------------------------------------->*/


/*<!----------------------------------Custom Scrollbar----------------------------------------->*/

/*.sidebar::-webkit-scrollbar {
  width: 8px;
}

.sidebar::-webkit-scrollbar-track {
  background: black;
}

.sidebar::-webkit-scrollbar-thumb {
  background: red;
  border-radius: 200px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background: green;
}*/

/*<!--------------------------------------------------------------------------------------------------------------->*/

  /*<!--------------------------------------------------------------------------------------------------------------->*/



@media screen and (max-width: 1023px) {
  .mobile_header{
    display: block;
  }
  .desktop_header{
    display: none;
  }
}
  
  
 


