html {
  font-size: 16px;
}

@media (min-width: 768px) {
  html {
    font-size: calc(14px + 2 * (100vw - 768px) / 223);
  }
}
@media (min-width: 992px) {
  html {
    font-size: calc(15.11px + 0.89 * (100vw - 992px) / 448);
  }
}
@media (min-width: 1440px) {
  html {
    font-size: calc(16px + 0.58 * (100vw - 1440px) / 480);
  }
}
@media screen and (min-width: 1920px) {
  html {
    font-size: 16px;
  }
}
/* nixie-one-regular - latin */
@font-face {
  font-family: "ITC Garamond Std";
  src: url("../fonts/itc-garamond-std.woff2") format("woff2"), url("../fonts/itc-garamond-std.woff") format("woff"), url("../fonts/itc-garamond-std.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/* roboto-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v48-latin-regular.woff2") format("woff2"), url("../fonts/roboto-v48-latin-regular.ttf") format("truetype");
}
/* roboto-600 - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/roboto-v48-latin-600.woff2") format("woff2"), url("../fonts/roboto-v48-latin-600.ttf") format("truetype");
}
:root {
  --gray-cold: #272726;
  --green-light: #CFFF5E;
  --blue-light: #64ACE6;
  --gray-light: #FFFDE7;
  --heading-font-family-primary: "ITC Garamond Std", sans-serif;
  --heading-font-family-secondary: "Roboto", sans-serif;
  --text-font-family: "Roboto", sans-serif;
  /* Desktop heading sizes, weights, line-heights */
  --h1-size: 3.75rem;
  /* 60px */
  --h1-weight: 400;
  --h1-line-height: 3.81rem;
  /*61px*/
  --h2-size: 3.75rem;
  /* 32px */
  --h2-weight: 400;
  --h2-line-height: 3.81rem;
  /*40px*/
  --h3-size: 1.5rem;
  /* 24px */
  --h3-weight: 400;
  --h3-line-height: 2.25rem;
  /*436px*/
  --h4-size: 1.125rem;
  /* 18px */
  --h4-weight: 400;
  --h4-line-height: 1.625rem;
  --container-max-width-xs: 100%;
  --container-max-width-ssm: 370px;
  --container-max-width-sm: 540px;
  --container-max-width-md: 720px;
  --container-max-width-lg: 1040px;
  --container-max-width-xl: 1260px;
}

@media (max-width: 768px) {
  :root {
    /* Mobile heading sizes */
    --h1-size: 3rem;
    --h1-weight: 400;
    --h1-line-height: 3.25rem;
    --h2-size: 2.5rem;
    --h2-weight: 400;
    --h2-line-height: 2.75rem;
    --h3-size: 1.75rem;
    --h3-weight: 400;
    --h3-line-height: 1.75rem;
    --h4-size: 1.125rem !important;
    --h4-weight: 400;
    --h4-line-height: 1.5rem !important;
  }
}
@media (min-width: 350px) {
  :root {
    --container: var(--container-max-width-ssm);
  }
}
@media (min-width: 576px) {
  :root {
    --container: var(--container-max-width-sm);
  }
}
@media (min-width: 768px) {
  :root {
    --container: var(--container-max-width-md);
  }
}
@media (min-width: 992px) {
  :root {
    --container: var(--container-max-width-lg);
  }
}
@media (min-width: 1040px) {
  :root {
    --container: var(--container-max-width-xl);
  }
}
@media (min-width: 576px) {
  .container {
    max-width: var(--container-max-width-sm) !important;
    margin: 0 auto;
    padding: 0 1rem;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: var(--container-max-width-md) !important;
    margin: 0 auto;
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: var(--container-max-width-lg) !important;
    margin: 0 auto;
    padding: 0 1rem;
  }
}
@media (min-width: 1040px) {
  .container {
    max-width: var(--container-max-width-xl) !important;
    margin: 0 auto;
    padding: 0;
  }
}
* {
  font-family: var(--text-font-family);
  margin: 0;
  padding: 0;
  color: var(--gray-cold);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
}

p strong {
  color: var(--gray-cold);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
}

h1, h2, h3, h4 {
  font-family: var(--heading-font-family-primary);
  margin: 0;
  padding: 0;
  font-weight: 400;
}
h1 strong, h2 strong, h3 strong, h4 strong {
  font-family: var(--heading-font-family-primary);
  margin: 0;
  padding: 0;
  font-weight: 600;
}

h1 {
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
  line-height: var(--h1-line-height);
}
h1 strong {
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
  line-height: var(--h1-line-height);
}

h2 {
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: var(--h2-line-height);
  letter-spacing: -2px;
}

h3 {
  font-size: var(--h3-size);
  font-weight: var(--h3-weight);
  line-height: var(--h3-line-height);
}

h4 {
  font-size: var(--h4-size);
  font-weight: var(--h4-weight);
  line-height: var(--h4-line-height);
}

body {
  padding: 0;
  margin: 0;
}

html {
  margin-top: 0 !important;
  scroll-behavior: smooth;
}

.wp-block-image, .wp-block-columns, .wp-swiper > .wp-swiper__wrapper, .wp-block-video {
  margin: 0;
  padding: 0;
}

.cta-button-primary a, .cta-button-primary button {
  background: var(--gray-cold);
  border: none;
}
.cta-button-primary a:hover, .cta-button-primary button:hover {
  background: var(--gray-light);
}

.cta-button-transparent a, .cta-button-transparent button {
  border-radius: 8px;
  border: 1px solid #fff;
  background: transparent !important;
}
.cta-button-transparent a:hover, .cta-button-transparent button:hover {
  opacity: 0.8;
}

.cta-button-primary a, .cta-button-primary button, .cta-button-transparent a, .cta-button-transparent button {
  display: flex;
  gap: 1rem;
  cursor: pointer;
  color: var(--gray-cold);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  border-radius: 8px;
  transition: all 0.8s ease;
  padding: 12px 32px 12px 32px !important;
}

.join_our_team__title-mobile {
  display: none !important;
}

.wp-block-cover, .wp-block-cover-image {
  padding: 0 !important;
}

.wp-block-group__inner-container {
  width: 100%;
}

