.main-wrapper {
  scroll-behavior: smooth;
}
/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
}

#sched-intro {
  width: 100%;
  position: relative;
  background: url("../img/intro-bg.png") center bottom no-repeat;
  background-size: cover;
  padding: 200px 0 120px 0;
}

#sched-intro .intro-info {
    width: 50%;
    float: left;
}

#sched-intro .intro-info h2 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}

#sched-intro .intro-info h3 {
  color: #ffe;
  font-size: 36px;
  font-weight: 300;
  text-align: center;
}

.hero-container {
    height: 100%;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/*--------------------------------------------------------------
# Showcase Section
--------------------------------------------------------------*/
#showcase {
  background: #fff;
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.showcase-grid {
  display: flex;
  flex-flow: row wrap;
  gap: 24px;
  justify-content: center;
}

.showcase-item {
  flex: 1 1 calc(33.333% - 24px);
  max-width: calc(33.333% - 24px);
  padding: 24px;
  text-align: center;
}

@media (max-width: 992px) {
  .showcase-item {
    flex: 1 1 calc(50% - 24px);
    max-width: calc(50% - 24px);
  }
}

@media (max-width: 600px) {
  .showcase-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.showcase-item ion-icon {
  font-size: 32px;
  color: #0056ff;
  margin-bottom: 12px;
  padding: 0 0 30px 0;
}

.showcase-item .title {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.showcase-item .description {
  font-size: 15px;
  color: #555;
}

.icon-box {
  visibility: visible;
}

.fadeInUp {
}

/*--------------------------------------------------------------
# Team Profiles 
--------------------------------------------------------------*/
.cta-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid #fff;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: all 0.25s ease;
}

.cta-btn:hover {
  background-color: #0056ff;
  color: white;
  transform: translateY(-2px);
}

#scheduling {
  background: #ecf5ff;
  padding: 60px 0;
}
/* .profile-card:hover .card-body{ */
/*   background-position: 0% 0%; */
/* } */

#team-profiles {
  display: flex;
  justify-content: space-evenly;
}


.profiles-container {
  flex-flow: row wrap;
  justify-content: space-evenly;
}
.profile-card .card-body {
  height: 476px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  /* background: linear-gradient(180deg, #67bed9 0%,  #f0f9fb 100%); */
  /* background-size: 100% 200%; */
  /* background-position: 0% 100%; */
  /* transition: background-position 0.8s ease; */
}

.profile-card .profile-top {
  transition: transform 0.5s ease, opacity 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-card .profile-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  transition: opacity 0.5s ease, max-height 0.4s ease, max-width 0.4s ease;
  max-height: 300px;
  max-width: 300px;
}

.profile-card .profile-name,
.profile-card .profile-title {
  transition: transform 0.5s ease;
}

.profile-card .bio-container {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.profile-card .profile-bio {
  max-height: 0;
  opacity: 0;
  overflow: scroll;
  scrollbar-width: none;
  transition: max-height 0.6s ease, opacity 0.6s ease;
}
.profile-card .profile-bio::-webkit-scrollbar {
  display: none;
}

.profile-card:hover .profile-img {
  opacity: 0;
  max-height: 0;
  max-width: 0;
  margin-bottom: 0 !important;
}

.profile-card:hover .profile-top {
  transform: translateY(-15px);
  padding-top: 15px;
}

.profile-card:hover .profile-bio {
  max-height: 300px;
  opacity: 1;
}

.inner-skew {
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    padding: 0px;
    transform: skew(0deg, 13deg);
    font-size: 0px;
    margin: 30px 0px 0px 0px;
    background: #c8c2c2;
    height: 250px;
    width: 200px;
}

.booking-btn {
  display: inline-block;
  padding: 0.375rem 0.75rem;   /* SAME as Bootstrap */
  font-size: 1rem;             /* SAME as Bootstrap */
  line-height: 1.5;            /* SAME as Bootstrap */
  border-radius: 0.25rem;      /* SAME border-radius */
  font-weight: 600;

  text-decoration: none;
  border: 2px solid #0056ff;
  color: #0056ff;
  background-color: transparent;
  transition: all 0.25s ease;
}

.booking-btn:hover {
  background-color: #fff;
  color: #67bed9;
  transform: translateY(-2px);
}

