span.green {
  color: #32d4bc;
}

.single-post .post-container .post-content p a {
  color: #00c9ad;
}

.content-row.pipeline-graph {
  margin: 0 auto;
}
.content-row.pipeline-graph .completion-text.complete-green {
  font-weight: bold;
  color: green;
}
.content-row.pipeline-graph .main-title h2 {
  text-align: center;
  padding-bottom: 35px;
}
.content-row.pipeline-graph .pipeline-graph-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
}
.content-row.pipeline-graph h3 {
  margin: 0 0 15px 0;
  font-size: 27px;
  font-weight: 500;
}
.content-row.pipeline-graph h4 {
  margin: 5px 0;
}
.content-row.pipeline-graph p {
  margin: 0 0 10px 0;
}
.content-row.pipeline-graph .graph-info {
  flex: 1;
  width: 100%;
  padding: 20px 5px 0 5px;
  background-color: #202355;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.content-row.pipeline-graph .graph-info h1,
.content-row.pipeline-graph .graph-info h2,
.content-row.pipeline-graph .graph-info h3,
.content-row.pipeline-graph .graph-info h4,
.content-row.pipeline-graph .graph-info h5,
.content-row.pipeline-graph .graph-info p,
.content-row.pipeline-graph .graph-info a,
.content-row.pipeline-graph .graph-info li {
  color: #fff;
}
.content-row.pipeline-graph .graph-info.graph-headings {
  border-bottom: 0;
}
.content-row.pipeline-graph .the-graph {
  flex: 2;
  width: 100%;
}
.content-row.pipeline-graph .the-graph .graph-row:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.7);
}
.content-row.pipeline-graph ul {
  padding-left: 20px;
}

