/* stylelint-disable max-line-length */
/* stylelint-enable max-line-length */
/*
--- Animations!!! ---
-- Slider
-- Squeeze
-- Arrow Left
-- Arrow Right

How to use:

Have this in it's own file e.g. _hamburger.scss
@include h('cross', 25px, 20px, #fff, 2px, 2px, 0.3s);

Parameters:
@include h(AnimationType, Width, Height, Colour, Border Radius, Thickness, Transition Speed);

*/
.people-contact-details {
  position: relative;
  margin-bottom: 46px;
  padding: 15px 0 0;
  background-color: #f6fbfd;
}
.people-contact-details__text {
  padding: 0 17px 13px;
}
.people-contact-details__text a {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
  word-break: break-word;
  color: #000;
}
.people-contact-details__text a:hover {
  text-decoration: underline;
}
.people-contact-details__author {
  padding: 10px 17px;
  background-color: #1b9dd4;
}
.people-contact-details__author a {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  color: #fff;
}
.people-contact-details__author a .svg-icon {
  position: relative;
  top: -1px;
}
.people-contact-details__author a:hover {
  text-decoration: underline;
  color: #fff;
}
.people-contact-details__social-link {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
}
.people-contact-details__social-link .social-icon-wrapper {
  position: relative;
  display: flex;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  padding: 4px;
  background-color: #1b9dd4;
}
.people-contact-details__social-link .social-icon-wrapper svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}
.people-contact-details__social-link span:last-child {
  text-decoration: underline;
}

/* stylelint-disable max-line-length */
/* stylelint-enable max-line-length */
/*
--- Animations!!! ---
-- Slider
-- Squeeze
-- Arrow Left
-- Arrow Right

How to use:

Have this in it's own file e.g. _hamburger.scss
@include h('cross', 25px, 20px, #fff, 2px, 2px, 0.3s);

Parameters:
@include h(AnimationType, Width, Height, Colour, Border Radius, Thickness, Transition Speed);

*/
.simple-accordion {
  position: relative;
}
.simple-accordion__item {
  position: relative;
}
.simple-accordion__item.expanded .simple-accordion__content {
  display: block;
}
.simple-accordion__item.expanded .icon-plus-minus::after {
  opacity: 0;
  transform: rotate(0deg);
}
.simple-accordion__trigger {
  position: relative;
  padding-right: 50px;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
}
.simple-accordion__trigger .icon-plus-minus {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 10px;
  height: 2px;
}
.simple-accordion__trigger .icon-plus-minus,
.simple-accordion__trigger .icon-plus-minus * {
  cursor: pointer;
}
.simple-accordion__trigger .icon-plus-minus::before, .simple-accordion__trigger .icon-plus-minus::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  opacity: 1;
  transition: opacity 300ms, transform 300ms;
}
.simple-accordion__trigger .icon-plus-minus::after {
  transform: rotate(-90deg);
}
.simple-accordion__content {
  display: none;
  padding-top: 20px;
  padding-bottom: 20px;
}

