@charset "UTF-8";
body {
  overflow-x: hidden;
}

html {
  font-size: 16px;
  overflow-x: hidden;
}

/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

@media only screen and (max-width: 1450px) {
  html {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1220px) {
  html {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1070px) {
  html {
    font-size: 10.5px;
  }
}
h1 {
  text-transform: uppercase;
}

.red-hover:hover {
  color: #D0162E;
}

.wide-container {
  max-width: 100% !important;
  width: 100%;
  padding-left: var(--container-padding, 2rem);
  padding-right: var(--container-padding, 2rem);
  margin-left: auto;
  margin-right: auto;
}

.brxe-button {
  transition: background-color 0.5s ease;
}

/* nav styles*/
.mobile-only-cta {
  display: none !important;
}

.hover-underline-animation {
  display: inline-block;
  position: relative;
}

.hover-underline-animation::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #FFFFFF;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.inner-drop-down-content {
  margin-top: 2px;
}

.brxe-text-basic {
  font-size: 1.5rem;
}

/* footer styles*/
.form-wrapper {
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  row-gap: 30px;
}
.form-wrapper .brxe-form {
  column-gap: 10px !important;
}
.form-wrapper .form-group:nth-of-type(1) {
  width: 60%;
  margin: 0;
  border-radius: 30px;
  gap: 30px;
  padding: 0;
  flex-direction: row;
  align-items: center;
}
.form-wrapper .form-group:nth-of-type(1) input {
  margin: 0;
  border-radius: 30px;
  padding: 5px 10px;
}
.form-wrapper .bricks-button {
  border: none !important;
  padding-left: 0px;
  padding-right: 0px;
}
.form-wrapper .bricks-button:hover {
  background-color: transparent !important;
}
.form-wrapper .bricks-button:hover::after {
  transform: translateX(10px); /* Move icon to the right on hover */
}
.form-wrapper .bricks-button::after {
  content: "\f054"; /* Unicode for fa-caret-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* 900 = Solid style */
  margin-left: 0.5em; /* space between text and icon */
  display: inline-block;
  color: white;
  transition: transform 0.3s ease;
}
.form-wrapper .footer-list .brxe-text {
  padding-top: 0;
}
.form-wrapper .footer-list .brxe-text ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 0;
  padding-top: 0;
  margin-left: 0;
  padding-left: 0;
}
.form-wrapper .footer-list .brxe-text li:hover {
  color: black;
  cursor: pointer;
}

/* hero section styles*/
.section-padding-hero {
  padding: 180px 60px 60px 60px;
  width: 100%;
  min-height: calc(100vh - 60px);
}
.section-padding-hero .brxe-container {
  height: 100%;
  flex: 1;
  justify-content: center;
  border-radius: 60px;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  position: relative;
  align-items: center;
  background-color: white !important;
}
.section-padding-hero h1 {
  filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.5));
}
.section-padding-hero .brxe-container h1:nth-of-type(n+2) {
  font-size: 3rem;
  line-height: 3rem;
}
.section-padding-hero .brxe-container::after {
  content: "";
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(57deg, #000000 0%, rgba(0, 0, 0, 0) 100%) 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  opacity: 0.35;
  position: absolute;
  top: 0;
  left: 0;
}
.section-padding-hero .brxe-block {
  position: relative;
  z-index: 2;
  max-width: 70%;
  align-items: center;
}

.section-padding-contact .brxe-container::after {
  content: none;
}
.section-padding-contact .brxe-block {
  max-width: 100%;
}

.section-background-full {
  padding: 80px 80px;
  position: relative;
  row-gap: 60px;
}
.section-background-full .brxe-container {
  height: 100%;
  flex: 1;
  justify-content: center;
  position: relative;
  max-width: 1000px;
  gap: 30px;
}
.section-background-full .container-background-parallax {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  max-width: none;
}
.section-background-full .container-background-80 {
  height: 100%;
}

.section-background-contact .block-width-half {
  padding: 80px 80px;
  transform: translateX(0);
  max-width: 1500px;
  border-radius: 60px;
}
.section-background-contact .container-background-parallax {
  max-width: 100%;
}
.section-background-contact .brxe-container {
  max-width: none;
  border-radius: 60px;
}
.section-background-80 {
  min-height: 110vh;
}
.section-background-80 .container-background-80 {
  height: 100%;
  width: 85%;
  left: 15%;
}
.section-background-80 .block-width-half {
  padding: 80px 80px;
  transform: translateX(15%);
}
@media (max-width: 1520px) {
  .section-background-80 .block-width-half {
    transform: translateX(5%);
  }
}

.section-background-50 {
  min-height: 50vh;
}
.section-background-50 .container-background-parallax {
  width: 50%;
  left: 50%;
}

.section-background-50-left {
  min-height: 50vh;
}
.section-background-50-left .container-background-parallax {
  width: 50%;
  left: 0%;
}

.section-background-100-left .block-width-half {
  padding: 80px 80px;
  transform: translateX(70px);
}
@media (max-width: 1520px) {
  .section-background-100-left .block-width-half {
    transform: translateX(70px);
  }
}

.section-background-100-right {
  flex-direction: row-reverse;
}
.section-background-100-right .block-width-half {
  padding: 80px 80px;
  transform: translateX(-70px);
}
@media (max-width: 1520px) {
  .section-background-100-right .block-width-half {
    transform: translateX(-70px);
  }
}

.timeline-wrap .brxe-div::after {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  transform: translateX(-50%);
  width: 25px;
  height: 25px;
  background-color: #D0162E;
  border: 2px solid black;
  border-radius: 50%;
  z-index: 2;
}
.timeline-wrap .brxe-div::before {
  content: "";
  position: absolute;
  top: 25px;
  left: -10%;
  transform: translateX(-50%);
  width: 1px;
  height: calc(100% - 25px);
  background-color: black;
  z-index: 1;
}
.timeline-wrap .brxe-div:last-child::before {
  display: none;
}

.div-quotes::before {
  content: "“";
  position: absolute;
  top: 0;
  left: -12%;
  font-size: 4rem;
  color: black;
  line-height: 1;
}
.div-quotes::after {
  content: "”";
  position: absolute;
  top: 0;
  right: -12%;
  font-size: 4rem;
  color: black;
  line-height: 1;
}

.block-width-half {
  background: white;
  padding: 120px 80px;
  border-radius: 60px;
}

.block-width-half-thin {
  padding: 80px 80px;
}

.div-shape-bubble {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}

.imageblock-animation {
  width: 100px;
  height: 100px;
  position: absolute;
  top: -30px;
  left: -30px;
}
.imageblock-animation img {
  width: 100%;
}

.imageblock-animation-capabilities {
  width: 75px;
  top: 50px;
  left: calc(100% - 125px);
}

/*form*/
.gs-form {
  column-gap: 20px;
}
.gs-form .form-group {
  width: inherit;
}
.gs-form input[type=radio] {
  -webkit-appearance: none; /* Remove default styling */
  -moz-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #333;
  border-radius: 0px !important;
  cursor: pointer;
  position: relative;
}
.gs-form input[type=radio]:checked::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-color: #333;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 0px !important;
}
.gs-form .form-group:nth-of-type(5), .gs-form .form-group:nth-of-type(6), .gs-form .form-group:nth-of-type(7), .gs-form .form-group:nth-of-type(8), .gs-form .submit-button-wrapper {
  width: calc(50% - 20px);
}