.pipeline-graph.layout-one .graph-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  width: 100%;
  border-bottom: 1px solid #f2f2f2;
  padding: 25px 5px;
  background-color: white;
}
.pipeline-graph.layout-one .graph-row.graph-headings {
  background-color: transparent;
  border-bottom: 0;
  padding-top: 0;
  padding-bottom: 20px;
}
.pipeline-graph.layout-one .graph-row.graph-headings h2,
.pipeline-graph.layout-one .graph-row.graph-headings h3,
.pipeline-graph.layout-one .graph-row.graph-headings h4,
.pipeline-graph.layout-one .graph-row.graph-headings h5,
.pipeline-graph.layout-one .graph-row.graph-headings p,
.pipeline-graph.layout-one .graph-row.graph-headings a,
.pipeline-graph.layout-one .graph-row.graph-headings li {
  color: #fff;
}
.pipeline-graph.layout-one .graph-row h1 {
  color: #fff;
}
.pipeline-graph.layout-one .graph-row:nth-child(1) .graph-bar .bar, .pipeline-graph.layout-one .graph-row:nth-child(6) .graph-bar .bar {
  background-position: 20% 50%;
}
.pipeline-graph.layout-one .graph-row:nth-child(7) .graph-bar .bar, .pipeline-graph.layout-one .graph-row:nth-child(2) .graph-bar .bar {
  background-position: 40% 20%;
}
.pipeline-graph.layout-one .graph-row:nth-child(3) .graph-bar .bar, .pipeline-graph.layout-one .graph-row:nth-child(8) .graph-bar .bar {
  background-position: 67% 35%;
}
.pipeline-graph.layout-one .graph-row:nth-child(4) .graph-bar .bar, .pipeline-graph.layout-one .graph-row:nth-child(9) .graph-bar .bar {
  background-position: 58% 84%;
}
.pipeline-graph.layout-one .graph-row:nth-child(5) .graph-bar .bar, .pipeline-graph.layout-one .graph-row:nth-child(10) .graph-bar .bar {
  background-position: 35% 35%;
}
.pipeline-graph.layout-one .graph-row .graph-text {
  flex: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.pipeline-graph.layout-one .graph-row .graph-text .graph-title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  flex: 1;
  padding: 5px;
  text-align: center;
}
.pipeline-graph.layout-one .graph-row .graph-text .title {
  flex: 1;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
.pipeline-graph.layout-one .graph-row .graph-text-end {
  flex: 1;
}
.pipeline-graph.layout-one .graph-row .graph-bar {
  flex: 5;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.pipeline-graph.layout-one .graph-row .graph-bar.green .bar {
  background-color: #32d4bc;
}
.pipeline-graph.layout-one .graph-row .graph-bar.blue .bar {
  background-color: #0395d1;
}
.pipeline-graph.layout-one .graph-row .graph-bar .bar {
  height: 60px;
  background-color: #32d4bc;
  width: 100%;
  margin: 5px;
  border-radius: 0;
  opacity: 0;
  -webkit-animation-name: animateBar;
  animation-name: animateBar;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
  transition: 50ms linear opacity;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-left: 15px;
}
.pipeline-graph.layout-one .graph-row .graph-bar .bar.visible p.graph-mobile-phase {
  opacity: 0;
  transition: 150ms 900ms linear opacity;
}
.pipeline-graph.layout-one .graph-row .graph-bar p.graph-mobile-phase {
  margin-bottom: 0;
  opacity: 0;
  pointer-events: none;
  font-size: 20px;
  line-height: 1;
  color: white;
}
.pipeline-graph.layout-one .graph-row .graph-bar .title-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: left;
  justify-content: flex-start;
}
.pipeline-graph.layout-one .graph-row .graph-bar .title-container .title {
  width: 20%;
  padding: 5px;
  text-align: center;
  white-space: break-spaces;
  font-size: 18px;
  flex: 1;
  line-height: 1.3;
  border-bottom: 1px solid white;
  margin: 0 12px;
}

.graph-mobile-text-outer {
  opacity: 0;
  display: none;
}

.under-graph .undergraph-title {
  background: #cce8e6;
  font-size: 16px;
  font-weight: bold;
  padding: 5px;
  text-align: center;
}
.under-graph .under-graph-row.graph-row {
  padding: 20px;
  background-color: white;
  width: initial;
}
.under-graph .under-graph-row.graph-row .under-graph-text {
  flex: 7;
}
.under-graph .under-graph-row.graph-row .under-graph-text p {
  margin-bottom: 0;
}

.content-row.pipeline-graph .undergraph-content {
  background: white;
  margin-bottom: 80px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 0 20px;
}
.content-row.pipeline-graph .undergraph-content p {
  margin-bottom: 5px;
}

.graph-grey-bg {
  background-color: #f2f2f2;
  width: 100%;
}

@-webkit-keyframes animateBar {
  from {
    width: 5%;
  }
}

@keyframes animateBar {
  from {
    width: 5%;
  }
}
@media only screen and (max-width: 991px) {
  .pipeline-graph.layout-one .graph-row .graph-bar .title-container .title,
.pipeline-graph.layout-one .graph-row .graph-text .title {
    font-size: 16px;
  }
  .pipeline-graph.layout-one .graph-row {
    padding: 15px 5px;
  }
  .pipeline-graph.layout-one .graph-row .graph-bar .bar {
    margin: 0;
  }
  .pipeline-graph.layout-one .graph-row .graph-bar .bar.visible p.graph-mobile-phase {
    opacity: 1;
  }
  .title-container h4.title {
    padding-left: 0 !important;
    margin-left: 0 !important;
    text-align: right !important;
  }
  .pipeline-graph.layout-one .graph-headings .graph-bar {
    display: none;
  }
  .pipeline-graph.layout-one .graph-row .graph-text .graph-title {
    margin-bottom: 10px;
  }
  .pipeline-graph.layout-one .graph-row {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .pipeline-graph.layout-one .graph-row:not(.preclinical) .graph-mobile-text-outer {
    display: none;
  }
  .pipeline-graph.layout-one .graph-row.preclinical .graph-mobile-phase {
    display: none;
  }
  .pipeline-graph.layout-one .graph-row .graph-text {
    flex: initial;
    order: 1;
    width: 66%;
  }
  .pipeline-graph.layout-one .graph-row .graph-text-end {
    flex: initial;
    order: 2;
    width: 33%;
  }
  .pipeline-graph.layout-one .graph-row .graph-bar {
    flex: initial;
    order: 3;
    width: 100%;
    margin-top: 10px;
  }
  .pipeline-graph.layout-one .graph-row .graph-mobile-text-outer {
    order: 5;
    width: 100%;
    padding-left: 10px;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .pipeline-graph.layout-one .graph-row .graph-mobile-text-outer p {
    font-size: 20px;
    color: #32d4bc;
    margin-bottom: 0;
  }
  .pipeline-graph.layout-one .graph-row .graph-mobile-text {
    flex: initial;
    order: 4;
    width: 100%;
    font-size: 16px;
  }
  .pipeline-graph.layout-one .graph-row .graph-mobile-text.preclinical {
    opacity: 0;
  }
  .pipeline-graph.layout-one .graph-row .graph-mobile-text p.graph-mobile-phase {
    font-size: 16px;
  }
}
@media only screen and (max-width: 470px) {
  .pipeline-graph.layout-one .graph-row .graph-mobile-text .title,
.pipeline-graph.layout-one .graph-row .graph-mobile-text .graph-title,
.pipeline-graph.layout-one .graph-row .graph-mobile-text p.graph-mobile-phase,
.pipeline-graph.layout-one .graph-row .graph-text .title,
.pipeline-graph.layout-one .graph-row .graph-text .graph-title,
.pipeline-graph.layout-one .graph-row .graph-text p.graph-mobile-phase {
    font-size: 14px;
  }
}
.offices .content-wrapper .headquarters {
  position: relative;
}
.offices .content-wrapper .headquarters::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #00c9ad;
}
.offices .content-wrapper h2 {
  font-weight: 500;
  font-size: 46px;
  color: #292d39;
  letter-spacing: 0;
  line-height: 52px;
  margin-bottom: 54px;
  font-family: TiemposHeadline, serif;
}
.offices .content-wrapper h3 {
  color: #00c9ad;
  margin-bottom: 0;
}
.offices .content-wrapper p {
  font-size: 16px;
  color: #545760;
  letter-spacing: 0;
  line-height: 22px;
  margin-bottom: 22px;
}

@media screen and (min-width: 768px) {
  .content-wrapper {
    margin-left: 82.5px;
    margin-right: 82.5px;
  }
}
.slider__img {
  background-size: cover;
}

footer .bottom-section-wrapper .gdpr > a {
  font-size: 14px;
  line-height: 22px;
  color: #f2f2f2 !important;
  text-decoration: underline;
  padding-right: 15px;
}

.person-photo-circle {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}
.person-photo-circle img,
.person-photo-circle picture {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.person-photo-circle .person__photo {
  border-radius: 50%;
}

.person__photo-wrapp .person__photo {
  border-radius: 50%;
}

.banner.banner_text-and-video {
  margin: 100px auto;
}
.banner.banner_text-and-video .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.banner.banner_text-and-video .img-side {
  text-align: center;
}
.banner.banner_text-and-video .img-side svg circle {
  transition: fill 150ms linear;
}
.banner.banner_text-and-video .img-side a.video-link:hover svg circle {
  fill: #ccf5f0;
  transition: fill 150ms linear;
}
.banner.banner_text-and-video .img-side img {
  max-width: 100%;
  max-height: 540px;
  margin: 0 auto;
}

.bg-lightblue {
  background-color: rgba(2, 201, 173, 0.05);
}

.bg-grey {
  background-color: rgba(224, 224, 224, 0.45);
}

.bg-green {
  background-color: #cce8e6;
}

.slbOverlay {
  background-color: #292d39;
}

.slbContent {
  max-width: 90vw;
}

.slbIframeCont {
  pointer-events: none;
}

.slbIframe {
  width: 28% !important;
  left: 50% !important;
  transform: translateX(-50%);
  pointer-events: auto;
}

.conference-content #particles-js-2 {
  bottom: initial;
  top: 200px;
}
.conference-content h2 {
  font-size: 34px;
  line-height: 40px;
  font-family: TiemposHeadline, serif;
  margin-bottom: 27px;
  color: #292d39;
  font-weight: 500;
  position: relative;
}
.conference-content .video h2 {
  color: white;
}

.text-white {
  color: white;
}

.conference-info h4 {
  font-size: 26px;
}
.conference-info h2.conference-title {
  margin-top: 0;
}
.conference-info img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.conference-info .team-name {
  font-family: TiemposHeadline, serif;
  position: relative;
  font-size: 34px;
  margin-bottom: 10px;
}
.conference-info .team-title {
  font-size: 22px;
  max-width: 400px;
  color: #32d4bc;
}
.conference-info .moderator-title {
  font-size: 22px;
  font-family: TiemposHeadline, serif;
}
.conference-info .moderator-info p,
.conference-info .attendee-info p {
  font-size: 18px;
  color: #545760;
  margin-bottom: 5px;
}
.conference-info ul.attendees {
  -moz-column-count: 3;
  column-count: 3;
}

.title-font {
  font-family: TiemposHeadline, serif;
}

section.meet-us {
  min-height: 600px;
  background-size: 50vw;
  background-position: center left;
  background-repeat: no-repeat;
}

.connect-text {
  max-width: 400px;
}

.social-list-icons {
  gap: 10px;
}

.book-an-appointment {
  width: 100%;
}
.book-an-appointment svg {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.book-an-appointment svg text {
  font-family: TTNormsPro, sans-serif;
}
.book-an-appointment .book-appointment-link #Ellipse_6 {
  transition: 150ms linear transform;
}
.book-an-appointment .book-appointment-link #Make_an_appointment {
  transition: 150ms linear transform;
}
.book-an-appointment .book-appointment-link:hover #Ellipse_6 {
  transition: 150ms linear transform;
  transform: translate(875px, 2307.998px);
}
.book-an-appointment .book-appointment-link:hover #Make_an_appointment {
  transform: translate(1006px, 2420.998px);
  transition: 150ms linear transform;
}

