section.block.block-team .container {
  display: flex;
  padding: var(--spacing-4xl) var(--spacing-3-xl);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.block.block-team .container .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: var(--col-8);
  margin: auto;
  text-align: center;
  margin-bottom: var(--spacing-3-xl);
}
@media screen and (max-width: 768px) {
  section.block.block-team .container .title {
    width: 100%;
    max-width: 100%;
  }
}
section.block.block-team .container .collaborators {
  display: flex;
  gap: var(--spacing-l);
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}
section.block.block-team .container .collaborators.bottom-top {
  flex-flow: row-reverse wrap-reverse;
}
section.block.block-team .container .collaborators + .collaborators {
  margin-top: 20px;
}
section.block.block-team .container .collaborators .collaborator {
  display: flex;
  padding: var(--spacing-m);
  align-items: center;
  width: 100%;
  gap: var(--spacing-s);
  border-radius: var(--spacing-2-xs);
  border: 1px solid var(--border-color);
  background: radial-gradient(129.07% 130.09% at 64.42% 79.5%, rgba(15, 188, 255, 0.2) 0%, rgba(15, 188, 255, 0) 100%), linear-gradient(302deg, #021525 -0.88%, rgba(40, 52, 79, 0) 117.52%);
  width: calc(25% - var(--spacing-l));
}
@media screen and (max-width: 1300px) {
  section.block.block-team .container .collaborators .collaborator {
    width: calc(33.3333333333% - var(--spacing-l));
  }
}
@media screen and (max-width: 1000px) {
  section.block.block-team .container .collaborators .collaborator {
    width: calc(50% - var(--spacing-l));
  }
}
@media screen and (max-width: 768px) {
  section.block.block-team .container .collaborators .collaborator {
    width: calc(50% - var(--spacing-l) / 2);
    flex-direction: column;
  }
}
@media screen and (max-width: 270px) {
  section.block.block-team .container .collaborators .collaborator {
    width: 100%;
    flex-direction: column;
  }
}
section.block.block-team .container .collaborators .collaborator .collaborator-image {
  border-radius: var(--spacing-2-xs);
  width: 108px;
  height: 108px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  section.block.block-team .container .collaborators .collaborator .collaborator-image {
    width: 100%;
    height: inherit;
    aspect-ratio: 1;
  }
}
section.block.block-team .container .collaborators .collaborator .collaborator-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
section.block.block-team .container .collaborators .collaborator .collaborator-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-m);
  flex: 1 0 0;
}
@media screen and (max-width: 768px) {
  section.block.block-team .container .collaborators .collaborator .collaborator-content {
    width: 100%;
  }
}
section.block.block-team .container .collaborators .collaborator .collaborator-content .collaborator-infos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}
section.block.block-team .container .collaborators .collaborator .collaborator-content .collaborator-infos .name {
  align-self: stretch;
  font-family: Geologica;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: var(--color-text);
}
section.block.block-team .container .collaborators .collaborator .collaborator-content .collaborator-infos .position {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
section.block.block-team .container .collaborators .collaborator .collaborator-content .collaborator-contact {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}
section.block.block-team .container .collaborators .collaborator .collaborator-content .collaborator-contact img {
  width: 23.625px;
  height: 23.625px;
}
section.block.block-team .jumbotron {
  margin-top: var(--spacing-3-xl);
}
section.block.block-team .jumbotron .jumbotron {
  padding: var(--spacing-xl) var(--spacing-3-xl);
  width: var(--col-6);
  gap: var(--spacing-s);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  section.block.block-team .jumbotron .jumbotron {
    width: 100%;
    padding: var(--spacing-xl);
  }
}
section.block.block-team .jumbotron .content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-s);
}
section.block.block-team .jumbotron h3 {
  margin: 0;
}
section.block.block-team .jumbotron p {
  text-align: center;
  margin: 0;
}
section.block.block-team .jumbotron .button {
  background-color: var(--color-text);
  color: black;
  width: max-content !important;
  margin: auto;
}