/* -------------------------------------------------------------- */
/* Normalize Reset 
-------------------------------------------------------------- */

* {
  box-sizing: border-box;
}

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
/* Sections
		 ========================================================================== */
/**
	   * Remove the margin in all browsers.
	   */
body {
  margin: 0;
}
/**
	   * Render the `main` element consistently in IE.
	   */
main {
  display: block;
}
/**
	   * Correct the font size and margin on `h1` elements within `section` and
	   * `article` contexts in Chrome, Firefox, and Safari.
	   */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
		 ========================================================================== */
/**
	   * 1. Add the correct box sizing in Firefox.
	   * 2. Show the overflow in Edge and IE.
	   */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
/**
	   * 1. Correct the inheritance and scaling of font size in all browsers.
	   * 2. Correct the odd `em` font sizing in all browsers.
	   */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/* Text-level semantics
		 ========================================================================== */
/**
	   * Remove the gray background on active links in IE 10.
	   */
a {
  background-color: transparent;
}
/**
	   * 1. Remove the bottom border in Chrome 57-
	   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
	   */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}
/**
	   * Add the correct font weight in Chrome, Edge, and Safari.
	   */
b,
strong {
  font-weight: bolder;
}
/**
	   * 1. Correct the inheritance and scaling of font size in all browsers.
	   * 2. Correct the odd `em` font sizing in all browsers.
	   */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/**
	   * Add the correct font size in all browsers.
	   */
small {
  font-size: 80%;
}
/**
	   * Prevent `sub` and `sup` elements from affecting the line height in
	   * all browsers.
	   */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
	  ========================================================================== */
/**
	   * Remove the border on images inside links in IE 10.
	   */
img {
  border-style: none;
}
/* Forms
		 ========================================================================== */
/**
	   * 1. Change the font styles in all browsers.
	   * 2. Remove the margin in Firefox and Safari.
	   */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}
/**
	   * Show the overflow in IE.
	   * 1. Show the overflow in Edge.
	   */
button,
input {
  /* 1 */
  overflow: visible;
}
/**
	   * Remove the inheritance of text transform in Edge, Firefox, and IE.
	   * 1. Remove the inheritance of text transform in Firefox.
	   */
button,
select {
  /* 1 */
  text-transform: none;
}
/**
	   * Correct the inability to style clickable types in iOS and Safari.
	   */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
/**
	   * Remove the inner border and padding in Firefox.
	   */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
	   * Restore the focus styles unset by the previous rule.
	   */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
	   * Correct the padding in Firefox.
	   */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
	   * 1. Correct the text wrapping in Edge and IE.
	   * 2. Correct the color inheritance from `fieldset` elements in IE.
	   * 3. Remove the padding so developers are not caught out when they zero out
	   *    `fieldset` elements in all browsers.
	   */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}
/**
	   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
	   */
progress {
  vertical-align: baseline;
}
/**
	   * Remove the default vertical scrollbar in IE 10+.
	   */
textarea {
  overflow: auto;
}
/**
	   * 1. Add the correct box sizing in IE 10.
	   * 2. Remove the padding in IE 10.
	   */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
/**
	   * Correct the cursor style of increment and decrement buttons in Chrome.
	   */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
	   * 1. Correct the odd appearance in Chrome and Safari.
	   * 2. Correct the outline style in Safari.
	   */
[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/**
	   * Remove the inner padding in Chrome and Safari on macOS.
	   */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
	   * 1. Correct the inability to style clickable types in iOS and Safari.
	   * 2. Change font properties to `inherit` in Safari.
	  */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/* Interactive
		 ========================================================================== */
/*
	   * Add the correct display in Edge, IE 10+, and Firefox.
	   */
details {
  display: block;
}
/*
	   * Add the correct display in all browsers.
	   */
summary {
  display: list-item;
}
/* Misc
		 ========================================================================== */
/**
	   * Add the correct display in IE 10+.
	   */
template {
  display: none;
}
/**
	   * Add the correct display in IE 10.
	   */
[hidden] {
  display: none;
}

/* END OF NORMALIZE-------------------------------------------------------------- */

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Work Sans", serif;
  background: #ffffff;
  scroll-behavior: smooth;
}

.inner {
  width: 95%;
  margin: 0 auto;
  max-width: 1200px;
}

/* Hamburger Menu */

