/* ...................................................buttom-nav........................................................................ */
.sarmila_button_navber {
  width: 100%;
  justify-items: center;
  box-shadow: 5px 5px 15px gray;
  background-color: #FFFFFF;
  font-family: 'Poppins', sans-serif; 
}
.sarmila_button_navber .cotainer{
  width: 100%;
  justify-items: center;
  box-shadow: 5px 5px 15px gray;
  background-color: #FFFFFF;
}
.navbar {
  width: 90%;
  display: flex;
  justify-content: space-between;
  padding: 0;
}

.navbar .navbar_left {
  width: 250px;
  height: 80px;
}

.navbar .navbar_left img {
  width: 100%;
  height: 100%;
}
.navbar .menuall{
  align-content: center;
  height: 80px;
}
.navbar .menuall .list {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .menuall .list .aa {
  height: 100%;
  margin: 0px 8px;
  list-style: none;
  position: relative;
  align-content: center;
}

.navbar .menuall .list .aa .aaa {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
}

.navbar .menuall .list .aa:hover .aaa {
  color: #F15A22;
}

.navbar .menuall .list .aa a {
  text-decoration: none;
  /* color: #1C3F94; */
   color:#0b7e9b;
}

.navbar .menuall .list .aa::before {
  content: " ";
  height: 3px;
  width: 0;
  background: #F15A22;
  position: absolute;
  left: 0;
  top: 54px;
  transition: 0.5s;
}

.navbar .menuall .list .aa:hover::before {
  width: 100%;
}

.navbar .menuall .list .aa .list1 {
  list-style-type: none;
  display: none;
  width: 240px;
  position: absolute;
  background-color: #FFFFFF;
  color: #333333;
  border: 1px solid #ccc;
  top: 79px;
  z-index: 200;
  padding: 0;
}

.navbar .menuall .list .aa .list1 li {
  padding: 12px;
  border-bottom: 1px solid #ddd;
  transition: all 0.4s;
}

.navbar .menuall .list .aa .list1 li a {
  display: inline-block;
  text-decoration: none;
  height: 20px;
  text-transform: capitalize;
  transition: all 0.5s;
  color: #1C3F94;
}

.navbar .menuall .list .aa .list1 li:hover {
  /* background-color: #1C3F94; */
   background: linear-gradient(#0b7e9b, #084252);
  cursor: pointer;
}

.navbar .menuall .list .aa .list1 li:hover a {
  color: #FFFFFF;
  margin-left: 6px;
}

.navbar .menuall .list .aa:hover .list1 {
  display: block;
}

.navbar .navbar_right {
  width: 230px;
  height: auto;
}

.navbar .navbar_right .navbar_right_list {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .navbar_right .navbar_right_list .seach_icon {
  border: 1px solid rgba(28, 63, 148, 0.3);
  width: 40px;
  height: 40px;
  align-content: center;
  text-align: center;
  border-radius: 50%;
  color: #1C3F94;
  cursor: pointer;
}

.navbar .navbar_right .navbar_right_list .admition {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 30px;
  background-color: #F15A22;
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 4px 4px 4px 15px;
  display: flex;
  align-items: center;
}

.navbar .navbar_right .navbar_right_list .admition i {
  margin-left: 10px;
  transition: all 0.5s ease-in-out;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #F9B233;
  color: white;
  text-align: center;
  align-content: center;
  cursor: pointer;
}

.navbar .navbar_right .navbar_right_list .admition::before {
  content: "";
  position: absolute;
  height: 100%;
  bottom: 0;
  left: 0;
  width: 0;
  /* background-color: #1C3F94; */
   background: linear-gradient(#0b7e9b, #084252);
  z-index: -1;
  transition: all 0.6s ease-out;
}

.navbar .navbar_right .navbar_right_list .admition:hover::before {
  width: 100%;
  cursor: pointer;
}

.navbar .navbar_right .navbar_right_list .admition:hover i {
  background-color: #FFFFFF;
  color: #1C3F94;

}
.navbardoublicate{
 display: none !important;
}