/* -------------------------------------------------------------- */
/* 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: "Assistant", sans-serif;
  background: #ffffff;
  scroll-behavior: smooth;
}

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

ul,
li,
ol {
  margin: 5px 0;
  padding: 0;
}


body.logged-in .site-header {
  padding-top: 30px;
}

/* 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;
  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,
.privacy-policy.page-id-3 .site-header .hamburger-inner,
.privacy-policy.page-id-3 .site-header .hamburger-inner::after,
.privacy-policy.page-id-3 .site-header .hamburger-inner::before {
  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,
.privacy-policy.page-id-3 .site-header .hamburger:hover span.hamburger-inner,
.privacy-policy.page-id-3
  .site-header
  .hamburger:hover
  span.hamburger-inner::before,
.privacy-policy.page-id-3
  .site-header
  .hamburger:hover
  span.hamburger-inner::after {
  background-color: #2151f3 !important;
}

/* .site-header.site-header--page .hamburger-inner,
.site-header.site-header--page .hamburger-inner::before,
.site-header.site-header--page .hamburger-inner::after {
  background-color: #ffffff !important;
} */

.site-header.site-header--page .hamburger.is-active .hamburger-inner,
.site-header.site-header--page .hamburger.is-active .hamburger-inner::before,
.site-header.site-header--page .hamburger.is-active .hamburger-inner::after {
  background-color: #2151f3 !important;
}

.site-header.site-header--page .hamburger.is-active:hover .hamburger-inner,
.site-header.site-header--page
  .hamburger.is-active:hover
  .hamburger-inner::before,
.site-header.site-header--page
  .hamburger.is-active:hover
  .hamburger-inner::after {
  background-color: #2151f3 !important;
}

/* .site-header.site-header--page .hamburger:hover span.hamburger-inner,
.site-header.site-header--page .hamburger:hover span.hamburger-inner::before,
.site-header.site-header--page .hamburger:hover span.hamburger-inner::after {
  background-color: #ffffff !important;
} */

.mobile-nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  position: absolute;
  top: -2000px;
  width: 100%;
  min-height: 95vh;
  background-color: #ffffff;
  height: fit-content;
  gap: 10px;
  z-index: 5;
  transition: all 1s ease-in-out;
}

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

ul.nav-mobile {
  padding: 200px 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: 30px;
  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;
}

.single-report .header-expander {
  display: none;
}

.single-report .report-item iframe {
  width: 100%;
}

/* 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: 900px;
  object-fit: cover;
  padding-top: 82px;
}

.mobile-logo {
  display: none;
}

/* Header */

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

.site-header.site-header--home {
  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;
}

.site-header.site-header--page,
.site-header.site-header--single {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  background: transparent;
}

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

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

.site-header.site-header--home .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;
}

.site-header.site-header--page .inner,
.site-header.site-header--single .inner {
  background: transparent;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  z-index: 1000;
}

.site-header.site-header--page .menu-wrap a {
  color: #ffffff;
}

.site-header.site-header--page .menu-wrap a:hover {
  color: #ffffff;
}

.site-header.site-header--page .desktop-logo {
  filter: brightness(0) invert(1);
}

.privacy-policy .site-header--page .desktop-logo,
.page-template-contact .site-header.site-header--page .desktop-logo,
.page-template-default .site-header.site-header--page .desktop-logo {
  filter: brightness(1) invert(0);
}

.page-template-contact .site-header.site-header--page .menu-wrap a {
  color: #1e235a;
}

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

  align-items: center;
}
#menu-header *,
#menu-header-1 * {
  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,
.privacy-policy .site-header--page .menu-wrap a,
.page-template-default .site-header.site-header--page .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,
.privacy-policy .site-header--page .menu-wrap a:hover {
  color: #24252a;
  font-weight: 600;
}

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

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

.menu-wrap a::after,
.privacy-policy .site-header--page .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;
}

.site-header.site-header--page .menu-wrap a::after {
  filter: brightness(0) invert(1);
}

.privacy-policy .site-header--page .menu-wrap a::after,
.page-template-contact .site-header.site-header--page .menu-wrap a::after {
  filter: brightness(1) invert(0);
}

.menu-wrap a:hover::after,
.menu-wrap a:focus::after,
.privacy-policy .site-header--page .menu-wrap a:hover::after,
.privacy-policy .site-header--page .menu-wrap a:focus::after {
  opacity: 1;
}

/* Second Header */

.non-home-hero-section {
  height: 350px;
  position: relative;
}

.non-home-hero-section h1 {
  position: absolute;
  bottom: clamp(-38px, -3vw, -20px);
  left: 50%;
  transform: translateX(-50%);
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(6rem, 20vw, 230px);
  line-height: 1;
  letter-spacing: clamp(-13px, -1vw, -2px);
  margin: 0;
  color: white;
  white-space: nowrap;
}

/* Main Section */

