 * {

     margin: 0;

     padding: 0;

     box-sizing: border-box;

 }


 :root {
     --white-color: #fff;
     --gray-color: #adadad;
 }




 .somnath-topnav-main {

     width: 100%;

     height: 40px;

     background: linear-gradient(376deg, #033053, #1679c5);

     display: flex;

     justify-content: space-between;

     align-items: center;

     padding: 0px 30px;

     flex-wrap: wrap;

     z-index: 8;


 }



 .topnav-left-address {

     width: auto;

     height: auto;

     display: flex;

     align-items: center;

     gap: 10px;

 }



 .topnav-left-address .icon {

     color: var(--white-color);

     font-size: 17px;

 }



 .topnav-left-address .address-link {

     font-size: 15px;

     color: var(--white-color);

     text-decoration: none;

     border-bottom: 1px dashed var(--gray-color);

     transition: 0.3s ease;

 }



 .topnav-right {

     display: flex;

     align-items: center;

     gap: 10px;

 }



 .topnav-right a {

     color: var(--white-color);

     text-decoration: none;

     transition: 0.3s;

     font-size: 15px;

 }




 .topnav-right .topnav-right-dot {

     color: var(--white-color);

 }