@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Economica:ital,wght@0,400;0,700;1,400;1,700&family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Russo+One&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
header {
  position: fixed;
  top: 0;
  height: 90px;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: transparent;
  z-index: 1200;
}
header * {
  transition: all ease-in-out 0.25s;
}
header .d-flex {
  display: flex !important;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
header .menu ul {
  display: flex;
  list-style: none;
  gap: 60px;
  margin-bottom: 0;
}
header .menu ul li {
  position: relative;
}
header .menu ul li:hover::before {
  content: "";
  bottom: 0;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 0;
  background-color: #fff;
}
header .menu ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
}
header .menu ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 2px;
  background-color: #fff;
}
@media only screen and (max-width: 1200px) {
  header .menu {
    display: none;
  }
}
header .mobile-menu {
  display: none;
}
header .mobile-menu a {
  border-style: solid;
  border-width: 2px;
  border-radius: 30px;
  padding: 12px 24px;
  border-color: white;
  background-color: white;
  color: #1e1d1e;
  text-decoration: none;
  font-weight: 700;
  z-index: 1200;
  position: relative;
}
@media only screen and (max-width: 1200px) {
  header .mobile-menu {
    display: block;
  }
}
header .contact-button {
  border-style: solid;
  border-width: 2px;
  border-radius: 30px;
  padding: 4px 10px;
  border-color: white;
  background-color: white;
  color: #1e1d1e;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
}
@media only screen and (max-width: 1200px) {
  header .contact-button {
    display: none;
  }
}
header img {
  width: 190px;
  height: auto;
}

.mobile-menu-foldout {
  opacity: 0;
  z-index: 9;
  position: fixed;
  top: -400vh;
  left: 0;
  transition: all ease-in-out 0.42s;
  width: 100vw;
  background-color: #2b2b2b;
}
.mobile-menu-foldout ul {
  height: 100vh;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}
.mobile-menu-foldout ul a {
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  text-transform: uppercase;
}
.mobile-menu-foldout.is-active {
  top: 0;
  opacity: 1;
}
@media only screen and (min-width: 1200px) {
  .mobile-menu-foldout.is-active {
    display: none;
  }
}

.hamburger {
  position: relative;
  top: 0;
  z-index: 12009;
  right: 0;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before,
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
  background-color: #fff;
}

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  /* start transparent */
  transition: background-color 0.3s ease;
  z-index: 1200;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  /* optional: fade shadow */
}

.left-sticky-tabs {
  position: fixed;
  top: 50%;
  left: 0;
  display: flex;
  flex-direction: column;
  z-index: 12009;
}

.left-sticky-tabs .tab {
  background: #1e1d1e;
  color: #fff;
  text-decoration: none;
  padding: 14px 20px;
  margin: 4px 0;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  transition: transform 0.35s ease, background 0.3s ease, padding 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  position: relative;
  border-right: 1px solid;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: #b6d4ff;
}

.left-sticky-tabs .tab:hover {
  background: #b6d4ff;
  padding-left: 26px;
  color: #000;
}

.left-sticky-tabs .highlight {
  background: #b6d4ff;
  color: #000;
}

@media (max-width: 1200px) {
  .img-float {
    opacity: 0.3;
    z-index: 1;
    position: absolute;
    top: 112px;
    width: 200vw;
    transform: rotate(45deg);
    left: -195px;
  }
  .left-sticky-tabs {
    display: none;
  }
}
.left-sticky-tabs .tab {
  will-change: transform;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.3s ease, padding 0.3s ease;
}

/* Smooth fade */
#site-header .desktop-menu > .menu-item {
  transition: opacity 0.25s ease;
}

/* Fade ALL top-level items */
#site-header.submenu-active .desktop-menu > .menu-item {
  opacity: 0;
  pointer-events: none;
}

/* Keep hovered parent visible */
#site-header.submenu-active .desktop-menu > .menu-item.active-parent {
  opacity: 1;
  pointer-events: auto;
}