.connect-conference .form-side {
  padding-left: 12px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .connect-conference .form-side {
    max-width: none;
  }
}
.connect-conference .form-side .wpcf7 form {
  padding-top: 18px;
}
.connect-conference .form-side .wpcf7 form p {
  font-size: 16px;
}
.connect-conference .form-side .wpcf7 form p a {
  color: #32d4bc;
}
.connect-conference .form-side .wpcf7 form p label {
  font-size: 14px;
  color: #14001d;
  letter-spacing: 0;
  line-height: 22px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .connect-conference .form-side .wpcf7 form p label {
    text-align: left;
  }
}
.connect-conference .form-side .wpcf7 form p > br {
  display: none;
}
.connect-conference .form-side .wpcf7 form p span {
  margin-bottom: 39px;
  display: block;
}
.connect-conference .form-side .wpcf7 form p span input {
  font-size: 18px;
  color: #999aa1;
  letter-spacing: 0;
  border: none;
  border-bottom: 1px solid #32d4bc;
  outline: 0;
  padding-bottom: 11px;
  width: 100%;
  max-width: 478px;
  padding-left: 0;
}
.connect-conference .form-side .wpcf7 form p span textarea {
  font-size: 18px;
  color: #999aa1;
  letter-spacing: 0;
  border: none;
  border-bottom: 1px solid #32d4bc;
  outline: 0;
  width: 100%;
  max-width: 478px;
  resize: none;
  padding-left: 0;
  height: 193px;
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .connect-conference .form-side .wpcf7 form p span input,
.connect-conference .form-side .wpcf7 form p span textarea {
    max-width: none;
  }
}
.connect-conference .form-side .wpcf7 form p input[type=submit] {
  display: inline-block;
  padding: 11px 67px 9px;
  font-size: 14px;
  font-weight: 500;
  border-width: 2px;
  border-style: solid;
  border-radius: 22.5px;
  letter-spacing: 1.5px;
  background: transparent;
  border-color: rgb(0, 2, 19);
  color: rgb(0, 2, 19);
  text-transform: uppercase;
}

