/* Job Module css start */
.mts-job{
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  overflow: hidden;
}
.mts-job img.job-img{
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.mts-job .job-excerpt{
  padding: 6px 10px 15px 15px;
}
.mts-job .job-excerpt h3{
  font-size: 18px;
  font-weight: 600;
}
.mts-job .job-excerpt .job-description{
  font-size: 14px;
}
/* Job Module css end */

/* Slider Module css start  */
.mt_inner_slide_module{
  margin-left: 15px;
  margin-right: 15px;
}
.mt-inner-slide{
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  overflow: hidden;
  margin-bottom: 15px;
}
.mt-inner-slide img.slide-img{
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.mt-inner-slide .slide-excerpt{
  padding: 20px 20px 20px 20px;
}
.mt-inner-slide .slide-excerpt h3{
  font-size: 18px;
  font-weight: 600;
}
.mt-inner-slide .slide-excerpt .slide-description{
  font-size: 14px;
}
/* Slider Module css end */

/* Team Module css start */
.mt-team {
  width: 100%;
  height: 530px;
  cursor: pointer;
  background-color: white;
  border-radius: 15px;
  padding-top: 30px;
  padding-right: 14px;
  padding-left: 14px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.3, 0, 0.3, 1);
  border-bottom: 0.1px solid black;
}
.mt-team .team-heading::before {
  margin: 0;
  content: "";
  display: block;
  width: 800px;
  height: 800px;
  transform: scale(0);
  transition: all 0.4s cubic-bezier(0.3, 0, 0.3, 1);
  background: #dddddd;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  margin-top: -400px;
  margin-left: -400px;
}
.mt-team:hover .team-heading::before {
  transform: scale(1);
}
.mt-team .team-heading h3 {
  font-size: 28px;
  line-height: 30px;
  color: #e74c3c;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.mt-team .team-sub-heading p {
  font-size: 15px;
  color: #151515;
  position: relative;
  z-index: 1;
}
.mt-team .wrapper-img-section {
  width: 90%;
  text-align: center;
  height: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}
.mt-team .wrapper-img-section img {
  width: 100%;
  height: auto;
  filter: grayscale(1);
  transition: all 0.4s cubic-bezier(0.3, 0, 0.3, 1);
}
.mt-team:hover img {
  filter: grayscale(0);
  transform: scale(1.1);
}
.mt-team .team-character {
  position: absolute;
  font-size: 160px;
  line-height: 110px;
  color: #fff;
  text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000;
  font-weight: 700;
  right: 0;
  bottom: 0;
  font-family: "Epilogue", Sans-serif;
}
.mt-team:hover .team-character {
  color: #e74c3c;
}

/* Team Module css end  */