/*!*********************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./blocks/grid/team-grid/team-grid.scss ***!
  \*********************************************************************************************************************************************************************************************************************************/
:root {
  --font-family-main: "area-normal", sans-serif;
  --font-family-display: "halyard-display", sans-serif;
  --font-family-body: "area-normal", sans-serif;
  --font-family-display-medium: var(--font-family-display);
  --font-family-body-regular: var(--font-family-body);
  --font-family-body-book: var(--font-family-body);
  --font-family-body-bold: var(--font-family-body);
  --font-weight-display-medium: 400;
  --font-weight-body-regular: 400;
  --font-weight-body-book: 400;
  --font-weight-body-bold: 700;
  --font-weight-body-black: 900;
  --color-primary: #00c6c2;
  --color-secondary: #052831;
  --color-teal: #00c6c2;
  --color-midnight-black: #052831;
  --color-putty: #fdf7ea;
  --color-white: #ffffff;
  --color-midnight-black-dark: #031d24;
  --color-black: #000000;
  --color-error: #dd0000;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes draw {
  0% {
    stroke-dashoffset: 1000;
  }
  30% {
    stroke-dashoffset: 0;
  }
  45% {
    stroke-dashoffset: 0;
  }
  75% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 1000;
  }
}
@keyframes svg-spin {
  0% {
    transform: scale(1) rotateY(0);
  }
  30% {
    transform: scale(1) rotateY(0);
  }
  35% {
    transform: scale(1.25) rotateY(0);
  }
  40% {
    transform: scale(1.25) rotateY(360deg);
  }
  45% {
    transform: scale(1) rotateY(360deg);
  }
  100% {
    transform: scale(1) rotateY(360deg);
  }
}
.team-grid {
  padding: 10rem 0 13.75rem 0;
  background-color: var(--color-putty);
  color: var(--color-secondary);
}
.team-grid.block-theme-dark {
  background-color: var(--color-secondary);
  color: var(--color-white);
}
@media (max-width: 992px) {
  .team-grid {
    padding: 5.5rem 0;
  }
}
.team-grid__heading {
  margin-bottom: 5rem;
}
@media (max-width: 992px) {
  .team-grid__heading {
    margin-bottom: 3.5rem;
  }
}
.team-grid__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}
@media (max-width: 1440px) {
  .team-grid__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .team-grid__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 480px) {
  .team-grid__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1440px) {
  .team-grid__grid__item {
    transition-delay: 200ms !important;
  }
}
.team-grid__card {
  background: var(--color-white);
  color: var(--color-secondary);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  text-decoration: none;
  opacity: 1;
  transition: all 0.5s;
  height: 100%;
  box-sizing: border-box;
}
.team-grid__card:hover {
  opacity: 0.75;
}
.team-grid__card figure {
  margin: 0 0 2.5rem 0;
}
.team-grid__card figure img {
  margin: 0 auto;
  display: block;
  max-width: 254px;
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1/1;
}
.team-grid__card__linkedin {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
