:root {
  --alt-font: 'saldaxl', sans-serif;
}
.bg-grey_f8 {
  background-color: #F8F8F8;
}
.main-sect .pad-t-none {
  padding-top: 0;
}
.main-sect.pad-big {
  padding-block: clamp(50px, calc((120 / 1920) * 100vw), 120px);
}
.overflow-hidden {
  overflow: hidden;
}
.color-white {
  color: #fff;
}
.color-black {
  color: #000;
}
.full-area {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.full-area-fit {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pos-rel {
  position: relative;
}
.btn-reset,
.job-details__close-btn {
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}
.list-reset,
.has-custom-dots-ul ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bdrs-16 {
  border-radius: 16px;
}
.cur-p {
  cursor: pointer;
}
.mt-4 {
  margin-top: 4px;
}
.mt-8 {
  margin-top: 8px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mt-14 {
  margin-top: 14px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-26 {
  margin-top: 26px;
}
.mt-32 {
  margin-top: 32px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-48 {
  margin-top: 48px;
}
.mt-53 {
  margin-top: 53px;
}
@media (max-width: 991px) {
  .mt-53 {
    margin-top: 40px;
  }
}
.mt-56 {
  margin-top: 56px;
}
@media (max-width: 991px) {
  .mt-56 {
    margin-top: 40px;
  }
}
.link-color-inherit a {
  color: inherit;
}
.link-hover-underline a:hover {
  text-decoration: underline;
}
.link-underline a {
  text-decoration: underline;
}
.flex {
  display: flex;
}
.flex-inline {
  display: flex-inline;
}
.item-center {
  align-items: center;
}
.item-start {
  align-items: flex-start;
}
.item-end {
  align-items: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.column {
  flex-direction: column;
}
.gap-8 {
  gap: 8px;
}
.gap-16 {
  gap: 16px;
}
.lh1_5 {
  line-height: 1.5;
}
.lh1_5 p {
  line-height: inherit;
}
.fz-13 {
  font-size: 13px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 1.3px;
}
.fz-36 {
  font-size: 36px;
  line-height: 1.2;
  font-family: var(--alt-font);
  text-transform: capitalize;
}
.fz-32 {
  font-size: 32px;
  line-height: 1.2;
  font-family: var(--alt-font);
  text-transform: capitalize;
}
.fz-26 {
  font-size: 26px;
  line-height: 1.2;
  font-family: var(--alt-font);
  text-transform: capitalize;
}
.fz-18 {
  font-size: 18px;
  line-height: 1.5;
}
.scale-hover {
  overflow: hidden;
}
.scale-hover .img-scale {
  transition: transform 0.3s;
}
.scale-hover:hover .img-scale {
  transform: scale(1.03);
}
.main-header .main_nav .menu-item-has-children {
  position: relative;
  padding-right: 24px;
}
.main-header .main_nav .menu-item-has-children::after {
  content: '';
  position: absolute;
  right: 0;
  top: 2px;
  width: 16px;
  height: 17px;
  background: url('../img-alt/menu-arr-black.svg') center / cover no-repeat;
}
.main-header .main_nav .menu-item-has-children ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  min-width: 200px;
  margin-top: 60px;
  transition: 0.3s ease;
}
.main-header .main_nav .menu-item-has-children ul li {
  display: block;
}
.main-header .main_nav .menu-item-has-children ul > strong {
  color: #FFF;
  display: block;
  margin-top: 30px;
  font-family: 'saldaxl';
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  /* 24px */
}
.main-header .main_nav .menu-item-has-children ul.hover {
  opacity: 1;
  pointer-events: auto;
  margin-top: 45px;
  display: initial;
}
.main-header .main_nav .menu-item-has-children ul li {
  margin-top: 16px;
}
.main-header .main_nav .menu-item-has-children ul a {
  color: #FFF;
  position: relative;
  font-family: 'Roboto';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  transition: 0.3s ease;
  padding-left: 0;
}
.main-header .main_nav .menu-item-has-children ul a:before {
  position: absolute;
  width: 7px;
  height: 7px;
  content: '';
  left: 0;
  top: 7px;
  background-color: #fff;
  display: block;
  opacity: 0;
  transition: 0.3s ease;
}
.main-header .main_nav .menu-item-has-children ul a:hover {
  padding-left: 15px;
}
.main-header .main_nav .menu-item-has-children ul a:hover:before {
  opacity: 1;
}
.main-header.ae_style .main_nav .menu-item-has-children ul {
  margin-top: 100px;
}
.main-header.ae_style .main_nav .menu-item-has-children ul.hover {
  margin-top: 85px;
}
.main-header.white_color .main_nav .menu-item-has-children::after {
  background-image: url('../img-alt/menu-arr-white.svg');
}
.main-header:not(.white_color) {
  border-bottom: 1px solid #E0E0E0;
  backdrop-filter: blur(12.94999981px);
}
.news-media-top {
  padding-top: 244px;
  overflow: hidden;
}
.news-media-top__bg {
  position: absolute;
  right: 0;
  bottom: 160px;
}
.breadcrumbs a {
  display: inline-block;
}
.breadcrumbs svg {
  display: block;
}
.breadcrumbs.color-white svg path {
  fill: #fff;
}
.title_big {
  font-family: var(--alt-font);
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
.featured-item {
  display: grid;
  grid-template-columns: 50% 50%;
  position: relative;
  z-index: 1;
}
.featured-item__content {
  padding: 32px;
  border-top: 1px solid var(--Gray-5, #E0E0E0);
  border-right: 1px solid var(--Gray-5, #E0E0E0);
  border-bottom: 1px solid var(--Gray-5, #E0E0E0);
  background: #F8F8F8;
}
.featured-item__content .link_corner {
  margin-top: 48px;
}
@media (max-width: 1199px) {
  .featured-item__content .link_corner {
    margin-top: 0;
  }
}
.cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cats a,
.cats span {
  color: inherit;
  font-size: 13px;
  line-height: 1.2;
  padding: 8px 16px;
  background-color: #fff;
  display: block;
}
.cats a:not([style]),
.cats span:not([style]) {
  border: 1px solid var(--Gray-5, #E0E0E0);
}
.bootstrap-select {
  position: relative;
}
.bootstrap-select select {
  display: none;
}
.bootstrap-select div.dropdown-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  display: none;
  min-width: 100%;
}
.bootstrap-select div.dropdown-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #E0E0E0;
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: #F8F8F8;
}
.bootstrap-select div.dropdown-menu ul li {
  border-top: none;
}
.bootstrap-select div.dropdown-menu ul a {
  display: block;
  white-space: nowrap;
  line-height: 1.5;
  padding: 8px 16px 8px 24px;
  background-color: #F8F8F8;
  transition: background-color 0.3s;
  cursor: pointer;
}
.bootstrap-select div.dropdown-menu ul a:hover {
  background-color: #E0E0E0;
}
.bootstrap-select.open {
  z-index: 20;
}
.bootstrap-select.open .dropdown-menu {
  display: block !important;
}
.bootstrap-select .dropdown-toggle {
  background: #F8F8F8;
  padding: 16px 16px 16px 24px;
  border: 1px solid var(--Gray-5, #E0E0E0);
  display: flex;
  gap: 10px;
  font: 400 16px / 1.5 Roboto, sans-serif;
  color: #000;
  cursor: pointer;
}
.bootstrap-select .bs-caret {
  width: 24px;
  height: 24px;
  background: url('../img-alt/select-arr.svg') center / cover no-repeat;
}
#posts-container .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
#posts-container .card .card__content {
  flex: 1 1 auto;
}
.card {
  color: inherit;
}
.card__img-wrap {
  aspect-ratio: 424 / 240;
  position: relative;
  display: block;
}
.card__img-wrap.aspect_310_200 {
  aspect-ratio: 310 / 200;
}
.card h3 {
  color: var(--Amplius-Primary-Amplius-Black, #000);
  font-family: var(--alt-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 24px */
  text-transform: capitalize;
}
.card__content {
  padding: 24px;
  border-right: 1px solid var(--Gray-5, #E0E0E0);
  border-bottom: 1px solid var(--Gray-5, #E0E0E0);
  border-left: 1px solid var(--Gray-5, #E0E0E0);
  background: #F8F8F8;
}
.card.flex-column {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card.flex-column .card__content {
  flex-grow: 1;
}
.filter {
  padding-block: 16px;
  position: relative;
}
.filter::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100vw;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #E0E0E0;
}
.filter_positions {
  width: 80vw;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .filter_positions {
    margin-top: 20px;
  }
}
.filter_positions::after {
  display: none;
}
.filter .showing-posts {
  margin-left: auto;
}
.container.row-gap-24 .row {
  row-gap: 24px;
  margin-inline: -12px;
}
.container.row-gap-24 .row > div {
  padding-inline: 12px;
}
.main-footer {
  padding-block: 56px;
  overflow: hidden;
  background: linear-gradient(245deg, rgba(184, 208, 205, 0.2) 34.32%, rgba(14, 195, 169, 0.2) 86.16%, rgba(0, 162, 222, 0.2) 102.14%), rgba(184, 208, 205, 0.2);
}
.main-footer__bg {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  max-width: none;
}
.footer-logo {
  max-width: 160px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  row-gap: 40px;
}
.main-footer .copyright {
  flex-wrap: wrap;
  max-width: 645px;
  row-gap: 0;
}
.main-footer .copyright p {
  flex: 0 0 100%;
  display: flex;
  column-gap: 8px;
}
.footer_navigation {
  display: flex;
  column-gap: 80px;
  row-gap: 30px;
  justify-content: space-between;
}
.footer_navigation .footer-menu {
  columns: unset !important;
}
.footer-menu.brands > li > a {
  font-weight: 700;
  text-decoration: none;
  cursor: auto;
}
.footer-menu.brands li .sub-menu {
  margin-top: 16px;
  list-style: none;
  padding: 0;
  display: block;
}
.footer-menu li .sub-menu {
  display: none;
}
.footer-menu li:not(:first-child) {
  margin-top: 16px;
}
.footer-menu a {
  line-height: 24px;
}
.top-banner {
  padding-block: 400px 70px;
}
.top-banner:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  height: 30%;
}
.top-banner.banner-overlay::before,
.top-banner.overlay-1::before,
.top-banner.overlay-2::before,
.top-banner.overlay-3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.top-banner.overlay-1::before {
  background: url('../img-alt/overlay-1.png') center / cover no-repeat;
  z-index: 5;
}
.top-banner.overlay-1-alt::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%), url('../img-alt/overlay-1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.top-banner.overlay-2::before {
  background: url('../img-alt/overlay-2.png') center / cover no-repeat;
  z-index: 5;
}
.top-banner.overlay-3::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45.22%, rgba(0, 0, 0, 0.8) 100%), rgba(67, 123, 94, 0.8);
  background-blend-mode: normal, multiply;
  z-index: 5;
}
.top-banner.overlay-4::before {
  background: url('../img-alt/overlay-4.png') center / cover no-repeat;
  z-index: 5;
}
.top-banner.overlay-5::before {
  background: url('../img-alt/overlay-5.png') center / cover no-repeat;
  z-index: 5;
}
.top-banner.overlay-6::before {
  background: url('../img-alt/overlay-6.png') center / cover no-repeat;
  z-index: 5;
}
.top-banner.overlay-7::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45.22%, rgba(0, 0, 0, 0.8) 100%), rgba(3, 66, 98, 0.6);
  background-blend-mode: normal, multiply;
}
.top-banner.overlay-8::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45.22%, rgba(0, 0, 0, 0.8) 100%), rgba(114, 178, 171, 0.75);
  background-blend-mode: normal, multiply;
  z-index: 5;
}
.top-banner .container {
  position: relative;
  z-index: 10;
}
.max-870 {
  max-width: 870px;
  margin-inline: auto;
}
.max-750 {
  max-width: 750px;
  margin-inline: auto;
}
.text-block {
  color: black;
}
.text-block a {
  color: #000;
  text-decoration: underline;
}
.text-block a:hover {
  text-decoration: none;
}
.text-block p {
  margin-bottom: 18px;
  line-height: 1.5;
}
.text-block h1,
.text-block h2,
.text-block h3,
.text-block h4,
.text-block h5,
.text-block h6 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}
.img-block {
  max-width: 1096px;
  margin-inline: auto;
}
.has-custom-ul ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 18px;
}
.has-custom-ul ul li {
  position: relative;
  padding-left: 20px;
}
.has-custom-ul ul li:not(:first-child) {
  margin-top: 5px;
}
.has-custom-ul ul li::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: #56AB86;
}
.has-custom-ul ol {
  padding-left: 23px;
  margin-bottom: 18px;
}
.share-icons svg {
  display: block;
}
.share-icons path,
.share-icons rect {
  transition: fill 0.3s;
}
.share-icons a {
  border: 1px solid #0EC3A9;
  display: block;
}
.share-icons a:hover rect {
  fill: #fff;
}
.share-icons a:hover path {
  fill: #0EC3A9;
}
.nav-block {
  border-left: 1px solid #BDBDBD;
}
.nav-block a {
  line-height: 24px;
  padding: 8px 24px;
  display: block;
  margin-left: -1px;
  position: relative;
}
.nav-block a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: transparent;
}
.nav-block a::before {
  display: block;
  content: attr(title);
  font-weight: 700;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.nav-block a.active,
.nav-block a:hover {
  font-weight: 700;
}
.nav-block a.active::after,
.nav-block a:hover::after {
  background-color: var(--company-nav-color, #56AB86);
}
.we-do {
  --wrap-width: 985px;
  display: grid;
  grid-template-columns: 310px var(--wrap-width);
  gap: 26px;
}
@media (max-width: 1449px) {
  .we-do {
    --wrap-width: 804px;
  }
}
@media (max-width: 1199px) {
  .we-do {
    --wrap-width: 594px;
  }
}
@media (max-width: 991px) {
  .we-do {
    display: block;
    --wrap-width: 100%;
  }
}
.accordions__arr {
  margin-left: auto;
  transition: transform 0.3s;
}
.accordions__heading {
  padding: 24px 16px;
  transition: background-color 0.3s;
  border-bottom: 1px solid #BDBDBD;
  cursor: pointer;
}
.accordions__heading.open {
  background-color: var(--tab-head-opened-color, #56AB861A);
}
.accordions__heading.open .accordions__arr {
  transform: rotate(-180deg);
}
.accordions__icon-wrap {
  width: 56px;
  height: 56px;
}
.service-blocks {
  padding-block: 32px;
}
.block-img-txt {
  display: grid;
  --w: calc((534 / 983) * 100%);
  grid-template-columns: minmax(300px, var(--w)) 1fr;
  gap: 26px;
}
.block-img-txt__img {
  align-self: center;
}
.block-related-projects {
  margin-inline: -12px;
}
@media (max-width: 767px) {
  .block-related-projects {
    margin-inline: 0;
    padding-inline: 0;
  }
}
.blocks-sep {
  margin-block: 32px;
  border-top: 1px solid #BDBDBD;
}
.content_accord {
  display: none;
}
.sticky-item {
  position: sticky;
  top: 150px;
}
.cta-sect {
  background-color: #A9CC6D;
}
.cta-sect .container {
  position: relative;
  z-index: 10;
}
.cta-sect__bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
.read-more-alt {
  display: flex;
  align-items: center;
}
.read-more-alt svg {
  margin-left: auto;
  transition: transform 0.3s;
}
.read-more-alt:hover svg {
  transform: translateX(3px);
}
.director-popup {
  background-color: #fff;
  padding: 32px;
  display: grid;
  grid-template-columns: 405px 1fr;
  gap: 32px;
  max-width: 1095px;
  margin-inline: auto;
  position: relative;
}
@media (max-width: 991px) {
  .director-popup {
    grid-template-columns: 330px 1fr;
  }
}
@media (max-width: 767px) {
  .director-popup {
    grid-template-columns: auto;
    max-width: 400px;
    gap: 25px;
    padding: 40px 15px;
  }
}
.director-popup .mfp-close {
  top: 16px;
  right: 16px;
  color: transparent;
}
@media (max-width: 767px) {
  .director-popup .mfp-close {
    top: 0;
    right: 0;
  }
}
.director-popup .mfp-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  background: url('../img-alt/close-btn.svg') center / cover no-repeat;
}
.director-popup__img-wrap {
  aspect-ratio: 405 / 450;
}
@media (max-width: 767px) {
  .director-popup__img-wrap {
    max-width: 275px;
    width: 100%;
    justify-self: center;
  }
}
.director-popup__txt {
  padding-right: 24px;
}
@media (max-width: 767px) {
  .director-popup__txt {
    padding-right: 12px;
  }
}
.director-popup__txt-outer-wrap {
  max-height: 355px;
  overflow-y: auto;
}
@media (max-width: 991px) {
  .director-popup__txt-outer-wrap {
    max-height: 270px;
  }
}
@media (max-width: 767px) {
  .director-popup__txt-outer-wrap {
    margin-top: 13px;
    max-height: 220px;
  }
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.pagination a,
.pagination span {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #BDBDBD;
  background-color: #fff;
  transition: all 0.3s;
  border: 1px solid #BDBDBD;
}
.pagination a path,
.pagination span path {
  transition: fill 0.3s all;
}
.pagination a.current,
.pagination span.current,
.pagination a:hover,
.pagination span:hover {
  background-color: #0EC3A9;
  color: #fff;
  border-color: #0EC3A9;
}
.pagination a.current path,
.pagination span.current path,
.pagination a:hover path,
.pagination span:hover path {
  fill: #fff;
}
.info_hover_box.nuvo {
  background: url('../img-alt/Nuvo-CTA-bg.png') center / cover no-repeat;
}
.info_hover_box.nuvo:hover h3 {
  opacity: 1;
}
.info_hover_box.nuvo .link_corner {
  margin-top: 16px;
}
.info_hover_box.nuvo .link_corner .corner {
  background-color: #59BA93;
}
.info_hover_box.envar {
  background: url('../img-alt/Envar-CTA-bg-tile.png') center / cover no-repeat;
}
.info_hover_box.envar:hover h3 {
  opacity: 1;
}
.info_hover_box.envar .link_corner {
  margin-top: 16px;
}
.info_hover_box.envar .link_corner .corner {
  background-color: #25ACE3;
}
@media (min-width: 992px) {
  .info_hover_box.span-2-desktop {
    aspect-ratio: 647 / 500;
    max-width: none;
  }
}
.follow-us {
  column-gap: 8px;
  row-gap: 0;
  flex-wrap: wrap;
}
.follow-us .follow_us_text {
  flex: 0 0 100%;
}
.follow-us .follow_us_text svg {
  margin-right: 5px;
  position: relative;
  top: 2px;
}
.img-block img,
img.aligncenter {
  display: block;
  margin: 0 auto;
}
.img-block p {
  max-width: 870px;
  margin-inline: auto;
  padding-top: 1rem;
  font-style: italic;
}
.img-sect .txt-col p,
.img-sect .txt-col li {
  line-height: 1.4;
}
.cats {
  align-items: center;
}
.testimonial_slider .item_sl {
  height: min-content;
}
.testimonial_slider .content > p,
.testimonial_slider .content > span {
  font-family: "Roboto";
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}
.testimonial_slider .content > span {
  display: block;
  position: initial;
  left: 0;
  margin-bottom: 1.2rem;
  /*font-family: 'saldaxl';
	color: #0EC3A9;
	font-size: 5rem;
	line-height: 1;*/
}
body .testimonial_slider .content .quote-mark {
  display: block;
  position: initial;
  left: 0;
  margin-bottom: 1.2rem;
}
body .testimonial_slider.company-page-testimonials .content {
  border-left: none;
  padding-block: 0;
}
body .testimonial_slider.company-page-testimonials .content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #BDBDBD;
}
@media (max-width: 991px) {
  body .testimonial_slider.company-page-testimonials .content::before {
    top: 0px;
    bottom: 0px;
  }
}
body .testimonial_slider.company-page-testimonials .content .name p {
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .testimonial_slider .content {
    border-left: none;
  }
}
@media (max-width: 991px) {
  .footer-grid {
    display: flex;
    flex-wrap: wrap;
  }
  .footer-grid .footer_navigation {
    flex: 0 0 100%;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .footer_navigation {
    flex-wrap: wrap;
  }
  .breadcrumbs {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .breadcrumbs li:has(svg) {
    transform: rotate(90deg);
  }
  .testimonial_slider .item_sl {
    flex-direction: column;
  }
  .testimonial_slider .content > span {
    margin-top: 1.2rem;
  }
}
.related-projects-company {
  margin-inline: -13px;
}
.related-projects-company__slide {
  padding-inline: 13px;
}
.related-projects-company .slick-list {
  overflow: hidden;
}
.related-projects-company .slick-track {
  display: flex;
}
.rel-proj-header-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 500px) {
  .rel-proj-header-wrap {
    flex-direction: column;
    gap: 8px;
  }
}
.rel-proj-nav-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}
.rel-proj-btns-wrap {
  display: flex;
  gap: 5px;
}
.rel-proj-btns-wrap .slick-arrow {
  background: #0EC3A9;
  width: 50px;
  height: 50px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
}
.rel-proj-btns-wrap .slick-arrow.slick-disabled-next {
  pointer-events: none;
  border: 1px solid #E0E0E0;
  background-color: transparent;
}
.rel-proj-btns-wrap .slick-arrow.slick-disabled-next path {
  fill: #E0E0E0 !important;
}
.rel-proj-btns-wrap .slick-arrow svg {
  vertical-align: middle;
}
.rel-proj-btns-wrap .slick-arrow.slick-disabled {
  pointer-events: none;
  border: 1px solid #E0E0E0;
  background-color: transparent;
}
.rel-proj-btns-wrap .slick-arrow.slick-disabled path {
  fill: #E0E0E0 !important;
}
.rel-proj-btns-wrap .slick-arrow.slick-prev svg {
  transform: rotate(180deg);
}
.open-positions-top {
  padding: 275px 0 16px;
  position: relative;
  border-bottom: 1px solid #E0E0E0;
}
.open-positions-top__content {
  max-width: 50%;
  position: relative;
  z-index: 20;
}
@media (max-width: 1199px) {
  .open-positions-top__content {
    max-width: 60%;
  }
}
@media (max-width: 991px) {
  .open-positions-top__content {
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .open-positions-top__content {
    max-width: none;
  }
}
.open-positions-top__img-wrap {
  position: absolute;
  bottom: 60px;
  right: 0;
}
.position-search {
  margin-top: 57px;
  position: relative;
  border-bottom: 1px solid #E0E0E0;
}
.position-search__glass {
  position: absolute;
  z-index: 1;
  top: calc(50% - 12px);
  right: 0;
}
.position-search__input {
  height: 48px;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  border: none;
  outline: none;
  padding: 8px 24px 8px 0;
  font: 700 26px / 1.2 'saldaxl', sans-serif;
  color: #000;
}
@media (max-width: 767px) {
  .position-search__input {
    font-size: 20px;
    height: 40px;
  }
}
.position-search__input::placeholder {
  opacity: 1;
  color: #00000080;
}
.jobs-search-results {
  padding-block: 24px 60px;
}
.job-results-wrap {
  display: flex;
  gap: 16px;
}
@media (max-width: 991px) {
  .job-results-wrap {
    flex-direction: column-reverse;
  }
}
.job-items-wrap {
  flex: 0 0 40.53030303%;
}
.job-items-wrap-inner {
  display: grid;
  row-gap: 16px;
}
.job-item-card {
  cursor: pointer;
  padding: 24px;
  border: 1px solid #E0E0E0;
  background: #F8F8F8;
}
.job-item-card__title {
  font: 700 20px / 1.2 'saldaxl', sans-serif;
}
.job-item-card__location {
  font-size: 18px;
  line-height: 1.5;
}
.job-item-card__desc {
  display: none;
}
.has-custom-dots-ul ul li {
  position: relative;
  padding-left: 25px;
}
.has-custom-dots-ul ul li::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  display: block;
  background-color: currentColor;
}
.job-details {
  position: relative;
  padding: 24px;
  border: 1px solid #E0E0E0;
}
.job-details__header {
  font: 700 32px / 1.2 'saldaxl', sans-serif;
  text-transform: capitalize;
}
.job-details__location {
  font-size: 18px;
  line-height: 1.5;
}
.job-details__details {
  line-height: 1.2;
}
.job-details__details strong {
  display: inline-block;
  margin-block: 13px 6px;
  font-size: 20px;
  font-family: 'saldaxl', sans-serif;
}
.job-details__details p:first-child:has(strong) strong {
  margin-top: 0;
}
.job-details__close-btn {
  position: absolute;
  right: 24px;
  top: 24px;
  cursor: pointer;
}
.project-slider__slide-inner {
  width: 100%;
  aspect-ratio: 760 / 506;
}
.project-slider .slick-list {
  overflow: hidden;
}
.project-slider .slick-track {
  display: flex;
}
.loading {
  position: relative;
  pointer-events: none;
}
.loading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}
.nav-item-btn {
  color: inherit;
  padding: 16px 24px;
  border: 1px solid #E0E0E0;
  transition: all 0.3s;
}
.nav-item-btn.active {
  background-color: #0EC3A9;
  border-color: #0EC3A9;
}
.company-contacts {
  display: none;
}
.company-contacts.active {
  display: block;
  gap: 25px;
}
@media (min-width: 768px) {
  .company-contacts.active {
    display: flex;
  }
}
.company-contacts-states {
  font-family: "saldaxl";
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .company-contacts-states {
    flex: 0 1 calc((647 / 1320) * 100%);
    max-width: calc((647 / 1320) * 100%);
  }
}
.company-contacts-states__item {
  display: flex;
  gap: 16px;
  padding-block: 24px;
  border-top: 1px solid #BDBDBD;
  color: inherit;
}
@media (max-width: 991px) {
  .company-contacts-states__item {
    padding-block: 16px;
  }
}
.company-contacts-states__item:last-child {
  border-bottom: 1px solid #BDBDBD;
}
.company-contacts-states__item svg {
  margin-left: auto;
  transition: all 0.3s;
}
.company-contacts-states__item:hover svg {
  transform: translateX(3px);
}
.company-contacts-departments {
  flex: 0 1 535px;
  max-width: 535px;
  margin-left: auto;
}
@media (max-width: 767px) {
  .company-contacts-departments {
    margin-top: 45px;
  }
}
.department-card {
  padding: 32px;
  border: 1px solid #E0E0E0;
  background: #FFF;
}
.department-card:not(:first-child) {
  margin-top: 8px;
}
.department-card__company {
  font-size: 13px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.department-card__city {
  font-weight: 700;
  margin-bottom: 25px;
}
.department-card__info {
  line-height: 1.4;
}
.department-card__info.js-open-contact-form {
  cursor: pointer;
}
.department-card__info.underline-on-hover span {
  color: #000;
}
.department-card__info.underline-on-hover:hover span {
  text-decoration: underline;
}
.department-cards-wrap {
  display: none;
}
.department-cards-wrap.active {
  display: block;
}
.make-enquiry-form {
  max-width: 726px;
  margin-inline: auto;
  position: relative;
}
.make-enquiry-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  flex: 0 0 100%;
  margin-bottom: 20px;
}
.make-enquiry-form .mfp-close {
  color: #000;
  opacity: 1;
}
.make-enquiry-form .main_title {
  margin-bottom: 8px;
}
body.error404 {
  background: #f1f6f5;
}
body.error404 .main-header {
  background-color: #fff;
}
body.error404 .main-block {
  margin-top: 190px;
}
@media (max-width: 1199px) {
  body.error404 .main-block {
    margin-top: 126px;
  }
}
.sect-404.main-sect {
  padding-top: 57px;
}
.sect-404 .bg-404-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
}
.sect-404 .row {
  height: 600px;
}
@media (max-width: 767px) {
  .sect-404 .row {
    height: 50vh;
  }
}
@media (max-width: 767px) {
  .sect-404 .empty-col {
    display: none;
  }
}
.sect-404 .wrap-404 {
  display: flex;
  align-items: center;
}
.sect-404 .h1-404 {
  text-transform: capitalize;
}
.sect-404 .container {
  position: relative;
  z-index: 5;
}
.small-text {
  font-size: 15px;
}
.job-item-card__date,
.job-details__date {
  font-size: 13px;
}
.main-header.mega-menu-opened:has(.simple_menu) .main_nav a {
  color: #000;
}
.bg_menu.simple_menu {
  background: #fff;
}
.main-header.mega-menu-opened:has(.simple_menu) .main_nav li.menu-item-has-children::after {
  background-image: url(../img-alt/menu-arr-black.svg);
}
.brands-row {
  background: #fff;
  display: flex;
  justify-content: space-between;
}
.brand-section {
  color: #000;
  border-left: 1px solid rgba(184, 208, 205, 0.4);
  padding: 24px;
}
.brands-row .brand-section:not(:last-child) {
  margin-right: 26px;
}
.brand-section h4 {
  font-family: 'saldaxl';
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
.brand-section .brand-description {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 140%;
}
.brand-section .arrow-brand-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
  transition: all 0.3s ease;
  opacity: 1;
}
.brand-section .arrow-brand-link:after {
  content: '';
  display: flex;
  width: 16px;
  height: 16px;
  background: url(../img/link-arrow.svg) no-repeat;
}
.brand-section .arrow-brand-link:hover {
  opacity: 0.8;
}
.slider-image-gallery {
  overflow: hidden;
  position: relative;
  padding-top: 104px;
  min-height: 654px;
  margin-top: -66px;
}
.slider-image-gallery.arrow_green .slick-arrow {
  background: #56AB86;
}
.slider-image-gallery.arrow_blue .slick-arrow {
  background: #25ACE3;
}
.slider-image-gallery .current_slide_info {
  position: absolute;
  top: 11px;
  margin-right: 15px;
  right: 108px;
  color: #444242;
  font-family: 'Roboto';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.slider-image-gallery .slick-list {
  margin-right: -13px;
  margin-left: -13px;
}
.slider-image-gallery .card__img-wrap {
  margin-bottom: 16px;
}
.slider-image-gallery .card__content {
  padding: 0;
  border: none;
  background-color: transparent;
}
.slider-image-gallery .slider-image-gallery-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 104px;
}
.slider-image-gallery .item-sl {
  padding: 0 13px;
}
.slider-image-gallery .item-sl .card {
  width: 100%;
  transition: 0.4s ease;
}
.slider-image-gallery .item-sl.slick-current .card .card__img-wrap {
  aspect-ratio: 647 / 429;
}
.slider-image-gallery .item-sl.slick-current .card {
  width: 647px;
}
.slider-image-gallery .item-sl:not(.slick-current) .card {
  transform: translateX(336px);
}
.slider-image-gallery .item-sl:not(.slick-current) .card .card__img-wrap {
  aspect-ratio: 310 / 300;
  max-height: 300px;
  width: 100%;
}
.slider-image-gallery .item-sl.prev-sl .card {
  transform: translateX(0) !important;
}
.slider-image-gallery .slick-arrow {
  position: absolute;
  background: #0EC3A9;
  width: 50px;
  height: 50px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  bottom: 100%;
  right: 0;
  margin-bottom: 54px;
}
.slider-image-gallery .slick-arrow.slick-disabled-next {
  pointer-events: none;
  border: 1px solid #E0E0E0;
  background-color: transparent;
}
.slider-image-gallery .slick-arrow.slick-disabled-next path {
  fill: #E0E0E0 !important;
}
.slider-image-gallery .slick-arrow svg {
  vertical-align: middle;
}
.slider-image-gallery .slick-arrow.slick-disabled {
  pointer-events: none;
  border: 1px solid #E0E0E0;
  background-color: transparent;
}
.slider-image-gallery .slick-arrow.slick-disabled path {
  fill: #E0E0E0 !important;
}
.slider-image-gallery .slick-arrow.slick-prev {
  right: 58px;
}
.slider-image-gallery .slick-arrow.slick-prev svg {
  transform: rotate(180deg);
}
.slider-image-gallery .slick-track {
  display: flex;
}
@media (max-width: 1449px) {
  .slider-image-gallery .item-sl.slick-current .card {
    width: 555px;
  }
  .slider-image-gallery .item-sl:not(.slick-current) .card {
    transform: translateX(289px);
  }
}
@media (max-width: 1199px) {
  .slider-image-gallery .item-sl:not(.slick-current) .card {
    transform: translateX(306px);
  }
}
@media (max-width: 991px) {
  .slider-image-gallery .item-sl.slick-current .card {
    width: 450px;
  }
  .slider-image-gallery .item-sl:not(.slick-current) .card {
    transform: translateX(238px);
  }
}
@media (max-width: 767px) {
  .slider-image-gallery {
    margin-top: 0;
    min-height: 0;
  }
  .slider-image-gallery .slider-image-gallery-inner {
    position: relative;
    top: 0;
  }
  .slider-image-gallery .item-sl.slick-current .card,
  .slider-image-gallery .item-sl .card {
    width: 100%;
  }
  .slider-image-gallery .item-sl:not(.slick-current) .card {
    transform: translateX(0);
  }
  .slider-image-gallery .item-sl:not(.slick-current) .card .card__img-wrap {
    max-height: unset;
  }
  .slider-image-gallery .item-sl .card .card__img-wrap {
    aspect-ratio: 647 / 429 !important;
  }
}
.new-further {
  position: relative;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 107px 0;
  transition: all 0.3s ease;
  min-height: 980px;
}
.new-further:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(237.2deg, rgba(0, 162, 222, 0.15) 45.5%, rgba(14, 195, 169, 0.3) 86.49%), linear-gradient(284.21deg, rgba(0, 0, 0, 0) 9.68%, rgba(0, 0, 0, 0.3) 97.03%);
  margin-top: -107px;
  z-index: 1;
}
.new-further * {
  color: white;
  z-index: 2;
}
.new-further img {
  filter: brightness(0) invert(1);
  width: 40px;
  height: 40px;
  margin-right: 16px;
}
.new-further .left-content-wrapper {
  margin-left: -15px;
  max-width: 440px;
}
.new-further .left-title {
  font-family: 'saldaxl';
  font-size: 36px;
  line-height: 120%;
  letter-spacing: 0.4px;
  margin-bottom: 18px;
}
.new-further .blured {
  background: rgba(81, 108, 105, 0.5);
  -webkit-backdrop-filter: blur(77.4px);
  backdrop-filter: blur(77.4px);
  border: 1px solid #C4C4C4;
  padding: 32px;
  margin-right: -15px;
}
.new-further .above-accordions-text {
  margin-bottom: 14px;
}
.new-further .above-accordions-text p {
  line-height: 1.4;
}
.new-further .accordions-block {
  margin-bottom: 16px;
}
.new-further details {
  border-bottom: 1px solid #fff;
}
.new-further summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  font-size: 18px;
  padding: 16px 0;
}
.new-further summary::-webkit-details-marker {
  display: none;
}
.new-further details summary svg {
  right: 32px;
  position: absolute;
  transition: 0.3s all ease;
}
.new-further details:open summary svg {
  transform: rotate(180deg);
}
.new-further details:open::details-content {
  padding: 0 24px 16px 56px;
  line-height: 1.4;
}
::details-content {
  transition: height 0.5s ease, content-visibility 0.5s ease allow-discrete;
  height: 0;
  overflow: clip;
  padding: 0 24px 16px 56px;
  line-height: 1.4;
}
@supports (interpolate-size: allow-keywords) {
  :root {
    interpolate-size: allow-keywords;
  }
  [open]::details-content {
    height: auto;
  }
}
@media (max-width: 991px) {
  .new-further {
    padding: 60px 0;
  }
  .new-further:before {
    margin-top: -60px;
  }
  .new-further .left-content-wrapper {
    margin-right: -15px;
  }
  .new-further .blured {
    margin-left: -15px;
  }
}
.mfp-bg {
  background: #000;
  opacity: 0.4;
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.mfp-content:has(.form-popup) {
  width: 648px;
  height: calc(100vh - 170px);
  max-height: 750px;
  background: #fff;
  overflow-y: auto;
  padding: 32px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}
.form-popup .mfp-close {
  color: #000;
  margin-top: 24px;
  margin-right: 24px;
  font-size: 32px;
  opacity: 1;
  transition: 0.3s all ease;
}
.form-popup .mfp-close:hover {
  opacity: 0.5;
}
.form-popup h3 {
  font-family: 'saldaxl';
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 8px;
}
.form-popup .description {
  margin-bottom: 32px;
}
.form-popup p {
  font-family: Roboto;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 14px;
}
.form-popup .asterick {
  color: #E00;
}
.form-popup label {
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
.form-popup label span.wpcf7-form-control-wrap {
  display: block;
}
.form-popup .half-width p {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.form-popup .half-width.asym p label:first-child {
  width: calc(100% + 16px);
}
.form-popup .half-width.asym p label:last-child {
  margin-left: 16px;
}
.form-popup input[type="text"],
.form-popup input[type="tel"],
.form-popup input[type="email"],
.form-popup select {
  padding: 18px 14px;
  border: 1px solid #E0E0E0;
  margin-top: 6px;
  width: 100%;
  font-size: 16px;
}
.form-popup select {
  /*padding: 17px 14px 18px;*/
  color: #828282;
  appearance: none;
  -webkit-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.528519 0.195713C0.653538 0.0707327 0.823076 0.000522353 0.999853 0.000522353C1.17663 0.000522353 1.34617 0.0707327 1.47119 0.195713L4.99985 3.72438L8.52852 0.195713C8.59002 0.13204 8.66358 0.0812514 8.74492 0.0463121C8.82625 0.0113727 8.91373 -0.00701812 9.00225 -0.00778733C9.09077 -0.00855654 9.17856 0.00831175 9.26049 0.0418323C9.34242 0.0753529 9.41685 0.124855 9.47945 0.18745C9.54204 0.250045 9.59155 0.32448 9.62507 0.406411C9.65859 0.488341 9.67546 0.576128 9.67469 0.664647C9.67392 0.753167 9.65553 0.840647 9.62059 0.921983C9.58565 1.00332 9.53486 1.07688 9.47119 1.13838L5.47119 5.13838C5.34617 5.26336 5.17663 5.33357 4.99985 5.33357C4.82308 5.33357 4.65354 5.26336 4.52852 5.13838L0.528519 1.13838C0.403539 1.01336 0.333328 0.843823 0.333328 0.667047C0.333328 0.490271 0.403539 0.320732 0.528519 0.195713Z" fill="black"/></svg>');
  background-repeat: no-repeat;
  background-position: right 24px center;
  background-size: 10px;
  background-color: #fff;
}
.form-popup .your-relocation p {
  font-size: 16px;
}
.form-popup .your-relocation p:first-child {
  margin-bottom: 8px;
}
.form-popup .your-relocation .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.form-popup .wpcf7-list-item {
  margin: 0;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 6px;
}
.form-popup .wpcf7-list-item input {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  margin-top: -2px;
}
.form-popup input[type="file"].link_corner {
  background-image: url(../img/upload-bg.png);
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: contain;
  color: #fff;
  transition: 0.3s all ease;
}
/*
.form-popup input[type="submit"].link_corner {
  position: relative;
  background-image: url(../img/submit-bg.png);
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: contain;
  transition: 0.3s all ease;
}
*/
.form-popup .link_corner:hover {
  /*background-color: #0EC3A9;*/
}
.file-upload {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #E0E0E0;
  border-radius: 2px;
  padding: 16px 0 16px 24px;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  color: #000;
  width: 100%;
  transition: all 0.3s ease;
}
.file-upload:hover {
  color: #fff;
}
.file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.file-upload .file-label {
  color: #000;
  font-size: 16px;
  z-index: 10;
}
.file-upload::before,
.form-popup button[type="submit"].link_corner:before {
  content: "";
  position: absolute;
  top: 0;
  right: -109%;
  width: 120%;
  height: 100%;
  background: #0EC3A9;
  transform: skewX(-30deg);
  transition: right 0.4s ease-in-out;
  z-index: 0;
}
.file-upload::after {
  content: "";
  position: absolute;
  right: 0;
  width: 56px;
  height: 100%;
  background-image: url(../img/upload-bg.png);
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: contain;
  z-index: 2;
}
.form-popup button[type="submit"] span {
  position: relative;
  z-index: 2;
}
.form-popup button[type="submit"].link_corner:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 64px;
  height: 100%;
  background-image: url(../img/submit-bg.png);
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: cover;
  z-index: 2;
}
.file-upload:hover::before,
.form-popup button[type="submit"].link_corner:hover::before {
  right: -10%;
}
.file-upload:hover .file-label {
  color: #fff;
}
@media (max-width: 767px) {
  .mfp-content:has(.form-popup) {
    width: 90%;
  }
  .new-further details {
    padding-bottom: 10px;
  }
  .new-further summary {
    padding: 16px 0 6px 0;
  }
  .form-popup .half-width p {
    grid-template-columns: repeat(1, 1fr);
  }
  .form-popup .half-width.asym p label:first-child {
    width: 100%;
  }
  .form-popup .half-width.asym p label:last-child {
    margin-left: 0;
  }
  .file-upload::before {
    right: -100%;
  }
}
.link_corner.download {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #000;
  transition: color 0.3s ease;
  z-index: 1;
}
.link_corner.download:hover {
  color: #fff;
}
.link_corner.download:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 62px;
  height: 100%;
  background: url(../img/download-corner.svg) no-repeat center / cover;
  z-index: 3;
}
.link_corner.download:after {
  content: '';
  position: absolute;
  top: 0;
  right: -109%;
  width: 120%;
  height: 100%;
  background: #0EC3A9;
  transform: skewX(-30deg);
  transition: right 0.4s ease-in-out;
  z-index: 0;
}
.link_corner.download:hover::after {
  right: -10%;
}
.link_corner.download span,
.link_corner.download {
  position: relative;
  z-index: 2;
}
.locations {
  overflow: visible;
}
.top-mobile-visible {
  display: none !important;
}
.mobile-submenu {
  display: none;
}
.we-do__sidebar .nav-mobile {
  display: none;
}
@media (max-width: 1199px) {
  .main-header .bottom_line {
    width: 100%;
    max-width: 100%;
    background: #fff;
    padding: 15px 20px;
  }
  .mobile-submenu {
    display: block;
    position: fixed;
    top: 200px;
    right: -100%;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: right 0.4s ease;
    padding: 60px 20px;
    box-sizing: border-box;
    overflow-y: auto;
  }
  .mobile-submenu.active {
    right: 0;
  }
  .mobile-submenu h4 {
    margin: 32px 0;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    text-align: left;
  }
  .mobile-submenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-submenu li {
    margin-bottom: 16px;
  }
  .mobile-submenu a {
    text-decoration: none;
    font-size: 15px;
    color: #000;
  }
  .mobile-submenu .back-btn {
    display: inline-block;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    background: none;
  }
  .mobile-submenu .back-btn:before {
    content: '';
    position: relative;
    display: inline-block;
    margin-right: 4px;
    top: 3px;
    width: 16px;
    height: 16px;
    background: url(../img-alt/menu-arr-black.svg) center / cover no-repeat;
    transform: rotate(90deg);
  }
  header.main-header .main_nav {
    right: 0;
    left: 0;
    padding: 60px 20px;
    height: 100vh;
  }
  header.main-header .main_nav.open {
    margin-top: -10px;
  }
  header.main-header .main_nav a {
    padding: 8px 0;
  }
  .main_nav .top-mobile-hidden,
  .main-header .top_line .container,
  .main-header .light-logo {
    display: none !important;
  }
  .top-mobile-visible,
  .main-header .dark-logo {
    display: block !important;
  }
  .main-header .bottom_line .logo {
    width: 93px !important;
  }
  header.main-header .main_nav ul .menu-item-has-children::after {
    transform: rotate(-90deg);
  }
  .white_color .toggle-menu span span {
    background-color: #000;
  }
  .toggle-menu:before {
    content: 'Menu';
    position: absolute;
    margin-right: 72px;
    font-size: 13px;
  }
  .top_banner .content {
    position: absolute;
  }
  .top_banner .video-wrapper {
    padding: 0 !important;
    position: unset;
    height: 100vh;
    display: flex;
    justify-content: flex-end;
  }
  .top_banner .video-wrapper iframe {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    width: auto !important;
    height: 100% !important;
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 991px) {
  .we-do__sidebar ul.js-nav-block {
    display: none;
  }
  .we-do__sidebar .nav-mobile {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    padding: 21px 0 23px;
  }
  .we-do__sidebar .nav-mobile .jump-to-title {
    display: inline-flex;
    flex-wrap: nowrap;
    margin-right: 35px;
    padding: 8px 0;
  }
  .we-do__sidebar .nav-mobile .mobile-select {
    display: inline-flex;
    flex: 1;
    appearance: none;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    border: 1px solid #e0e0e0;
    background-color: #f8f8f8;
    background-image: url(../img-alt/select-arr.svg);
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: right 14px center;
    padding: 9px 12px;
  }
  .we-do__sidebar .nav-mobile .mobile-select:open {
    background-image: url(../img-alt/select-arr-up.svg);
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: right 14px center;
  }
  .info_hover_box.get_touch.sm_size {
    aspect-ratio: 4 / 3;
  }
}
@media (max-width: 767px) {
  .top_banner .bottom_links {
    display: none;
  }
  .breadcrumbs {
    gap: 16px !important;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: left;
  }
  .breadcrumbs li:has(svg) {
    transform: unset !important;
  }
  .flex-center {
    flex-direction: column-reverse;
  }
  .featured-item .featured-item__img-wrap {
    aspect-ratio: 3 / 2;
  }
}
@media (max-width: 550px) {
  body .title_big {
    font-size: 36px;
  }
  .top-banner-height {
    min-height: 500px;
    padding: 40px 20px;
  }
  .top-banner {
    padding-block: 275px 40px;
  }
  section.news-media-top {
    /* padding-top: 290px; */
    padding-top: 64%;
    padding-bottom: 0 !important;
  }
  section.news-media-top .news-media-top__bg {
    top: 0px;
    width: 80%;
  }
  section.news-media-top .container.main-content,
  .filter-section .filter-container {
    background: #F8F8F8;
  }
  .featured-item h2 {
    font-size: 32px;
  }
  .card h3 {
    font-size: 18px;
  }
  section.news-media-top .featured-item__content {
    border: none;
    padding: 32px 0;
  }
  section.news-media-top .featured-item__content a.link_corner {
    padding: 16px 60px 16px 10px;
    font-size: 13px;
  }
  .filter .showing-posts {
    position: absolute;
    top: 17px;
    right: 0;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .share-block {
    justify-content: space-between;
  }
  .footer_navigation {
    flex-direction: column;
    row-gap: 10px;
  }
  .main-sect {
    overflow-x: hidden;
    padding: 35px 0 76px;
  }
  .main-footer .copyright.flex {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .main-footer .copyright p {
    order: 3;
    margin-top: 15px;
  }
}
@media (max-width: 510px) {
  section.news-media-top .news-media-top__bg {
    width: 80%;
    top: -10px;
  }
}
@media (max-width: 480px) {
  section.news-media-top .news-media-top__bg {
    width: 76%;
    top: -10px;
  }
}
@media (max-width: 460px) {
  section.news-media-top .news-media-top__bg {
    width: 76%;
    top: -25px;
  }
}
@media (max-width: 420px) {
  section.news-media-top .news-media-top__bg {
    width: 76%;
    top: -31px;
  }
}
@media (max-width: 400px) {
  section.news-media-top .news-media-top__bg {
    width: 72%;
    top: -40px;
  }
}
/* New Slider */
.new-slider-container {
  /*max-width: 1140px;*/
  margin: 48px auto 0;
  position: relative;
}
.new-slider-container .image-slider,
.new-slider-container .card-slider {
  transition: width 0.6s ease;
  overflow: hidden;
}
.new-slider-container .card__content {
  padding: 0;
  border: none;
  background-color: transparent;
}
.new-slider-container .slide:not(.slick-current) .card .card__img-wrap {
  aspect-ratio: 310 / 300;
  max-height: 300px;
  width: 100%;
}
.new-slider-container .card__img-wrap {
  margin-bottom: 16px;
}
.new-slider-container .slick-track {
  display: flex;
  margin: 0 -13px;
  align-items: flex-start;
  transition: transform 0.6s ease;
}
.new-slider-container .slick-slide {
  transition: width 0.6s ease;
  padding: 0 13px;
}
.new-slider-container .slick-current {
  opacity: 1;
  z-index: 2;
}
.new-slider-container .slick-prev,
.new-slider-container .slick-next {
  position: absolute;
  top: -104px;
  width: 50px;
  height: 50px;
  outline: none;
  border: 1px solid transparent;
  background: #56AB86;
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  -webkit-appearance: none;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.new-slider-container .slick-prev:hover,
.new-slider-container .slick-next:hover {
  background: #0EC3A9;
}
.new-slider-container .slick-prev.inactive,
.new-slider-container .slick-next.inactive {
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
  border: 1px solid #E0E0E0;
}
.new-slider-container .slick-prev.inactive svg path,
.new-slider-container .slick-next.inactive svg path {
  fill: #E0E0E0;
}
.new-slider-container .slick-prev {
  right: 58px;
}
.new-slider-container .slick-prev svg {
  transform: rotate(180deg);
}
.new-slider-container .slick-next {
  right: 0;
}
.new-slider-container.arrow_green .slick-next:not(.inactive),
.new-slider-container.arrow_green .slick-prev:not(.inactive) {
  background: #56AB86;
}
.new-slider-container.arrow_blue .slick-next:not(.inactive),
.new-slider-container.arrow_blue .slick-prev:not(.inactive) {
  background: #25ACE3;
}
.new-slider-container .slide-counter {
  top: -90px;
  position: absolute;
  right: 108px;
  margin-right: 15px;
  color: #444242;
  font-family: 'Roboto';
  font-size: 16px;
}
@media (max-width: 767px) {
  .new-slider-container {
    margin: 125px auto 0;
  }
  .new-slider-container .slick-track {
    margin: 0 !important;
  }
  .new-slider-container .slick-slide {
    padding: 0 !important;
  }
  .new-slider-container .slide-counter {
    top: -76px;
  }
  .new-slider-container .slick-prev,
  .new-slider-container .slick-next {
    top: -92px;
  }
  .testimonial_slider .img_full .top_logo {
    top: 10px;
    left: 10px;
    width: 40%;
  }
}
@media (max-width: 1199px) {
  header.main-header .main_nav:not(.open) ul .menu-item-has-children ul {
    pointer-events: none !important;
  }
}
.top-banner-brand::before {
  content: '';
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(114, 178, 171, 0.75) 100%);
  background-blend-mode: multiply, normal;
}
.job-details__details li strong {
  display: inline;
  margin: 0;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
}
.job-details__details .file-upload {
  margin-top: 32px;
}
.job-details__details p:empty,
.job-details__details p strong:empty {
  display: none;
}
.page-template-page-what-we-do-company .current_slide_info {
  display: none;
}
.privacy-policy-top {
  padding: 242px 0 189px;
  position: relative;
  border-bottom: 1px solid #E0E0E0;
}
.privacy-policy-top__img-wrap {
  position: absolute;
  bottom: -4px;
  right: 0;
}
.privacy-policy-section {
  max-width: 868px;
  margin: 0 auto;
  padding: 80px 0;
}
.privacy-policy-section .content-wrapper a {
  color: inherit;
  text-decoration: underline;
}
.privacy-policy-section .date-wrapper {
  margin-bottom: 52px;
}
.privacy-policy-section .content-wrapper h5,
.privacy-policy-section .content-wrapper h6 {
  font-family: 'saldaxl', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 16px;
}
.privacy-policy-section .content-wrapper ul,
.privacy-policy-section .content-wrapper ol {
  margin-bottom: 16px;
}
.dropdown-toggle .filter-option img {
  width: auto;
  height: 24px;
}
.dropdown-toggle .filter-option .option-arrow {
  display: none;
}
.dropdown-menu.inner .text:has(.option-arrow) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 219px;
}
.dropdown-menu.inner .text img {
  width: auto;
  max-height: 33px;
}
/*.job-item-card:hover {
  border: 1px solid #8b8b8b;
  background: #ededed;
}*/
.job-item-card.active {
  background: #F1F6F5;
  border: 1px solid #B8D0CD;
}
.black-link {
  color: #000;
  text-decoration: underline;
}
.black-link:hover {
  color: #000;
  text-decoration: none;
}
/*.info_hover_box.get_touch.sm_size {
  aspect-ratio: 3 / 4;
}*/
/*
@media (min-width: 1040px) {
  .main-footer {
  overflow: visible;
  height: 347px;
}
.main-footer .container{  height: 235px;}
}*/
/*# sourceMappingURL=style-sy.css.map */