/* body {
  background: -webkit-linear-gradient(left, #3084ca, #cb4561);
} */


/*==========================================Navbar part start============================================*/
.navbar {
  background: #ffffff;
  padding-top: 3px;
  padding-bottom: 3px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9999;
  transition: all linear 0.3s;
}
.nav-bg {
  /* background: rgb(233, 175, 188); */
  border-color: #080808;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
  animation: bg 1s;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99999;
}
@keyframes bg {
  from {
    top: -50px;
  }
  to {
    top: 0px;
  }
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: #a1968e;
}
.navbar .navbar-brand img {
  width: 130px;
}
.navbar-light .navbar-nav .nav-link {
  /* color: #3084ca; */
  color: black;
  font-size: 14px;
  text-transform: uppercase;
  font-family: msb;
  transition: all linear 0.3s;
  position: relative;
  display: inline-block;
}
.navbar-light .navbar-nav .nav-link:hover {
  color: #f35c00;
}
.navbar-light .navbar-nav .nav-link.active {
  color: #f35c00;
}
.navbar-light .navbar-nav .nav-link:after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background: #f35c00;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all linear 0.3s;
}
.navbar-light .navbar-nav .nav-link:hover::after {
  opacity: 1;
  width: 40%;
}
.navbar-light .navbar-nav .nav-link.active:after {
  opacity: 1;
  width: 40%;
}
.navbar-expand-lg .navbar-nav .nav-link {
  margin-left: 10px;
  margin-right: 10px;
}



.emp-profile {
  padding: 3%;
  margin-top: 9%;
  margin-bottom: 3%;
  border-radius: 0.5rem;
  background: #fff;
}
.emp-profile-again {
    padding: 3%;
    margin-top: 3%;
    margin-bottom: 3%;
    border-radius: 0.5rem;
    background: #fff;
  }
.profile-img {
  text-align: center;
}
.profile-img img {
  width: 70%;
  height: 100%;
}
.profile-img .file {
  position: relative;
  overflow: hidden;
  margin-top: -20%;
  width: 70%;
  border: none;
  border-radius: 0;
  font-size: 15px;
  background: #212529b8;
}
.profile-img .file input {
  position: absolute;
  opacity: 0;
  right: 0;
  top: 0;
}

.profile-edit-btn {
  border: none;
  border-radius: 1.5rem;
  width: 70%;
  padding: 2%;
  font-weight: 600;
  color: #6c757d;
  cursor: pointer;
}


/* Gallery start */
.gallery img{
    height: 100px;
    padding: 2px;
}

.gallery .ih-item img {
    width: 100%;
}

.gallery .ih-item.square.colored.effect6.from_top_and_bottom{
    position: relative;
    width: 100%;
    border: 1px solid #ffffff;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}
.gallery .ih-item.square.effect6 {
    overflow: hidden;
}

.gallery .ih-item.square.effect6 .img {
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    filter: grayscale(40%);
}

.gallery .ih-item.square.effect6 a:hover .img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    filter: grayscale(0);
}

/*   Gallery end   */