/*HERO SECTION*/
.hero_section {
  position: relative;
  height: 100vh !important;
}
.hero_section .wp-block-cover__inner-container {
  height: 100% !important;
}
.hero_section .intro_logo {
  left: calc((100vw - var(--container)) / 2);
  position: absolute;
  top: 24.8vh;
  transition: opacity 0.3s ease;
  z-index: 999;
}
.hero_section .bars-overlay.horizontal {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: row;
  z-index: 2;
  pointer-events: none;
}
.hero_section .bars-overlay.horizontal .bar {
  width: 20%;
  height: 100%;
  background: var(--gray-cold);
  transform: scaleX(0);
  transform-origin: left;
}
.hero_section .hero_section__decorative-bg {
  position: relative;
}
.hero_section .hero_section__decorative-bg .hero_section__decorative-bg-bars {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
  padding-left: 2.5rem;
}
.hero_section .hero_section__decorative-bg .hero_section__decorative-bg-dots {
  position: absolute;
  top: 10rem;
  left: calc((100vw + var(--container)) / 2 + 8px);
  /* right border */
  opacity: 0.5;
}
.hero_section .hero_section__b2m-claim {
  width: 11.875rem;
  position: absolute;
  top: 54.33vh;
  left: calc((100vw - var(--container)) / 2);
}

/*END HERO SECTION*/
.paralex-container-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: var(--gray-cold);
  overflow: hidden;
}
.paralex-container-section .wp-block-group {
  height: 100%;
}
.paralex-container-section .wp-block-group__inner-container {
  position: relative;
  height: 100%;
}
.paralex-container-section .image-vertical-bars {
  position: absolute;
  top: 9rem;
  left: 1rem;
}
.paralex-container-section .image {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: -18rem;
}
.paralex-container-section .text {
  position: relative;
  z-index: 2;
  color: #FFFDE7;
  text-align: center;
  padding-top: 16rem;
  padding-bottom: 10rem;
}

.section-clients {
  padding: 8rem 0;
  background: var(--gray-cold);
  position: relative;
}
.section-clients .container {
  padding-left: 1rem;
  padding-right: 1rem;
}
.section-clients h2 {
  margin-bottom: 2rem;
  color: var(--gray-light);
}
.section-clients .clients-logos__row {
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  /* flexible */
}
.section-clients .clients-logos__row img {
  max-width: 12.5rem;
}
.section-clients .clients-logos {
  position: relative;
}
.section-clients .clients-logos .section-clients__paralex {
  position: absolute;
  right: 0;
  bottom: 0rem;
  z-index: -1;
}
.section-clients .section-clients__container {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 108%;
  z-index: 2;
}

@media (min-width: 1200px) {
  .section-clients .clients-logos__row {
    grid-template-columns: repeat(5, 1fr);
    /* max 5 per row on big screens */
  }
}
.section-marketing {
  position: relative;
  padding: 50px 0 200px;
}
.section-marketing .container {
  position: relative;
}
.section-marketing .section-marketing__bg {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}
.section-marketing .section-marketing__bg > div {
  height: 100% !important;
}
.section-marketing .section-marketing__bg > div > figure {
  height: 100%;
}
.section-marketing .section-marketing__bg img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transform-origin: 0 0;
  width: 100%;
  will-change: transform;
}
.section-marketing .section-marketing__bg:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  background: rgba(39, 39, 38, 0.75);
}
.section-marketing .wp-block-columns {
  gap: 0;
  margin-bottom: 10rem;
}
.section-marketing .wp-block-columns h2 {
  margin-bottom: 6.5rem;
}
.section-marketing .wp-block-columns ul li {
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: var(--gray-cold);
  text-transform: uppercase;
}
.section-marketing .wp-block-columns .section-marketing__column-one {
  position: relative;
  top: -5rem;
  /* Adjust height */
  padding: 1rem 2rem;
  background: var(--gray-light);
  z-index: 1;
}
.section-marketing .wp-block-columns .section-marketing__column-two {
  position: relative;
  top: 5rem;
  /* Adjust height */
  padding: 1rem 2rem;
  background: var(--blue-light);
  z-index: 1;
}
.section-marketing .wp-block-columns .section-marketing__column-three {
  position: relative;
  top: -5rem;
  /* Adjust height */
  padding: 1rem 2rem;
  z-index: 1;
  background: var(--green-light);
}
.section-marketing .wp-block-columns .section-marketing__column-four {
  position: relative;
  top: 5rem;
  /* Adjust height */
  padding: 1rem 2rem;
  z-index: 1;
  background: var(--gray-cold);
}
.section-marketing .wp-block-columns .section-marketing__column-four h2, .section-marketing .wp-block-columns .section-marketing__column-four p, .section-marketing .wp-block-columns .section-marketing__column-four li {
  color: var(--gray-light);
}
.section-marketing .section-marketing__line-1 {
  position: absolute;
  bottom: -138px;
  left: 0;
  z-index: 0;
}
.section-marketing .section-marketing__line-2 {
  position: absolute;
  top: 0;
  right: 0;
}

