/* 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
*/
/*
  We have no variables for alt buttons
  Because the styles depends on the design and can be unique for each project
*/
.team-member {
  position: relative;
  height: 100%;
  padding-bottom: 160px;
}
.team-member-has-bg {
  background-color: #eff6f6;
  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-links-wrap {
  padding: 0 25px 25px 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-links-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media (max-width: 575.98px) {
  .team-member-link a {
    width: 100%;
  }
}
.team-member-name {
  font-size: 28px;
  font-family: "Newsreader", sans-serif;
  color: #142f53;
  font-weight: 400;
}
.team-member-position {
  font-weight: 700;
  color: #142f53;
}
.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: #0d3d6b;
  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;
  }
}

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