.single-people .people-banner {
  position: relative;
}
.single-people .people-banner.bottom-overlay {
  background-position: 100% 20%;
}
.single-people .people-banner.bottom-overlay::after {
  display: none;
}
.single-people .people-banner img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 1439px) {
  .single-people .people-banner img {
    -o-object-position: center 0 !important;
       object-position: center 0 !important;
  }
}
@media only screen and (max-width: 599px) {
  .single-people .people-banner img {
    -o-object-position: right 20% top 0 !important;
       object-position: right 20% top 0 !important;
  }
}
.single-people .people-banner .banner-title h1,
.single-people .people-banner .banner-title h2 {
  color: #fff;
}
.single-people .people-banner .banner-title h1 {
  font-size: 2.375rem;
}
@media only screen and (max-width: 599px) {
  .single-people .people-banner .banner-title h1 {
    font-size: 2.125rem;
    line-height: 2.5rem;
  }
}
.single-people .people-banner .banner-title h2 {
  font-size: 1.25rem !important;
  font-weight: 400 !important;
}
@media only screen and (min-width: 1920px) {
  .single-people .people-banner .container {
    position: initial;
    width: auto;
    max-width: none;
    height: 100%;
    margin: 0;
    padding: 0;
  }
  .single-people .people-banner img {
    left: calc((100vw - (1080px + 43.75vw) + 43.75vw) / 2);
    width: calc(100vw - (100vw - (1080px + 43.75vw) + 43.75vw) / 2);
  }
  .single-people .people-banner .banner-sidebar {
    width: 100%;
    max-width: calc((100vw - (1080px + 43.75vw) + 43.75vw) / 2);
    height: 100%;
    margin: 0;
    padding: 0;
  }
  .single-people .people-banner .banner-title {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding-left: calc(15px + 5vw);
    padding-right: 50px;
    background-color: #1b9dd4 !important;
  }
  .single-people .people-banner .banner-title h1 {
    margin-bottom: 11px;
  }
}
@media only screen and (max-width: 1919px) {
  .single-people .people-banner .banner-sidebar {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: left;
    background: linear-gradient(to top, #1b9dd4 calc(100% - 220px), #1b9dd4, rgba(27, 157, 212, 0.5));
  }
  .single-people .people-banner .banner-title {
    padding: 40px 0 60px;
  }
}
@media only screen and (max-width: 599px) {
  .single-people .people-banner .banner-sidebar .banner-title {
    padding-bottom: 40px;
  }
}
.single-people .content-sidebar-layout {
  gap: 14px;
}
.single-people .content-sidebar-layout .content-sidebar-layout__sidebar-col {
  border-right: 0;
}
.single-people .content-sidebar-layout .content-sidebar-layout__sidebar-col > h6:first-child {
  margin-bottom: 20px;
  font-weight: 600;
}
@media only screen and (max-width: 1023px) {
  .single-people .content-sidebar-layout .content-sidebar-layout__sidebar-col {
    order: 2;
    width: 100%;
    border-top: 1px solid #e2e2e2;
    padding-top: 30px;
  }
  .single-people .content-sidebar-layout .content-sidebar-layout__sidebar-col > * {
    max-width: 328px;
  }
}
.single-people .simple-accordion {
  margin: 28px 0 40px;
}
.single-people .simple-accordion .simple-accordion__trigger {
  border: 1px solid #e7e7e7;
  padding: 11px 50px 11px 20px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #000;
  background-color: #fff;
  transition: background-color, color;
  transition-duration: 0.3s;
  transition-timing-function: "linear";
  /* one or more available input mechanism(s) can hover over elements with ease */
}
.single-people .simple-accordion .simple-accordion__trigger .icon-plus-minus {
  top: 25px;
  right: 20px;
}
.single-people .simple-accordion .simple-accordion__trigger .icon-plus-minus::before, .single-people .simple-accordion .simple-accordion__trigger .icon-plus-minus::after {
  background-color: #000;
}
@media screen and (any-hover: hover) {
  .single-people .simple-accordion .simple-accordion__trigger:hover {
    background-color: #f6fbfd;
  }
}
.single-people .simple-accordion .simple-accordion__content {
  padding: 10px 20px;
  font-weight: 400;
}
.single-people .simple-accordion .simple-accordion__content li {
  padding-left: 0;
}
.single-people .simple-accordion .simple-accordion__content li::before {
  display: none;
}
.single-people .simple-accordion .simple-accordion__item.expanded .simple-accordion__trigger {
  border-color: #1b9dd4;
  color: #fff;
  background-color: #1b9dd4;
}
.single-people .simple-accordion .simple-accordion__item.expanded .simple-accordion__trigger .icon-plus-minus::before, .single-people .simple-accordion .simple-accordion__item.expanded .simple-accordion__trigger .icon-plus-minus::after {
  background-color: #fff;
}
.single-people .simple-accordion .simple-accordion__item.expanded .simple-accordion__content {
  background-color: #f6fbfd;
}
.single-people .simple-accordion .simple-accordion__item.expanded .simple-accordion__content.wysiwyg h5 {
  color: #000;
}
.single-people .people-logo-gallery {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 35px 0;
  gap: 30px;
}
.single-people .people-logo-gallery img {
  flex: 0 1 160px;
  width: 100%;
  max-width: 160px;
  min-width: 0; /* tells Safari and Chrome it can shrink below intrinsic size */
  height: auto;
}
@media only screen and (max-width: 767px) {
  .single-people .people-logo-gallery {
    flex-wrap: wrap;
    gap: 15px;
  }
}
@media only screen and (max-width: 599px) {
  .single-people .people-logo-gallery {
    flex: 1 1 20%;
    justify-content: center;
  }
}

/*# sourceMappingURL=single-people.css.map*/