 /*             =====================       Navigation      ==================                  */
 header {
   width: 100%;
   position: fixed;
   height: fit-content;
   display: block;
   top: 0;
   left: 0;
   z-index: 2;
 }

 /* =====    The Social Header ===== */
 .social-header {
   width: 100%;
   height: 50px;
   display: flex;
   justify-content: left;
   align-items: center;
   border-bottom: 3px solid #E42D11;
   background-color: #131213;
 }

 .social-header .item {
   gap: 5px;
   margin-left: 10px;
 }


 .social-header .item>.name * {
   text-decoration: none;
 }

 /* =====    The Main Header ===== */
 .main-header {
   width: 100%;
   height: 80px;
   /* background-color: grey; */
   display: flex;
   align-items: center;
   gap: 20px;
   justify-content: space-between;
   padding: 0px 10px;
   background-color: rgba(0, 0, 0, 0.5);

 } header.normal .main-header{
  background-color:#E3E0D7!important;
 } header.normal a:not(.contact-us) *{
  color:black!important;
 } header.normal ~ main{
  margin-top: 120px!important;
 }

 .header-logo {
   width: fit-content;
 }

 .header-logo img {
   height: 70px;
 }

 .sidenav-toggler {
   font-weight: bolder;
   font-size: 17px;
   display: none;
   cursor: pointer;
 }

 nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 10px;
 }

 .nav-logo {
   display: none;
 }

 .nav-logo img {
   width: 100px;
 }

 .main-nav {
   width: fit-content;
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
 }

 .main-nav a {
   text-align: center;
   text-transform: capitalize;
   margin: 5px 15px;

 }

 .main-nav .name {
   font-size: 18px;
   text-align: center;
 }

 .main-nav .underline {
   border: 0.01px inset white;
   transform: translateX(-20px);
   opacity: 0;

 }

 .main-nav a:hover {
   translate: -10px -10px;
 }

 .main-nav a:hover>.underline {
   transform: translateX(0);
   opacity: 1;
 }

 /*  =====   Control Nav ===== */
 .control-nav {
   width: fit-content;
   display: flex;
   gap: 10px;
   align-items: center;
 }

 .control-nav a {
   display: flex;
   gap: 5px;
   white-space: nowrap;
   align-items: center
 }

 a.contact-us {
   width: fit-content;
   padding: 10px 15px;
   background: #E42D11
 }

 .open-site-search {
   cursor: pointer;
 }

 .main-header .name {}

 .main-header *[class*="ri-"] {
   font-size: 20px;
 }

 .user-account-container {
   position: relative;
 }

 .user-account-menu-toggler {
   width: 30px;
   height: 30px;
   border-radius: 50%;
   background: transparent;
   border: none;
   outline: none;
   background-color: royalblue
 }

 .user-account-menu {
   width: fit-content;
   padding: 30px;
   background: #E3E0D7;
   position: absolute;
   top: 65px;
   right: -5px;
   font-size: 13px;
   transform: translateX(calc(100% + 15px));
 }

 .user-account-menu.active {
   transform: translateX(0px);
 }




 /* ===  colors  === */
 .social-header .item>.icon {
   color: white;
 }

 .social-header .item>.name * {
   color: grey;
 }

 .sidenav-toggler {
   color: white;
 }

 .main-header *[class*="ri-"] {
   color: white;
 }

 .main-header .name {
   color: white
 }

 .main-nav .name {
   color: white;
 }

 .open-site-search {
   color: white
 }

 .user-account-menu * {
   color: black !important;
 }





 .user-account-menu-toggler {
   color: white
 }


 /* .scroll-to-top-btn {
   width: 30px;
   height: 30px;
   border-radius: 50%;
   background: white;
   position: fixed;
   bottom: 10px;
   right: 10px;
   text-align: center;
   display: flex;
   align-items: center;
   justify-content: center;
   border: none;
   outline: none;
   cursor: pointer;
   z-index: 2;
   border: 2px solid orangered;
   transform:translateX(100px);
 }.scroll-to-top-btn.active{
  transform: translateX(0);
 }

 .scroll-to-top-btn>* {
   font-size: 18px;
   color:orangered
 }

  header.scroll-active {
   background-color: #F2F4F7;
   /* background-color: white; */
   /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
 /* } */

 header.scroll-active * {
   color: #383838 !important
 }

 .social-header.scroll-active {
   margin-top: -50px;
 }

 .main-header.scroll-active {
   background-color: transparent;
 } 

 img{
  width: 100%;
 }