.section-campaign {
  position: relative;
  height: 100vh;
  overflow: hidden;
  padding: 5rem 0;
  z-index: 998;
}
.section-campaign .section-campaign__bg-container {
  z-index: 1;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.section-campaign .section-campaign__bg-container img {
  object-fit: cover;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.section-campaign .section-campaign__bg-container:after {
  top: 0;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.section-campaign .section-campaign__campigns-container {
  z-index: 10;
  position: relative;
}
.section-campaign .section-campaign__campigns-container > div {
  display: flex;
  height: 100%;
  gap: 400px;
  padding-left: calc(100% - var(--container));
  position: relative;
  will-change: transform;
}
.section-campaign .section-campaign__campigns-container .section-campaign__card {
  width: 100%;
  cursor: pointer;
  z-index: 998;
}
.section-campaign .section-campaign__campigns-container .section-campaign__card > div {
  width: 67.92vh;
  max-width: 37.5rem;
}
.section-campaign .section-campaign__campigns-container .section-campaign__card > div > figure {
  height: 59.34vh;
  margin-bottom: 0;
}
.section-campaign .section-campaign__campigns-container .section-campaign__card .section-campaign__card-text {
  padding: 1rem 1.5rem;
  background: var(--gray-light);
}
.section-campaign .section-campaign__campigns-container .section-campaign__card .section-campaign__card-text h2 {
  font-size: calc(0.04345 * var(--container, 100vw));
  line-height: calc(0.04345 * var(--container, 100vw));
}
.section-campaign .section-campaign__campigns-container .section-campaign__card .section-campaign__card-text .section-campaign__card-meta {
  margin-top: 2rem;
}
.section-campaign .section-campaign__campigns-container .section-campaign__card .section-campaign__card-text .section-campaign__card-meta > div {
  display: flex;
}
.section-campaign .section-campaign__campigns-container .section-campaign__card .section-campaign__card-text .section-campaign__card-meta > div p {
  font-size: 0.875rem;
  line-height: 1.375rem;
  font-weight: 700;
}
.section-campaign .section-campaign__campigns-container .section-campaign__card .section-campaign__card-text .section-campaign__card-meta > div figure {
  margin-left: auto;
}
.section-campaign .section-campaign__campigns-container .section-campaign__card .section-campaign__card-text .section-campaign__card-meta > div figure img {
  max-width: 4.5rem;
}
.section-campaign .section-campaign__campigns-container .section-campaign__card .section-campaign__image-container {
  overflow: hidden;
}
.section-campaign .section-campaign__campigns-container .section-campaign__card .section-campaign__image-container .section-campaign__card-thumbnail {
  margin: 0;
  background: var(--gray-cold);
}
.section-campaign .section-campaign__campigns-container .section-campaign__card .section-campaign__image-container .section-campaign__card-thumbnail img {
  transition: transform 0.5s ease-in-out;
}
.section-campaign .section-campaign__campigns-container .section-campaign__card_intro > div {
  width: 49rem;
  color: var(--gray-light);
}
.section-campaign .section-campaign__campigns-container .section-campaign__card_intro > div h2 {
  color: var(--gray-light);
}

.section-community {
  padding: 5rem 0;
  background: var(--green-light);
}
.section-community .section-community__testimonial-review, .section-community .section-community__testimonial-client {
  font-size: 3.75rem;
  font-family: var(--heading-font-family-primary);
  line-height: 3.8125rem;
  color: var(--gray-cold);
  letter-spacing: -0.125rem;
  margin: 0;
}
.section-community .section-community__testimonial-review {
  margin-bottom: 1.5rem;
}
.section-community .section-community__testimonial-title {
  font-size: 0.75rem;
  font-family: var(--text-font-family);
  line-height: 1rem;
  color: var(--gray-cold);
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.section-community .section-community__container {
  margin-bottom: 8.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.section-ceos {
  padding: 5rem 0;
  background: var(--gray-cold);
}
.section-ceos h2 {
  color: var(--gray-light);
}
.section-ceos .meet-the-ceos {
  display: none;
}
.section-ceos .container {
  margin: 0 auto;
}
.section-ceos .section-ceos__ceo-cards-container {
  transform: translateX(100%);
  position: relative;
}
.section-ceos .section-ceos__bottom-lines-image-left:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.section-ceos .section-ceos__ceo-card-container {
  gap: 1.25rem;
}
.section-ceos .section-ceos__ceo-card-container .section-ceos__ceo-card-name {
  font-family: var(--text-font-family);
  line-height: 1rem;
  font-size: 0.75rem;
  color: var(--gray-light);
  margin-bottom: 1rem;
  text-transform: uppercase;
  margin-top: 1rem;
}
.section-ceos .section-ceos__ceo-card-container .section-ceos__ceo-card-contact img {
  vertical-align: top;
}
.section-ceos .section-ceos__bottom-lines {
  padding-top: 8rem;
  position: relative;
}
.section-ceos .section-ceos__bottom-lines h2 {
  position: absolute;
  bottom: 12rem;
  left: 0;
  right: 0;
  color: var(--gray-light);
  padding: 0 16rem;
}
.section-ceos .section-ceos__bottom-lines .section-ceos__bottom-lines-imglines {
  margin-top: 6rem;
}
.section-ceos .section-ceos__bottom-lines .section-ceos__bottom-lines-container {
  gap: 0;
}

.section-contact__button a, .section-contact__button button {
  background: var(--gray-cold);
  color: var(--gray-light);
  padding: 3.5rem 3.5rem;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 900;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  position: relative;
  width: 560px !important;
  z-index: 999;
}
.section-contact__button a img, .section-contact__button button img {
  width: 2.25rem;
  height: 1.5rem;
}
.section-contact__button a:before, .section-contact__button button:before {
  content: "+";
  position: absolute;
  top: -12px;
  left: -5px;
  color: var(--gray-light);
  font-size: 24px;
  text-shadow: 558px 0 0 white;
  border: none;
  font-family: Times New Roman, serif;
  font-weight: 100;
}
.section-contact__button a:after, .section-contact__button button:after {
  content: "+";
  font-family: Times New Roman, serif;
  font-weight: 100;
  position: absolute;
  bottom: -10px;
  left: -5px;
  color: var(--gray-light);
  font-size: 24px;
  text-shadow: 558px 0 0 white;
}
.section-contact__button a:hover, .section-contact__button button:hover {
  background: var(--gray-light);
  color: var(--gray-cold);
}
.section-contact__button a:hover img, .section-contact__button button:hover img {
  filter: invert(92%) sepia(30%) saturate(2000%) hue-rotate(190deg) brightness(15%) contrast(90%);
}

.section-contact {
  padding: 5rem 0;
  background: var(--gray-cold);
}
.section-contact .section-contact__bars {
  margin-top: 7rem;
}

header.main-header {
  position: fixed;
  z-index: 99;
  width: 100%;
  color: #fff;
  padding: 0.75rem 1.25rem;
  height: 24px;
}
header.main-header .logo-header {
  display: none;
}
header.main-header .logo-header img {
  height: 1rem;
  margin-top: 1rem;
  margin-left: 1rem;
}
header.main-header nav#header {
  position: absolute;
  z-index: 1;
  top: 0.625rem;
  width: 100%;
  left: calc((100vw - 1260px) / 2);
}
header.main-header nav#header #navbar ul {
  display: flex;
  list-style: none;
  width: 100%;
}
header.main-header nav#header #navbar ul li {
  flex: 0 0 calc(var(--container) / 2);
}
header.main-header nav#header #navbar ul li a {
  color: var(--gray-light);
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 1rem;
  font-family: var(--text-font-family);
  text-decoration: none;
  position: relative;
}
header.main-header nav#header #navbar ul li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  /* adjust to your preference */
  width: 100%;
  height: 1px;
  /* underline thickness */
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease, transform-origin 0s;
}
header.main-header nav#header #navbar ul li a:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}
header.main-header nav#header #navbar ul li a:not(:hover):after {
  transform-origin: right;
}

#wrapper {
  overflow: hidden;
}
#wrapper:before, #wrapper:after {
  content: "";
  position: fixed;
  border-left: 1px solid;
  height: 100%;
  color: var(--gray-light);
  opacity: 0.2;
  width: 1px;
  top: 0;
  mix-blend-mode: difference;
  z-index: 997;
}
#wrapper:before {
  left: calc((100vw - var(--container)) / 2 - 8px);
  /* left border */
}
#wrapper:after {
  right: calc((100vw - var(--container)) / 2 - 8px);
  /* right border */
}
#wrapper .middle-line {
  position: fixed;
  left: 50%;
  top: 0;
  height: 100vh;
  border-left: 1px solid var(--gray-light);
  opacity: 0.2;
  mix-blend-mode: difference;
  z-index: 997;
  transform: translateX(-50%);
  /* exact center */
}