.contact-page .contact .container .row .form-side .wpcf7 form p a,
.connect-conference .form-side .wpcf7 form p a {
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .conference-info img {
    max-width: 250px;
    margin-bottom: 30px;
  }
  section.meet-us {
    background-size: 100vw;
    background-position: top center;
    background-repeat: no-repeat;
  }
  section.meet-us .expand-container {
    padding-top: 35% !important;
    padding-bottom: 35% !important;
  }
  .conference-info ul.attendees {
    -moz-column-count: 1;
    column-count: 1;
  }
  .moderator-info {
    margin-bottom: 20px;
  }
  .book-an-appointment .book-appointment-link {
    max-height: 400px;
    width: auto;
    display: flex;
  }
}
.facetwp-template {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 50px;
}
.facetwp-template .media-post {
  flex: 0 0 calc(33.3333333333% - 50px);
}
.facetwp-template .media-post .featured-image {
  background-color: #f8f8f8;
  position: relative;
  overflow: hidden;
  padding-top: 51%;
}
.facetwp-template .media-post .featured-image.is-logo img {
  padding: 10px;
}
.facetwp-template .media-post .featured-image img,
.facetwp-template .media-post .featured-image picture {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.facetwp-template .media-post:hover {
  text-decoration: none;
}
.facetwp-template .media-post:hover .media-post-title {
  text-decoration: underline;
  -webkit-text-decoration-color: #32d4bc;
  text-decoration-color: #32d4bc;
}
.facetwp-template .media-post .media-post-title {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 15px;
}
.facetwp-template .media-post .is-external {
  font-size: 14px;
  line-height: 16px;
  text-decoration: underline;
}
.facetwp-template .media-post .post-info {
  font-size: 14px;
  line-height: 16px;
  gap: 10px;
}
.facetwp-template .media-post .post-date {
  color: #797979;
}
.facetwp-template .media-post .category-name {
  color: #32d4bc;
}

.facetwp-facet .facetwp-input-wrap {
  width: 100%;
}
.facetwp-facet .facetwp-input-wrap .facetwp-icon.f-loading:before {
  transform-origin: center center;
  background-size: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%2332d4bc' d='M207.4 20.36C209.8 28.88 204.8 37.69 196.3 40.04C101.5 66.19 32 152.1 32 255.1C32 379.7 132.3 479.1 256 479.1C379.7 479.1 480 379.7 480 255.1C480 152.1 410.5 66.19 315.7 40.04C307.2 37.69 302.2 28.88 304.6 20.36C306.9 11.85 315.7 6.847 324.3 9.198C432.5 39.07 512 138.2 512 255.1C512 397.4 397.4 511.1 256 511.1C114.6 511.1 0 397.4 0 255.1C0 138.2 79.51 39.07 187.7 9.198C196.3 6.847 205.1 11.85 207.4 20.36V20.36z'/%3E%3C/svg%3E");
}
.facetwp-facet .facetwp-input-wrap .facetwp-icon:before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 19 19'%3E%3Cg id='Group_2' data-name='Group 2' transform='translate(-99 -133)'%3E%3Cpath id='Union_1' data-name='Union 1' d='M-298.247-322.214l-3.948-3.948a8.366 8.366 0 0 1-5.4 1.97 8.413 8.413 0 0 1-8.4-8.4 8.413 8.413 0 0 1 8.4-8.4 8.413 8.413 0 0 1 8.4 8.4 8.366 8.366 0 0 1-1.97 5.4l3.948 3.948a.731.731 0 0 1 0 1.033.728.728 0 0 1-.517.214A.729.729 0 0 1-298.247-322.214ZM-314.538-332.6a6.95 6.95 0 0 0 6.942 6.942 6.95 6.95 0 0 0 6.942-6.942 6.95 6.95 0 0 0-6.942-6.942A6.95 6.95 0 0 0-314.538-332.6Z' transform='translate(415 474)' fill='%2302c9ad'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
}
.facetwp-facet input.facetwp-search {
  border: none;
  border-bottom: 1px solid #32d4bc;
  width: 100%;
  padding: 10px 30px 10px 10px;
  outline-color: #32d4bc;
}
.facetwp-facet input.facetwp-search::-moz-placeholder {
  font-weight: bold;
  color: #292d39;
}
.facetwp-facet input.facetwp-search::placeholder {
  font-weight: bold;
  color: #292d39;
}
.facetwp-facet i.facetwp-icon {
  opacity: 1;
}
.facetwp-facet.facetwp-type-dropdown {
  margin-bottom: 0;
}
.facetwp-facet.facetwp-type-dropdown select {
  background-color: white;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21.224' height='11.577' viewBox='0 0 21.224 11.577'%3E%3Cg id='Group_1' data-name='Group 1' transform='translate(-93 -189.423)'%3E%3Cpath id='Path_1' data-name='Path 1' d='M50.612 99.577a.962.962 0 0 1-.682-.283l-9.647-9.647a.965.965 0 0 1 1.364-1.364l8.965 8.965 8.965-8.965a.965.965 0 0 1 1.364 1.364l-9.647 9.647A.962.962 0 0 1 50.612 99.577Z' transform='translate(53 101.423)' fill='%2302c9ad'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center right 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  font-weight: bold;
  outline-color: #32d4bc;
  border: none;
  border-bottom: 1px solid #32d4bc;
  width: 100%;
  padding: 12px 10px 10px 10px;
  height: 48px;
}

