/* Halyard Display Regular */
@font-face {
  font-family: "Halyard Display";
  src: url("/dist-custom/fonts/fonnts.com-Halyard_Display_Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
/* Halyard Display Bold */
@font-face {
  font-family: "Halyard Display";
  src: url("/dist-custom/fonts/fonnts.com-Halyard_Display_Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
/* Halyard Display Light */
@font-face {
  font-family: "Halyard Display";
  src: url("/dist-custom/fonts/fonnts.com-Halyard_Display_Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
/* Halyard Display Medium */
@font-face {
  font-family: "Halyard Display";
  src: url("/dist-custom/fonts/fonnts.com-Halyard_Display_Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
/* Global font for body */
body {
  font-family: "Halyard Display", sans-serif;
}

.h2_heading_for_banner__ {
  font-size: 18px;
  line-height: 1.3;
  color: rgb(255, 158, 37);
  font-weight: 500;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

/* Row */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  /* spacing compensation */
}

.common_tag_heading_ span {
  background: rgb(244, 234, 236);
  padding: 5px 10px;
  margin-bottom: 30px;
  display: inline-block;
}

.section_from_home_page__ {
  height: 400px;
  background-color: #004E97;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section_from_home_page__ h1 {
  color: #fff;
}

/* Columns */
[class^=col-] {
  padding: 0px 10px;
}

/* Column widths (out of 12) */
.col-1 {
  width: 8.3333%;
}

.col-2 {
  width: 16.6666%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.3333%;
}

.col-5 {
  width: 41.6666%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.3333%;
}

.col-8 {
  width: 66.6666%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.3333%;
}

.col-11 {
  width: 91.6666%;
}

.col-12 {
  width: 100%;
}

/* Flex Utilities */
.d-flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.align-start {
  align-items: flex-start;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.align-stretch {
  align-items: stretch;
}

.align-baseline {
  align-items: baseline;
}

/* Gap Utility */
.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #000;
}

a.website_btn {
  background: #204d92;
  color: #fff;
  border: 1px solid #204d92;
  border-radius: 5px;
  padding: 8px 20px;
  cursor: pointer;
  display: block;
}

a.website_btn:hover {
  background: #fff;
  color: #204d92;
}

p,
span {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
}

a.btn-default {
  border: 2px solid #004E97;
  color: #004E97;
  padding: 10px;
  cursor: pointer;
  font-weight: 500;
  font-size: 18px;
}

/* Responsive - Stack columns on small screens */
@media (max-width: 768px) {
  [class^=col-] {
    width: 100%;
  }
}
.dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  padding: 10px 20px;
  background-color: transparent;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: -168px;
  width: 900px;
  background-color: #f3eaec;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 999;
  display: none;
  /* must be none initially */
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: row;
}

.largeheading {
  font-size: 40px;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
  font-weight: 700;
}

.secondlargeheading {
  font-size: 28px;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
  font-weight: 700;
}

.largeheadingpara {
  width: 100%;
  text-align: center;
  line-height: 26px;
}

.mediumheading {
  font-size: 24px;
  color: #000000;
  margin-bottom: 20px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .largeheading {
    font-size: 28px;
  }
}
/* === Base animation class === */
.scroll-animate {
  opacity: 0;
  transition: all 0.8s ease-out;
  will-change: opacity, transform;
}

/* Slide from bottom */
.slide-up {
  transform: translateY(50px);
}

.slide-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left */
.slide-left {
  transform: translateX(-50px);
}

.slide-left.show {
  opacity: 1;
  transform: translateX(0);
}

/* Optional delay modifiers */
.scroll-animate[data-delay="1"] {
  transition-delay: 0.2s;
}

.scroll-animate[data-delay="2"] {
  transition-delay: 0.4s;
}

.scroll-animate[data-delay="3"] {
  transition-delay: 0.6s;
}

/* ===== Image Book Opening Effect ===== */
.duis_aute_irure_dolor_in_reprehenderit_image_side {
  display: inline-block;
  perspective: 1000px;
  /* Depth for 3D rotation */
  opacity: 0;
  transform: rotateY(90deg);
  transform-origin: left center;
  transition: all 1s ease-in-out;
  will-change: transform, opacity;
}

.duis_aute_irure_dolor_in_reprehenderit_image_side.show {
  opacity: 1;
  transform: rotateY(0deg);
}

.duis_aute_irure_dolor_in_reprehenderit_image_side img {
  transform-style: preserve-3d;
}

/* Container with perspective for 3D */
.book-container {
  width: 600px;
  height: 400px;
  perspective: 1200px;
  position: relative;
}

/* Both halves base style */
.book-half {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  backface-visibility: hidden;
  opacity: 0;
  transition: all 1s ease-in-out;
  transform-style: preserve-3d;
}

/* Left half */
.book-left {
  left: 0;
  transform-origin: right center;
  transform: rotateY(-90deg);
}

/* Right half */
.book-right {
  right: 0;
  transform-origin: left center;
  transform: rotateY(90deg);
}

/* Same image in both halves */
.book-half img {
  position: absolute;
  width: 200%;
  /* double width to cover each half */
  height: 100%;
  object-fit: cover;
}

/* Position image correctly for left and right halves */
.book-left img {
  left: 0;
}

.book-right img {
  left: -50%;
}

/* Show class triggers rotation and opacity */
.book-left.show {
  opacity: 1;
  transform: rotateY(0deg);
}

.book-right.show {
  opacity: 1;
  transform: rotateY(0deg);
}

.banner_row__ {
  background-color: #4e4a4a;
  height: 300px;
}

.all_services_section {
  padding: 100px 0px;
  margin-bottom: 100px;
  position: relative;
}
.all_services_section .tabs-wrapper {
  margin: 40px 0px;
}
.all_services_section .tabs-wrapper .tabs {
  display: flex;
  border-bottom: 2px solid #ddd;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.all_services_section .tabs-wrapper .tabs .tab-button {
  background: none;
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  font-size: 18px;
  text-transform: uppercase;
  transition: 0.3s;
  font-weight: 400;
  border-radius: 0px;
  color: #000;
}
.all_services_section .tabs-wrapper .tabs .tab-button h5 {
  text-transform: uppercase;
}
.all_services_section .tabs-wrapper .tabs .tab-button:hover {
  background-color: #f9f9f9 !important;
  color: #000 !important;
}
.all_services_section .tabs-wrapper .tabs .tab-button.active {
  color: #fff !important;
  background-color: #004E97 !important;
}
.all_services_section .tabs-wrapper .tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
  margin-top: 50px;
}
.all_services_section .tabs-wrapper .tab-content h3 {
  font-size: 24px;
  color: #000000;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  width: fit-content;
  padding-right: 25px;
}
.all_services_section .tabs-wrapper .tab-content h3 a {
  color: #000;
}
.all_services_section .tabs-wrapper .tab-content h3 a:hover {
  color: #004E97;
}
.all_services_section .tabs-wrapper .tab-content h3::after {
  content: url(../../dist-custom/images/button-icon-blue.svg);
  display: inline-block;
  width: 0.625rem;
  height: 1.25rem;
  transition: all 0.3s ease;
  position: absolute;
  right: 0px;
  top: 5px;
}
.all_services_section .tabs-wrapper .tab-content ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px 10px;
}
.all_services_section .tabs-wrapper .tab-content ul li {
  font-weight: 500;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 20px;
  position: relative;
  width: auto;
  display: block;
  padding-right: 20px;
  width: fit-content;
}
.all_services_section .tabs-wrapper .tab-content ul li::before {
  content: "";
  margin-right: 8px;
  color: #000;
  position: absolute;
  top: 12px;
  left: 0px;
  width: 5px;
  height: 5px;
  background: #000;
  border-radius: 50px;
}
.all_services_section .tabs-wrapper .tab-content ul li::after {
  content: url(../../dist-custom/images/button-icon-blue.svg);
  display: inline-block;
  width: 0.625rem;
  height: 1.25rem;
  transition: all 0.3s ease;
  position: absolute;
  right: 0px;
  top: 5px;
}
.all_services_section .tabs-wrapper .tab-content ul li a:hover {
  color: #004E97;
  text-decoration: underline;
}
.all_services_section .tabs-wrapper .tab-content .business_support_inner_section__ {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
}
.all_services_section .tabs-wrapper .tab-content .business_support_inner_section__ .administrative_support_img_side__ {
  position: sticky;
  top: 120px;
  /* distance from top before sticking */
  align-self: flex-start;
  height: fit-content;
}
.all_services_section .tabs-wrapper .tab-content .business_support_inner_section__ .administrative_support_img_side__ img {
  width: 100%;
  height: auto;
  display: block;
}
.all_services_section .tabs-wrapper .tab-content .business_support_inner_section__ .administrative_support_content_side__ {
  flex: 1;
  position: relative;
  overflow-y: auto;
  max-height: 100%;
}
.all_services_section .tabs-wrapper .tab-content .business_support_inner_section__ .administrative_support_content_side__ .administrative_support_box {
  margin-bottom: 70px;
}
.all_services_section .tabs-wrapper .tab-content .business_support_inner_section__ .administrative_support_content_side__ .administrative_support_box p {
  font-weight: 300;
}
.all_services_section .tabs-wrapper .tab-content .business_support_inner_section__ .administrative_support_content_side__ .administrative_support_box a.btn-default {
  display: block;
  max-width: 145px;
  text-align: center;
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-weight: 600;
  text-decoration: none;
}
.all_services_section .tabs-wrapper .tab-content.active {
  display: block;
}

.all_services_section_paddi {
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.client_testimonials_for_services {
  background: #f7f9ff !important;
}
.client_testimonials_for_services .client_testimonials_section {
  padding-top: 0px;
  padding-bottom: 0px;
  background: transparent;
}
.client_testimonials_for_services .client_testimonials_section .marquee_container .swiper-slide {
  margin-top: 0px;
}

.testimonial_common_section__for_services__ {
  background: #f7f9ff !important;
  padding-bottom: 40px !important;
}
.testimonial_common_section__for_services__ .testimonials_container .slider_content {
  grid-column-gap: 0;
}
.testimonial_common_section__for_services__ .testimonial_common_slider__ {
  position: relative;
}
.testimonial_common_section__for_services__ .testimonial_common_slider__ .splide__arrows {
  position: absolute;
  right: 20px;
  bottom: 1.5rem;
  top: auto;
  display: flex;
  gap: 1rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.services_cta_bgimg_section__ {
  background-image: url("../../dist-custom/images/services-cta_bgimg.png");
  background-size: 100% 100%;
  padding: 100px 20px;
  z-index: 111;
  position: relative;
}
.services_cta_bgimg_section__ p {
  font-size: 36px;
  text-align: center;
}
.services_cta_bgimg_section__ .btn-default {
  background: rgb(0, 0, 0);
  color: #fff;
  border-color: rgb(0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 190px;
  gap: 10px;
  margin: 30px auto 0px;
  text-transform: capitalize;
}

.common_banner_section_for_all_pages__ {
  margin: auto;
  position: relative;
  width: 100%;
  height: 100vh;
  background: #f5e6e8;
  overflow: hidden;
}
.common_banner_section_for_all_pages__ .banner_star_ {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  transform: translate(-50%, -50%) scale(10);
  opacity: 0;
  z-index: 2;
}
.common_banner_section_for_all_pages__ .for_mobile_view__ {
  display: none;
}
@keyframes slideInLeft {
  to {
    left: 0px;
    opacity: 1;
  }
}
@keyframes slideInRight {
  to {
    right: 0px;
    opacity: 1;
  }
}
.common_banner_section_for_all_pages__ .common_banner_flex__ {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}
.common_banner_section_for_all_pages__ .common_banner_flex__ .bcommon_banner_box {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  height: 100%;
}
.common_banner_section_for_all_pages__ .common_banner_flex__ .common_banner_left_image__ .rotating-Blue-star-flex {
  display: flex;
  gap: 10px;
  align-items: center;
}
.common_banner_section_for_all_pages__ .common_banner_flex__ .common_banner_left_image__ {
  left: -350px;
  animation: slideInLeft 1.5s forwards 1s;
  background-image: url(../../dist-custom/images/services-banner-left-image.png);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 170px 0px 50px;
  position: relative;
}
.common_banner_section_for_all_pages__ .common_banner_flex__ .common_banner_left_image__ h5 {
  color: rgb(255, 158, 37);
}
.common_banner_section_for_all_pages__ .common_banner_flex__ .common_banner_left_image__ h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  padding: 15px 0;
}
.common_banner_section_for_all_pages__ .common_banner_flex__ .common_banner_left_image__ p {
  font-size: 18px;
  color: #fff;
  line-height: 25px;
}
.common_banner_section_for_all_pages__ .common_banner_flex__ .common_banner_left_image__ img {
  width: 80%;
  margin-top: 60px;
}
.common_banner_section_for_all_pages__ .common_banner_flex__ .common_banner_left_image__ {
  /* breadcrumb kept */
}
.common_banner_section_for_all_pages__ .common_banner_flex__ .common_banner_left_image__ .breadcrumb_design_banner__ {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 120px;
}
.common_banner_section_for_all_pages__ .common_banner_flex__ .common_banner_left_image__ .breadcrumb_design_banner__ span {
  color: #fff;
  position: relative;
  padding-right: 20px;
}
.common_banner_section_for_all_pages__ .common_banner_flex__ .common_banner_left_image__ .breadcrumb_design_banner__ span:not(:last-child)::after {
  content: "";
  background-image: url("../../dist-custom/images/button-icon-white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 0.625rem;
  height: 1.25rem;
  position: absolute;
  right: 0;
  top: 5px;
}
.common_banner_section_for_all_pages__ .common_banner_flex__ .common_banner_right_image__ {
  right: -350px;
  animation: slideInRight 1.5s forwards 1s;
  height: 100%;
}
.common_banner_section_for_all_pages__ .common_banner_flex__ .common_banner_right_image__ img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1499px) {
  .common_banner_section_for_all_pages__ .common_banner_flex__ .common_banner_left_image__ .breadcrumb_design_banner__ {
    bottom: 70px;
  }
}
@media (max-width: 767px) {
  .common_banner_section_for_all_pages__ {
    height: initial;
  }
  .common_banner_section_for_all_pages__ .common_banner_flex__ {
    grid-template-columns: 1fr;
  }
  .common_banner_section_for_all_pages__ .common_banner_flex__ .common_banner_left_image__ {
    padding: 25px 30px 140px 20px;
    top: 0;
    transform: none;
  }
  .common_banner_section_for_all_pages__ .common_banner_flex__ .common_banner_right_image__ {
    top: 0;
    transform: none;
  }
  .testimonial_common_section__for_services__ .testimonials_container .slider_content {
    grid-template-columns: 1fr;
  }
  .testimonial_common_section__for_services__ .testimonial_common_slider__ .splide__arrows {
    position: absolute;
    right: 70px;
    bottom: 0.5rem;
  }
  .all_services_section .tabs-wrapper .tab-content .business_support_inner_section__ {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .all_services_section .tabs-wrapper .tab-content .business_support_inner_section__ .administrative_support_img_side__ {
    position: static;
  }
  .all_services_section .tabs-wrapper .tabs .tab-button {
    border: 1px solid #ddd;
    position: relative;
    padding-right: 30px;
    text-align: left;
  }
  .all_services_section .tabs-wrapper .tabs {
    /* Arrow icon after */
  }
  .all_services_section .tabs-wrapper .tabs .tab-button::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 22px;
    height: 15px;
    transform: translateY(-50%);
    pointer-events: none;
    background: url("../../dist-custom/images/down-icon-img.png");
    background-size: 20px;
  }
  .services_cta_bgimg_section__ {
    padding: 30px 20px;
  }
  .services_cta_bgimg_section__ p {
    font-size: 24px;
  }
  .common_banner_right_image__ .breadcrumb_design_banner__ {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background: #000;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .common_banner_right_image__ .breadcrumb_design_banner__ span {
    color: #fff;
    position: relative;
    padding-right: 20px;
  }
  .common_banner_right_image__ .breadcrumb_design_banner__ span:not(:last-child)::after {
    content: "";
    background-image: url("../../dist-custom/images/button-icon-white.svg");
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 0.625rem;
    height: 1.25rem;
    position: absolute;
    right: 0;
    top: 5px;
  }
  .common_banner_section_for_all_pages__ .common_banner_flex__ .common_banner_left_image__ h1 {
    font-size: 32px;
  }
}
@media (min-width: 991px) and (max-width: 1299px) {
  .all_services_section .tabs-wrapper .tabs .tab-button {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .all_services_section {
    padding: 50px 15px;
  }
  .all_services_section .tabs-wrapper .tab-content .business_support_inner_section__ .administrative_support_content_side__ .administrative_support_box {
    margin-bottom: 40px;
  }
  .all_services_section .tabs-wrapper .tab-content ul {
    grid-template-columns: 1fr;
  }
  .all_services_section .tabs-wrapper .tabs {
    flex-direction: column;
  }
  .all_services_section .wl-container h1 {
    text-align: left;
  }
  .all_services_section .wl-container p {
    text-align: left;
  }
  .common_banner_section_for_all_pages__ .common_banner_flex__ .common_banner_left_image__ img {
    width: 60%;
    margin-top: 30px;
  }
  .common_banner_section_for_all_pages__ .common_banner_flex__ .common_banner_left_image__ .breadcrumb_design_banner__ {
    padding-top: 45px;
  }
  .common_banner_section_for_all_pages__ .for_mobile_view__ {
    display: block;
  }
  .common_banner_section_for_all_pages__ .banner_star_ {
    position: absolute;
    top: 0%;
    left: 50%;
    width: 104px;
  }
  .all_services_section .tabs-wrapper .tabs {
    border-bottom: 2px solid transparent;
  }
}
.footer-outer .footer-cta .wl-action_cta {
  text-transform: capitalize;
}

@media only screen and (max-width: 1299px) {
  body .site-wrapper {
    padding-top: 4rem !important;
  }
}
@media (max-width: 767px) {
  body .site-wrapper {
    padding-top: 4.5rem !important;
  }
  body .site-wrapper .main .pin-spacer #banner {
    transform: none !important;
  }
}
.site-wrapper .page-header.fl-fix .search-box-pc {
  display: none;
}

body .subscribe-section form .actions input[type=submit],
body .subscribe-modal form .actions input[type=submit] {
  background-color: #004e97 !important;
  border-color: #004e97 !important;
  border-radius: 0px !important;
}

body .subscribe-section form .actions input[type=submit]:hover,
body .subscribe-modal form .actions input[type=submit]:hover {
  background-color: #fff !important;
  border-color: #004e97 !important;
  color: #004e97 !important;
}

body .subscribe-modal input[type=email] {
  padding-right: 15px;
  font-size: 14px;
}

body .cms-text a {
  color: #4391eb !important;
}

/* add new css */
.main .thanks-block {
  padding: 10% 0;
}

.page-header.fl-fix .search-box-mb {
  display: none;
}

.subscribe-section a:not(.btn),
.subscribe-modal a:not(.btn) {
  color: #004e97 !important;
}

body .hbspt-form .hs-form-booleancheckbox input[type=checkbox] ~ span:after {
  background: #004e97 !important;
}

body .site-wrapper section.hero-section.basic-hero h1 {
  font-size: 2.5rem;
}

body .site-wrapper .getintouch .btn-primary {
  border: 2px solid #004e97;
  background: #004e97;
}

body .site-wrapper .getintouch .btn-primary:hover {
  border: 2px solid #004e97 !important;
  background: #004e97 !important;
}

body .site-wrapper .getintouch {
  background-color: #3d3f3f;
}

.case_studies_white.case_studies_white_for_blog_details__ .title_wrapper {
  rotate: none !important;
  scale: none !important;
  transform: translate(0px, 0px) !important;
  opacity: 1 !important;
}

section.all_services_section_details__.all_services_section_for_career_section__ + section#next-career {
  margin-top: -30px;
}

.static_page_title_banner {
  background: #f5f5f5;
  padding: 100px;
  margin-bottom: 5rem;
}
.static_page_title_banner .static_page_title_banner_inner {
  padding: 0 40px 0 4vw;
}
.static_page_title_banner .static_page_title_banner_inner .bread-crumb-for-static-page {
  margin-bottom: 20px;
  display: block;
}
.static_page_title_banner .static_page_title_banner_inner .bread-crumb-for-static-page a {
  cursor: pointer;
  margin-right: 5px;
}
.static_page_title_banner .static_page_title_banner_inner h2 {
  font-size: 42px;
  color: #000;
}

.main_static_page_content__ {
  padding: 0px 100px 100px;
}
.main_static_page_content__ .main_static_page_content_paddi_ {
  padding: 0px 200px;
}
.main_static_page_content__ .main_static_page_content_inner h3 {
  padding-bottom: 20px;
  color: #000;
}
.main_static_page_content__ .main_static_page_content_boxs {
  padding-top: 40px;
}
.main_static_page_content__ .main_static_page_content_boxs h3 {
  color: #000;
}
.main_static_page_content__ .main_static_page_content_boxs p {
  margin-top: 15px;
}

@media (max-width: 1299px) {
  .main_static_page_content__ {
    padding: 0px 70px 100px;
  }
  .main_static_page_content__ .main_static_page_content_paddi_ {
    padding: 0px 50px;
  }
  .static_page_title_banner {
    padding: 100px 70px;
  }
}
@media (max-width: 991px) {
  .main_static_page_content__ {
    padding: 0px 50px 100px;
  }
  .main_static_page_content__ .main_static_page_content_paddi_ {
    padding: 0px 50px;
  }
  .static_page_title_banner {
    padding: 100px 50px;
  }
}
@media (max-width: 767px) {
  .main_static_page_content__ {
    padding: 0px 15px 100px;
  }
  .main_static_page_content__ .main_static_page_content_paddi_ {
    padding: 0px 10px;
  }
  .static_page_title_banner {
    padding: 100px 15px;
  }
  .static_page_title_banner .static_page_title_banner_inner h2 {
    font-size: 32px;
  }
}
.contact_us_section {
  padding: 100px 0;
  background-image: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0) 60%), url("../../dist-custom/images/contactus-bg.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.contact_us_section .hbspt-form {
  width: 100%;
  background: #fff;
  padding: 50px;
  margin-top: 30px;
}
.contact_us_section .hbspt-form .actions {
  text-align: left;
}
.contact_us_section .hbspt-form .actions input {
  background: #004e97 !important;
  border-radius: 0px;
  position: relative;
  border: 1px solid #004e97 !important;
}
.contact_us_section .hbspt-form .actions input:hover {
  background: #fff !important;
  color: #004e97 !important;
  border: 1px solid #004e97 !important;
}
.contact_us_section .contact_us_form__ {
  width: 100%;
  background: #fff;
  padding: 50px;
  margin-top: 30px;
}
.contact_us_section .contact_us_form__ .grid_colmn_two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact_us_section .contact_us_form__ .grid_colmn_two .form-group label {
  font-size: 18px;
  color: #000000;
  margin-bottom: 5px;
  display: inline-block;
}
.contact_us_section .contact_us_form__ .grid_colmn_two .form-group .form-control {
  border: 1px solid rgba(139, 139, 139, 0.5019607843);
  padding: 15px;
  font-size: 16px;
  color: rgba(139, 139, 139, 0.5019607843);
  width: 100%;
  font-family: "Halyard Display", sans-serif;
}
.contact_us_section .contact_us_form__ .grid_colmn_single {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}
.contact_us_section .contact_us_form__ .grid_colmn_single .form-group label {
  font-size: 18px;
  color: #000000;
  margin-bottom: 5px;
  display: inline-block;
}
.contact_us_section .contact_us_form__ .grid_colmn_single .form-group .form-control {
  border: 1px solid rgba(139, 139, 139, 0.5019607843);
  padding: 15px;
  font-size: 16px;
  color: rgba(139, 139, 139, 0.5019607843);
  width: 100%;
  font-family: "Halyard Display", sans-serif;
}
.contact_us_section .contact_us_form__ .grid_colmn_single .form-group textarea {
  height: 150px;
  font-family: "Halyard Display", sans-serif;
}
.contact_us_section .contact_us_form__ .grid_colmn_single .form-group select {
  border: 1px solid rgba(139, 139, 139, 0.5019607843);
  padding: 15px;
  font-size: 16px;
  color: rgba(139, 139, 139, 0.5019607843);
  opacity: 1;
  width: 100%;
  font-family: "Halyard Display", sans-serif;
}
.contact_us_section .contact_us_form__ .contact_bottom_para__ {
  padding-top: 15px;
  font-weight: 300;
}
.contact_us_section .contact_us_form__ .contact_bottom_para__ p {
  padding-bottom: 20px;
}
.contact_us_section .contact_us_form__ .contact_bottom_para__ .checkboxs__ {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact_us_section .contact_us_form__ .contact_bottom_para__ .checkboxs__ input {
  width: 20px;
  height: 20px;
}
.contact_us_section .contact_us_form__ .contact_bottom_para__ .checkboxs__ {
  font-size: 18px;
  margin-bottom: 20px;
}
.contact_us_section .contact_us_form__ button.website_btn {
  background: #204d92;
  color: #fff;
  border: 1px solid #204d92;
  padding: 8px 20px;
  cursor: pointer;
  display: block;
  font-size: 18px;
}

@media (max-width: 991px) {
  .contact_us_section {
    padding: 50px 25px;
  }
}
@media (max-width: 767px) {
  .contact_us_section .contact_us_form__ {
    padding: 30px 15px;
  }
}
.about_us_common_section_with_services__ {
  padding: 100px 0px;
}
.about_us_common_section_with_services__ .duis_aute_irure_dolor_in_reprehenderit_grid__ {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about_us_common_section_with_services__ .duis_aute_irure_dolor_in_reprehenderit_grid__ ul {
  margin-left: 22px;
  padding: 0;
}
.about_us_common_section_with_services__ .duis_aute_irure_dolor_in_reprehenderit_grid__ ul li {
  list-style-type: disc;
}
.about_us_common_section_with_services__ .duis_aute_irure_dolor_in_reprehenderit_grid__ ol {
  margin-left: 22px;
  padding: 0;
}
.about_us_common_section_with_services__ .duis_aute_irure_dolor_in_reprehenderit_grid__ ol li {
  list-style-type: auto;
}
.about_us_common_section_with_services__ .duis_aute_irure_dolor_in_reprehenderit_grid__ .duis_aute_irure_dolor_in_reprehenderit_image_side img {
  width: 100%;
}
.about_us_common_section_with_services__ .duis_aute_irure_dolor_in_reprehenderit_grid__ .duis_aute_irure_dolor_in_reprehenderit_content_side .rotating-Blue-star-flex {
  display: flex;
  align-items: center;
  gap: 10px;
}
.about_us_common_section_with_services__ .duis_aute_irure_dolor_in_reprehenderit_grid__ .duis_aute_irure_dolor_in_reprehenderit_content_side .rotating-Blue-star-flex span {
  margin-bottom: 0px;
}
.about_us_common_section_with_services__ .duis_aute_irure_dolor_in_reprehenderit_grid__ .duis_aute_irure_dolor_in_reprehenderit_content_side p {
  padding-bottom: 15px;
}
.about_us_common_section_with_services__ .duis_aute_irure_dolor_in_reprehenderit_grid__ .duis_aute_irure_dolor_in_reprehenderit_content_side span {
  color: #951c1c;
  font-size: 16px;
  padding-bottom: 10px;
  display: block;
  font-weight: 700;
}

.about_use_wrapper {
  padding-bottom: 20px;
  margin-bottom: 50px;
}
.about_use_wrapper .tabs-wrapper {
  width: 100%;
}
.about_use_wrapper .about_us_map_image_wrapper__ {
  position: relative;
}
.about_use_wrapper .about_us_map_image_wrapper__ img {
  width: 100%;
}
.about_use_wrapper .about_us_map_image_wrapper__ .map-images-bg {
  background: #f3f8f9;
}
.about_use_wrapper .about_us_map_image_wrapper__ .map_image_captions {
  position: absolute;
  left: 50px;
  bottom: 80px;
  z-index: 1;
}
.about_use_wrapper .about_us_map_image_wrapper__ .map_image_captions a {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  margin-bottom: 10px;
}
.about_use_wrapper .about_us_map_image_wrapper__ .map_image_captions a img {
  width: 20px;
}
.about_use_wrapper .about_us_map_image_wrapper__ .map-star {
  position: absolute;
  cursor: pointer;
}
.about_use_wrapper .about_us_map_image_wrapper__ .map-star img {
  width: 22px;
}
.about_use_wrapper .about_us_map_image_wrapper__ {
  /* Common Tooltip */
}
.about_use_wrapper .about_us_map_image_wrapper__ .tooltip {
  position: absolute;
  top: -20px;
  left: 25px;
  color: #fff;
  padding: 10px 10px;
  border-radius: 5px;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 999;
}
.about_use_wrapper .about_us_map_image_wrapper__ .tooltip .map-tooltip-wrapper-blue {
  display: flex;
  align-items: flex-start;
  width: 200px;
  gap: 10px;
}
.about_use_wrapper .about_us_map_image_wrapper__ .tooltip .map-tooltip-wrapper-blue span {
  flex: 0 0 10%;
}
.about_use_wrapper .about_us_map_image_wrapper__ .tooltip .map-tooltip-wrapper-blue h5 {
  color: #fff;
  font-weight: 700;
}
.about_use_wrapper .about_us_map_image_wrapper__ .map-star:hover .tooltip {
  display: block;
}
.about_use_wrapper .about_us_map_image_wrapper__ .blue-star .tooltip {
  background: #004E97;
}
.about_use_wrapper .about_us_map_image_wrapper__ .yellow-star .tooltip {
  background: #ff9e25;
  color: #000;
}
.about_use_wrapper .tabs-wrapper .tabs {
  width: 50%;
  margin: 0 auto;
}

.about_us_career_section____ {
  background: #004e97;
}
.about_us_career_section____ ul li {
  color: #fff;
  line-height: 34px;
}
.about_us_career_section____ .duis_aute_irure_dolor_in_reprehenderit_grid__ .duis_aute_irure_dolor_in_reprehenderit_content_side h3 {
  color: #fff;
  text-align: left;
}
.about_us_career_section____ .duis_aute_irure_dolor_in_reprehenderit_grid__ .duis_aute_irure_dolor_in_reprehenderit_content_side p {
  color: #fff;
  line-height: 34px;
}
.about_us_career_section____ .duis_aute_irure_dolor_in_reprehenderit_grid__ .duis_aute_irure_dolor_in_reprehenderit_content_side .duis_aute_irure_dolor_para_with_before_image p {
  position: relative;
  padding-left: 20px;
}
.about_us_career_section____ .duis_aute_irure_dolor_in_reprehenderit_grid__ .duis_aute_irure_dolor_in_reprehenderit_content_side .duis_aute_irure_dolor_para_with_before_image a {
  padding: 12px 30px;
  font-size: 1.125rem;
  line-height: 1.125rem;
  font-weight: 500;
  text-decoration: none !important;
  color: rgb(255, 158, 37);
  position: relative;
  border-color: rgb(255, 158, 37);
  display: inline-block;
  margin-top: 25px;
}
.about_us_career_section____ .duis_aute_irure_dolor_in_reprehenderit_grid__ .duis_aute_irure_dolor_in_reprehenderit_content_side .duis_aute_irure_dolor_para_with_before_image a:after {
  content: url(../../dist-custom/images/button-icon-yellow.svg);
  display: inline-block;
  width: 0.625rem;
  height: 1.25rem;
  transition: all 0.3s ease;
  position: absolute;
  right: 10px;
  top: 12px;
}
.about_us_career_section____ .duis_aute_irure_dolor_in_reprehenderit_grid__ .duis_aute_irure_dolor_in_reprehenderit_content_side .duis_aute_irure_dolor_para_with_before_image p::after {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  background: rgb(255, 158, 37);
  font-size: 18px;
}

.about_us_common_section_with_services__ .duis_aute_irure_dolor_in_reprehenderit_grid__ .duis_aute_irure_dolor_in_reprehenderit_content_side {
  max-height: 622px;
  overflow: auto;
  padding-right: 10px;
}
.about_us_common_section_with_services__ .duis_aute_irure_dolor_in_reprehenderit_grid__ .duis_aute_irure_dolor_in_reprehenderit_content_side::-webkit-scrollbar {
  width: 5px;
}
.about_us_common_section_with_services__ .duis_aute_irure_dolor_in_reprehenderit_grid__ .duis_aute_irure_dolor_in_reprehenderit_content_side::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.about_us_common_section_with_services__ .duis_aute_irure_dolor_in_reprehenderit_grid__ .duis_aute_irure_dolor_in_reprehenderit_content_side::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}
.about_us_common_section_with_services__ .duis_aute_irure_dolor_in_reprehenderit_grid__ .duis_aute_irure_dolor_in_reprehenderit_content_side::-webkit-scrollbar-thumb:hover {
  background: #555;
  border-radius: 10px;
}

.about_us_career_section____ .duis_aute_irure_dolor_in_reprehenderit_grid__ ul li {
  list-style-type: square;
}
.about_us_career_section____ .duis_aute_irure_dolor_in_reprehenderit_grid__ ul li::marker {
  color: rgb(255, 158, 37);
}

@media (max-width: 1399px) {
  .about_us_common_section_with_services__ .duis_aute_irure_dolor_in_reprehenderit_grid__ .duis_aute_irure_dolor_in_reprehenderit_content_side {
    max-height: 490px;
  }
}
@media (max-width: 1199px) {
  .about_us_common_section_with_services__ .duis_aute_irure_dolor_in_reprehenderit_grid__ .duis_aute_irure_dolor_in_reprehenderit_content_side {
    max-height: 400px;
  }
}
@media (max-width: 991px) {
  .about_us_common_section_with_services__ .duis_aute_irure_dolor_in_reprehenderit_grid__ .duis_aute_irure_dolor_in_reprehenderit_content_side {
    max-height: 320px;
  }
}
@media (max-width: 767px) {
  .about_us_common_section_with_services__ .duis_aute_irure_dolor_in_reprehenderit_grid__ {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0px 10px;
  }
  .about_use_wrapper {
    margin-bottom: 10px;
  }
  .about_use_wrapper .tabs-wrapper .tabs {
    width: 100%;
  }
  .about_use_wrapper .about_us_map_image_wrapper__ .map_image_captions {
    position: absolute;
    left: 15px;
    bottom: 10px;
    z-index: 1;
  }
  .about_use_wrapper .about_us_map_image_wrapper__ .tooltip {
    top: -2px;
    left: auto;
    right: 25px;
  }
  .about_us_common_section_with_services__ .duis_aute_irure_dolor_in_reprehenderit_grid__ .duis_aute_irure_dolor_in_reprehenderit_content_side {
    max-height: 450px;
  }
  .about_us_common_section_with_services__ {
    padding: 80px 0px;
  }
}
.case_studies_white .case_studies_section .caseStudies_cta_nav .caseStudies_cta_text {
  min-width: auto !important;
}
.case_studies_white .casestudies_wrapper .casestudies_body p {
  font-weight: 300;
}

section.fl-fix.spotlight-section {
  padding-top: 30px;
}

body .site-wrapper .map-container .tab-list ul li {
  padding: 15px;
}

body .site-wrapper .map-container .tab-list ul li.active {
  color: #fff;
  background: #004E97;
}

body .site-wrapper .map-container .tab-list ul li.active:before {
  border-color: #004E97;
}

body .site-wrapper .map-container .map-box .icon-wrapper .icon-box .details {
  background: #004e97;
}

body .site-wrapper .map-container .map-box .icon-wrapper .icon-box .details.gray {
  background: #ff9e25;
  color: #000;
}

@media (max-width: 767px) {
  body .site-wrapper .map-container .tab-list {
    padding: 0px 15px;
  }
}
.blog_landing_wrapper__ {
  background: #dcdddd;
  padding-bottom: 50px;
}
.blog_landing_wrapper__ .blog_landing_banner__wrapper__ {
  position: relative;
  width: 100%;
  /* adjust width */
  height: 95vh;
  /* adjust height */
  overflow: hidden;
}
.blog_landing_wrapper__ .blog_landing_banner__wrapper__ .blog-landing-bg-- {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0%;
  /* start from center */
  height: 100%;
  background-image: url("../../dist-custom/images/blog-landing-bg.png");
  background-size: cover;
  background-position: center;
  transform: translateX(-50%);
}
.blog_landing_wrapper__ .blog_click_event {
  color: rgb(67, 145, 235);
  text-decoration: underline;
}
.blog_landing_wrapper__ .blog_landing_banner__ a {
  color: rgb(67, 145, 235);
  text-decoration: underline;
}
.blog_landing_wrapper__ .blog_landing_banner__ ul {
  padding: 0px;
  margin-left: 25px;
}
.blog_landing_wrapper__ .blog_landing_banner__ ul li {
  list-style-type: disc;
}
.blog_landing_wrapper__ .blog_landing_banner__ img {
  width: 100%;
}
.blog_landing_wrapper__ .blog_landing_banner__ > img {
  height: 700px;
  object-fit: cover;
}
.blog_landing_wrapper__ .blog_landing_inner_section {
  background: #fff;
  padding: 50px;
  margin-top: -440px;
  z-index: 1;
  position: relative;
}
.blog_landing_wrapper__ .blog_landing_inner_section h1 {
  color: rgb(0, 78, 151);
  text-align: left;
}
.blog_landing_wrapper__ .blog_landing_inner_section .secondlargeheading {
  text-align: left;
  padding-top: 30px;
  margin-bottom: 0px;
}
.blog_landing_wrapper__ .blog_landing_inner_section p {
  text-align: left;
  padding-top: 20px;
}
.blog_landing_wrapper__ .blog_landing_inner_section .explore_the_synergy_section_blog__ {
  padding: 30px 0px;
}
.blog_landing_wrapper__ .blog_landing_inner_section .explore_the_synergy_section_blog__ img {
  width: 100%;
  margin-top: 30px;
  height: 600px;
  object-fit: cover;
}
.blog_landing_wrapper__ .blog_landing_inner_section .explore_the_synergy_section_blog__ li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.blog_landing_wrapper__ .blog_landing_inner_section .explore_the_synergy_section_blog__ li:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50px;
  background: rgb(0, 78, 151);
}
.blog_landing_wrapper__ .blog_pdf_download_section__ {
  background: #004e97;
  padding: 20px 50px;
}
.blog_landing_wrapper__ .blog_pdf_download_section__ .blog_pdf_download_flex__ {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.blog_landing_wrapper__ .blog_pdf_download_section__ .blog_pdf_download_flex__ .blog_pdf_download_social_icons__ {
  display: flex;
  align-items: center;
  gap: 30px;
}
.blog_landing_wrapper__ .blog_pdf_download_section__ .blog_pdf_download_flex__ .blog_pdf_download_social_icons__ a {
  color: #fff;
}
.blog_landing_wrapper__ .blog_pdf_download_section__ .blog_pdf_download_flex__ .blog_pdf_download_pdf_button__ a.btn {
  background: rgb(255, 158, 37);
  color: #000;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  cursor: pointer;
}
.blog_landing_wrapper__ .blog_pdf_download_section__ .blog_pdf_download_flex__ .blog_pdf_download_pdf_button__ a.btn img {
  width: 20px;
}
.blog_landing_wrapper__ .about_the_author_section__ {
  background: #fff;
  padding: 50px;
}
.blog_landing_wrapper__ .about_the_author_section__ .about_the_author_inner_section__ {
  padding-top: 40px;
}
.blog_landing_wrapper__ .about_the_author_section__ .about_the_author_inner_section__ h3 {
  text-align: left;
}
.blog_landing_wrapper__ .about_the_author_section__ .about_the_author_inner_section__ .blog_author_flex {
  background: #004e97;
  padding: 30px;
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.blog_landing_wrapper__ .about_the_author_section__ .about_the_author_inner_section__ .blog_author_flex .blog_author_profile_side__ {
  display: grid;
  grid-template-columns: 1fr 5fr;
  gap: 20px;
  flex: 0 0 90%;
}
.blog_landing_wrapper__ .about_the_author_section__ .about_the_author_inner_section__ .blog_author_flex .blog_author_profile_side__ .business_man_profile_image img {
  width: 100%;
}
.blog_landing_wrapper__ .about_the_author_section__ .about_the_author_inner_section__ .blog_author_flex .blog_author_profile_side__ .business_man_profile_details__ {
  text-align: left;
}
.blog_landing_wrapper__ .about_the_author_section__ .about_the_author_inner_section__ .blog_author_flex .blog_author_profile_side__ .business_man_profile_details__ h5 {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  padding-bottom: 15px;
}
.blog_landing_wrapper__ .about_the_author_section__ .about_the_author_inner_section__ .blog_author_flex .blog_author_profile_side__ .business_man_profile_details__ span {
  color: #fff;
  text-align: left;
  display: block;
  font-size: 14px;
}
.blog_landing_wrapper__ .about_the_author_section__ .about_the_author_inner_section__ .blog_author_flex .blog_author_profile_side__ .business_man_profile_details__ p {
  color: #fff;
  text-align: left;
  padding-top: 15px;
}
.blog_landing_wrapper__ .about_the_author_section__ .about_the_author_inner_section__ .blog_author_flex .blog_author_profile_socials_icons__ {
  display: flex;
  align-items: center;
  gap: 15px;
}
.blog_landing_wrapper__ .about_the_author_section__ .about_the_author_inner_section__ .blog_author_flex .blog_author_profile_socials_icons__ a {
  display: inline-block;
}

@media (max-width: 767px) {
  .blog_landing_wrapper__ .blog_landing_inner_section {
    background: #fff;
    padding: 50px 20px;
    margin-top: -130px;
  }
  .blog_landing_wrapper__ .about_the_author_section__ {
    padding: 30px 15px;
  }
  .blog_landing_wrapper__ .about_the_author_section__ .about_the_author_inner_section__ .blog_author_flex .blog_author_profile_side__ {
    grid-template-columns: 1fr;
    flex: 0 0 100%;
  }
  .blog_landing_wrapper__ .blog_pdf_download_section__ .blog_pdf_download_flex__ {
    flex-direction: column;
  }
}
.related_services_common__ .see_all_services_flex {
  display: flex;
  align-items: self-start;
}
.related_services_common__ .see_all_services_flex a {
  flex: 0 0 20%;
  text-align: right;
  font-size: 16px;
  position: relative;
  padding-right: 20px;
}
.related_services_common__ .see_all_services_flex a:hover {
  color: #004E97;
}
.related_services_common__ .see_all_services_flex a:after {
  content: url(../../dist-custom/images/button-icon-blue.svg);
  display: inline-block;
  width: 0.625rem;
  height: 1.25rem;
  position: absolute;
  right: 0;
  top: 5px;
}
.related_services_common__ {
  padding: 100px 0px;
  position: relative;
  z-index: 111;
  background: #fff;
}
.related_services_common__ h1 {
  text-align: left;
  padding-bottom: 40px;
}
.related_services_common__ .related_services_colms__ {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.related_services_common__ .related_services_colms__ .related_services_business_support_boxs img {
  padding-bottom: 25px;
  min-height: 75px;
}
.related_services_common__ .related_services_colms__ .related_services_business_support_boxs h3 {
  text-transform: uppercase;
}
.related_services_common__ .related_services_colms__ .related_services_business_support_boxs a {
  display: block;
  margin-bottom: 20px;
  text-decoration: none;
  color: #000;
  font-size: 18px;
}
.related_services_common__ .related_services_colms__ .related_services_business_support_boxs a:hover {
  color: #004E97;
}
.related_services_common__ .related_services_colms__ .related_services_business_support_boxs a.active {
  color: #004E97;
}

.testimonial_common_section__ {
  background: rgb(225, 239, 242);
  padding: 100px 0px;
  z-index: 111;
  position: relative;
}
.testimonial_common_section__ .testimonials_container {
  background: #f7f9ff;
}
.testimonial_common_section__ .testimonials_container .testimonial_slides {
  margin-top: 0px;
}
.testimonial_common_section__ h1 {
  text-align: left;
}
.testimonial_common_section__ p {
  text-align: left;
}
.testimonial_common_section__ .testimonial_common_slider__ .testimonial_common_slider_boxs_ {
  background: #fff;
  padding: 50px;
  margin-top: 30px;
  position: relative;
}
.testimonial_common_section__ .testimonial_common_slider__ .testimonial_common_slider_boxs_ p {
  font-size: 32px;
  line-height: 42px;
}
.testimonial_common_section__ .testimonial_common_slider__ .testimonial_common_slider_boxs_ .testimonial_common_slider_profile__ {
  padding-top: 60px;
}
.testimonial_common_section__ .testimonial_common_slider__ .testimonial_common_slider_boxs_ .testimonial_common_slider_profile__ h5 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}
.testimonial_common_section__ .testimonial-counter {
  text-align: right;
}

@media (max-width: 767px) {
  .related_services_common__ .related_services_colms__ {
    grid-template-columns: 1fr;
  }
  .testimonial_common_section__ .testimonial-counter {
    padding-right: 15px;
  }
  .testimonial_common_section__ .testimonial_common_slider__ .testimonial_common_slider_boxs_ {
    padding: 30px;
  }
  .testimonial_common_section__ .testimonial_common_slider__ .testimonial_common_slider_boxs_ p {
    font-size: 22px;
    line-height: 33px;
  }
}
.all_services_section_details__ {
  padding: 100px 0px;
  background: #004e97;
  position: relative;
}
.all_services_section_details__ .all_services_section_details__flex__ {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.all_services_section_details__ .all_services_section_details__flex__ .all_services_details_images_side__ {
  position: sticky;
  top: 100px;
  /* distance from top while scrolling */
  align-self: flex-start;
  height: fit-content;
}
.all_services_section_details__ .all_services_section_details__flex__ .all_services_details_images_side__ img {
  width: 100%;
  height: auto;
  display: block;
}
.all_services_section_details__ .all_services_section_details__flex__ .all_services_details_content_side__ {
  flex: 1;
}
.all_services_section_details__ .all_services_section_details__flex__ .all_services_details_content_side__ h3 {
  color: #fff;
  text-align: left;
}
.all_services_section_details__ .all_services_section_details__flex__ .all_services_details_content_side__ p {
  color: #fff;
  margin-bottom: 15px;
}
.all_services_section_details__ .all_services_section_details__flex__ .all_services_details_content_side__ .duis_aute_irure_dolor_para_with_before_image {
  padding-top: 10px;
}
.all_services_section_details__ .all_services_section_details__flex__ .all_services_details_content_side__ .duis_aute_irure_dolor_para_with_before_image p {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}
.all_services_section_details__ .all_services_section_details__flex__ .all_services_details_content_side__ .duis_aute_irure_dolor_para_with_before_image p:after {
  content: url(../../dist-custom/images/button-icon-yellow.svg);
  display: inline-block;
  width: 0.625rem;
  height: 1.25rem;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  top: 3px;
  transform: rotate(180deg);
}
.all_services_section_details__ .all_services_section_details__flex__ .all_services_details_content_side__ .services_details_img_icon_with_heading__ {
  padding-top: 70px;
}
.all_services_section_details__ .all_services_section_details__flex__ .all_services_details_content_side__ .services_details_img_icon_with_heading__ img {
  margin-bottom: 30px;
}

.services_cta_bgimg_section__ {
  background-image: url("../../dist-custom/images/services-cta_bgimg.png");
  background-size: 100% 100%;
  padding: 100px 20px;
  z-index: 111;
  position: relative;
}
.services_cta_bgimg_section__ p {
  font-size: 36px;
  text-align: center;
}
.services_cta_bgimg_section__ .btn-default {
  background: rgb(0, 0, 0);
  color: #fff;
  border-color: rgb(0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 190px;
  gap: 10px;
  margin: 30px auto 0px;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .all_services_section_details__ .all_services_section_details__flex__ {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .all_services_section_details__ .all_services_section_details__flex__ .all_services_details_images_side__ {
    position: static;
  }
  .services_cta_bgimg_section__ {
    padding: 30px 20px;
  }
  .services_cta_bgimg_section__ p {
    font-size: 22px;
  }
}
.case_studies_white_for_blog_details__ {
  z-index: 1 !important;
}
.case_studies_white_for_blog_details__ .case_studies_section .blogs_main_page_dropdowns__ .custom-select {
  width: 22.75rem;
}
.case_studies_white_for_blog_details__ .case_studies_section .casestudies_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
.case_studies_white_for_blog_details__ .case_studies_section .casestudies_wrapper .casestudies_card {
  max-width: 100%;
}
.case_studies_white_for_blog_details__ .case_studies_section .casestudies_loadmore_btn__ {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-self: center;
}
.case_studies_white_for_blog_details__ .case_studies_section .casestudies_loadmore_btn__ .action-box {
  width: 100%;
}
.case_studies_white_for_blog_details__ .case_studies_section .casestudies_loadmore_btn__ a {
  padding: 12px 40px 12px 20px;
  font-size: 1.125rem;
  line-height: 1.125rem;
  font-weight: 500;
  display: inline-block !important;
  max-width: inherit !important;
  text-decoration: none !important;
  background-color: var(--blue);
  color: #fff;
  position: relative;
  border-radius: 0px;
}
.case_studies_white_for_blog_details__ .case_studies_section .casestudies_loadmore_btn__ a:after {
  content: url(../../dist-custom/images/button-icon-white.svg);
  display: inline-block;
  width: 0.625rem;
  height: 1.25rem;
  transition: all 0.3s ease;
  position: absolute;
  right: 10px;
  top: 12px;
}
.case_studies_white_for_blog_details__ .case_studies_section .title_wrapper {
  z-index: 1;
  position: relative;
}
.case_studies_white_for_blog_details__ .blogs_main_page_dropdowns__ {
  display: flex;
  gap: 20px;
}
.case_studies_white_for_blog_details__ .blogs_main_page_dropdowns__ .custom-select .selected-value {
  color: #000;
}

@media (max-width: 991px) {
  .case_studies_section .title_wrapper {
    align-items: start !important;
    flex-direction: column;
    gap: 20px;
  }
  .case_studies_white_for_blog_details__ .blogs_main_page_dropdowns__ {
    display: flex;
    gap: 20px;
    width: 100%;
  }
  .case_studies_white_for_blog_details__ .case_studies_section .casestudies_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .case_studies_white_for_blog_details__ .blogs_main_page_dropdowns__ {
    flex-direction: column;
  }
  .case_studies_white_for_blog_details__ .blogs_main_page_dropdowns__ .custom-select .dropdowContainer {
    width: inherit;
    height: initial;
    position: static;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .case_studies_white_for_blog_details__ .blogs_main_page_dropdowns__ .custom-select .select-dropdown {
    min-height: auto;
    height: inherit;
    width: 100%;
    left: auto;
    top: auto !important;
    top: inherit;
    bottom: auto;
    border-radius: initial;
    transition: all 0.8s;
    transform: none;
  }
  .case_studies_white_for_blog_details__ .blogs_main_page_dropdowns__ .custom-select .select-dropdown li.dropdown_header {
    font-size: initial;
    padding: 15px;
  }
  .case_studies_white_for_blog_details__ .blogs_main_page_dropdowns__ .custom-select .select-dropdown li.dropdown_header::after {
    display: none;
  }
}
.career_banner_section_wrapper__ {
  background: #edf2ff;
  padding: 20px 20px 140px 20px;
}
.career_banner_section_wrapper__ .career_banner_img__ {
  height: 700px;
}
.career_banner_section_wrapper__ .career_banner_img__ img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.career_banner_section_wrapper__ .career_banner_img__ .join_our_team__ {
  padding: 0px 150px;
  margin-top: -50px;
  z-index: 1;
  position: relative;
}
.career_banner_section_wrapper__ .career_banner_img__ .join_our_team__ .life_at_williams_lea {
  background: #fff;
  padding: 30px;
  border: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.career_banner_section_wrapper__ .career_banner_img__ .join_our_team__ .life_at_williams_lea h2 {
  color: #000;
  text-align: left;
}
.career_banner_section_wrapper__ .career_banner_img__ .join_our_team__ .life_at_williams_lea a {
  padding: 12px 30px;
  font-size: 1.125rem;
  line-height: 1.125rem;
  font-weight: 500;
  text-decoration: none !important;
  background-color: var(--blue);
  color: #fff;
  position: relative;
  min-width: 190px;
  border-radius: 0px;
}
.career_banner_section_wrapper__ .career_banner_img__ .join_our_team__ .life_at_williams_lea a:hover {
  background-color: var(--blue) !important;
  color: #fff !important;
  border-color: var(--blue) !important;
}
.career_banner_section_wrapper__ .career_banner_img__ .join_our_team__ .life_at_williams_lea a:after {
  content: url(../../dist-custom/images/button-icon-white.svg);
  display: inline-block;
  width: 0.625rem;
  height: 1.25rem;
  transition: all 0.3s ease;
  position: absolute;
  right: 10px;
  top: 12px;
}

.all_services_section_for_career_section__ {
  margin-bottom: 30px;
}
.all_services_section_for_career_section__ .services_details_img_grid_for_career__ {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.case_studies_white_employee_engagements_for_career__ .inner-wrapper {
  max-width: 100%;
  padding: 0px !important;
}
.case_studies_white_employee_engagements_for_career__ .positions {
  padding: 0rem 0;
}
.case_studies_white_employee_engagements_for_career__ .case_studies_section {
  padding-bottom: 20px;
}
.case_studies_white_employee_engagements_for_career__ .open_positions_iframe__ {
  margin-top: 50px;
}
.case_studies_white_employee_engagements_for_career__ .open_positions_iframe__ iframe {
  border: 0;
  background: #f5f5f5;
  padding: 15px;
}
.case_studies_white_employee_engagements_for_career__ .casestudies_slider .casestudies_card {
  margin: 0px 20px;
  transform: initial !important;
  opacity: 1 !important;
}
.case_studies_white_employee_engagements_for_career__ .casestudies_body h3 {
  text-align: left;
}

.all_services_section_for_career_section__ .administrative_support_box p {
  margin-bottom: 20px;
}
.all_services_section_for_career_section__ .administrative_support_box a {
  padding: 12px 30px;
  font-size: 1.125rem;
  line-height: 1.125rem;
  font-weight: 500;
  display: inline-block !important;
  max-width: inherit !important;
  text-decoration: none !important;
  background-color: var(--blue);
  color: #fff;
  position: relative;
}
.all_services_section_for_career_section__ .administrative_support_box a:after {
  content: url(../../dist-custom/images/button-icon-white.svg);
  display: inline-block;
  width: 0.625rem;
  height: 1.25rem;
  transition: all 0.3s ease;
  position: absolute;
  right: 10px;
  top: 12px;
}

.client_testimonials_for_career__ {
  position: relative;
}
.client_testimonials_for_career__ .rotating-Blue-star {
  position: absolute;
  right: -50px;
  top: 100px;
  z-index: 1;
}
.client_testimonials_for_career__ .rotating-Blue-star img {
  max-width: 70%;
}

section.all_services_section.all_services_section_for_career_section__ {
  padding-bottom: 20px;
}

@media (max-width: 1199px) {
  .client_testimonials_for_career__ .rotating-Blue-star {
    z-index: 0;
    right: 0px;
  }
  .client_testimonials_for_career__ .rotating-Blue-star img {
    max-width: 40%;
  }
}
@media (max-width: 991px) {
  .client_testimonials_for_career__ .rotating-Blue-star {
    z-index: 0;
    right: 0px;
    top: 0px;
  }
}
@media (max-width: 767px) {
  .career_banner_section_wrapper__ .career_banner_img__ .join_our_team__ {
    padding: 0px 20px;
  }
  .career_banner_section_wrapper__ .career_banner_img__ .join_our_team__ .life_at_williams_lea {
    flex-direction: column;
  }
  .career_banner_section_wrapper__ .career_banner_img__ .join_our_team__ .life_at_williams_lea h2 {
    font-size: 28px;
    text-align: center;
  }
  .all_services_section_for_career_section__ .services_details_img_grid_for_career__ {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .all_services_section_details__ .all_services_section_details__flex__ .all_services_details_content_side__ .services_details_img_icon_with_heading__ {
    padding-top: 55px;
  }
  .career_banner_section_wrapper__ .career_banner_img__ {
    height: 555px;
  }
}
@media (max-width: 767px) {
  .outcomes_solutions .wl_solution_in_action .dropdowContainer.show {
    background: transparent;
  }
  .outcomes_solutions .wl_solution_in_action .dropdowContainer {
    width: auto;
    height: auto;
    position: initial;
    top: 0;
    left: 0;
    z-index: 9999999999;
  }
  .outcomes_solutions .wl_solution_in_action .select-dropdown {
    min-height: auto;
    height: auto;
  }
  .outcomes_solutions .wl_solution_in_action .select-dropdown {
    position: static;
  }
  .outcomes_solutions .wl_solution_in_action .dropdowContainer.show .select-dropdown {
    transform: none !important;
  }
}
.duis_aute_irure_dolor_technology_section__ {
  padding: 100px 0px;
  background-image: linear-gradient(to left, #efefef 0%, rgba(255, 255, 255, 0.9) 85%, rgba(255, 255, 255, 0) 100%), url(../../dist-custom/images/duis_aute_irure_dolor_technology_section2.png);
  background-repeat: no-repeat;
  background-size: auto 100%, cover;
  background-position: left center, center;
}
.duis_aute_irure_dolor_technology_section__ .technology_section_heading_wrapper__ {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.duis_aute_irure_dolor_technology_section__ .technology_section_heading_wrapper__ .technology_section_heading_side__ h2.largeheading {
  text-align: left;
}
.duis_aute_irure_dolor_technology_section__ .technology_section_heading_wrapper__ .technology_section_heading_side__ img {
  margin-top: 40px;
  margin-bottom: 40px;
}
.duis_aute_irure_dolor_technology_section__ .technology_section_heading_wrapper__ .technology_section_paragraph_side__ {
  padding-left: 200px;
}
.duis_aute_irure_dolor_technology_section__ .technology_section_grid_wrapper__ {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.duis_aute_irure_dolor_technology_section__ .technology_section_grid_wrapper__ .technology_engage_boxs__ {
  background: #fff;
  padding: 40px 30px;
}
.duis_aute_irure_dolor_technology_section__ .technology_section_grid_wrapper__ .technology_engage_boxs__ h5 {
  color: #004E97;
  font-size: 18px;
  font-weight: 700;
}
.duis_aute_irure_dolor_technology_section__ .technology_section_grid_wrapper__ .technology_engage_boxs__ p {
  padding: 10px 0px;
  font-size: 18px;
}
.duis_aute_irure_dolor_technology_section__ .technology_section_grid_wrapper__ .technology_engage_boxs__ a {
  font-size: 18px;
  color: #000;
  font-weight: 700;
  position: relative;
  padding-right: 20px;
}
.duis_aute_irure_dolor_technology_section__ .technology_section_grid_wrapper__ .technology_engage_boxs__ a:hover {
  color: #004E97;
}
.duis_aute_irure_dolor_technology_section__ .technology_section_grid_wrapper__ .technology_engage_boxs__ a:after {
  content: "";
  background-image: url("../../dist-custom/images/button-icon-blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 0.625rem;
  height: 1.25rem;
  position: absolute;
  right: 0;
  top: 5px;
}

.parallax-item.pos-sticky + section.outcomes {
  z-index: 99;
}

@media (max-width: 991px) {
  .duis_aute_irure_dolor_technology_section__ .technology_section_heading_wrapper__ .technology_section_paragraph_side__ {
    padding-left: 0px;
  }
}
@media (max-width: 767px) {
  .duis_aute_irure_dolor_technology_section__ .technology_section_grid_wrapper__ {
    grid-template-columns: 1fr;
  }
  .duis_aute_irure_dolor_technology_section__ .technology_section_heading_wrapper__ {
    grid-template-columns: 1fr;
    padding-bottom: 20px;
  }
  .duis_aute_irure_dolor_technology_section__ .technology_section_heading_wrapper__ .technology_section_heading_side__ img {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

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