h1,
h2,
h3,
h4,
h5,
h6,
span,
div {
  font-family: 'Roboto Slab', serif;
}

.team_listings {
  padding: 3rem 0;
}

.team_listings ul {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.team_listings ul li {
  width: 23%;
  background: #ffff;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  margin: 10px;
  -webkit-box-shadow: -1px 0px 10px #00000014;
          box-shadow: -1px 0px 10px #00000014;
  border-radius: 10px;
  -webkit-transition: all .4s;
  transition: all .4s;
  position: relative;
}

.team_listings ul li:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.team_listings ul li:hover .content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.team_listings ul li img {
  width: 100%;
  height: auto;
}

.team_listings ul li .content {
  position: absolute;
  background: #f39d50f2;
  width: 100%;
  height: 100%;
  padding: 13px;
  overflow-y: scroll;
  -webkit-transition: all .4s;
  transition: all .4s;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.team_listings ul li h4 {
  margin: 10px 0;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 1px;
  line-height: 25px;
}

.team_listings ul li p {
  text-align: center;
  margin: 0;
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 25px;
  color: #000;
  font-weight: 700;
}

.bread_crumb {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  height: 500px !important;
  background-size: cover !important;
  background-position: center !important;
  padding: 50px;
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.bread_crumb::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .5;
}

.bread_crumb h4, .bread_crumb p {
  font-size: 40px;
  color: #fff;
  width: 70%;
  font-weight: 400;
  letter-spacing: 1px;
  font-family: 'Roboto Slab', serif;
  text-transform: capitalize;
  line-height: 50px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.bread_crumb p {
  font-size: 16px;
  line-height: 30px;
}

.main-container {
  padding: 2rem 0;
  text-align: left;
}

.main-container .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-container .container .left_main {
  width: 48%;
}

.main-container .container .left_main h4 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 2.3rem;
}

.main-container .container .left_main p {
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 500;
  line-height: 26px;
}

.main-container .container .right_main {
  width: 48%;
  padding: 10px;
}

.main-container .container .right_main img {
  width: 100%;
  border-radius: 10px;
}

.blockquote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.blockquote h4 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 2.8rem;
  text-align: center;
}

.blockquote p {
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 500;
  line-height: 26px;
  width: 80%;
  margin: 2px auto;
  text-align: center;
}

.bg_white {
  background: #fff !important;
  padding: 2rem 0;
}

@media only screen and (max-width: 768px) {
  .team_listings ul li {
    width: 100% !important;
  }
  .team_listings ul li .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .main-container .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main-container .container .left_main, .main-container .container .right_main {
    width: 100% !important;
  }
  .main-container .container .left_main h4, .main-container .container .right_main h4 {
    line-height: 2rem;
  }
  .main-container .container .left_main p, .main-container .container .right_main p {
    width: 100%;
  }
  .blockquote {
    padding: 10px;
  }
  .blockquote h4 {
    line-height: 2rem;
  }
  .blockquote p {
    width: 100%;
  }
  #training {
    padding: 10px !important;
  }
  #training h4 {
    line-height: 2rem;
  }
  #training p {
    width: 100%;
  }
}
/*# sourceMappingURL=style-v2.css.map */