.facetwp-facet-load_more_pager {
  text-align: center;
  padding-bottom: 0;
}

.facetwp-load-more {
  margin-top: 75px;
  display: inline-block;
  padding: 11px 67px 9px;
  font-family: TTNormsPro, sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-width: 2px;
  border-style: solid;
  border-radius: 22.5px;
  letter-spacing: 1.5px;
  outline-color: #32d4bc;
  background: 0 0;
  border-color: #000213;
  color: #000213;
  text-transform: uppercase;
  transition: 150ms linear all;
}
.facetwp-load-more:hover {
  background-color: #f2f2f2;
  transition: 150ms linear all;
}
.facetwp-load-more:focus {
  outline-color: #32d4bc;
}

@media only screen and (max-width: 1200px) {
  .facetwp-template {
    gap: 25px;
  }
  .facetwp-template .media-post {
    flex: 0 0 calc(33.3333333333% - 17px);
  }
}
@media only screen and (max-width: 992px) {
  .facetwp-template {
    gap: 15px;
  }
  .facetwp-template .media-post {
    flex: 0 0 calc(50% - 15px);
  }
}
@media only screen and (max-width: 600px) {
  .facetwp-template .media-post {
    flex: 0 0 100%;
  }
}
.wt-cli-iframe-placeholder {
  display: block;
}
.wt-cli-iframe-placeholder .wt-cli-inner-text {
  color: white;
}