footer#footer {
  padding: 5rem 1.25rem 7rem;
  background: var(--gray-cold);
}
footer#footer a, footer#footer p, footer#footer li, footer#footer h5 {
  color: var(--gray-light);
  font-size: 0.75rem;
  line-height: 1rem;
  text-transform: uppercase;
}
footer#footer a {
  text-decoration: none;
}
footer#footer a:hover {
  text-decoration: underline;
}
footer#footer .footer-top {
  padding-bottom: 5rem;
  display: flex;
}
footer#footer .footer-top > div:first-of-type {
  width: 32.29vw;
}
footer#footer .footer-top p {
  text-transform: uppercase;
}
footer#footer .footer-top img {
  max-width: 4.125rem;
}
footer#footer .footer-main {
  display: flex;
  padding-bottom: 7rem;
}
footer#footer .footer-main > div {
  flex: 1;
}
footer#footer .footer-main h2 {
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--gray-light);
  letter-spacing: 0;
}
footer#footer .footer-main .wp-block-social-link {
  border-radius: 4px;
  gap: 0.25rem;
  margin-top: 0.25rem;
}
footer#footer .footer-main .wp-block-social-link a {
  border-radius: 4px;
}
footer#footer .footer-main .wp-block-social-link a svg {
  fill: var(--gray-light);
}
footer#footer .footer-main .social_widget_area {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex: none;
  width: calc((100vw - var(--container)) / 2 - 40px);
  min-width: 11.8rem;
}
footer#footer .footer-main .contact_widget_area, footer#footer .footer-main .careers_widget_area {
  display: flex;
  justify-content: flex-start;
}
footer#footer .footer-main .contact_widget_area {
  justify-content: flex-start;
}
footer#footer .footer-main .office_widget_area {
  width: calc((100vw - var(--container)) / 2 - 16px);
  flex: none;
  min-width: clamp(10rem, 25vw, 20rem);
}
footer#footer .footer-menu nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 4rem;
}
footer#footer .menu-footer-menu-container ul {
  list-style: none;
}

.join_our_team .join_our_team__title {
  background: var(--gray-light);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: absolute;
  right: 0;
  width: 42px;
  padding-left: 16px;
  cursor: pointer;
  transition: width 0.4s ease;
}
.join_our_team .join_our_team__title:hover {
  width: 52px;
}
.join_our_team .join_our_team__title .vertical-90 {
  transform: rotate(270deg);
  white-space: nowrap;
  color: var(--gray-cold);
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  will-change: transform;
}
.join_our_team .join_our_team__content {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  z-index: 999;
}
.join_our_team .join_our_team__close {
  padding: 0;
  width: 3.25rem;
  height: 3.25rem;
  background: var(--green-light);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1000;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 20px;
}

.join_our_team__container .wp-block-columns {
  gap: 0;
  height: 100vh;
}
.join_our_team__container .join_our_team__container_left {
  position: sticky;
  top: 0;
}
.join_our_team__container .join_our_team__container_left .join_our_team__job-description {
  background: var(--blue-light);
  padding: 3.75rem 6.5rem;
  height: 100%;
}
.join_our_team__container .join_our_team__container_left .join_our_team__job-description h2, .join_our_team__container .join_our_team__container_left .join_our_team__job-description p, .join_our_team__container .join_our_team__container_left .join_our_team__job-description a, .join_our_team__container .join_our_team__container_left .join_our_team__job-description button {
  color: var(--gray-cold);
}
.join_our_team__container .join_our_team__container_left .join_our_team__job-description h2 {
  margin-bottom: 1rem;
}
.join_our_team__container .join_our_team__container_left .join_our_team__job-description p {
  font-size: 0.875rem;
  line-height: 1.375rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.join_our_team__container .join_our_team__container_left .join_our_team__job-description a {
  font-size: 1.625rem;
  line-height: 1.234;
  margin-top: 2rem;
  display: flex;
  gap: 3rem;
  background: none;
  padding: 0;
}
.join_our_team__container .join_our_team__container_left .join_our_team__job-description .join_our_team__container-faq-btn {
  border-radius: 50%;
  height: 145px;
  width: 145px;
  position: absolute;
  bottom: 4rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: var(--green-light);
}
.join_our_team__container .join_our_team__container_left .join_our_team__job-description .join_our_team__container-faq-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  font-family: var(--heading-font-family-primary);
  font-size: 3.75rem;
}
.join_our_team__container .join_our_team__container_left .join_our_team__job-description .join_our_team__container-faq-btn a:hover {
  opacity: 0.8;
}
.join_our_team__container .join_our_team__jobs_container {
  overflow-y: auto;
  background: var(--gray-light);
}
.join_our_team__container .join_our_team__jobs_container::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Edge */
}
.join_our_team__container .join_our_team__jobs_container h2 {
  font-size: 3.75rem;
  line-height: 3.75rem;
  margin-bottom: 7rem;
}
.join_our_team__container .join_our_team__jobs_container .join_our_team__jobs_container_group {
  position: relative;
}
.join_our_team__container .join_our_team__jobs_container .join_our_team__jobs_container_group .join_our_team__jobs_item {
  padding: 1rem;
  border-bottom: 1px solid rgba(39, 39, 38, 0.2);
  cursor: pointer;
}
.join_our_team__container .join_our_team__jobs_container .join_our_team__jobs_container_group .join_our_team__jobs_item p {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.5rem;
}
.join_our_team__container .join_our_team__jobs_container .join_our_team__jobs_container_group .join_our_team__jobs_item p img {
  width: 1rem;
}
.join_our_team__container .join_our_team__jobs_container .join_our_team__jobs_container_group .join_our_team__jobs_item a {
  text-decoration: none;
}
.join_our_team__container .join_our_team__jobs_container .join_our_team__jobs_container_group .join_our_team__jobs_item:hover a {
  text-decoration: underline;
}
.join_our_team__container .join_our_team__jobs_container .join_our_team__jobs_container_group .join_our_team__jobs_item img {
  max-width: 7.25rem;
  width: 100%;
}
.join_our_team__container .join_our_team__jobs_container .join_our_team__jobs_container_group .join_our_team__jobs_item .join_our_team__jobs_item__job-type {
  display: flex;
  align-items: center;
  gap: 20px;
}
.join_our_team__container .join_our_team__jobs_container .join_our_team__jobs_container_group .join_our_team__jobs_item .join_our_team__jobs_item__job-type > div {
  position: relative;
}
.join_our_team__container .join_our_team__jobs_container .join_our_team__jobs_container_group .join_our_team__jobs_item .join_our_team__jobs_item__job-type > div:not(:first-of-type):after {
  content: "";
  border-left: 1px solid var(--gray-cold);
  top: 0;
  position: absolute;
  left: -10px;
  height: 100%;
}
.join_our_team__container .join_our_team__jobs_container .join_our_team__jobs_container_group .join_our_team__icon-scroll-down {
  position: sticky;
  bottom: 2rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
.join_our_team__container .join_our_team__jobs_container .join_our_team__jobs_container_group .join_our_team__icon-scroll-down img {
  transform: rotate(90deg);
  cursor: pointer;
  margin: 0 auto;
}
.join_our_team__container .join_our_team__jobs_container .join_our_team__jobs_container_group .job-testimonials {
  display: flex;
  gap: 2rem;
  padding: 3rem;
  background: var(--green-light);
  font-family: var(--heading-font-family-primary);
}
.join_our_team__container .join_our_team__jobs_container .join_our_team__jobs_container_group .job-testimonials p {
  font-family: var(--heading-font-family-primary);
  font-size: 28px;
  line-height: 40px;
}
.join_our_team__container .join_our_team__jobs_container .join_our_team__jobs_container_group .job-testimonials .job-testimonials__name {
  margin-top: 42px;
  margin-bottom: 0;
}
.join_our_team__container .join_our_team__jobs_container .join_our_team__jobs_container_group .job-testimonials img {
  max-width: 150px;
}

body:has(.join_our_team__content.open), body:has(#campaign-content.open) {
  overflow: hidden;
}
body:has(.join_our_team__content.open) header, body:has(#campaign-content.open) header {
  z-index: 0;
}

#job-content, #campaign-content, #faqs-content, #page-content {
  opacity: 0;
  transform: translateY(20px);
  /* start slightly below */
  transition: all 0.4s ease;
  display: none;
  /* hidden by default */
  z-index: 999;
}
#job-content .jobs-hero-section, #campaign-content .jobs-hero-section, #faqs-content .jobs-hero-section, #page-content .jobs-hero-section {
  padding-top: 0;
}

