* {
  margin: 0;
  padding: 0;
  outline: 0;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul,
ol {
  list-style-type: none;
}
img {
  vertical-align: middle;
  border: 0;
}
@font-face {
  src: url(../fonts/Montserrat-SemiBold.ttf);
  font-family: msb;
}
@font-face {
  src: url(../fonts/Cardo-Regular.ttf);
  font-family: cr;
}
@font-face {
  src: url(../fonts/OpenSans-Regular.ttf);
  font-family: osr;
}
@font-face {
  src: url(../fonts/Montserrat-Bold.ttf);
  font-family: mb;
}
@font-face {
  src: url(../fonts/Montserrat-Regular.ttf);
  font-family: mr;
}
@font-face {
  src: url(../fonts/OpenSans-Bold.ttf);
  font-family: osb;
}
@font-face {
  src: url(../fonts/OpenSans-SemiBold.ttf);
  font-family: ossb;
}
@font-face {
  src: url(../fonts/Montserrat-Medium.ttf);
  font-family: mm;
}
/*==========================================Navbar part start============================================*/
.navbar {
  background: #f5f5f5;
  padding-top: 4px;
  padding-bottom: 4px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9999;
  transition: all linear 0.3s;
}
.nav-bg {
  /* background: rgb(233, 175, 188); */
  background: #fff;
  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;
}
  

  /*==========================================Male/Female Featured part start===============================*/
  #maleFeatured{
    padding-top: 20px;
    padding-bottom: 50px;
  }
  #maleFeatured .team-row .team-member a.btn{
    background: transparent;
    border-color: #ff8133;
    margin-top: -5px;
    margin-bottom: 15px;
    color: #ff8133;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-family: ossb;
    transition: all linear .3s;
  }
  #maleFeatured .team-row .team-member a.btn:hover{
    background: #ff8133;
    color: #fff;
  }

.team-wrap{
    margin-top: 50px;
}
  
  .team-img img {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    overflow: hidden;
    width: 100%;
    transform: scale(1.05);
    transition: all linear 0.3s;
    cursor: pointer;
    height: 220px;
  }
  
  .team-member {
    border: 1px solid rgba(102, 102, 102, 0.22);
  }
  .team-member,
  .team-img {
    position: relative;
    overflow: hidden;
  }
  
  .team-title {
    margin: 10px 0 7px;
    font-size: 20px;
    font-family: msb;
    color: #444;
  }
  .designation {
    font-family: osr;
    font-size: 15px;
    color: #666;
  }
  
  .overlay {
    background-color: rgba(20, 20, 20, 0.7);
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  
  .team-details {
    opacity: 0;
    position: absolute;
    top: 45%;
    right: 0;
    padding: 5px;
    overflow: hidden;
    width: 100%;
    z-index: 2;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  
  .team-img:hover .team-details {
    opacity: 1;
    margin-top: -80px;
    margin-bottom: 20px;
  }
  
  .team-img:hover .overlay {
    opacity: 1;
    width: 60px;
  }
  .team-img:hover img {
    transform: scale(1);
  }
  
  .socials a {
    display: inline-block;
    width: 37px;
    height: 37px;
    background-color: transparent;
    margin: 5px;
  }
  
  .socials i {
    line-height: 37px;
    color: #616161;
    font-size: 18px;
    width: 37px;
    height: 37px;
    border-radius: 50%;
    text-align: center;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  
  .team-details .socials i {
    color: #fff;
  }
  
  .socials a:hover i {
    color: #fff;
    background-color: #f35c00;
  }