.banner_text-and-image.with-logo {
  padding-bottom: 50px;
}
.banner_text-and-image.with-logo h2.h1 {
  margin-bottom: 20px;
}
.banner_text-and-image.with-logo .banner-logo {
  max-width: 280px;
}

.bg-black {
  background-color: #292d39;
}
.bg-black h2,
.bg-black h3,
.bg-black h4,
.bg-black h5,
.bg-black p,
.bg-black a,
.bg-black li {
  color: white;
}

.subsidiary-intro {
  padding-top: 135px;
  padding-bottom: 135px;
}
.subsidiary-intro .intro-left {
  max-width: calc(50% - 20px);
}
.subsidiary-intro .intro-left h2 {
  margin: 0;
  font-size: 40px;
  line-height: 54px;
  font-family: "TiemposHeadline", serif;
}
.subsidiary-intro .intro-right {
  max-width: calc(50% - 20px);
  margin-top: 7px;
}

.subsidiary-description,
.subsidiary-about {
  padding-top: 85px;
  padding-bottom: 85px;
}
.subsidiary-description .desc-left,
.subsidiary-description .desc-right,
.subsidiary-about .desc-left,
.subsidiary-about .desc-right {
  flex: 1;
}
.subsidiary-description h3,
.subsidiary-about h3 {
  font-family: "TiemposHeadline", serif;
  font-size: 40px;
  line-height: 54px;
}
.subsidiary-description .desc-left,
.subsidiary-about .desc-left {
  max-width: calc(50% - 20px);
}
.subsidiary-description .desc-left .desc-image,
.subsidiary-about .desc-left .desc-image {
  max-width: 90%;
  margin: 0 auto;
}
.subsidiary-description .desc-left .image-container,
.subsidiary-about .desc-left .image-container {
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}
.subsidiary-description .desc-left .image-container img,
.subsidiary-description .desc-left .image-container picture,
.subsidiary-about .desc-left .image-container img,
.subsidiary-about .desc-left .image-container picture {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.subsidiary-description .desc-right,
.subsidiary-about .desc-right {
  max-width: calc(50% - 20px);
}

.subsidiary-about.about .desc-intro {
  max-width: 767px;
  text-align: center;
  margin: 0 auto;
}
.subsidiary-about.about .desc-left {
  max-width: none;
  flex: 1;
}
.subsidiary-about.about .desc-right {
  flex: 2;
  max-width: none;
}
.subsidiary-about.about .desc-right li {
  margin-bottom: 15px;
}

.subsidiary-quote {
  padding-top: 83px;
  padding-bottom: 83px;
}
.subsidiary-quote cite {
  font-style: normal;
}
.subsidiary-quote .quote-text {
  font-size: 40px;
  line-height: 54px;
  font-family: "TiemposHeadline", serif;
}
.subsidiary-quote .quote-text:before, .subsidiary-quote .quote-text:after {
  font-family: "TiemposHeadline", serif;
  color: #32d4bc;
  transform: scale(3);
  position: relative;
  display: inline-block;
}
.subsidiary-quote .quote-text:before {
  content: open-quote;
  margin-right: 20px;
}
.subsidiary-quote .quote-text:after {
  content: close-quote;
  margin-left: 20px;
  transform: scale(3) translateY(15px);
}
.subsidiary-quote .quote-attribution {
  font-weight: bold;
}

.subsidiary-people {
  padding-bottom: 20px;
  padding-top: 55px;
}
.subsidiary-people h3 {
  color: #3e45aa;
  font-size: 16px;
  font-weight: 500;
  margin: 0 auto;
  text-transform: uppercase;
}
.subsidiary-people h2 {
  font-family: "TiemposHeadline", serif;
  font-size: 34px;
  line-height: 40px;
  font-weight: 500;
  text-transform: none;
  margin: 50px 0 20px 0;
}
.subsidiary-people .people-list {
  flex-wrap: wrap;
  gap: 10px;
}
.subsidiary-people .people-list .person {
  flex: 0 0 calc(25% - 20px) !important;
}

.subsidiary-contact {
  padding-top: 70px;
  padding-bottom: 70px;
}
.subsidiary-contact h3 {
  text-transform: uppercase;
  color: #3e45aa;
  font-size: 16px;
  font-weight: 500;
  margin: 0 auto 50px auto;
}
.subsidiary-contact h4 {
  font-family: "TiemposHeadline", serif;
  font-size: 34px;
  line-height: 40px;
  font-weight: 500;
  text-transform: none;
  margin: 50px 0 20px 0;
}
.subsidiary-contact h3,
.subsidiary-contact .contact-copy {
  max-width: calc(75% - 20px);
}
.subsidiary-contact .contact-content,
.subsidiary-contact .form-side {
  flex: 1;
}

.form-side {
  padding-left: 12px;
  padding-bottom: 20px;
}
.form-side .wpcf7 form {
  margin-left: auto;
}
.form-side .wpcf7 form p span textarea,
.form-side .wpcf7 form p span input {
  background: transparent;
}
@media screen and (max-width: 767px) {
  .form-side {
    max-width: none;
  }
}
.form-side .wpcf7 form {
  padding-top: 18px;
}
.form-side .wpcf7 form p {
  font-size: 16px;
}
.form-side .wpcf7 form p a {
  color: #32d4bc;
}
.form-side .wpcf7 form p label {
  font-size: 14px;
  color: #14001d;
  letter-spacing: 0;
  line-height: 22px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .form-side .wpcf7 form p label {
    text-align: left;
  }
}
.form-side .wpcf7 form p > br {
  display: none;
}
.form-side .wpcf7 form p span {
  margin-bottom: 39px;
  display: block;
}
.form-side .wpcf7 form p span input {
  font-size: 18px;
  color: #999aa1;
  letter-spacing: 0;
  border: none;
  border-bottom: 1px solid #32d4bc;
  outline: 0;
  padding-bottom: 11px;
  width: 100%;
  max-width: 478px;
  padding-left: 0;
}
.form-side .wpcf7 form p span textarea {
  font-size: 18px;
  color: #999aa1;
  letter-spacing: 0;
  border: none;
  border-bottom: 1px solid #32d4bc;
  outline: 0;
  width: 100%;
  max-width: 478px;
  resize: none;
  padding-left: 0;
  height: 193px;
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .form-side .wpcf7 form p span input,
.form-side .wpcf7 form p span textarea {
    max-width: none;
  }
}
.form-side .wpcf7 form p input[type=submit] {
  display: inline-block;
  padding: 11px 67px 9px;
  font-size: 14px;
  font-weight: 500;
  border-width: 2px;
  border-style: solid;
  border-radius: 22.5px;
  letter-spacing: 1.5px;
  background: transparent;
  border-color: rgb(0, 2, 19);
  color: rgb(0, 2, 19);
  text-transform: uppercase;
}

p.g-recaptcha-info p,
p.g-recaptcha-info a {
  display: inline-block;
}

.subsidiary-news-posts {
  padding-top: 64px;
  padding-bottom: 64px;
}
.subsidiary-news-posts h3 {
  text-transform: uppercase;
  color: #3e45aa;
  font-size: 16px;
  font-weight: 500;
  margin: 0 auto 50px auto;
}
.subsidiary-news-posts .news-posts-inner {
  gap: 40px;
  flex-wrap: wrap;
}
.subsidiary-news-posts article {
  overflow: hidden;
  background: white;
  border-radius: 35px;
  max-width: calc(33.3333333333% - 30px);
}
.subsidiary-news-posts article .article-title {
  font-size: 30px;
  line-height: 35px;
  margin-bottom: 15px;
}
.subsidiary-news-posts article a.article-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #292d39;
}
.subsidiary-news-posts article a.article-inner:hover {
  text-decoration: none;
}
.subsidiary-news-posts article a.article-inner .featured-image {
  position: relative;
  overflow: hidden;
  padding-top: 51%;
}
.subsidiary-news-posts article a.article-inner .featured-image.is-logo img {
  padding: 20px;
}
.subsidiary-news-posts article a.article-inner .featured-image img,
.subsidiary-news-posts article a.article-inner .featured-image picture {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.subsidiary-news-posts article a.article-inner .article-content,
.subsidiary-news-posts article a.article-inner .article-info {
  padding: 20px;
}
.subsidiary-news-posts article a.article-inner .article-content {
  margin-bottom: auto;
}
.subsidiary-news-posts article a.article-inner .article-content p.date {
  margin-bottom: 0;
}
.subsidiary-news-posts article a.article-inner .article-info {
  border-top: 1px solid #cbcbcb;
}

@media only screen and (max-width: 991px) {
  .subsidiary-news-posts article {
    max-width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  .subsidiary-quote .quote-text {
    font-size: 27px;
    line-height: 35px;
  }
  .subsidiary-people .people-list .person {
    max-width: 350px;
    margin: 20px 0;
  }
  .subsidiary-news-posts article {
    max-width: 100%;
  }
  .subsidiary-intro .intro-left,
.subsidiary-intro .intro-right {
    max-width: none;
  }
  .subsidiary-description .desc-right,
.subsidiary-description .desc-left,
.subsidiary-about .desc-right,
.subsidiary-about .desc-left {
    max-width: none;
  }
}
@media (max-width: 991.98px) {
  .page-template-template-subsidiary-page li {
    font-size: 1.4rem;
  }
}
@media (max-width: 1044px) {
  .pg-header .mobile-btn {
    display: block;
    cursor: pointer;
    height: 35px;
  }
  .pg-header .navbar .main-menu-container {
    display: none;
  }
}
/*# sourceMappingURL=maps/style.css.map */