#job-content.show, #campaign-content.show, #faqs-content.show, #page-content.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
  /* slide up */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: var(--gray-light);
  overflow: auto;
}
#job-content.show .close-job-popup, #campaign-content.show .close-job-popup, #faqs-content.show .close-job-popup, #page-content.show .close-job-popup {
  position: absolute;
  top: 0;
  width: 53px;
  right: 0;
  height: 53px;
  background: var(--green-light);
  justify-content: center;
  align-items: center;
  display: flex;
}
#job-content.show .sticky-content, #campaign-content.show .sticky-content, #faqs-content.show .sticky-content, #page-content.show .sticky-content {
  top: 0;
  z-index: 10;
}
#job-content.show .sticky-content.fixed, #campaign-content.show .sticky-content.fixed, #faqs-content.show .sticky-content.fixed, #page-content.show .sticky-content.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
#job-content.show ul, #campaign-content.show ul, #faqs-content.show ul, #page-content.show ul {
  margin-left: 1.5rem;
}
#job-content.show ul ul, #campaign-content.show ul ul, #faqs-content.show ul ul, #page-content.show ul ul {
  margin-left: 1rem;
}
#job-content.show .jobs-facts-section__facts-item, #campaign-content.show .jobs-facts-section__facts-item, #faqs-content.show .jobs-facts-section__facts-item, #page-content.show .jobs-facts-section__facts-item {
  border-top: 1px solid var(--gray-cold);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
#job-content.show .section-contact__button, #campaign-content.show .section-contact__button, #faqs-content.show .section-contact__button, #page-content.show .section-contact__button {
  margin-bottom: 7rem;
  margin-top: 5rem;
  width: 560px;
}
#job-content.show .section-contact__button a, #job-content.show .section-contact__button button, #campaign-content.show .section-contact__button a, #campaign-content.show .section-contact__button button, #faqs-content.show .section-contact__button a, #faqs-content.show .section-contact__button button, #page-content.show .section-contact__button a, #page-content.show .section-contact__button button {
  background: transparent;
  color: var(--gray-cold);
}
#job-content.show .section-contact__button a:before, #job-content.show .section-contact__button a:after, #job-content.show .section-contact__button button:before, #job-content.show .section-contact__button button:after, #campaign-content.show .section-contact__button a:before, #campaign-content.show .section-contact__button a:after, #campaign-content.show .section-contact__button button:before, #campaign-content.show .section-contact__button button:after, #faqs-content.show .section-contact__button a:before, #faqs-content.show .section-contact__button a:after, #faqs-content.show .section-contact__button button:before, #faqs-content.show .section-contact__button button:after, #page-content.show .section-contact__button a:before, #page-content.show .section-contact__button a:after, #page-content.show .section-contact__button button:before, #page-content.show .section-contact__button button:after {
  color: var(--gray-cold);
  text-shadow: 557px 0 0 var(--gray-cold);
}
#job-content.show .section-contact__button a:hover, #job-content.show .section-contact__button button:hover, #campaign-content.show .section-contact__button a:hover, #campaign-content.show .section-contact__button button:hover, #faqs-content.show .section-contact__button a:hover, #faqs-content.show .section-contact__button button:hover, #page-content.show .section-contact__button a:hover, #page-content.show .section-contact__button button:hover {
  background: var(--gray-cold);
  color: var(--gray-light);
}
#job-content.show .section-contact__button a:hover img, #job-content.show .section-contact__button button:hover img, #campaign-content.show .section-contact__button a:hover img, #campaign-content.show .section-contact__button button:hover img, #faqs-content.show .section-contact__button a:hover img, #faqs-content.show .section-contact__button button:hover img, #page-content.show .section-contact__button a:hover img, #page-content.show .section-contact__button button:hover img {
  filter: invert(88%) sepia(9%) saturate(528%) hue-rotate(360deg) brightness(104%) contrast(97%);
}
#job-content.show hr, #campaign-content.show hr, #faqs-content.show hr, #page-content.show hr {
  margin-top: 3rem;
  width: 100%;
  color: #272726;
}

.job-description-section {
  padding: 5rem 1rem;
  background: var(--gray-light);
}
.job-description-section .job-description-section__middle h2 {
  margin-top: 3.5rem;
  margin-bottom: 2rem;
}
.job-description-section .job-description-section__middle .job-description-section__apply a {
  padding: 0;
  background: none;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: center;
  color: var(--gray-cold);
  font-weight: 900;
  font-size: 1.625rem;
  margin-bottom: 5rem;
}
.job-description-section .job-description-section__middle .job-description-section__apply a:hover {
  opacity: 0.8;
}

.jobs-facts-section {
  padding: 1rem;
}
.jobs-facts-section h2 {
  margin-bottom: 3rem;
}

.campaign-hero-section {
  padding-top: 0;
}