section.full-width .sink {
  display: inline-block;
  will-change: transform, opacity;
  transition: transform 0.05s linear, opacity 0.1s linear;
}
section.full-width span {
  font-size: inherit;
}
section.full-width.option-1 {
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
  position: relative;
  overflow: hidden;
  background-color: #7E736B;
  height: 70vh;
}
@media (max-width: 960px) {
  section.full-width.option-1 {
    height: 100vh;
  }
}
section.full-width.option-1 .img-float {
  opacity: 0.3;
  z-index: 1;
  position: absolute;
  top: -18px;
}
section.full-width.option-1 .banner-vector-container {
  position: absolute;
  right: 85px;
  bottom: -110px;
  z-index: 5;
}
section.full-width.option-1 .banner-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}
section.full-width.option-1:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  background-color: #232d72;
  z-index: 5;
  opacity: 0.67;
}
@media (max-width: 960px) {
  section.full-width.option-1:before {
    clip-path: none;
    width: 100vw;
  }
}
section.full-width.option-1 .text-content {
  width: 100%;
  height: 100%;
  position: relative;
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
@media (max-width: 960px) {
  section.full-width.option-1 .text-content {
    padding-right: 20px;
  }
}
section.full-width.option-1 .text-content .btn {
  background: #2b2b2b;
  border: 1px solid #2b2b2b;
  font-size: 1.2rem;
  text-transform: uppercase;
  border-radius: 0;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 4px;
}
section.full-width.option-1 .text-content .btn:hover {
  background-color: #fbfafa;
  color: #2b2b2b;
  border-color: #fbfafa;
}
@media (max-width: 960px) {
  section.full-width.option-1 .text-content .btn {
    font-size: 0.8rem;
  }
}
@media (max-width: 960px) {
  section.full-width.option-1 .text-content .title,
  section.full-width.option-1 .text-content .text-area {
    max-width: 100%;
  }
}
section.full-width.option-1 .text-content .text-area,
section.full-width.option-1 .text-content .title {
  z-index: 9;
  position: relative;
}
section.full-width.option-1 .text-content .text-area h1,
section.full-width.option-1 .text-content .text-area p,
section.full-width.option-1 .text-content .title h1,
section.full-width.option-1 .text-content .title p {
  color: #fbfafa;
}
section.full-width.option-1 .text-content .text-area h2,
section.full-width.option-1 .text-content .title h2 {
  color: #fbfafa;
}
section.full-width.option-1 .text-content .text-area h2,
section.full-width.option-1 .text-content .title h2 {
  font-size: 18px;
  line-height: 36px;
  margin-bottom: 20px;
}
@media (max-width: 960px) {
  section.full-width.option-1 .text-content .text-area h2,
  section.full-width.option-1 .text-content .title h2 {
    font-size: 16px;
  }
}
section.full-width.option-1 .text-content .text-area h1,
section.full-width.option-1 .text-content .title h1 {
  line-height: 68px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media (max-width: 960px) {
  section.full-width.option-1 .text-content .text-area h1,
  section.full-width.option-1 .text-content .title h1 {
    font-size: 2rem;
    line-height: initial;
  }
}

.leader {
  min-height: 300px;
  margin-bottom: 100px;
}
.leader .content-area .image {
  position: relative;
}
.leader .content-area .image img {
  border-radius: 0 30px 30px 0;
  position: absolute;
  left: -160px;
  bottom: -265px;
  width: 50vw;
  max-height: 269px;
  object-fit: cover;
  z-index: 999;
}

section.form {
  position: relative;
  padding: 60px 0 30px 0;
  z-index: 9;
}
section.form .link {
  margin-top: 40px;
}
section.form .link a {
  background: transparent;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 1.4rem;
  border: 2px solid;
  border-radius: 4px;
  transition: all ease-in-out 0.3s;
}
section.form .link a:hover {
  background-color: white;
  color: #151516;
  border-color: white;
}
@media (max-width: 960px) {
  section.form .link a {
    font-size: 1rem;
  }
}
@media (max-width: 999px) {
  section.form form {
    margin-top: 40px !important;
  }
}
section.form .full-width {
  width: 100% !important;
}
section.form .text {
  color: #fff;
}
section.form .forminator-row label {
  color: #fff;
}
section.form .forminator-row * {
  color: #fff;
}
section.form .forminator-description {
  display: none !important;
}
section.form {
  display: flex;
  align-items: center;
}
section.form h2 {
  color: white;
}
section.form .container {
  position: relative;
  z-index: 99;
}
@media only screen and (max-width: 600px) {
  section.form {
    padding: 0;
    padding-top: 40px;
  }
}
section.form .banner-vector-container {
  position: absolute;
  right: 85px;
  top: 0;
  z-index: 5;
}
section.form .title-area .title,
section.form .title-area .text {
  max-width: 95%;
}
section.form form {
  margin-top: 0;
}
section.form form .forminator-label {
  font-size: 1.222rem !important;
}
section.form form .forminator-row-last .forminator-field {
  background-color: transparent !important;
  padding: 0 !important;
}
section.form form .forminator-button {
  background: transparent;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 1.4rem;
  border: 2px solid !important;
  border-radius: 4px !important;
  transition: all ease-in-out 0.3s;
  border-color: white !important;
}
section.form form .forminator-button:hover {
  background-color: white;
  color: #151516;
  border-color: white;
}

.forminator-ui#forminator-module-109.forminator-design--default .forminator-file-upload > span {
  color: white;
}

/* Main drag & drop upload area */
.forminator-file-upload {
  border: 2px dashed #141414;
  /* Indigo-style accent */
  border-radius: 10px;
  background: #f8f9ff;
  padding: 28px;
  text-align: center;
  transition: all 0.25s ease;
  position: relative;
}

/* Hover + drag-over state */
.forminator-file-upload:hover,
.forminator-file-upload.forminator-dragover {
  background: #eef2ff;
  border-color: #3730a3;
}

/* Upload icon */
/* Instruction text */
.forminator-file-upload .forminator-upload-message {
  font-size: 15px;
  font-weight: 500;
  color: #1f2937;
}

/* Subtle helper text */
.forminator-file-upload .forminator-upload-message span {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-top: 4px;
}

/* Hide the default ugly file input */
.forminator-file-upload input[type=file] {
  opacity: 0;
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.forminator-button {
  background-color: transparent;
  padding: 4px 24px;
  border: 2px solid #c5c5c5;
}

.cv .forminator-file-upload:before {
  content: "📁";
  font-size: 34px;
  display: block;
  margin-bottom: 10px;
}
.cv .forminator-button-submit {
  color: white;
}

.forminator-ui#forminator-module-109.forminator-design--default .forminator-input,
.forminator-ui#forminator-module-109.forminator-design--default .forminator-input input,
.forminator-ui#forminator-module-109.forminator-design--default .forminator-iti-input .iti__selected-dial-code,
textarea,
.forminator-ui#forminator-module-1056.forminator-design--default .forminator-input,
.forminator-ui#forminator-module-1056.forminator-design--default .forminator-input input,
.forminator-ui#forminator-module-1056.forminator-design--default .forminator-iti-input .iti__selected-dial-code, .forminator-ui#forminator-module-117.forminator-design--default .forminator-input, .forminator-ui#forminator-module-117.forminator-design--default .forminator-input input, .forminator-ui#forminator-module-117.forminator-design--default .forminator-iti-input .iti__selected-dial-code {
  background-color: transparent;
  border: 1px solid white;
}

.cv-upload-vacancies .forminator-required {
  color: white;
}
.cv-upload-vacancies * {
  color: white;
}
.cv-upload-vacancies .forminator-field {
  position: relative;
}
.cv-upload-vacancies .forminator-field label {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

footer {
  background-color: #232d72;
  background: linear-gradient(359deg, rgb(35, 45, 114) 0%, #1e1d1e 99%);
  position: relative;
  padding: 80px 0;
}
footer * {
  color: #fff;
}
@media only screen and (min-width: 999px) {
  footer .col-lg-4 {
    display: flex;
    justify-content: space-between;
  }
  footer .col-lg-4 ul {
    text-align: right;
  }
}
footer .icons-wrapper .col-lg-4 {
  justify-content: flex-end;
}
footer .logo img {
  width: 175px;
}
@media (max-width: 999px) {
  footer .logo {
    margin-bottom: 20px;
  }
}
footer .icon-row {
  gap: 30px;
  margin: 30px 0 0 0;
}
footer img {
  width: 40px;
  height: auto;
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer ul a {
  text-decoration: none;
  color: #fff;
}
footer .cards-wrapper {
  padding-top: 60px;
}

.text-text {
  background: #232D72;
  background: linear-gradient(359deg, #1e1e1e 19%, rgb(35, 45, 114) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
@media (max-width: 960px) {
  .text-text .col-lg-6 {
    margin-bottom: 30px;
  }
}
.text-text.no-fade {
  background: transparent;
}
.text-text h2,
.text-text h4,
.text-text p {
  color: white !important;
}
.text-text .link {
  margin-top: 40px;
}
.text-text .link a {
  background: transparent;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 1.4rem;
  border: 2px solid;
  border-radius: 4px;
  transition: all ease-in-out 0.3s;
}
.text-text .link a:hover {
  background-color: white;
  color: #151516;
  border-color: white;
}
@media (max-width: 960px) {
  .text-text .link a {
    font-size: 1rem;
  }
}
.text-text.beige {
  position: relative;
  background-color: transparent !important;
  background-image: none !important;
}
@media (max-width: 999px) {
  .text-text.beige .col-lg-6 {
    width: 100% !important;
    margin-bottom: 20px;
  }
}

.text-image {
  position: relative;
  overflow: hidden;
  background: #232D72;
  background: linear-gradient(359deg, #393639 0%, rgb(35, 45, 114) 99%);
}
.text-image.alt-fade {
  background: linear-gradient(359deg, #222c6d 0%, rgb(121, 132, 207) 99%);
}
.text-image h2 {
  font-size: 2.1rem;
  margin-bottom: 20px;
}
.text-image .wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(128, 128, 128, 0.34);
  border-radius: 4px;
  aspect-ratio: 1;
  height: 300px;
  padding: 20px;
  justify-content: center;
  width: 100%;
}
.text-image .link {
  margin-top: 30px;
  width: 100%;
  display: flex;
  gap: 40px;
  justify-content: center;
}
@media only screen and (max-width: 999px) {
  .text-image .link {
    flex-direction: column;
  }
}
.text-image .link a {
  background: transparent;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 1.4rem;
  border: 2px solid;
  border-radius: 4px;
  transition: all ease-in-out 0.3s;
  text-align: center;
}
.text-image .link a:hover {
  background-color: white;
  color: #151516;
  border-color: white;
}
@media (max-width: 960px) {
  .text-image .link a {
    font-size: 1rem;
  }
}
.text-image .row {
  justify-content: space-between;
}
.text-image .container,
.text-image .row {
  position: relative;
  z-index: 2;
}
.text-image .text * {
  color: #e7e7e7;
}
.text-image .image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  padding: 0;
  overflow: hidden;
}
.text-image .icon-text {
  width: 100%;
  text-align: center;
}
.text-image .icons {
  padding-top: 30px;
}
@media (max-width: 999px) {
  .text-image .icons {
    justify-content: space-between;
    width: 100vw;
    flex-direction: column;
  }
  .text-image .icons .col-lg-4 {
    flex-direction: row !important;
    gap: 20px;
  }
}
.text-image .icons img {
  filter: invert(1);
  width: 62px;
  padding-bottom: 20px;
}
@media (max-width: 999px) {
  .text-image .icons img {
    width: 50px;
  }
}
.text-image .icons h3 {
  text-align: center;
}
.text-image .icons .col-lg-4 {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 999px) {
  .text-image .icons .col-lg-4 {
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }
}
.text-image .icons .col-lg-4 h3 {
  margin-top: 10px;
  max-width: 85%;
}
@media (max-width: 999px) {
  .text-image .icons .col-lg-4 h3 {
    font-size: 1.8rem;
  }
}
.text-image .image img {
  position: absolute;
  bottom: -37%;
  left: 0;
  width: 100%;
  height: 225%;
  object-fit: cover;
  will-change: transform;
}
.text-image .image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7882352941);
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
}

.footer-extension {
  padding: 40px 0;
  background-color: #0B0943;
}
.footer-extension * {
  color: #fff;
}

.faq {
  padding: 60px 40px;
  background: linear-gradient(359deg, #232d72 19%, #41446f 100%);
}
.faq * {
  color: #fff;
}
.faq .container {
  padding: 0;
  border-radius: 0;
}
.faq .faq-wrapper {
  position: relative;
  padding-right: 30px;
  margin: 20px 0;
  padding: 20px;
  border: 1px solid rgba(128, 128, 128, 0.3411764706);
  border-radius: 10px;
}
.faq .faq-wrapper h3 {
  position: relative;
  cursor: pointer;
  margin: 0;
  padding-right: 25px;
  margin-bottom: 10px;
}
.faq .faq-wrapper h3::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 16px;
  background: url("./assets/images/arrow.png") no-repeat center center;
  background-size: contain;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
  filter: invert(1);
}
.faq .faq-wrapper.active h3::after {
  transform: translateY(-50%) rotate(90deg);
}
.faq .buttons {
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.faq .buttons a {
  text-decoration: none;
  color: #fff;
}
.faq .buttons .button-one {
  background-color: #F27265;
  padding: 5px 15px;
  border-radius: 50px;
}
.faq .buttons .button-two {
  background-color: #0B0943;
  padding: 5px 15px;
  border-radius: 50px;
}

.locations {
  background: linear-gradient(359deg, #13183b 0%, rgb(33, 32, 33) 61%);
}
.locations .container {
  padding-bottom: 0 !important;
}
.locations h3 {
  width: 100%;
}
@media only screen and (max-width: 999px) {
  .locations h3 {
    text-align: center;
  }
  .locations .recruitly-job-cities {
    justify-content: center;
  }
}
.locations .row {
  overflow: hidden;
  max-height: 505px;
}
@media only screen and (max-width: 999px) {
  .locations .row {
    max-height: 100%;
    overflow: visible;
  }
}
@media only screen and (max-width: 999px) {
  .locations .map-col {
    display: none;
  }
}
.locations * {
  color: #fff;
}
.locations .col-lg-12 {
  padding: 0 !important;
}
.locations .zip-input-wrap {
  width: 100%;
  position: relative;
}
.locations .zip-input-wrap input {
  width: 100%;
}
.locations .zip-input-wrap button {
  background-color: transparent;
  border: none;
  outline: none;
  position: absolute;
  right: 0;
  top: 1px;
}
.locations .acf-map {
  position: relative;
  overflow: visible;
  width: 100%;
  height: 80vh;
}
.locations .site-list {
  max-height: 60vh;
  overflow: scroll;
}
.locations .site-list .location-item {
  background-color: #FFFFFF;
  border-radius: 10px;
}
.locations .site-list .location-item .text-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.locations .site-list .location-item .text-content h4,
.locations .site-list .location-item .text-content p {
  margin-bottom: 0;
}

.map-results-row {
  padding: 20px 0 !important;
  background-color: rgb(77, 205, 181);
}
.map-results-row #area-size {
  margin-left: 80px;
}
.map-results-row strong,
.map-results-row #area-size,
.map-results-row .product-name,
.map-results-row bdi {
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
}
.map-results-row a {
  text-decoration: none;
  color: #fff;
  border: 4px solid;
  font-weight: 700;
  padding: 4px 22px;
  width: fit-content;
  font-size: 1.6rem;
}
.map-results-row .product-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 80px;
}
.map-results-row .product-selection {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-top: 2px solid white;
  padding-top: 20px;
  margin-top: 20px;
}
@media only screen and (max-width: 999px) {
  .map-results-row .product-selection {
    flex-direction: column;
    margin-top: 20px;
  }
  .map-results-row .product-selection a {
    margin-top: 20px;
  }
}

/* Make Google Maps drawing / hand tools bigger & clearer */
.gmnoprint {
  transform: scale(1.5);
  /* Increase size */
  transform-origin: top left;
}
.gmnoprint button {
  margin-right: 1rem !important;
}
.gmnoprint.gm-style-mtc-bbw, .gmnoprint.gm-bundled-control-on-bottom {
  transform: scale(1);
}
.gmnoprint.gm-style-mtc-bbw button, .gmnoprint.gm-bundled-control-on-bottom button {
  margin-right: 0 !important;
}

/* Improve button appearance */
.gm-style button {
  border-radius: 8px !important;
  padding: 10px !important;
}

/* Increase spacing so tools don't look cramped */
.gm-style .gm-bundled-control {
  margin: 15px !important;
}

#TR:hover,
#BY:hover,
#LT:hover,
#CZ:hover,
#EE:hover,
#DE:hover,
#LV:hover,
#NO:hover,
#SE:hover,
#FI:hover,
#LU:hover,
#BE:hover,
#MK:hover,
#AL:hover,
#XK:hover,
#ES:hover,
#DK:hover,
#RO:hover,
#HU:hover,
#PL:hover,
#SK:hover,
#IE:hover,
#GB:hover,
#GR:hover,
#AT:hover,
#IT:hover,
#CH:hover,
#RS:hover,
#HR:hover,
#NL:hover,
#ME:hover,
#BA:hover,
#BG:hover,
#SI:hover,
#PT:hover,
#MD:hover,
#IS:hover,
#SE:hover,
#FR:hover {
  fill: #232d72 !important;
  cursor: pointer;
}

.woocommerce-product-gallery,
.related,
.posted_in,
#sidebar {
  display: none;
}

.product-type-simple {
  padding: 80px 0;
}
.product-type-simple .single_add_to_cart_button {
  background-color: transparent;
  border: 3px solid;
  font-size: 1.8rem;
  padding: 4px 22px;
}
.product-type-simple .price bdi,
.product-type-simple .price span {
  font-size: 2rem;
  font-weight: bold;
}

#eligibility-message {
  margin-bottom: 20px;
}

.eligibility-question {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

#eligibility-check {
  border-top: 2px solid;
  padding-top: 20px;
}
#eligibility-check > h5 {
  text-transform: uppercase;
  font-size: 1.6rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.summary .selected-size {
  text-transform: uppercase;
  font-size: 1.8rem !important;
}

.woocommerce-breadcrumb {
  display: none;
}

.reviews h2, .reviews h5 {
  color: white;
}
.reviews img {
  filter: invert(1);
}
.reviews .row {
  justify-content: space-between;
}
@media only screen and (max-width: 999px) {
  .reviews .row {
    justify-content: center;
  }
}
.reviews .title h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
}
.reviews .review {
  margin-bottom: 2rem;
}
.reviews .review * {
  color: #1e1d1e;
}
.reviews .review {
  background: #fff;
  border-radius: 16px;
  padding: 1.8rem;
  height: 100%;
  border: 1px solid rgb(230, 230, 230);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.reviews .review .name {
  margin-bottom: 0.4rem;
}
.reviews .review .name h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
}
.reviews .review .type {
  margin-bottom: 1rem;
}
.reviews .review .type h4 {
  font-size: 0.85rem;
  font-weight: 500;
  color: #777;
  margin: 0;
}
.reviews .review .review {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  flex-grow: 1;
}