/*jobs loop posts*/
.wrapper-job-titles h3 {
  font-size: 2rem;
  line-height: 2.3rem;
}

/*language dropdown styling*/
.trp-language-switcher {
  width: 85px;
  height: 31px;
}

.trp-ls-shortcode-current-language {
  width: 85px !important;
  padding: 2px 5px 2px 5px !important;
}

.trp-ls-shortcode-language {
  width: 85px !important;
  padding: 2px 5px 2px 5px !important;
}

.trp-ls-shortcode-disabled-language {
  padding: 2px !important;
  width: 85px !important;
}

.trp-language-switcher > div {
  background-position: calc(100% - 10px) calc(1em - 8px), calc(100% - 3px) calc(1em + 0px) !important;
}

.trp-language-switcher > div > a {
  padding: 2px !important;
  width: 85px !important;
}

@media only screen and (max-width: 1024px) {
  .brxe-nav-nested.brx-open .brx-submenu-toggle {
    justify-content: end;
  }
  .mobile-only-cta {
    display: flex !important;
    padding: 10px;
    border: 1px solid white;
    border-radius: 20px;
  }
  .gs-nav-nested-items {
    justify-content: flex-start !important;
  }
}
@media only screen and (max-width: 768px) {
  .wide-container {
    padding: 20px 20px;
  }
  .section-background-80 {
    min-height: 90vh;
  }
  .section-background-full {
    padding: 40px 30px;
  }
  .section-padding-hero {
    padding: 120px 25px 60px 25px;
    min-height: calc(65vh - 60px);
  }
  .section-padding-hero h1 {
    font-size: 2.8rem;
    line-height: 3rem;
  }
  .section-padding-hero .brxe-block {
    max-width: 100%;
  }
  .section-padding-hero .brxe-container {
    border-radius: 30px;
  }
  .section-padding-hero .brxe-container h1:nth-of-type(n+2) {
    font-size: 2rem;
    line-height: 2.2rem;
  }
  .form-wrapper .form-group:nth-of-type(1) {
    width: 80%;
  }
  .form-wrapper .footer-list .brxe-text {
    padding-top: 0;
  }
  .form-wrapper .footer-list .brxe-text ul {
    row-gap: 20px;
  }
  .gs-form .form-group:nth-of-type(5), .gs-form .form-group:nth-of-type(6), .gs-form .form-group:nth-of-type(7), .gs-form .form-group:nth-of-type(8), .gs-form .submit-button-wrapper {
    width: 100%;
  }
  .section-background-80 .block-width-half {
    padding: 30px 30px;
    transform: translateX(0);
  }
  .imageblock-animation {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 20px;
    left: 80%;
  }
  .imageblock-animation-mobilehide {
    display: none;
  }
  .block-width-half {
    background: white;
    padding: 30px 30px;
    border-radius: 30px;
  }
  .section-background-50 {
    min-height: 60vh;
  }
  .section-background-50 .imageblock-animation {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 20px;
    left: 80%;
  }
  .section-background-50 .block-width-half {
    padding: 30px 30px;
    transform: translateX(0);
  }
  .section-background-50 .container-background-parallax {
    width: 100%;
    left: 0%;
  }
  .section-background-50-left {
    min-height: 60vh;
  }
  .section-background-50-left .block-width-half {
    padding: 30px 30px;
    transform: translateX(0);
  }
  .section-background-50-left .imageblock-animation {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 20px;
    left: 80%;
  }
  .section-background-50-left .container-background-parallax {
    width: 100%;
    left: 0%;
  }
}