.home .desktop-logo {
  pointer-events: none;
  cursor: default;
}

.desktop-logo {
  width: 200px;
  height: auto;
  transition: 0.25s ease-in-out;
}

.desktop-logo:hover {
  opacity: 0.7;
}

.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: 160px 0 120px 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 160px 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*/

.honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.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"],
.view-job a {
  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(/wp-content/themes/blueprintinteractive/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,
.view-job a:hover {
  background-position: center;
  background-size: 165%;
  cursor: pointer;
}

.view-job {
  margin-top: 20px;
}

.view-job a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 20px;
}

#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-name-container {
  width: 550px;
}

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

.top-profile {
  display: flex;
  flex-direction: row;
  border-bottom: 2px solid #afa7a77d;
  padding-bottom: 40px;
  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-socials a:hover {
  opacity: 0.7;
}

.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: #24252a87;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 130%; /* 26px */
}

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

.member-background {
  position: relative;
  width: 100%;

  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
}

.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 {
  width: 45%;
  height: auto;
  object-fit: cover;
  z-index: 2;
  position: relative;
}

.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-mobile-logo {
  display: none;
  padding-left: 40px;
}

.about-mobile-logo img {
  width: 100%;
  height: auto;
  max-width: 70px;
}

.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: 72px 0;
}

.about-content-text p {
  color: #24252a;
  text-align: center;
  margin: 0;
  font-size: 60px;
  font-style: normal;
  font-weight: 300;
  line-height: 87.5px;
  letter-spacing: -2.1px;
}

.team-feed-container {
  padding: 50px 0;
}

.team-feed-container h2 {
  margin-bottom: 60px;
  margin-top: 0;
  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;
  width: 200px;
}

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

.team-member-name,
.team-member-title,
.team-member-pronouns {
  margin: 4px 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%;
  letter-spacing: -0.6px;
  transition: 0.25s ease-in-out;
}

.team-member-pronouns {
  color: #24252a;
  font-size: 14px;
  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;

  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;
  z-index: 100;
}

.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: 40px;
  display: flex;
  flex-direction: column;
}

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

/* Single Job Page */

.back-to-careers {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 150px;
  padding-left: 30px;
}

.back-to-careers a {
  text-decoration: none;
  color: #24252a;
  font-size: 15px;
}

.back-to-careers a img {
  width: 15px;
  height: auto;
}

.job-page {
  margin-top: 50px;
  margin-bottom: 100px;
}

.job-page .inner {
  max-width: 750px;
}
.job-description {
  margin-top: 100px;
}

.job-description p {
  color: #24252a;
  line-height: 1.3;
}

.job-description h2 {
  color: #24252a;
  font-size: 24px;
  font-style: normal;
}

/* Job Feed Page */

.careers-content-text {
  margin: 100px 0;
}

.careers-content-text h2 {
  color: #24252a;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.careers-content-text p {
  color: #24252a;
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px;
  letter-spacing: -1.2px;
  width: 70%;
  margin: 0 auto;
}

p a {
  color: #2E4C9C;
}

.careers-list {
  margin: 50px 0 100px 0;
}

.careers-list .inner {
  max-width: 900px;
}

.careers-list-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-top: 1px solid #797b9c;
  padding: 20px 0;
}

/* Careers list grid alignment for category, first job row, and button */
.careers-list .careers-list-item {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 2fr max-content;
  column-gap: 30px;
  row-gap: 25px;
  align-items: start;
}

/* Flatten wrappers so details and button participate in the parent grid */
.careers-list .careers-list-item .job-list {
  display: contents;
}

.careers-list .careers-list-item .job-row {
  display: contents;
  padding: 0;
}

/* Place items into grid columns */
.careers-list .careers-list-item .job-category {
  grid-column: 1;
}

.careers-list .careers-list-item .job-details {
  grid-column: 2;
  justify-self: center;
}

.careers-list .careers-list-item .view-job {
  grid-column: 3;
  align-self: center;
  justify-self: end;
  margin-top: 0;
}

/* Ensure the button sizes to its content inside careers list */
.careers-list .view-job a {
  width: auto;
  margin-top: 0;
}

.job-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.job-category h2 {
  color: #2151f3;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin: 0;
}