.campaign-description-section__heading {
  background: var(--gray-light);
  margin-bottom: 8rem !important;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 2rem 1rem;
}
.campaign-description-section__heading img {
  width: 13rem;
}
.campaign-description-section__heading p, .campaign-description-section__heading strong {
  font-size: 0.875rem;
  line-height: 1.375;
}
.campaign-description-section__heading p strong {
  font-weight: 600 !important;
}
.campaign-description-section__heading h2.campaign-description-section__year {
  font-family: var(--heading-font-family-secondary);
  font-weight: 600;
}
.campaign-description-section__heading h2 {
  margin-bottom: 1.5rem;
}

.campaign-description-section {
  padding: 2rem 1rem;
  background: var(--gray-light);
}
.campaign-description-section .job-description-section__first p {
  font-size: 0.875rem;
  line-height: 1.375rem;
}
.campaign-description-section .job-description-section__first p strong {
  font-weight: 600;
}
.campaign-description-section .campaign-description-section__middle {
  height: 100%;
  /*figure{
    height: 100%;
  }*/
}
.campaign-description-section .campaign-description-section__middle p {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.375;
}
.campaign-description-section .campaign-description-section__middle .campaign-description-section__apply a {
  padding: 0;
  background: none;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: center;
  color: var(--gray-cold);
  font-weight: 900;
  font-size: 1.625rem;
  margin-bottom: 5rem;
}
.campaign-description-section .campaign-description-section__middle .campaign-description-section__apply a:hover {
  opacity: 0.8;
}
.campaign-description-section .campaign-description-section__middle .campaign-description-section__content-desc {
  gap: 1rem;
  margin-bottom: 1rem;
}
.campaign-description-section .campaign-description-section__middle .campaign-description-section__content-desc p {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: normal;
  margin-bottom: 1rem;
}
.campaign-description-section .campaign-description-section__middle .wp-block-image {
  height: 100%;
  margin-bottom: 0;
}
.campaign-description-section .campaign-description-section__middle .wp-block-image img {
  object-fit: cover;
  height: 100%;
}
.campaign-description-section .campaign-description-section__middle .wp-block-video {
  height: 100%;
}
.campaign-description-section .campaign-description-section__middle .wp-block-video video {
  height: 100%;
}
.campaign-description-section .campaign-description-section__year {
  /*   margin-top: 3.5rem;
     margin-bottom: 5rem;*/
  font-family: var(--heading-font-family-secondary);
  font-weight: 700;
}
.campaign-description-section .campaign-description-section__location_container {
  margin-bottom: 6rem;
}
.campaign-description-section .campaign-description-section__content {
  gap: 1rem;
}
.campaign-description-section .campaign-description-section__content .campaign-description-section__content-brand-experience {
  margin-top: 4rem;
  width: 50%;
  margin-left: auto;
}
.campaign-description-section .campaign-description-section__content .campaign-description-section__content-brand-experience p {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.375;
}
.campaign-description-section .campaign-description-section__content .wp-block-video video {
  width: 100%;
}

.campaign-facts-section {
  padding: 1rem;
}
.campaign-facts-section .campaign-facts-section__facts-item {
  border-top: 1px solid var(--gray-cold);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.campaign-facts-section .campaign-facts-section__facts-item p, .campaign-facts-section .campaign-facts-section__facts-item li, .campaign-facts-section .campaign-facts-section__facts-item a {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.375;
}
.campaign-facts-section .campaign-facts-section__facts-item a {
  text-decoration: none;
}
.campaign-facts-section .campaign-facts-section__facts-item > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.campaign-photos-section {
  padding-bottom: 8rem;
}
.campaign-photos-section .wp-block-columns {
  gap: 1rem;
}
.campaign-photos-section figure {
  height: 100%;
}
.campaign-photos-section figure img {
  object-fit: cover;
  height: 100%;
}

.campaign-next {
  position: fixed;
  /* bottom: 0; */
  background: var(--green-light);
  width: 100%;
  text-align: center;
  padding: 3rem 0;
  color: var(--gray-cold);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.campaign-next:hover {
  opacity: 0.8;
}

.overflow-hidden {
  overflow: hidden;
}
.overflow-hidden #wrapper:before, .overflow-hidden #wrapper:after {
  display: none;
}
.overflow-hidden .middle-line {
  display: none;
}

.loader {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top: 4px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

@keyframes spin {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.close-button-popup {
  position: fixed;
  top: 0;
  width: 53px;
  right: 16px;
  height: 53px;
  background: var(--green-light);
  justify-content: center;
  align-items: center;
  display: flex;
  z-index: 9999;
}

.faqs-section {
  background: var(--gray-cold);
  padding: 5rem 1rem;
}
.faqs-section h2 {
  color: var(--gray-light);
  margin-bottom: 2rem;
}
.faqs-section .wp-block-aab-accordion-item {
  border-top: 1px solid var(--gray-light) !important;
  outline: none !important;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 2rem !important;
}
.faqs-section .aagb__accordion_body {
  padding-left: 0 !important;
  padding-bottom: 0 !important;
}
.faqs-section .aagb__accordion_body p, .faqs-section .aagb__accordion_body li, .faqs-section .aagb__accordion_body a {
  color: var(--gray-light);
  font-size: 0.875rem;
  line-height: 1.375rem;
}
.faqs-section .aagb__accordion_head {
  background: none !important;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 2rem !important;
  padding-bottom: 0rem !important;
}
.faqs-section .aagb__accordion_head.active .aagb__icon {
  justify-content: center;
  align-items: center;
  display: flex;
}
.faqs-section .aagb__accordion_head h5 {
  color: var(--gray-light);
  font-size: 1.75rem;
  line-height: 2.5rem;
  font-family: var(--heading-font-family-primary);
}
.faqs-section .aagb__accordion_head .dashicons-arrow-down-alt2:before {
  color: var(--gray-light);
}

#page-content .page-content {
  padding: 6.5rem 1rem;
}
#page-content .page-content h3 {
  margin-bottom: 1rem;
  margin-top: 2rem;
}
#page-content .page-content p, #page-content .page-content li, #page-content .page-content a, #page-content .page-content span, #page-content .page-content strong {
  font-size: 0.875rem;
  line-height: 1.375rem;
}