.reviews-content {
  max-width: 520px;
}

.reviews-cta {
  margin-top: 20px;
  display: inline-block;
}

/* Mobile */
@media (max-width: 999px) {
  .reviews-grid {
    grid-template-columns: 1fr !important;
  }
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.reviews-content,
.reviews-slider {
  min-width: 0;
  /* THIS STOPS OVERFLOW */
}

.reviews-swiper {
  width: 100%;
  overflow: hidden;
}

.swiper {
  padding-left: 50px;
  padding-right: 75px;
}
@media (max-width: 999px) {
  .swiper {
    padding-right: 85px;
  }
}

/* Left Column */
.reviews-content h2,
.reviews-content .text-area,
.reviews-content .reviews-cta {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.reviews-content h2.is-visible,
.reviews-content .text-area.is-visible,
.reviews-content .reviews-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Right Column - individual reviews */
.reviews-slider .review {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.reviews-slider .review.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Swiper arrows initial state */
.reviews-slider .swiper-button-prev,
.reviews-slider .swiper-button-next {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

/* Active state when visible */
.reviews-slider .swiper-button-prev.is-visible,
.reviews-slider .swiper-button-next.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.recruitment .jobs {
  background: linear-gradient(359deg, #232123 0%, rgb(24, 23, 24) 38%);
}

.jobs h2,
.jobs h3,
.cv-submit-full-width h2,
.cv-submit-full-width h3 {
  color: white;
}
.jobs input::placeholder,
.cv-submit-full-width input::placeholder {
  color: white;
}
.jobs .forminator-button-submit,
.cv-submit-full-width .forminator-button-submit {
  margin-bottom: 60px;
}
.jobs .swiper-button-next,
.jobs .swiper-button-prev,
.cv-submit-full-width .swiper-button-next,
.cv-submit-full-width .swiper-button-prev {
  color: #ffffff;
  background: #181718;
}
.jobs nav,
.cv-submit-full-width nav {
  display: none;
}
.jobs .form-control,
.cv-submit-full-width .form-control {
  margin-bottom: 20px;
  border-color: white;
  background-color: transparent;
  color: white;
}
.jobs .form-control.btn,
.cv-submit-full-width .form-control.btn {
  background: #1e1d1e;
  color: white;
}
.jobs .cool-job-desc,
.cv-submit-full-width .cool-job-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.jobs .recruitly_jobs,
.cv-submit-full-width .recruitly_jobs {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media only screen and (max-width: 999px) {
  .jobs .recruitly_jobs,
  .cv-submit-full-width .recruitly_jobs {
    flex-direction: column;
  }
}

.cool-jobrow {
  width: 100%;
  min-height: 258px !important;
  background-color: transparent !important;
}
.cool-jobrow.swiper-slide {
  background: transparent !important;
}
.cool-jobrow.swiper-slide * {
  color: white;
}

.feature {
  color: #1e1d1e;
}

.cool-job-footer {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
  border-top: 1px solid #e6e6e6;
  padding-left: 0;
  padding-right: 0;
}
.cool-job-footer .cool-job-view-btn {
  position: relative;
  width: 50%;
  text-align: center;
  border-radius: 0 0 0 4px;
}
.cool-job-footer .cool-job-view-btn:after {
  position: absolute;
  content: "";
  top: 0px;
  right: 0;
  width: 1px;
  height: 43px;
  background-color: white;
}
.cool-job-footer a {
  text-decoration: none;
}

.cool-job-apply-btn,
.cool-job-view-btn {
  position: relative;
  width: 50%;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

.cool-job-apply-btn {
  border-radius: 0 0 4px 0;
}

.recruitly-recent-job-block {
  display: block;
  min-height: 100px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  position: relative;
  padding: 15px;
  margin-bottom: 20px;
}
.recruitly-recent-job-block * {
  color: #fff;
}

.recruitly-recent-jobs {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.recruitly-recent-jobs a {
  text-decoration: none;
}

.recruitly_jobs .recruitly-cities h2 {
  margin: 30px 0 !important;
}
.recruitly_jobs .job-types h2 {
  margin-top: 10px !important;
}
.recruitly_jobs .recruitly-job-cities,
.recruitly_jobs .job-types,
.recruitly_jobs .job-country {
  list-style: none;
  padding-left: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.recruitly_jobs .recruitly-job-cities li,
.recruitly_jobs .job-types li,
.recruitly_jobs .job-country li {
  margin-bottom: 12px;
}
.recruitly_jobs .recruitly-job-cities h3,
.recruitly_jobs .job-types h3,
.recruitly_jobs .job-country h3 {
  margin: 32px 0 0 0;
}
@media only screen and (max-width: 999px) {
  .recruitly_jobs .recruitly-job-cities,
  .recruitly_jobs .job-types,
  .recruitly_jobs .job-country {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.recruitly_jobs .recruitly-job-cities a,
.recruitly_jobs .job-types a,
.recruitly_jobs .job-country a {
  text-decoration: none;
  border: 1px solid #e6e6e6;
  border-radius: 50px;
  padding: 8px 16px;
  color: white;
  transition: all ease-in-out 0.3s;
}
.recruitly_jobs .recruitly-job-cities a:hover,
.recruitly_jobs .job-types a:hover,
.recruitly_jobs .job-country a:hover {
  border-color: #b6d4ff;
  color: #b6d4ff;
}
.recruitly_jobs.container {
  margin-top: 100px;
}
.recruitly_jobs.container h2 {
  width: 100%;
  font-size: 1.2rem;
  margin-top: 30px;
  color: #fff;
}
.recruitly_jobs.container .cool-job-title {
  font-size: 2.2rem !important;
  color: #fff;
}
.recruitly_jobs.container .cool-job-pay {
  font-weight: bold;
  color: #fff;
}
.recruitly_jobs.container .cool-jobview-footer {
  display: none;
}
.recruitly_jobs.container .cool-job-footer {
  justify-content: center;
}
.recruitly_jobs.container .cool-job-view-btn {
  display: none;
}

.jobs-hero {
  position: relative;
  background: #1e1d1e;
  color: #fff;
  text-align: center;
  height: 55vh;
  overflow: hidden;
  padding: 0;
}
.jobs-hero:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  background-color: #232d72;
  z-index: 5;
  opacity: 0.67;
}
@media (max-width: 960px) {
  .jobs-hero:before {
    clip-path: none;
    width: 100vw;
  }
}
.jobs-hero .hero-intro .text {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}
.jobs-hero .hero-intro .text span {
  font-size: inherit;
}
.jobs-hero .hero-intro .text * {
  color: white;
}
.jobs-hero .hero-intro img {
  width: 100vw;
  max-height: 90vh;
  object-fit: cover;
}
.jobs-hero .hero-intro {
  margin: 1rem auto 0;
}

.jobs-features {
  background: #f7f7f7;
  padding: 2rem 0;
}
.jobs-features .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  text-align: center;
  font-weight: 600;
}
@media (max-width: 999px) {
  .jobs-features .container {
    gap: 0px;
  }
}

.job {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px;
  border: 1px solid #eee;
  background: transparent;
  transition: 0.25s ease;
}
.job:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.job__meta {
  display: flex;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: #666;
}

.forminator-file-upload {
  background-color: transparent !important;
  border-color: #fff !important;
}

.jobs-form .forminator-file-upload {
  background-color: transparent;
  border-color: white;
}
.jobs-form .forminator-button {
  color: white;
}
.jobs-form .form-inner {
  background: #1e1d1e;
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
}
.jobs-form .form-inner * {
  color: white;
}

.jobs-results {
  padding: 0 !important;
}

.job {
  padding: 0 0 0 20px;
}
.job .job__cta .btn {
  border-left: 1px solid white;
}
.job {
  border-radius: 14px;
  border: 1px solid #eee;
  transition: all 0.25s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.job:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.job__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.job__title a {
  text-decoration: none;
  color: inherit;
}

.job__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #666;
}

.job__cta .btn {
  display: flex;
  align-items: center;
  height: 70px;
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 0;
  text-decoration: none;
  font-size: 0.85rem;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ffffff;
}

.recruitly_jobs .cool-job-desc {
  padding-bottom: 60px;
}
.recruitly_jobs .cool-job-desc h2 {
  color: #fff;
}

.recruitly-recent {
  margin-top: 32px;
}
.recruitly-recent h2 {
  color: #fff;
}
.recruitly-recent .recruitly-recent-job-title,
.recruitly-recent .recruitly-recent-job-pay {
  font-weight: bold;
}
.recruitly-recent .recruitly-recent-job-excerpt {
  margin-top: 12px;
}

.cool-job-footer {
  transition: all ease-in-out 0.3s;
}
.cool-job-footer a {
  padding: 8px 20px 10px 20px;
}
.cool-job-footer a:hover {
  background-color: white;
  color: #1e1d1e;
}

.cool-job-footer {
  font-size: 0;
}

.cool-job-footer a {
  font-size: 16px;
  /* or whatever your design uses */
}

.jobs-results .job {
  margin-bottom: 30px;
}

.recruitly_jobs .cool-jobrow .cool-job-apply-btn {
  width: 100%;
}

.recruitly-recent .swiper {
  overflow: visible;
}
.recruitly-recent .swiper-button-next:after,
.recruitly-recent .swiper-button-prev:after {
  background: #1e1d1e;
}

.recruitly_archive {
  grid-template-columns: repeat(3, 1fr) !important;
  display: grid;
  gap: 20px;
}

.jobs-grid .recruitly_jobs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 999px) {
  .jobs-grid .recruitly_jobs {
    grid-template-columns: repeat(1, 1fr);
  }
}
.jobs-grid .cool-jobrow {
  padding-bottom: 70px !important;
  overflow: hidden;
}
.jobs-grid .cool-jobrow * {
  color: #fff;
}
.jobs-grid .cool-job-desc {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical;
  overflow: hidden !important;
  padding-bottom: 0 !important;
}

.jobs-archive-page .recruitly_jobs {
  grid-template-columns: repeat(3, 1fr) !important;
  display: grid;
  gap: 20px;
}
@media only screen and (max-width: 999px) {
  .jobs-archive-page .recruitly_jobs {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
.jobs-archive-page .cool-job-desc {
  display: none;
}
.jobs-archive-page .cool-job-title,
.jobs-archive-page .cool-job-pay {
  color: #fff;
}
.jobs-archive-page .cool-job-loc {
  font-weight: 500;
}
.jobs-archive-page .cool-jobrow {
  min-height: 220px !important;
}

.sap-news-archive .pagination {
  margin-top: 30px;
  justify-content: center;
}

/* Base hidden state */
.cool-jobrow,
.list-item-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Visible state */
.cool-jobrow.visible,
.list-item-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.privacy-policy, .terms-amp-conditions {
  padding-top: 100px;
}

.steps-icons {
  display: flex;
  align-items: center;
}

.steps-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.steps-grid ul {
  text-align: left;
}

.two-items {
  background: linear-gradient(359deg, #1c1b1c 0%, rgb(35, 45, 114) 99%);
}
.two-items h1,
.two-items h2,
.two-items h4,
.two-items h5,
.two-items h6 {
  color: white;
}
.two-items h3 {
  color: #b6d4ff;
}
.two-items.no-fade {
  background: transparent;
}
.two-items .steps-grid {
  grid-template-columns: repeat(2, 1fr);
}

.steps-grid > *:last-child:nth-child(3n+1) {
  grid-column: 2;
}

.step-item {
  text-align: center;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(128, 128, 128, 0.3411764706);
  border-radius: 10px;
  display: flex;
  padding: 20px;
  align-items: center;
  flex-direction: column;
}

.number-step {
  font-size: 3rem;
  color: #fff;
}

.step-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.step-title {
  margin-bottom: 10px;
  color: white;
}

.section-title {
  color: white;
}

/* Tablet */
@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
/* Mobile */
@media (max-width: 600px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}
.section-title,
.section-intro {
  text-align: center;
}

.step-text p {
  color: white;
}

.steps-grid .step-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.steps-grid .step-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.steps-icons .link {
  margin-top: 80px;
  text-align: center;
}
.steps-icons .link a {
  background: transparent;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 1.4rem;
  border: 2px solid;
  border-radius: 4px;
  transition: all ease-in-out 0.3s;
}
.steps-icons .link a:hover {
  background-color: white;
  color: #151516;
  border-color: white;
}
@media (max-width: 960px) {
  .steps-icons .link a {
    font-size: 1rem;
  }
}

.tabs .tagcloud span {
  border: none !important;
}

.full-width.tabs {
  padding: 60px 0 60px 0;
}
@media (max-width: 999px) {
  .full-width.tabs {
    margin-top: 12vh !important;
  }
}
@media (max-width: 999px) {
  .full-width.tabs .row {
    gap: 30px;
  }
}
.full-width.tabs .col-lg-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.full-width.tabs h3 {
  color: #fff;
}
.full-width.tabs .text p {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  color: #fff;
}
.full-width.tabs span {
  border: 1px solid #e6e6e6;
  padding: 8px 16px;
  border-radius: 50px;
  color: #fff;
}

.full-width.tabs .row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 999px) {
  .full-width.tabs .row {
    gap: 30px;
  }
}
.full-width.tabs .col-lg-6 {
  flex: 1 1 calc(50% - 40px);
  display: flex;
  flex-direction: column;
}
@media (max-width: 999px) {
  .full-width.tabs .col-lg-6 {
    flex: 1 1 100%;
  }
}
.full-width.tabs .sap-news-card {
  padding: 20px;
  border: 1px solid rgba(128, 128, 128, 0.3411764706);
  border-radius: 10px;
  display: flex;
  padding: 20px;
  align-items: center;
  height: 100%;
  flex-direction: column;
}
.full-width.tabs .sap-news-card .sap-news-card__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}
.full-width.tabs .sap-news-card .sap-news-card__content {
  color: #fff;
}
.full-width.tabs .sap-news-card .sap-news-card__content h3 {
  margin-bottom: 15px;
}
.full-width.tabs .sap-news-card .sap-news-card__content h3 a {
  color: #fff;
  text-decoration: none;
}
.full-width.tabs .sap-news-card .sap-news-card__content h3 a:hover {
  text-decoration: underline;
}
.full-width.tabs .sap-news-card .sap-news-card__content .text p {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  color: #fff;
}
.full-width.tabs .sap-news-card .sap-news-card__content span {
  border: 1px solid #e6e6e6;
  padding: 8px 16px;
  border-radius: 50px;
  color: #fff;
  display: inline-block;
  margin-top: 15px;
}
.full-width.tabs .sap-news-card .sap-news-card__content span a {
  color: inherit;
  text-decoration: none;
}

.sap-news-archive,
.sap-news-single {
  margin-top: 8vh;
  margin-bottom: 10vh;
}
.sap-news-archive a,
.sap-news-archive strong,
.sap-news-archive em,
.sap-news-single a,
.sap-news-single strong,
.sap-news-single em {
  font-size: inherit;
  color: #b6d4ff;
}
.sap-news-archive p,
.sap-news-single p {
  color: white;
}

.sap-news-archive a {
  color: #fff;
}
.sap-news-archive h3 a {
  color: #b6d4ff !important;
}

section.list {
  margin: 20px 0 0 0;
  padding-bottom: 0 !important;
}
section.list .title-text {
  text-align: center;
}
section.list .title-text .title h2 {
  color: #fff;
}
section.list ul.list {
  padding-left: 0;
  margin: 80px 0;
  list-style: none;
}
section.list ul.list img {
  width: 28px;
}
section.list ul.list li {
  padding: 22px 0;
  border-bottom: 1px solid rgba(128, 128, 128, 0.3411764706);
}
section.list ul.list li h3 {
  margin: 0;
  color: #fff;
}

section {
  padding: 100px 0;
}
@media (max-width: 999px) {
  section {
    padding: 50px 0;
  }
}
section.cv-submit-full-width {
  padding: 0;
}
section.steps-icons {
  padding: 30px 0 60px 0;
}

main {
  background-color: #1e1d1e;
}

body {
  background-color: #1e1d1e;
  overflow: hidden;
}

html,
body {
  overflow-x: hidden;
}

html {
  margin-top: 0 !important;
}

img {
  width: 100%;
}

* {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  color: #b6d4ff;
}

h1 {
  font-size: 3.75rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

h2 {
  font-size: 2.6rem;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 960px) {
  h2 {
    font-size: 2rem;
  }
}

.iconSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.iconSwiper .swiper-slide {
  width: auto;
  display: flex;
  align-items: center;
}

.iconSwiper img {
  height: 160px;
  /* adjust */
  width: auto;
}
@media only screen and (max-width: 999px) {
  .iconSwiper img {
    height: 90px;
  }
}

.text-align-right {
  text-align: right !important;
}

h2 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
h2.is-visible {
  opacity: 1;
  transform: translateY(0);
}

h1 {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
h1.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  transform: translate(-10px, 8px);
  flex-direction: column;
  gap: 0 !important;
  transition: opacity 0.25s ease, transform 0.25s ease;
  height: fit-content;
  min-width: 150px;
  width: 100%;
  padding: 4px 10px 10px 10px;
  display: block;
  border-radius: 0 0 4px 4px;
}
.sub-menu li,
.sub-menu a {
  width: 100%;
  display: block;
}
.sub-menu li {
  margin-bottom: 4px;
}

/* Keep hovered parent's link hidden too */
#site-header.submenu-active .desktop-menu > .menu-item.active-parent > a {
  opacity: 0;
}

/* Keep submenu visible */
#site-header.submenu-active .desktop-menu > .menu-item.active-parent > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-item-has-children:hover .sub-menu {
  opacity: 1;
}

.sub-menu li::after {
  content: unset !important;
  background-color: transparent;
}

.wp-block-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
}

iframe {
  max-width: 100%;
}

.wp-block-sap-news-cta-banner {
  display: none;
}

div[data-inpsyde-embed-preview] {
  display: none !important;
}

.list-item-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.list-item-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.news-filter {
  color: black;
}
.news-filter option {
  color: black;
}

.row.form-group option {
  color: black !important;
}

.news-filter-cloud {
  margin-bottom: 20px;
}
.news-filter-cloud button {
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 10px 16px;
  border-radius: 50px;
  margin-right: 20px;
}
.news-filter-cloud button:hover {
  background-color: white;
  color: black;
}

.select2-results__option,
.select2-selection__rendered {
  background-color: #1e1d1e;
  color: white !important;
}
.select2-results__option li,
.select2-selection__rendered li {
  background-color: #1e1d1e;
  color: white;
}
.select2-results__option li:hover,
.select2-selection__rendered li:hover {
  color: #1e1d1e !important;
}

.forminator-select-dropdown {
  padding: 0 !important;
}

.select2-selection__arrow,
.forminator-select-dropdown-container--open .forminator-custom-form-1056.forminator-dropdown--default .select2-results .select2-results__options .select2-results__option:not(.select2-results__option--selected).select2-results__option--highlighted,
.forminator-select-dropdown-container--open .forminator-custom-form-1056.forminator-dropdown--default .select2-results .select2-results__options .select2-results__option:not(.select2-results__option--selected).select2-results__option--highlighted span:not(.forminator-checkbox-box),
.forminator-select-dropdown-container--open .forminator-custom-form-1056.forminator-dropdown--default .select2-results .select2-results__options .select2-results__option.select2-results__option--selected,
.forminator-select-dropdown-container--open .forminator-custom-form-1056.forminator-dropdown--default .select2-results .select2-results__options .select2-results__option.select2-results__option--selected span:not(.forminator-checkbox-box) {
  background-color: #1e1d1e !important;
}

.container .sk-ww-linkedin-profile-post .sk-post-item {
  background-color: transparent;
  box-shadow: none;
  border: 1px solid white;
}
.container .sk-ww-linkedin-profile-post .sk_branding {
  opacity: 0 !important;
  visibility: hidden !important;
}
.container .sk-ww-linkedin-profile-post * {
  color: #fff !important;
}

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