.job-details h4 {
  color: var(--Black, #24252a);
  margin: 0;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 33.8px */
}

.job-details p {
  color: var(--Black, #24252a);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 26px */

  margin: 0;
  margin-top: 10px;
}

.disclaimer-copy {
  margin-top: 50px;
}

/* Services Page */

.services-list {
  padding: 20px 0 100px 0;
}

.service-item {
  border-bottom: 1px solid #24252a;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  padding: 30px 20px 20px 20px;
  gap: 10px;
  flex-wrap: wrap;
}

.service-title {
  color: #24252a;
  margin-bottom: 0;
  font-family: "Assistant", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 52px */
  letter-spacing: -1.2px;
}

.service-item-left img {
  width: 170px;
  height: auto;
  object-fit: cover;
}

.service-item-right {
  width: 50%;
}

.service-description {
  color: #24252a;

  font-family: "Assistant", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 27px */
  letter-spacing: -0.54px;
}

.learn-more-container {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 5px;
}

.learn-more-link {
  color: #2151f3;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  transition: 0.25s ease-in-out;
  text-decoration: none;
  transition: 0.25s ease-in-out;
}

.arrow-right,
.arrow-left {
  transition: ease-in-out 0.5s;
}

.learn-more-link:hover .arrow-right {
  transform: translateX(5px);
}

.back-to-careers a:hover .arrow-left {
  transform: translateX(-5px);
  transition: ease-in-out 0.5s;
}

.back-to-careers a:hover .arrow-left path {
  fill: #2151f3;
  transition: ease-in-out 0.5s;
}

.back-to-careers a:hover {
  color: #2151f3;
  transition: ease-in-out 0.5s;
}

/* 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: 80px;
  width: auto;
  transition: 0.25s ease-in-out;
}

.footer-logo-link:hover img {
  opacity: 0.8;
}

.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: #ffffff;
  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;
  filter: brightness(0) invert(1);
}

.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 */
}

.basic-hero-section {
  margin-top: 200px;
}

.basic-page-wrapper {
  margin: 50px 0;
  min-height: 200px;
}

a.privacy-mobile {
  font-size: 16px;
  text-decoration: none;
  padding: 0;
}

/* General Styles */
.basic-hero-section h1 {
  font-size: 58px;
  font-weight: 700;
  line-height: 130%;
  color: #24252a;
}

.basic-page-wrapper p {
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  color: #24252a;
}

.basic-page-wrapper h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
  color: #24252a;
}

.basic-page-wrapper h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  color: #24252a;
}

/* Report Page */

#report-header {
  padding: 25px 0;
}

#report-header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

#report-header h1 {
  margin: 0;
  font-size: 19px;
  font-weight:normal;
}

#report-header h1 svg {
  display:inline-block;
  vertical-align: middle;
}

#report-header h1 span {
  display:inline-block;
  margin-left: 10px;
  vertical-align: middle;
}

.report-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.report-btn {
  text-decoration: none;
  transition: 0.25s ease-in-out;
  background-color: #2151f3;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}

.report-btn a {
  text-decoration: none;
  transition: 0.25s ease-in-out;
}
.report-btn a h2 {
  color: #ffffff;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.6px;
}

.report-btn:hover {
  color: #ffffff;
  transition: 0.25s ease-in-out;
  background-color: #f65900;
}

#report-icon {
  width: 20px;
  height: auto;
}

.select-wrapper a {
    display: block;
    margin-top: 0;
    color: black;
    text-align: left;
    font-size: 17px;
    text-transform: capitalize;
}

.select-wrapper a.a-active:hover {
  background-color: transparent !important;
}

.select-wrapper a:hover {
  background-color:#dddddd;
}

.select-wrapper a:nth-child(2) {
    margin-top: 0px;
}

.select-container {
  border: 1px solid #c8c8c8;
  background-color: white;
  height: 44px;
  width:300px;
  overflow:hidden;
}

.select-container.expanded {
  height: auto;
}

.select-container a.report-creative {
  padding:11px 20px;
  text-decoration: none;
}

img.select-arrow  {
  float:right;
  margin-left:10px;
}

#ad-metrics .main-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000;
}

#ad-metrics h2 {
  font-size: 32px;
  font-weight: 700;
  margin-top: 60px;
  margin-bottom: 10px;
  color: #000;
  border-bottom: 2px dotted #ccc;
  padding-bottom: 10px;
}

#ad-metrics table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  margin-top: 20px;
}

#ad-metrics table thead {
  background-color: #2E4C9C; /* Royal blue */
}

#ad-metrics table thead th {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 20px;
  text-align: left;
}

#ad-metrics table thead th strong {
  font-weight: 700;
}

#ad-metrics table tbody td {
  padding: 20px;
  font-size: 16px;
  line-height: 1.5;
  border-bottom: 1px solid #ddd;
}

#ad-metrics table tbody tr:nth-child(odd) {
  background-color: #fff;
}

#ad-metrics table tbody tr:nth-child(even) {
  background-color: #D4DCEC;
}

#ad-metrics table tbody td:first-child {
  font-weight: 600;
  width: 20%;
}

#ad-metrics table tbody td:nth-child(2) {
  width: 40%;
}

#ad-metrics table tbody td:nth-child(3) {
  width: 40%;
}

#ad-metrics table tbody tr:last-child td {
  border-bottom: none;
}

#ad-metrics {
  display:none;
}

#ad-metrics.is-active {
  display:block;
}
/* -------------------------------------------------------------- */
/* 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%;
  }
}