.menu-text {
  display: none;
  color: var(--Blue, #2151f3);
  text-transform: lowercase;
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
}

.hamburger {
  display: none !important;
  height: 50px !important;
  padding: 6px 11px 6px !important;
  transition: 0.5s ease-in-out;
  opacity: 1 !important;
  z-index: 1000000 !important;
  color: #c2e2f1 !important;
  background-color: transparent !important;
}

.hamburger-inner::before {
  width: 25px !important;
  right: 0;
}

.hamburger-inner::after {
  width: 40px !important;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  height: 4px !important;
  background-color: #2151f3 !important;
  border-radius: 0px !important;
  position: absolute;
  transition-property: transform !important;
  transition-duration: 0.15s !important;
  transition-timing-function: ease !important;
}

.hamburger:hover span.hamburger-inner,
.hamburger:hover span.hamburger-inner::before,
.hamburger:hover span.hamburger-inner::after {
  background-color: #2151f3 !important;
}

.mobile-nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;

  position: absolute;
  top: -2000px;
  width: 100%;
  min-height: 85vh;

  background-color: #ffffff;
  height: fit-content;
  gap: 10px;
  z-index: 1000;
  transition: all 1s ease-in-out;
}

#menu-header-1 {
  padding-top: 110px;
}

ul.nav-mobile {
  padding: 50px 0 0 10px;
}

.mobile-nav.open {
  transition: all 1s ease-in-out;
  top: 0;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.mobile-nav.open * {
  opacity: 1;
  transition: all 0.5s ease-in-out;
}

.mobile-nav * {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.mobile-nav a {
  color: var(--Black, #24252a);
  text-align: center;
  font-size: 24px;
  text-decoration: none;
  font-weight: 400;
  line-height: 150%;
  padding: 7.5px 12px;
}

.mobile-nav a:hover {
  color: #2151f3;
}

.mobile-bottom-container {
  padding: 0 10px 50px 22px;
}

.mobile-bottom-container a:first-of-type {
  padding-left: 0;
}

a.mobile-p-link {
  color: var(--Black, #24252a);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 15.4px */
  text-transform: capitalize;
  padding: 0;
}

.hamburger:hover {
  transition: 0.5s ease-in-out;
}

.hamburger:hover .hamburger-inner,
.hamburger:hover .hamburger-inner::before,
.hamburger:hover .hamburger-inner::after {
  transition: 0.25s ease-in-out !important;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  transition: 0.25s ease-in-out !important;
}
/* Hero Section */

.hero-section {
  position: relative;
}

.audio-button,
.mute-button {
  display: none;
}

.audio-button,
.mute-button {
  position: absolute;
  bottom: 20px;
  height: 40px;
  width: 40px;
  z-index: 900;
  right: 21px;
  cursor: pointer;
  transition: opacity 0.25s ease-in-out;
}

.audio-button:hover,
.mute-button:hover {
  opacity: 0.8;
}

.hero-video-container video {
  width: 100%;
  height: 100%;
  max-height: 700px;
  object-fit: cover;
  padding-top: 70px;
}

.mobile-logo {
  display: none;
}

/* Header */

body.admin-bar .site-header {
  margin-top: 42px;
}

.site-header {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(5px);
  transition: background 0.25s ease-in-out;
}

.sticky {
  backdrop-filter: blur(1px);
}

.site-header.sticky .inner {
  background: #ffffff;
  transition: background 0.25s ease-in-out;
}

.site-header .inner {
  width: 100%;
  z-index: 1;
  margin: 0 auto;
  max-width: 100%;
  background: #fffffe78;
  box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 11%);
  transition: background 0.25s ease-in-out;
}

.header-top {
  display: flex;
  width: 95%;
  flex-direction: row;
  justify-content: space-between;
  margin: 10px auto;

  align-items: center;
}
#menu-header * {
  list-style: none;
}

#menu-header {
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 0px;
}

.menu-wrap {
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  display: flex;
  gap: 0px 10px;
  flex-wrap: wrap;
}

.header-socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}

