/* Create Custom "Colour Matrix" to use within the bootstrap utility classes
----------------------------------------------------------------------------- */
/* 
    Expanded spacing options 
    For example the margin and padding classes now have extended capability (.mb-8 now outputs margin-bottom: 3rem)
*/
/*
    This variable affects the `.h-*` and `.w-*` classes.
    You can now do w-25 or h-80 and have it output width: 25% or height: 80%
*/
/*
    Components variables
    When you create the component you should create the variables with colors for this compontnt
*/
/*
  Custom Components Variables
*/
h1, h2, h3, h4 {
  color: #2C2C8E;
}

p {
  color: #595959;
}

.team-member {
  position: relative;
  height: 100%;
}
.team-member-has-bg {
  background-color: #f8f9fa;
  border-radius: 16px;
}
.team-member-has-bg .team-member-info {
  padding: 6px 24px 24px 24px;
}
.team-member-has-bg .team-member-photo img {
  border-radius: 16px 16px 0 0;
}
.team-member-has-bg .team-member-contacts {
  padding-left: 25px;
  padding-right: 25px;
}
@media (min-width: 992px) {
  .team-member-single {
    display: flex;
    flex-direction: row;
    padding-bottom: 0;
  }
  .team-member-single.team-member-has-bg .team-member-photo img {
    border-radius: 16px 0 0 16px;
  }
  .team-member-single .team-member-photo,
  .team-member-single .team-member-info {
    width: 50%;
  }
  .team-member-single .team-member-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 40px 24px 40px;
  }
  .team-member-single .team-member-contacts {
    position: static;
    padding-left: 0;
    padding-right: 0;
  }
  .team-member-single .team-member-photo img {
    border-radius: 16px;
  }
}
.team-member-photo img {
  border-radius: 16px;
}
.team-member-name {
  font-size: 32px;
  font-family: "Coustard", sans-serif;
  color: #2C2C8E;
  font-weight: 400;
}
.team-member-position {
  font-weight: 700;
  color: #2C2C8E;
  font-family: "Lato", sans-serif;
}
.team-member-bio {
  color: #595959;
}
.team-member-contacts {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
}
.team-member-contacts ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.team-member-contacts a {
  color: #212529;
  margin-right: 14px;
  font-size: 25px;
}
.team-member-contacts a:hover {
  opacity: 0.6;
}

@media (min-width: 992px) {
  .team-content > .row > [class^=col-]:nth-of-type(even) .team-member-single {
    flex-direction: row-reverse;
  }
  .team-content > .row > [class^=col-]:nth-of-type(even) .team-member-single.team-member-has-bg .team-member-photo img {
    border-radius: 0 16px 16px 0;
  }
}
.our-team-section-secondary {
  background-color: #EAEAF4;
}

/*# sourceMappingURL=team.css.map */