@media screen and (min-width: 1510px) {
  .section-campaign .section-campaign__campigns-container .section-campaign__card .section-campaign__card-text h2 {
    font-size: 42px;
    line-height: 44px;
    letter-spacing: -1px;
  }
}
@media screen and (max-width: 1024px) {
  .join_our_team__job-description .wp-block-buttons {
    position: relative;
  }

  .join_our_team__container .join_our_team__container_left .join_our_team__job-description {
    padding: 3.75rem 1.5rem;
  }

  .hero_section .intro_logo {
    left: 4rem;
  }

  .hero_section .hero_section__b2m-claim {
    left: 4rem;
  }

  .section-campaign__card_intro {
    padding-left: 1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1600px) {
  header.main-header nav#header #navbar ul li {
    max-width: 33.3333333333vw;
  }

  header.main-header nav#header {
    left: max(16px, (100vw - 1260px) / 2);
  }
}
@media screen and (max-width: 768px) {
  /* CSS rules for screens wider than 768px */
  body.overflow-hidden .join_our_team__title-mobile {
    display: none !important;
  }

  h2 {
    letter-spacing: 0;
  }

  .join_our_team__title-mobile {
    display: block !important;
    position: fixed;
    bottom: 7rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 99999;
    text-align: center;
  }
  .join_our_team__title-mobile a {
    height: 42px;
    right: 0;
    max-width: 200px !important;
    padding: 0 1rem;
    left: 0;
    margin: 0 auto;
    bottom: 6rem;
    border-radius: 1rem;
    background: var(--gray-light);
    color: var(--gray-cold);
    text-transform: uppercase;
  }

  .join_our_team .join_our_team__title {
    display: none;
    /*height: 42px;
    right: 0;
    width: 93px;
    padding: 0 1rem;
    left: 0;
    margin: 0 auto;
    bottom: 6rem;
    border-radius: 1rem;*/
  }

  .join_our_team .join_our_team__title .vertical-90 {
    transform: rotate(0deg);
  }

  .join_our_team__container .join_our_team__container_left .join_our_team__job-description {
    padding: 3.5rem 1rem 14rem;
  }

  .join_our_team__container .join_our_team__container_left {
    position: relative;
  }

  /* .join_our_team{
     overflow: auto;
   }*/
  .join_our_team .join_our_team__content.open {
    overflow: auto;
  }

  .join_our_team__container {
    margin-top: -53px;
  }

  .join_our_team__container .join_our_team__container_left .join_our_team__job-description .join_our_team__container-faq-btn a {
    font-size: 2rem;
  }

  .join_our_team__container .join_our_team__container_left .join_our_team__job-description .join_our_team__container-faq-btn {
    height: 110px;
    width: 110px;
  }

  .join_our_team__container .join_our_team__jobs_container .join_our_team__jobs_container_group .join_our_team__icon-scroll-down {
    position: sticky;
  }

  .join_our_team__container .join_our_team__jobs_container .join_our_team__jobs_container_group .job-testimonials {
    flex-direction: column;
    text-align: left;
    gap: 16px;
    padding: 18px;
  }
  .join_our_team__container .join_our_team__jobs_container .join_our_team__jobs_container_group .job-testimonials br {
    display: none;
  }

  .join_our_team .join_our_team__close {
    position: sticky;
    right: 0;
    margin-left: auto;
  }

  .section-marketing .wp-block-columns .section-marketing__column-four {
    top: -7rem;
    z-index: 999;
  }

  .section-marketing .wp-block-columns .section-marketing__column-three {
    top: 0rem;
    z-index: 999;
  }

  .section-marketing .wp-block-columns .section-marketing__column-two {
    top: 0rem;
    z-index: 999;
  }

  .section-marketing .wp-block-columns .section-marketing__column-one {
    top: 0rem;
    z-index: 999;
  }

  .section-campaign__card-text {
    max-width: 22.5rem;
    padding: 1rem;
  }

  .section-campaign .section-campaign__campigns-container .section-campaign__card > div > figure {
    height: 21.25rem;
  }

  .section-campaign .section-campaign__campigns-container .section-campaign__card > div {
    width: 22.5rem;
  }

  .section-community .section-community__testimonial-review, .section-community .section-community__testimonial-client {
    font-size: 2.75rem;
    line-height: 2.8125rem;
  }

  .section-contact__button a, .section-contact__button button {
    width: calc(100vw - 32px) !important;
  }

  .section-contact__button a:before, .section-contact__button button:before {
    text-shadow: calc(100vw - 32px) 0 0 white;
  }

  .section-contact__button a, .section-contact__button button {
    padding: 2.5rem 1.5rem;
    width: calc(100vw - 32px) !important;
    margin: 0 auto;
    gap: 1rem;
  }

  .section-contact__button a:after, .section-contact__button button:after {
    text-shadow: calc(100vw - 32px) 0 0 white;
  }

  .section-ceos .section-ceos__bottom-lines h2 {
    bottom: 46rem;
    padding: 0 1rem;
  }

  footer#footer .footer-top {
    flex-direction: column;
    padding-bottom: 3rem;
    justify-content: center;
  }
  footer#footer .footer-top > div {
    text-align: center;
    width: auto !important;
  }

  footer#footer .footer-main {
    flex-direction: column;
  }

  footer#footer .footer-main .contact_widget_area, footer#footer .footer-main .careers_widget_area {
    display: flex;
    justify-content: center;
  }

  footer#footer .footer-main .social_widget_area {
    margin-top: 2.5rem;
    justify-content: center;
  }

  .section-ceos .section-ceos__ceo-cards-container {
    display: none;
  }

  .close-button-popup {
    right: 0;
  }

  #job-content.show .section-contact__button a:before, #job-content.show .section-contact__button a:after, #job-content.show .section-contact__button button:before, #job-content.show .section-contact__button button:after, #campaign-content.show .section-contact__button a:before, #campaign-content.show .section-contact__button a:after, #campaign-content.show .section-contact__button button:before, #campaign-content.show .section-contact__button button:after {
    color: var(--gray-cold);
    text-shadow: calc(100vw - 32px) 0 0 var(--gray-cold);
  }

  .job-description-section .job-description-section__middle .job-description-section__apply a {
    gap: 1rem;
  }

  .job-description-section figure {
    float: left !important;
  }

  .hero_section .hero_section__b2m-claim {
    width: 16rem;
    position: absolute;
    top: 54.33vh;
    left: calc((100vw - var(--container)) / 2);
  }

  .hero_section .intro_logo {
    left: calc((100vw - var(--container)) / 2);
    top: 24.8vh;
  }
  .hero_section .intro_logo figure {
    max-width: 13.125rem;
  }

  header.main-header nav#header {
    left: 0;
  }

  header.main-header nav#header #navbar ul {
    gap: 2rem;
  }

  .section-clients .clients-logos__row img {
    max-width: 7.5rem;
  }

  .section-clients .clients-logos__row {
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(110px, 0fr));
  }

  .hero_section__decorative-bg-dots {
    display: none;
  }

  .hero_section .hero_section__decorative-bg .hero_section__decorative-bg-bars {
    left: 80%;
  }

  #job-content.show .jobs-facts-section__facts-item, #campaign-content.show .jobs-facts-section__facts-item, #faqs-content.show .jobs-facts-section__facts-item {
    gap: 0.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .paralex-container-section .text {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .section-marketing .wp-block-columns {
    gap: 0;
    margin-bottom: 15rem;
  }

  .section-ceos .section-ceos__bottom-lines {
    padding-top: 0;
  }

  .section-ceos {
    padding: 0;
  }

  .section-clients .clients-logos .section-clients__paralex {
    bottom: 12rem;
    z-index: 1;
  }

  header.main-header nav#header #navbar ul li {
    flex: 0;
  }

  .section-campaign .section-campaign__campigns-container > div {
    padding-left: 10PX;
  }

  .section-campaign .section-campaign__campigns-container .section-campaign__card .section-campaign__card-text h2 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }

  .campaign-description-section .campaign-description-section__content .campaign-description-section__content-brand-experience {
    width: 78%;
    margin-bottom: 4rem;
  }

  .campaign-description-section .campaign-description-section__middle .campaign-description-section__content-desc p {
    margin-bottom: 0;
  }

  .campaign-description-section .campaign-description-section__location_container {
    margin-bottom: 0;
  }

  .campaign-facts-section .campaign-facts-section__facts-item {
    padding-top: 1rem;
    padding-bottom: 1rem;
    gap: 0.5rem;
  }

  /* .wp-block-columns.clients-logos__row {
     display: flex;
     flex-wrap: wrap !important;
     gap:0;
   }
   .wp-block-columns.clients-logos__row > .wp-block-column {
     flex: 0 0 33.33%;
     max-width: 33.33%;
   }*/
  .campaign-description-section__heading {
    position: relative;
    margin-bottom: 1rem !important;
  }
  .campaign-description-section__heading h2 {
    text-align: center;
  }
  .campaign-description-section__heading .job-description-section__first {
    text-align: center;
  }
  .campaign-description-section__heading .campaign-description-section__year {
    margin-bottom: 0 !important;
  }
  .campaign-description-section__heading .wp-block-image figure {
    float: none;
    display: flex;
    justify-content: center;
  }
  .campaign-description-section__heading .wp-block-group__inner-container .wp-block-columns {
    display: block !important;
  }
  .campaign-description-section__heading .wp-block-group__inner-container .wp-block-columns .wp-block-image {
    margin: 0 !important;
  }
  .campaign-description-section__heading .wp-block-group__inner-container .wp-block-columns .wp-block-image figure {
    margin: 0;
    padding: 0;
  }
  .campaign-description-section__heading .wp-block-group__inner-container .wp-block-columns .wp-block-column:first-child {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  .campaign-description-section__heading .wp-block-group__inner-container .wp-block-columns .wp-block-column:nth-last-child(2), .campaign-description-section__heading .wp-block-group__inner-container .wp-block-columns .wp-block-column:last-child {
    display: inline-block;
    width: 48%;
    vertical-align: middle;
    margin-right: 1% !important;
  }
  .campaign-description-section__heading .wp-block-group__inner-container .wp-block-columns .wp-block-column:last-child {
    margin-right: 0;
  }

  footer#footer .footer-main .office_widget_area {
    width: auto;
    text-align: center;
    margin-bottom: 2rem;
  }

  footer#footer .footer-main .social_widget_area {
    width: auto;
    text-align: center;
  }

  footer#footer .footer-main .contact_widget_area {
    width: 100%;
    justify-content: center;
    margin-bottom: 2rem;
  }
  footer#footer .footer-main .contact_widget_area p, footer#footer .footer-main .contact_widget_area h2 {
    text-align: center;
  }
  footer#footer .footer-main .contact_widget_area ul {
    justify-content: center;
  }
}
.aagb__accordion_body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.aagb__accordion_head {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Optional: rotate arrow when active */
.aagb__accordion_head.active .aagb__icon {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

/* Base styles */
/*navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.navbar-nav {
  display: flex;
  gap: 1rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
}
*/
/* Mobile collapse */
.collapse {
  display: none;
}

.collapse.show {
  display: block;
}

.toggler-bar {
  display: none;
}

@media (min-width: 768px) {
  .collapse {
    display: block !important;
  }

  .navbar-toggler {
    display: none;
  }

  .navbar-nav {
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  header.main-header {
    padding: 0;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 0.75rem;
  }

  /* Hamburger button */
  .navbar-toggler {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    top: 1rem;
    right: 1rem;
    position: absolute;
    z-index: 99;
  }
  .navbar-toggler.change span {
    width: 22px;
    height: 3px;
    border-radius: 3px;
    margin-bottom: 5px;
    transition: all 0.23s ease-in;
  }
  .navbar-toggler.change .toggler-bar:first-of-type {
    /*  -webkit-transform: rotate(-45deg) translate(-7px, 6px);
      transform: rotate(-45deg) translate(-7px, 6px)*/
    transform-origin: center center;
    /* or top left, etc. */
    transform: rotate(-45deg) translate(-5px, 5px);
  }
  .navbar-toggler.change .toggler-bar:nth-of-type(2) {
    opacity: 0;
  }
  .navbar-toggler.change .toggler-bar:last-of-type {
    -webkit-transform: rotate(45deg) translate(-6px, -6px);
    transform: rotate(45deg) translate(-5px, -5px);
  }

  .toggler-bar {
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--gray-light);
    border-radius: 2px;
  }

  #navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--gray-cold);
    display: none;
    /* hidden by default */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  #navbar.show {
    display: flex;
    text-align: center;
  }

  #navbar .nav-link {
    color: var(--gray-light);
    font-size: 1.5rem;
  }

  header.main-header nav#header #navbar ul li a {
    font-size: 1.25rem;
  }
}
.content-404 {
  padding-top: 10rem;
  padding-bottom: 15rem;
  text-align: center;
  background-color: var(--gray-cold);
  background-image: url("../images/bg-lines-vertical-404.svg"), url("../images/bg-404.jpg"), url("../images/bg-lines-404.svg"), url("../images/bg-lines-horizontal-404.svg");
  background-position: left 25% top 20%, right 4% top 25%, left 7% bottom -20%, right 25% bottom 7%;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: 16px 180px, 823px 627px, 612px 512px, 180px 16px;
}
.content-404 h1 {
  font-size: 20.5rem;
  line-height: 21rem;
  color: var(--gray-light);
}
.content-404 p {
  font-size: 3.75rem;
  line-height: 3.75rem;
  color: var(--gray-light);
  font-family: var(--heading-font-family-primary);
}
.content-404 .join_our_team__title {
  display: none;
}

/*# sourceMappingURL=main.css.map */