.menu-wrap a {
  color: var(--Black, #24252a);
  text-align: center;
  font-size: 20px;
  text-decoration: none;
  font-weight: 400;
  line-height: 150%;
  padding: 7.5px 12px;
  position: relative;
  transition: font-weight 0.2s;
}

.menu-wrap a:hover {
  font-weight: 600;
}

.header-socials a::after {
  display: none !important;
}

.header-socials a:hover {
  opacity: 0.8;
}

.menu-wrap a::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 30px;
  width: 20px;
  height: 20px;
  background: url("images/star.png") no-repeat center/contain;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.menu-wrap a:hover::after,
.menu-wrap a:focus::after {
  opacity: 1;
}

/* Second Header */

.contact-hero-section {
  background: #ffda34;
  padding-top: 80px;
}

.contact-hero-section h1 {
  color: #f6f2e7;
  text-align: center;
  font-family: "DM Serif Display", serif;
  font-size: 250px;
  margin-top: 0;
  margin-bottom: -97px;
  font-style: italic;
  font-weight: 400;
  line-height: 150%; /* 600px */
  letter-spacing: -12px;
}

/* Main Section */

.desktop-logo {
  width: 300px;
  height: auto;
}

.department-container h3 {
  color: #1e235a;
  font-weight: 400;
  font-size: 18px;
  padding: 0 10px;
}

.hero-subtext h2 {
  color: #24252a;
  font-size: 50px;
  width: 55%;
  margin: auto;
  font-weight: 300;
  line-height: 130%;
  padding: 85px 0 65px 0;
  text-align: center;
}

.believe-text {
  font-family: "DM Serif Display", serif;
  color: #2151f3;
  font-style: italic;
}
.client-logo-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 0 85px 0;
  width: 95%;
  margin: 0 auto;
  max-width: 1200px;
}

.single-logo img {
  height: 60px;
  width: auto;
}

/* Video Montage */

.video-montage {
  padding: 85px 0;
  background: #24252a;
}

.video-montage .inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}

.montage-title-container {
  position: relative;
}

.montage-title-container::before {
  content: "";
  width: 25px;
  height: 25px;
  background-image: url("images/mobile_hover.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: none;
  position: absolute;
  top: 13px;
  left: -35px;
  flex-shrink: 0;
}

.montage-title-container:hover::before,
.montage-title-container.active-container::before {
  display: block;
}

.montage-title {
  color: var(--Neutral-20, #313033);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 35px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 60px */
  letter-spacing: -1.2px;
  transition: color 0.25s ease-in-out;
  cursor: pointer;
}

.montage-title.active {
  color: #ffda34;
}

.montage-title:not(.active) {
  color: rgb(255 255 255 / 65%);
}

.montage-videos {
  flex: 1;
  position: relative;
  aspect-ratio: 16/9;
}

.montage-media-container {
  opacity: 0;
  transition: opacity 2s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.montage-media-container.active-fade {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.montage-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.montage-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.25s ease-in-out;
}

.montage-image-wrapper:hover .montage-image {
  transform: scale(1.02);
}

.play-icon-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: all 0.25s ease-in-out;
  z-index: 2;
}

.play-icon-container svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.montage-videos video,
.montage-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.25s ease-in-out;
  border-radius: 10px;
}
/* Featured Work */
.featured-work h2 {
  color: var(--Neutral-10, #1c1b1f);
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -1.2px;
}

.work-card {
  padding-bottom: 70px;
}

.work-card h3 {
  color: var(--Black, #24252a);
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 39px */
  letter-spacing: -0.78px;
  margin: 0;
}

.work-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.work-text h4,
.work-text p {
  margin-top: 0px;
  margin-bottom: 10px;
}

.work-text h4 {
  color: var(--Neutral-20, #313033);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.6px;
}

.work-text p {
  color: #666;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  text-transform: uppercase;
}

.work-img-container {
  position: relative;
  overflow: hidden;
}

.work-img-container img {
  width: 100%;
  height: auto;
  transition: filter 0.3s;
}

.work-img-container::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;

  background: linear-gradient(
    0deg,
    rgba(33, 81, 243, 0.6) 0%,
    rgba(33, 81, 243, 0.6) 100%
  );
  background-blend-mode: hard-light, normal;
  z-index: 2;
}

.work-img-container:hover::before {
  opacity: 1;
}

.star-container {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 2;
}

.star-container img {
  width: 50px;
  height: auto;
}

.work-img-container:hover .star-container {
  opacity: 1;
}

/* Second section */

.second-section {
  background-color: #f6f2e7;
  padding: 85px 0;
  position: relative;
  z-index: 1;
}

.second-section .inner {
  width: 95%;
  margin: auto;
  max-width: 1200px;
}

.second-section h1,
.contact-information h1 {
  color: var(--Neutral-10, #1c1b1f);
  margin-top: 0;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 60px */
  letter-spacing: -1.2px;
  position: relative;
}

.second-section h1::after,
.contact-information h1::after {
  content: "";
  width: 15px;
  height: 15px;
  background-image: url("images/circle_hover.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  bottom: 14px;
  position: absolute;
  margin-left: 10px;
}

.values-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 30px;
}

.value-box {
  background-color: #faf8f4;
  flex: 1 1 calc(50% - 10px);
  min-height: 290px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.value-icon-container {
  margin-bottom: 15px;
}

.value-icon-container img {
  width: auto;
  height: 35px;
  object-fit: contain;
}

.value-box h4 {
  margin: 0 0 10px 0;
  font-size: 38px;
  width: 70%;
  font-weight: 600;
  color: #24252a;
  z-index: 4;
}

.value-box p {
  margin: 0;
  width: 70%;
  font-size: 18px;
  font-weight: 400;
  color: #24252a;
  flex-grow: 1;
  z-index: 4;
}

.value-number {
  position: absolute;
  bottom: -4px;
  right: 10px;
}

.number-desktop {
  width: auto;
  height: 250px;
  object-fit: contain;
}

/*Contact Section*/

.contact-information {
  background: #ffffff;
  padding: 85px 0px;
}

.contact-information .inner {
  width: 95%;
  margin: 0 auto;
  max-width: 1200px;
}

.contact-container {
  display: flex;
  gap: 20px;
}

.contact-container > div:not(.map-container) {
  flex: 1;
}

.map-container {
  flex: 1;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
}

.telephone,
.email,
.social,
.map-text {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.telephone img,
.email img,
.social img,
.map-icon img {
  width: 24px;
  height: 24px;
}

.telephone a,
.email a,
.social a,
.map-icon a {
  text-decoration: none;
  color: #24252a;
  font-weight: 400;
  font-size: 16px;
  word-break: break-word;
  transition: 0.25s ease-in-out;
}

.telephone a:hover,
.email a:hover,
.social a:hover,
.map-icon a:hover {
  color: #f65900;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-right: 60px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  background-color: #ffffff;
  color: #24252a;
  padding: 12px;
  border: 1px solid #e4d6b4;
  border-radius: 4px;
  font-size: 16px;
}

textarea {
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #24252a;
}

.contact-form input[type="submit"] {
  background: #2151f3;
  color: white;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  width: 30%;
  border: none;
  border-radius: 70px;
  padding: 20px;
  text-align: center;
  margin-top: 40px;
  background-image: url(/index_files/images/submit_hover.png);
  background-position: 50% 100px;
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.25s ease-in-out;
}

.contact-form input[type="submit"]:hover {
  background-position: center;
  background-size: 165%;
  cursor: pointer;
}

#thankYouMessage,
#errorMessage {
  opacity: 1 !important;
  font-size: 35px;
}

.map-container p {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  color: #24252a;
  line-height: 110%;
  letter-spacing: -0.48px;
}

.map-text {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #24252a;
}

a.map-link {
  text-decoration: none;
  cursor: pointer;
  color: #24252a;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  transition: 0.25s ease-in-out;
}

a.map-link:hover {
  color: #f65900;
}

.map-img-container {
  border-radius: 5px;
  border: 4px solid #e8dec4;
  height: fit-content;
}

.map-img-container iframe {
  height: auto;
  aspect-ratio: 5 / 3;
}

/* Team Member Page */

.team-member {
  margin-top: 250px;
  margin-bottom: 50px;
}

.top-profile {
  display: flex;
  flex-direction: row;
  border-bottom: 2px solid #afa7a77d;
  padding-bottom: 50px;
  align-items: flex-start;
  gap: 100px;
}

h2.team-name {
  color: #24252a;
  font-size: 60px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: -2.1px;
  margin: 0;
}

.team-socials {
  display: flex;
  gap: 20px;
  margin-top: 35px;
}

.team-title {
  color: #24252a;
  font-size: 35px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 52px */
  letter-spacing: -1.2px;
  margin: 0;
}

.team-pronouns {
  color: #24252a;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 130%; /* 26px */
}

.bottom-profile {
  display: flex;
  gap: 100px;
  padding-top: 100px;
}

.member-background {
  position: relative;
  width: 100%;
  aspect-ratio: 450 / 305;
  overflow: hidden;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.member-background::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 114%;
  background-image: url(/wp-content/themes/blueprintinteractive/images/avatar-bkg.png);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  z-index: 1;
}

.team-avatar {
  overflow: hidden;
  width: 82%;
  height: auto;
  object-position: top;
  object-fit: cover;
  z-index: 2;
  position: relative;
  margin-left: -30px;
}

.team-bio {
  width: 100%;
}

.team-bio p {
  color: #24252a;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 27px */
  letter-spacing: -0.54px;
}

/* About Page */

.about-content {
  padding: 50px 0;
  position: relative;
}

.about-bkg {
  position: absolute;
  top: 0;
  right: 0;
}

.about-bkg img {
  width: 300px;
  height: auto;
}

.about-content-text {
  padding: 50px 0;
}

.about-content-text p {
  color: #1e235a;
  text-align: center;

  font-size: 60px;
  font-style: normal;
  font-weight: 300;
  line-height: 87.5px;
  letter-spacing: -2.1px;
}

.team-feed-container h2 {
  margin-bottom: 60px;
  color: #24252a;
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 57.2px */
  letter-spacing: -1.32px;
}

.team-feed {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.team-member-card {
  position: relative;
}

.team-member-card a {
  text-decoration: none;
}

.team-member-name,
.team-member-title,
.team-member-pronouns {
  margin: 10px 0 0 0;
}

.team-member-name {
  color: #24252a;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.72px;
  transition: 0.25s ease-in-out;
}

.team-member-title {
  color: #24252a;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 26px */
  letter-spacing: -0.6px;
  transition: 0.25s ease-in-out;
}

.team-member-pronouns {
  color: #24252a;
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  line-height: 130%; /* 23.4px */
  transition: 0.25s ease-in-out;
}

.team-member-card-image img {
  width: 150px;
  height: auto;
  object-fit: cover;
  filter: grayscale(1);
  transition: 0.25s ease-in-out;
}

.team-member-card:hover .team-member-name,
.team-member-card:hover .team-member-title,
.team-member-card:hover .team-member-pronouns {
  color: #ff4b00;
}

.team-member-card:hover .hover-star-container {
  display: flex;
}

.team-member-card:hover .team-member-card-image img {
  filter: grayscale(0);
}

.team-member-card:hover .hover-star-container img {
  display: block;
}

.hover-star-container {
  position: absolute;
  top: 0;
  right: 18px;
  display: flex;
  flex-direction: column;
}

.hover-star-container img {
  display: none;
  width: 25px;
  height: auto;
  transition: 0.25s ease-in-out;
}

/* Footer Section */

.top-footer {
  background: #2151f3;
  padding: 50px 0;
}

.top-footer .inner {
  width: 95%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-logo img {
  height: 100px;
  width: auto;
}

.footer-address {
  text-align: center;
}

.footer-address p,
.footer-address a {
  color: #ccc;
  font-size: 18px;
  margin: 10px 0;
  transition: 0.25s ease-in-out;
}

.footer-address a:hover {
  color: #ffda34;
}

.phone a {
  text-decoration: none;
}

footer {
  background: #2151f3;
}

.bottom-footer {
  position: relative;
  width: 95%;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.bottom-footer p,
.bottom-footer a {
  color: #e8dec4;
  font-size: 15px;
  font-weight: 400;
  transition: 0.25s ease-in-out;
}

a.p-link {
  text-decoration: none;
}

a.p-link:hover {
  color: #ffda35;
}

.social-media {
  display: flex;
  gap: 30px;
}

.social-media a img {
  height: 25px;
  width: auto;
  transition: 0.25s ease-in-out;
}

.social-media a img:hover {
  filter: invert(1) brightness(6) saturate(20) hue-rotate(235deg);
}

/*Privacy Policy*/

.pp-main {
  padding: 50px 0;
}
.pp-div {
  width: 90%;
  margin: 0 auto;
  font-size: 20px;
}

h1.pp-h-tag {
  color: #24252a;
  font-weight: 700;
  font-size: 40px;
}

h2.pp-h-tag {
  color: #24252a;
  font-weight: 600;
  font-size: 30px;
}

.pp-link {
  color: #2151f3;
  text-decoration: none;
}

.pp-link:hover {
  color: #f65900;
}

.grecaptcha-badge {
  position: absolute;
  left: -9999px; /* Move it out of the visible screen */
}

/* -------------------------------------------------------------- */
/* Animate CSS
	-------------------------------------------------------------- */
.fade-in-from-left {
  opacity: 0;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px);
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fade-in-from-left.animated {
  -webkit-animation-name: fade-from-left;
  animation-name: fade-from-left;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

@-webkit-keyframes fade-from-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
  }

  45% {
    opacity: 0.5;
  }

  90% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fade-from-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
  }

  45% {
    opacity: 0.5;
  }

  90% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fade-in-from-bottom {
  opacity: 0;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
}

.fade-in-from-bottom.animated {
  -webkit-animation-name: fade-from-bottom;
  animation-name: fade-from-bottom;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

@-webkit-keyframes fade-from-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
  }
  90% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fade-from-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
  }
  90% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fade-in-from-right {
  opacity: 0;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-transform: translateX(40px);
  -ms-transform: translateX(40px);
  transform: translateX(40px);
}

.fade-in-from-right.animated {
  -webkit-animation-name: fade-from-right;
  animation-name: fade-from-right;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

@-webkit-keyframes fade-from-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
  }

  90% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fade-from-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
  }

  90% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
