:root {
  --orange: #bdb46b;
  --blue: #fff;
  --light-grey: gray;
  --dark-blue: #1c2b34;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

h1 {
  color: #fff;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
}

h2 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 130%;
}

h3 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

p {
  color: #000;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  line-height: 140%;
}

.navbar-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 2200px;
  height: 100px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: static;
}

.nav-menu.menu-type-2 {
  background-color: #fff;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 20px;
  display: flex;
}

.navbar {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #0000004d;
  justify-content: center;
  width: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.logo-container {
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 100%;
  display: flex;
  position: relative;
}

.logo-container.w--current {
  width: 30%;
  height: 50%;
  position: static;
}

.logo {
  color: #fff;
  width: 300px;
  height: 100%;
  font-family: Open Sans, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  position: absolute;
}

.logo.dark {
  opacity: 0;
}

.nav-link {
  color: #fff;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  line-height: 1;
  transition: opacity .2s;
}

.nav-link:hover {
  opacity: .7;
}

.nav-link.w--current {
  color: #fff;
}

.nav-link.contact {
  color: var(--blue);
  -webkit-text-stroke-color: var(--blue);
}

.nav-link.dropdown:hover {
  opacity: 1;
}

.nav-link.in-dropdown {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  text-decoration: none;
}

.nav-link.black {
  color: #000;
}

.hero-homepage {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
  position: relative;
}

.hero-image-container {
  z-index: -1;
  background-color: #000;
  width: 100%;
  height: 100vh;
  display: block;
  position: absolute;
  overflow: hidden;
}

.hero-image {
  opacity: .6;
  object-fit: cover;
  width: 100%;
  height: 100vh;
}

.hero-image.position-left {
  object-position: 50% 70%;
  height: 100vh;
}

.hero-content {
  position: relative;
  left: 0;
}

.title-container {
  border-left: 6px none var(--orange);
  flex-wrap: nowrap;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  position: relative;
}

.heading-1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 70px;
}

.wide-container {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 0;
  padding-left: 115px;
  padding-right: 40px;
  display: flex;
  position: relative;
}

.wide-container.horizontal-to-vertical {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.wide-container.horizontal-to-reverse-vertical {
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.wide-container.style-guide {
  flex-direction: row;
  justify-content: flex-start;
}

.orange-span {
  color: var(--orange);
}

.above-title-text {
  color: #fff;
  font-family: Open Sans, sans-serif;
  font-size: 28px;
  line-height: 1;
}

.paragraph {
  color: #fff;
  max-width: 600px;
}

.paragraph.wide {
  color: #000;
  max-width: 550px;
}

.paragraph.feature {
  opacity: .6;
  color: #000;
  max-width: 290px;
  padding-top: 10px;
}

.paragraph.feature.career {
  width: 100%;
  max-width: 340px;
  padding-top: 20px;
}

.paragraph.narrow {
  opacity: .8;
  max-width: 370px;
}

.paragraph.narrow.black {
  opacity: 1;
  color: #000;
}

.paragraph.narrow.footer-credit-row {
  margin-bottom: 10px;
  font-size: 15px;
}

.paragraph.narrow.with-margin {
  opacity: .8;
  margin-bottom: 20px;
}

.paragraph.footer-bold {
  text-align: left;
  margin-bottom: 30px;
  font-weight: 700;
}

.paragraph.wide-white {
  opacity: .8;
}

.paragraph.wide-white.with-margin {
  opacity: .8;
  margin-bottom: 20px;
}

.paragraph.black {
  color: #000;
}

.paragraph.black.bold {
  font-weight: 700;
}

.paragraph.black.with-margin {
  margin-bottom: 10px;
}

.paragraph.black.max-width {
  max-width: 100%;
}

.paragraph.black.license {
  width: 460px;
  margin-left: 0;
  margin-right: 60px;
}

.paragraph.black-lower-opac {
  opacity: .6;
  color: #000;
  font-weight: 700;
}

.paragraph.contact {
  color: #000;
  width: 200px;
  min-width: 200px;
  font-weight: 700;
}

.paragraph.semi-wide {
  color: #000;
  max-width: 430px;
}

.paragraph.job {
  color: #000;
  justify-content: space-around;
  max-width: 800px;
  display: flex;
}

.paragraph.service {
  color: #000;
  max-width: 550px;
}

.paragraph.service.with-margin {
  margin-bottom: 20px;
}

.paragraph.blog {
  text-decoration: underline;
}

.button-type-1 {
  background-color: var(--orange);
  color: #fff;
  border-radius: 90px;
  margin-top: 40px;
  padding: 15px 30px;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  transition: all .2s;
}

.button-type-1:hover {
  background-color: #312611;
  transform: translate(0, -1px);
}

.button-type-1.form {
  border-radius: 10px;
  margin-top: 15px;
  padding: 10px 20px;
}

.button-type-1.job {
  margin-top: 0;
}

.button-type-1.password {
  margin-top: 10px;
  padding: 10px 20px;
}

.button-type-1._404 {
  margin-top: 25px;
}

.border {
  border: 3px solid var(--orange);
  background-color: var(--orange);
  border-radius: 90px;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: center;
  align-items: flex-start;
  width: 6px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: -72px;
}

.pattern-home-hero {
  position: absolute;
  top: 20%;
  left: 75%;
}

.section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section.round-bottom-left-corner {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  background-color: #fff;
  padding-top: 0;
}

.section.round-top-left-corner {
  border-top-left-radius: 80px;
  overflow: hidden;
}

.section.round-top-left-corner.last-section {
  background-color: var(--blue);
  padding-bottom: 200px;
}

.section.both-round-corners {
  background-color: var(--blue);
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  padding-bottom: 60px;
}

.section.both-round-corners.normal-padding {
  background-color: #0000;
  padding-bottom: 120px;
}

.section.both-round-corners.services {
  padding-bottom: 120px;
}

.section.small-padding {
  padding-top: 20px;
  padding-bottom: 20px;
}

.section.top-no-margin-on-mobile {
  padding-top: 60px;
}

.section.last-section {
  padding-bottom: 200px;
}

.section.last-section.careers {
  padding-bottom: 300px;
}

.section.bottom-no-padding {
  padding-bottom: 0;
}

.section.overflow-visible {
  overflow: visible;
}

.left-side-content {
  width: 60%;
  padding-bottom: 30px;
  padding-right: 50px;
}

.heading-wrapper {
  margin-bottom: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  position: relative;
}

.heading-2.white {
  color: #000;
  font-size: 60px;
  font-weight: 600;
}

.heading-2.service {
  max-width: 410px;
}

.button-type-2 {
  color: #000;
  align-items: center;
  margin-top: 30px;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.button-type-2:hover {
  color: #000;
  text-decoration: underline;
}

.button-type-2.services {
  margin-top: 20px;
}

.button-type-2.white:hover {
  color: #fff;
}

.button-type-2-text {
  color: #000;
  font-family: Open Sans, sans-serif;
  font-weight: 700;
  line-height: 1;
}

.button-type-2-text.white {
  color: #fff;
}

.button-circle {
  background-color: var(--orange);
  opacity: .6;
  border-radius: 100px;
  width: 45px;
  height: 45px;
  position: static;
}

.button-arrow {
  z-index: 2;
  opacity: 1;
  width: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.button-circle-wrapper {
  margin-left: 20px;
  position: relative;
}

.homepage-about-image-wrapper {
  width: 117%;
  margin-top: 30px;
  position: relative;
  left: -115px;
  overflow: hidden;
}

.hero-contact-image {
  object-fit: cover;
  width: 90%;
  height: 100%;
}

.right-side-content {
  border-left: 1px solid #000;
  flex-direction: column;
  justify-content: space-around;
  align-self: flex-end;
  align-items: flex-start;
  width: 40%;
  height: 100vh;
  display: flex;
  position: static;
  overflow: hidden;
}

.company-feature {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 50px;
  display: flex;
}

.feature-title-number {
  opacity: .4;
  color: #000;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 64px;
  font-weight: 100;
  line-height: 1;
}

.heading-3 {
  font-weight: 400;
  line-height: 1.2;
}

.heading-3.white {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 500;
}

.heading-3.semibold {
  font-weight: 600;
}

.heading-3.semibold.newest-homepage-blog {
  max-width: 300px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.heading-3.semibold.other-blog {
  max-width: 100%;
  margin-top: 8px;
  margin-bottom: 8px;
}

.heading-3.semibold.other-services {
  margin-top: 20px;
  margin-bottom: 10px;
}

.heading-3.office {
  margin-top: 5px;
  margin-bottom: 60px;
  font-size: 32px;
  font-weight: 500;
}

.heading-3.medium {
  font-weight: 500;
}

.heading-3.lower-opac {
  opacity: .6;
}

.about-us-pattern {
  z-index: 0;
  position: absolute;
  top: 10%;
  right: 0;
}

.image-background {
  z-index: -1;
  background-image: url('../images/Homepage_services_image.jpg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

.image-background.services {
  background-image: url('../images/scania-124l-420-transport-verdoodt-32018edit.jpg');
}

.image-background.contact-us {
  z-index: 0;
  background-image: url('../images/Homepage_contactus_image-min.jpg');
}

.image-background.careers {
  background-image: url('../images/Businessman-min.jpg');
}

.feature-row-content {
  width: 60%;
  margin-top: 20px;
}

.feature-row {
  border-bottom: 1px solid #fff;
  margin-top: 50px;
  padding-bottom: 50px;
}

.feature-row.hire {
  padding-bottom: 50px;
}

.number-container {
  align-items: center;
  display: inline-block;
}

.big-text {
  opacity: .3;
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
}

.big-text.dark {
  color: #000;
}

.feature-content-column {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 0;
  padding-right: 0;
  line-height: 1;
  display: flex;
}

.column {
  padding-left: 0;
  padding-right: 0;
  line-height: 1;
}

.feature-content-wrapper {
  align-self: flex-end;
}

.center-title-container {
  align-self: center;
  position: relative;
}

.image {
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.image.lower-opac {
  z-index: 0;
  opacity: .4;
}

.image.slightly-lower-opac {
  opacity: .8;
}

.horizontal-border {
  background-color: var(--orange);
  border-radius: 100px;
  width: 35%;
  height: 6px;
  position: absolute;
  top: 68px;
  bottom: 55px;
  left: -9%;
}

.homepage-newest-blog-post-list {
  width: 100%;
  margin-top: 20px;
}

.homepage-newest-blog-image-wrapper {
  width: 45vw;
  height: 60vh;
  position: relative;
  overflow: hidden;
}

.collection-item {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.blog-description-homepage {
  padding-left: 20px;
}

.blog-description-homepage.other-blog {
  padding-left: 0;
}

.wrapper {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}

.wrapper.horizontal {
  flex-wrap: nowrap;
  align-items: center;
  display: flex;
}

.wrapper.center {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.wrapper.horizontal-to-vertical {
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.wrapper.blue-background {
  background-color: var(--blue);
  margin-top: 10px;
  line-height: 1;
}

.small-text {
  font-family: Open Sans, sans-serif;
  font-size: 15px;
  line-height: 1;
}

.small-text.lower-opac {
  opacity: .6;
}

.small-text.office {
  padding-left: 2px;
}

.blog-dot {
  align-self: auto;
  margin-top: 2px;
  margin-left: 5px;
  margin-right: 5px;
}

.blog-category-wrapper {
  align-items: center;
  display: flex;
}

.blog-category-wrapper.other-blog {
  margin-top: 15px;
}

.homepage-other-blogs-list {
  margin-bottom: 10px;
}

.homepage-other-blogs-grid {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

.other-blog-image-wrapper {
  width: 100%;
  height: 50vh;
  position: relative;
  overflow: hidden;
}

.homepage-blogs-pattern {
  z-index: -1;
  position: absolute;
  top: 3%;
  right: 0;
  overflow: hidden;
}

.hire-icon {
  width: 30px;
  height: 30px;
}

.footer {
  background-color: var(--orange);
  text-align: center;
  align-items: flex-start;
  margin-top: 0;
  padding-top: 40px;
  padding-bottom: 70px;
  position: relative;
}

.footer-link {
  opacity: .8;
  color: #fff;
  text-align: left;
  margin-bottom: 10px;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  line-height: 130%;
  text-decoration: none;
  transition: opacity .2s;
  display: block;
}

.footer-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.utility-page-wrap {
  background-color: var(--blue);
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-wrap._404 {
  background-color: #fff;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 400px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: block;
}

.div-block {
  background-color: var(--blue);
  width: 100%;
  height: 100px;
  position: absolute;
  bottom: -100px;
  left: 0;
}

.footer-top {
  background-color: var(--orange);
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  width: 100%;
  height: 80px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.contact-link-block {
  border-bottom: 3px solid #fff;
  text-decoration: none;
}

.huge-text {
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 80px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.mouse-pointer-icon {
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: -20px;
  right: 0;
}

.footer-links-container {
  grid-column-gap: 60px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
}

.social-link-block {
  opacity: .8;
  margin-right: 15px;
  transition: all .2s;
}

.social-link-block:hover {
  opacity: 1;
  transform: scale(1.2);
}

.social-icon {
  width: 25px;
  height: 25px;
  transition: all .2s;
}

.credits-container {
  text-align: left;
}

.footer-credits-link {
  opacity: 1;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}

.footer-credits-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.text-span-3 {
  opacity: .8;
}

.hero-type-1 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 85vh;
  display: flex;
}

.hero-type-1.template {
  height: 50vh;
}

.heroy-type-1-image-container {
  z-index: -1;
  background-color: #000;
  width: 80vw;
  height: 85vh;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.heroy-type-1-image-container.template {
  height: 50vh;
}

.main-title-container.type-1 {
  margin-top: 25vh;
}

.hero-type-1-pattern {
  position: absolute;
  bottom: 62vh;
  right: 15%;
  transform: translate(0, 50%);
}

.hero-type-1-pattern.template {
  bottom: 60vh;
}

.company-features-container {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.feature {
  margin-right: 40px;
}

.feature-image {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.feature-image.career {
  opacity: .7;
  color: #333;
  background-color: #0000;
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  transition: opacity .2s;
}

.feature-image.career:hover {
  opacity: 1;
}

.special-image-wrapper {
  background-color: #000;
  width: 50%;
  height: 80vh;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.special-container {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-bottom: 0;
  display: flex;
}

.special-container.center {
  justify-content: flex-start;
  align-items: flex-end;
}

.special-description {
  flex-direction: column;
  justify-content: space-between;
  width: 40%;
  height: 80vh;
  margin-top: 20px;
  padding-left: 40px;
  display: flex;
}

.special-description.type-2 {
  width: 40%;
  height: 70vh;
  display: flex;
}

.special-description.type-2.cavalry {
  height: 70vh;
}

.special-description.services {
  justify-content: flex-end;
}

.personnel-image-grid {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 60%;
  height: 70vh;
  display: block;
}

.employee-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
}

.employee {
  position: relative;
  overflow: hidden;
}

.special-pattern {
  position: absolute;
  top: 7%;
  right: 0;
}

.part-blue-background {
  z-index: -1;
  background-color: var(--blue);
  width: 60%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.part-blue-background.rounded {
  border-bottom-left-radius: 80px;
}

.our-cavalry-image-container {
  width: 60%;
  height: 70vh;
  position: relative;
  overflow: hidden;
}

.testimonial-container {
  border-right: 1px solid #000;
  justify-content: flex-start;
  width: 40%;
  margin-top: 50px;
  display: flex;
}

.slide-nav {
  display: none;
}

.testimonial-image-container {
  border-radius: 20px;
  width: 14vw;
  height: 40vh;
  overflow: hidden;
}

.slider {
  background-color: #0000;
  flex-direction: column;
  width: 14vw;
  min-width: 280px;
  height: 100%;
  margin-left: 2vw;
  display: flex;
}

.mask {
  min-width: 280px;
  height: 100%;
}

.top-arrow {
  order: -1;
  width: 12vw;
  height: 30px;
  margin-bottom: 20px;
  position: static;
  top: -35vh;
  left: 0%;
}

.bottom-arrow {
  order: 1;
  width: 12vw;
  height: 30px;
  margin-top: 20px;
  position: static;
}

.quote-text {
  color: #000;
  max-width: 280px;
  font-style: italic;
  font-weight: 400;
}

.testimonial-title-wrapper {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.testimonial-slide {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 280px;
  display: flex;
}

.companies-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: grid;
}

.companies-container {
  width: 60%;
}

.company-image {
  opacity: .6;
  width: 100px;
  height: 100px;
  transition: opacity .2s;
}

.company-image:hover {
  opacity: 1;
}

.hero-type-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 85vh;
  display: flex;
  position: relative;
}

.hero-type-2-image-container {
  background-color: #000;
  width: 100%;
  height: 100%;
  position: absolute;
}

.contact-information-container {
  width: 45%;
}

.contact-information {
  margin-top: 30px;
}

.contact-line {
  justify-content: flex-start;
  margin-top: 10px;
  display: flex;
}

.contact-link {
  color: #000;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  line-height: 140%;
}

.form-container {
  width: 35%;
  max-width: 500px;
  margin-left: 10%;
}

.form-blue-overlay {
  background-color: var(--blue);
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  width: 50%;
  height: 80%;
  position: absolute;
  right: 0;
}

.form-blue-overlay.careers {
  height: 70%;
}

.form-label {
  color: #fff;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}

.text-field {
  color: #000;
  border-radius: 10px;
  margin-bottom: 20px;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  line-height: 140%;
}

.text-field.password {
  margin-top: 30px;
  margin-bottom: 5px;
}

.textarea {
  color: #000;
  border-radius: 10px;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  min-height: 20vh;
  max-height: 20px;
  margin-bottom: 20px;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  line-height: 140%;
}

.form-block {
  margin-bottom: 0;
}

.form-blue-overlay-mobile {
  display: none;
}

.success-text {
  color: green;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  line-height: 140%;
}

.success-message, .error-message {
  background-color: #fff;
}

.error-text {
  color: red;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  line-height: 140%;
}

.location-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-bottom: 1px solid #000;
  grid-template-rows: auto;
  grid-template-columns: 15% 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 50px;
  padding-bottom: 50px;
  display: grid;
}

.locations-list {
  width: 100%;
  margin-top: 20px;
}

.number-grid-cell, .loaction-info-grid-cell {
  height: 210px;
}

.location-image-grid-cell {
  padding-left: 10%;
}

.location-image-container {
  height: 80vh;
  position: relative;
  overflow: hidden;
}

.feature-grid {
  grid-column-gap: 20px;
  grid-row-gap: 60px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 50px;
  display: grid;
}

.job-collection-list {
  width: 100%;
  max-width: 1500px;
  margin-top: -20px;
}

.job-title {
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.job-description {
  justify-content: space-between;
  display: flex;
}

.job-item {
  border-bottom: 1px solid #000;
  padding-top: 50px;
  padding-bottom: 50px;
}

.careers-pattern {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(0, -50%);
}

.text-block {
  margin-right: 5px;
}

.dropdown-text {
  color: #000;
  white-space: nowrap;
  font-size: 16px;
  text-decoration: none;
}

.service-text-half {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  padding-right: 40px;
  display: flex;
}

.service-features-container {
  border-left: 1px solid #000;
  align-items: center;
  margin-top: 0;
  display: flex;
}

.service-features-rich-text {
  color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-right: 60px;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 210%;
  display: flex;
}

.service-second-section-rich-text {
  opacity: .8;
  color: #fff;
  max-width: 460px;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  line-height: 140%;
}

.other-services-collection {
  width: 100%;
  margin-top: 20px;
}

.other-services-image-container {
  background-color: #000;
  width: 100%;
  height: 60vh;
  position: relative;
  overflow: hidden;
}

.other-service-item {
  flex-direction: column;
  place-content: flex-start;
  align-items: flex-start;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.other-services-grid {
  grid-column-gap: 20px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.narrow-container {
  align-self: flex-start;
  width: 80%;
  max-width: 1288px;
  margin-left: 115px;
}

.blog-rich-text {
  color: #000;
  margin-top: 60px;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  line-height: 230%;
}

.stroke {
  border: 1px #000;
  border-bottom-style: solid;
  width: 80%;
  height: 1px;
  padding-right: 0;
  position: absolute;
  bottom: 0;
  left: 115px;
}

.lock-image {
  opacity: 1;
  width: 200px;
}

.pattern-utility-1 {
  position: absolute;
  top: 10%;
  right: 0;
}

.pattern-utility-2 {
  position: absolute;
  bottom: 20%;
  left: 0;
}

.page-not-found-image {
  width: 200px;
  margin-bottom: 25px;
}

.typography-content {
  padding-right: 150px;
}

.typography {
  margin-top: 65px;
}

.colors-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 80%;
  margin-top: 50px;
  display: grid;
}

.color {
  height: 25vh;
}

.color.orange {
  background-color: var(--orange);
}

.color.blue {
  background-color: var(--blue);
}

.color.dark-blue {
  background-color: var(--dark-blue);
}

.color.black {
  background-color: #000;
}

.license-image-container {
  width: 100px;
  height: 100px;
  margin-right: 20px;
}

.license-content {
  align-items: center;
  width: 100%;
  margin-bottom: 80px;
  display: flex;
}

.license-content.last {
  margin-bottom: 0;
}

.license-images {
  align-items: center;
  display: flex;
}

.bold-link {
  color: #000;
  font-weight: 700;
}

.loader {
  z-index: 5555;
  background-color: var(--blue);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0;
}

.loader-logo-image {
  width: 50px;
  height: 50px;
  margin-bottom: 5px;
  position: static;
  top: 50%;
  left: 50%;
}

.loader-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.rht-image {
  width: 50px;
  height: 100%;
}

.dropdown-list {
  background-color: #fff;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 3px 3px 8px 1px #00000042;
}

.dropdown-list.w--open {
  border-radius: 10px;
  width: 260px;
}

.navbar-fill {
  width: 0%;
  height: 100%;
  display: none;
  position: absolute;
  right: 0;
}

.blog-overlay {
  z-index: 5;
  opacity: 0;
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.blog-text-wrapper {
  overflow: hidden;
}

.overlay {
  z-index: 4;
  transform-origin: 0%;
  background-color: #f8f8f8;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.overlay.secondary-color {
  background-color: #5f788a;
}

.values-content-area {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  flex-flow: column;
  width: 100%;
  max-width: 560px;
  display: flex;
}

.values-section-02 {
  padding: 120px 30px;
}

.values-slider-area {
  border-radius: 16px;
  width: 100%;
  max-width: 650px;
  padding: 67px 30px 64px;
  position: relative;
}

.slide-nav-2 {
  font-size: 13px;
}

.values-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.values-bottom-block {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.slide-mask {
  border-radius: 16px;
  width: 100%;
}

.slider-arrow {
  display: none;
}

.body-text-20 {
  color: #000;
  letter-spacing: -.4px;
  font-size: 20px;
  line-height: 180%;
}

.body-text-20.text-neutral-02 {
  color: #494f5b;
  letter-spacing: -.4px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 180%;
}

.offer-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  align-items: center;
  width: 100%;
  display: flex;
}

.slider-2 {
  background-color: #fff0;
  width: 100%;
  max-width: 520px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.slide {
  width: 100%;
}

.value-title-para {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.image-3 {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.offer-item-icon {
  display: block;
}

.container-11 {
  z-index: 1;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1380px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.slider-image {
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  display: inline-block;
}

.value-subtitle {
  color: #494f5b;
  letter-spacing: -.4px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
}

.text-neutral-4 {
  color: #000;
  letter-spacing: -2.3px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 60px;
  font-weight: 700;
  line-height: 112%;
}

.values-top-block {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.offer-item-text {
  color: #010916;
  letter-spacing: -.4px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 180%;
}

.section-content-wrapper-4 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  align-items: stretch;
  width: 100%;
  max-width: 1500px;
  display: flex;
}

.feature-image-wrapper {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  background-color: var(--orange);
  background-image: linear-gradient(#fff, #fff);
  border: 1.5px #dadde466;
  border-radius: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 0;
  display: flex;
}

.feature-title-6 {
  color: #191715;
  letter-spacing: -.5px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
}

.feature-title-6.style-02 {
  color: #191715;
  letter-spacing: -1px;
  font-size: 60px;
  font-weight: 600;
  line-height: 140%;
}

.heading-02-small-2, .heading-02-small-2.counter-number {
  color: #191715;
  letter-spacing: -2px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 130%;
}

.feature-image-8 {
  border: 0 #e0e4ee;
  border-radius: 12px;
  width: 579px;
  max-width: none;
  display: block;
}

.feature-counter-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 500px;
  display: grid;
}

.feature-subtitle-5 {
  color: #373a46;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 170%;
}

.feature-subtitle-5.style-02 {
  opacity: 1;
  color: #373a46;
  width: 100%;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 170%;
}

.label-title {
  opacity: 1;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
}

.label-icon {
  display: block;
}

.container-93 {
  z-index: 4;
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.single-counter {
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.title-wrapper-11 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.feature-section.padding {
  padding: 120px 30px;
}

.counter-title-4 {
  opacity: 1;
  color: #373a46;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
}

.top-feature-content {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.feature-content-wrapper-5 {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 560px;
  display: flex;
}

.feature-content-wrapper-5._02 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  align-items: flex-start;
  width: auto;
  max-width: none;
  display: flex;
}

.single-feature-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.single-feature-wrapper.style-02 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1500px;
  display: flex;
}

.section-label {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  background-color: var(--orange);
  color: #fff;
  border: 1px solid #989dad4d;
  border-radius: 36px;
  align-items: center;
  padding: 4px 12px;
  display: flex;
}

.label-icon-wrapper {
  justify-content: center;
  align-items: center;
  width: 17px;
  height: 17px;
  display: flex;
}

.slide-nav-3 {
  font-size: 13px;
}

.slider-3 {
  background-color: #fff0;
  width: 100%;
  max-width: 520px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.code-embed {
  border-radius: 5px;
  width: 100%;
  height: 450px;
  padding-top: 0;
}

.contact-title-2 {
  color: #fff;
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 140%;
}

.location-image {
  border-radius: 20px;
  width: 100%;
  display: block;
}

.contact-text-box {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.feature-title-2 {
  color: #000;
  letter-spacing: -2.5px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 120%;
}

.contact-bottom-content {
  grid-column-gap: 72px;
  grid-row-gap: 72px;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1400px;
  display: block;
}

.contact-area-wrapper {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.contact-section-5.section-padding {
  padding: 0 30px;
}

.contact-section-5.section-padding.remove-padding-top {
  padding: 0 30px 120px;
}

.single-contact-box {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: var(--orange);
  opacity: 1;
  border-radius: 20px;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 40px 40px 40px 50px;
  display: flex;
}

.text-16px-medium {
  color: #000;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 170%;
}

.text-16px-medium.text-neutral-03 {
  color: #fff;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 170%;
  text-decoration: none;
}

.container-45 {
  flex-flow: column;
  align-items: stretch;
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.contact-top-area {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1400px;
  display: grid;
}

.contact-icon {
  max-width: 15%;
  font-size: 10px;
  display: block;
}

.name-email {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  width: 100%;
  display: flex;
}

.heading-64 {
  color: #161525;
  letter-spacing: -2px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 64px;
  font-weight: 600;
  line-height: 115%;
}

.heading-64.text-neutral-04 {
  color: #161525;
  text-align: center;
  letter-spacing: -2px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 64px;
  font-weight: 600;
  line-height: 115%;
}

.form-input {
  color: #161525;
  border: 2px solid #161525;
  border-radius: 8px;
  width: 100%;
  height: 54px;
  margin-bottom: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}

.form-input:focus {
  border-color: #5a45fe;
}

.form-input.text-area {
  color: #161525;
  border: 2px solid #161525;
  border-radius: 8px;
  width: 100%;
  height: 208px;
  margin-bottom: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}

.form-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.contact-form-wrapper {
  width: 100%;
  max-width: 690px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
}

.input-label-2 {
  color: #161525;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
  display: block;
}

.body-text-93 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 170%;
}

.body-text-93.text-neutral-03 {
  color: #5f5f69;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 170%;
  text-decoration: none;
}

.body-text-93.text-neutral-03.contact-heading-p {
  color: #5f5f69;
  text-align: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 170%;
  text-decoration: none;
}

.section-heading.center {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-flow: column;
  align-items: center;
  padding-bottom: 40px;
  display: flex;
}

.container-94 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1296px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.single-input-2 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.contact-form-button-2 {
  color: #fff;
  background-color: #161525;
  border: 1px solid #fff;
  border-radius: 58px;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
  box-shadow: 0 2px 3px #00000024;
}

.footer-content-wrapper-2 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  border: 1px none var(--light-grey);
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
}

.footer-menu-list {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.footer-menu-list._02 {
  width: 27%;
}

.footer-menu-list._03 {
  width: 30%;
}

.footer-menu-list._01 {
  width: 20%;
}

.project-logo {
  padding-left: 0;
  text-decoration: none;
}

.project-logo.w--current {
  padding-left: 0;
}

.social-media-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: row;
  align-items: flex-start;
  display: flex;
}

.body-text-14-px-regular-2 {
  color: #4a4a4a;
  letter-spacing: -.2px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 180%;
}

.single-social-profile {
  background-color: #6858e300;
  border-radius: 32px;
  padding: 0;
  text-decoration: none;
}

.mail-number {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: row;
  justify-content: flex-end;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.single-social-media {
  flex-flow: column;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.footer-section-2 {
  background-color: var(--light-grey);
  background-image: linear-gradient(#fffffff2, #fffffff2);
  border-top: 1px solid #c4c2c2;
  padding: 120px 30px;
}

.footer-menu-list-wrapper {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 53%;
  display: flex;
}

.container-3 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-content-top {
  border-top: 1px solid #bfbfbf;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-top: 25px;
  display: flex;
}

.footer-menu-item {
  text-decoration: none;
}

.socila-profile {
  max-width: none;
}

.footer-bottom {
  border-top: 1px solid #bfbfbf;
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding-top: 25px;
  display: flex;
}

.body-text-16-px-regular-6 {
  color: #3b3b3b;
  letter-spacing: -.4px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
}

.body-text-16-px-regular-6.text-theme-color-03 {
  color: #838383;
  text-align: center;
  letter-spacing: -.4px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  text-decoration: none;
}

.social-media-text {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  align-items: flex-start;
  width: 30%;
  display: flex;
}

.line {
  color: #0a0915;
  background-color: #0a0915;
  width: 0%;
  height: 1px;
}

.body-text-16-px-medium-2 {
  color: #0a0915;
  letter-spacing: -.2px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
}

.body-text-16-px-medium-2.menu-text-opacity {
  opacity: 1;
  color: #535353;
  font-weight: 700;
}

.menu-list {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.div-block-2 {
  padding-top: 60px;
}

.div-block-3 {
  border-radius: 5px;
  width: 100%;
}

.div-block-4 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  display: flex;
}

.div-before-type {
  z-index: 10;
  background-color: var(--orange);
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: 400;
  text-decoration: none;
  position: fixed;
}

.div-equally-coast {
  width: auto;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  font-weight: 400;
  text-decoration: none;
}

.div-luck-view {
  text-align: left;
  justify-content: space-between;
  align-items: center;
  max-width: none;
  padding: 0;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.div-cow-together {
  flex-shrink: 0;
  padding: 0;
  font-weight: 400;
  text-decoration: none;
}

.a-smile-above {
  padding: 0;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.img-most-flew {
  padding: 0;
  font-weight: 400;
  text-decoration: none;
}

.div-serious-accurate {
  padding: 0;
  font-weight: 400;
  text-decoration: none;
  display: none;
}

.a-slave-sort {
  color: #111827;
  padding: 0;
  font-weight: 400;
  text-decoration: none;
}

.span-most-flew {
  padding: 0;
  font-weight: 400;
  text-decoration: none;
}

.img-women-valuable {
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  font-weight: 400;
  text-decoration: none;
}

.span-mathematics-coal {
  padding: 0;
  font-weight: 400;
  text-decoration: none;
  display: none;
}

.div-tool-theory {
  justify-content: center;
  align-items: center;
  padding: 0;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.a-bend-everything {
  color: #fff;
  border-style: solid;
  border-width: 0;
  border-radius: .25rem;
  padding: 0;
  font-family: Montserrat, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5rem;
  text-decoration: none;
}

.a-take-safe {
  color: #fff;
  border-style: solid;
  border-width: 0;
  border-radius: .25rem;
  margin-left: 4rem;
  padding: 0;
  font-family: Montserrat, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5rem;
  text-decoration: none;
}

.a-take-safe.w--current {
  font-size: 1.2rem;
}

.div-school-amount {
  padding: 0;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.a-zebra-twice {
  color: var(--dark-blue);
  background-color: #fff;
  border: 1px solid #0000;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  padding: .5rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75rem;
  text-decoration: none;
  display: inline-flex;
}

.a-zebra-twice:hover {
  background-color: #6b7280;
}

.div-mathematics-coal {
  padding: 0;
  font-weight: 400;
  text-decoration: none;
  display: none;
}

.div-receive-business {
  padding: 2rem .25rem;
  font-weight: 400;
  text-decoration: none;
}

.div-level-colony {
  padding: 0;
  font-weight: 400;
  text-decoration: none;
  display: grid;
}

.a-cage-cream {
  color: #111827;
  border-style: solid;
  border-width: 0;
  border-radius: .25rem;
  align-items: center;
  margin: -.75rem;
  padding: .75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  text-decoration: none;
  display: flex;
}

.a-cage-cream:hover {
  background-color: #f9fafb;
}

.dropdown-text-2.body-text-16.uppercase.text-neutral-04 {
  color: #221f1d;
  letter-spacing: .25px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
}

.image-slider-content-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.nav-item {
  color: #221f1d;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
  text-decoration: none;
  transition: all .4s ease-in-out;
}

.nav-item:hover {
  color: #ac6255;
}

.nav-item.w--current {
  color: #ac6255;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
  text-decoration: none;
  transition-duration: .4s;
}

.image-slider-content.body-text-57.text-neutral-03 {
  color: #716154;
  width: 30%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 170%;
  text-decoration: none;
}

.button-icon-wrapper-2 {
  width: 16px;
  height: 16px;
  overflow: hidden;
}

.site-logo {
  width: 100%;
  max-width: none;
  text-decoration: none;
  display: inline-block;
}

.lp-hero-slider {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  width: 100%;
}

.nav-dropdown-list-2 {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list-2.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-list-2.shadow-three.mobile-shadow-hide.w--open {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  background-color: #fff;
  border-radius: 12px;
  flex-flow: row;
  justify-content: flex-start;
  width: 250px;
  margin-top: 20px;
  padding: 20px 30px;
  display: flex;
}

.container-7 {
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1330px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.nav-item-text {
  color: #fff;
  margin-bottom: 0;
}

.mask-2 {
  height: 100%;
}

.arrow-left-icon {
  width: 18px;
}

.nav-dropdown-toggle-2 {
  letter-spacing: .25px;
  padding: 0 20px 0 0;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle-2:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle-2:focus-visible, .nav-dropdown-toggle-2[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-toggle-2.w--open {
  padding: 0 20px 0 0;
}

.nav-menu-wrapper-2 {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.nav-dropdown-2 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.secondary-button {
  color: #221f1d;
  background-color: #ac6255;
  border: 1px solid #ac6255;
  border-radius: 100px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
  text-decoration: none;
  display: block;
}

.heading-content {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  display: flex;
}

.nav-dropdown-icon-2 {
  margin-right: 0;
}

.mega-menu-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-button-wrapper {
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.primary-button {
  border: 1px solid var(--blue);
  color: #221f1d;
  border-radius: 100px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
  text-decoration: none;
  display: block;
}

.button-text-17 {
  color: #fcf5f0;
  text-transform: uppercase;
  width: 100%;
  min-width: 100%;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
  text-decoration: none;
}

.button-text-17.secondary {
  color: #fcf5f0;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  text-decoration: none;
}

.button-text-17.primary {
  color: #221f1d;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  text-decoration: none;
}

.container-6 {
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1330px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.container-6.nav-area {
  max-width: 1330px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.navbar-logo {
  width: 250px;
}

.navbar-logo.w--current {
  width: 126px;
  text-decoration: none;
}

.button-right-icon-3, .button-right-icon-3.normal {
  width: 16px;
  height: 16px;
  display: block;
}

.button-right-icon-3.hover {
  width: 16px;
  height: 16px;
  margin-left: -22px;
  display: block;
}

.nav-section {
  background-color: var(--orange);
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}

.section-content-wrapper {
  grid-column-gap: 110px;
  grid-row-gap: 110px;
  flex-flow: column;
  display: flex;
}

.hero-area {
  position: relative;
}

.display-heading-4 {
  letter-spacing: -2px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 80px;
  font-weight: 500;
  line-height: 115%;
}

.display-heading-4.text-neutral-04 {
  color: #221f1d;
  letter-spacing: -2px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 80px;
  font-weight: 500;
  line-height: 115%;
}

.image-slider {
  background-color: #ddd0;
  height: 100%;
}

.hero-section.section-padding.home.remove-top-padding {
  background-color: #fcf5f0;
  padding: 100px 30px 120px;
}

.header-4 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  width: 80%;
  display: flex;
}

.body-text-57 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 170%;
  text-decoration: none;
}

.body-text-57.text-neutral-03.hero-header-p {
  color: #716154;
  width: 60%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 170%;
  text-decoration: none;
}

.navbar-container-wapper {
  z-index: 999;
  background-color: #0000;
  width: 100%;
  max-width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.button-content-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  display: flex;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.mega-menu-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: row;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.image-slider-arrow {
  border: 1px solid #221f1d;
  border-radius: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  inset: auto 0% 0% auto;
}

.image-slider-arrow.left-arrow {
  right: 70px;
}

.nav-menu-two {
  grid-column-gap: 38px;
  grid-row-gap: 38px;
  justify-content: flex-end;
  align-items: center;
  width: 75%;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 25px;
  display: flex;
}

.image-slider-nav {
  display: none;
}

.slider-image-2 {
  object-fit: cover;
  width: 100%;
  height: 600px;
  display: block;
}

.arrow-right-icon {
  width: 18px;
}

.blog-title-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.section-content-wrapper-5 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.blog-thumbnail-wrapper-2 {
  border-radius: 12px;
  justify-content: center;
  width: 45%;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.section-title-25 {
  color: #191715;
  text-align: center;
  letter-spacing: -2px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 60px;
  font-weight: 600;
  line-height: 120%;
}

.blog-title-6 {
  color: #191715;
  text-align: left;
  letter-spacing: -.5px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 600;
  line-height: 140%;
  text-decoration: none;
  transition: all .4s ease-in-out;
}

.blog-title-6:hover {
  color: var(--orange);
}

.section-subtitle-6 {
  color: #373a46;
  text-align: left;
  max-width: 500px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 170%;
}

.single-blog-2 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.blog-excerpt {
  opacity: 1;
  color: #373a46;
  text-align: center;
  max-width: 500px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
}

.label-title-2 {
  opacity: 1;
  color: #373a46;
  text-align: center;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
}

.section-title-wrapper-5 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.section-title-wrapper-5.align-center {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.blog-thumbnail-2 {
  width: 100%;
  max-width: none;
  display: inline-block;
}

.blog-section-7.padding-bottom {
  padding: 120px 30px;
}

.container-88 {
  z-index: 4;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.blog-card-list-3 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center;
  display: flex;
}

.blog-title-link-2 {
  color: #191715;
  text-decoration: none;
}

.section-label-2 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  background-color: #f7f9fb;
  border: 1px solid #989dad4d;
  border-radius: 36px;
  align-items: center;
  padding: 4px 12px;
  display: flex;
}

.bold-text {
  font-weight: 700;
}

@media screen and (min-width: 1280px) {
  .logo, .logo.dark {
    width: 300px;
  }

  .service-text-half {
    padding-right: 100px;
  }

  .narrow-container {
    align-self: center;
    margin-left: 0;
  }

  .stroke {
    left: 10%;
  }

  .typography-content {
    padding-right: 200px;
  }

  .div-equally-coast {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .div-serious-accurate {
    display: none;
  }

  .div-tool-theory {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .a-take-safe {
    margin-left: 4rem;
  }

  .div-school-amount {
    display: flex;
  }
}

@media screen and (min-width: 1440px) {
  .logo {
    width: 250px;
  }

  .heading-1 {
    font-size: 5vw;
  }

  .wide-container {
    max-width: 85%;
    overflow: visible;
  }

  .wide-container.for-footer {
    top: -40px;
  }

  .wide-container.blog {
    width: 85%;
    max-width: 1750px;
  }

  .paragraph.wide-white {
    max-width: 600px;
  }

  .paragraph.black.license {
    margin-right: 100px;
  }

  .section {
    overflow: hidden;
  }

  .section.round-bottom-left-corner {
    border-bottom-left-radius: 160px;
  }

  .section.round-top-left-corner {
    border-top-left-radius: 160px;
  }

  .section.round-top-left-corner.last-section {
    padding-bottom: 280px;
  }

  .section.both-round-corners {
    border-top-left-radius: 160px;
    border-bottom-left-radius: 160px;
    padding-bottom: 80px;
  }

  .section.top-no-margin-on-mobile {
    padding-top: 80px;
  }

  .section.last-section {
    padding-bottom: 280px;
  }

  .heading-2 {
    font-size: 2.5vw;
  }

  .heading-2.blog {
    font-size: 42px;
  }

  .homepage-about-image-wrapper {
    width: 136%;
    left: -16vw;
  }

  .hero-contact-image {
    width: 80%;
  }

  .feature-title-number {
    font-size: 8vw;
  }

  .heading-3.office {
    font-size: 2vw;
  }

  .footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 30px;
    display: flex;
  }

  .footer-top {
    border-top-left-radius: 160px;
    border-top-right-radius: 160px;
    height: 160px;
  }

  .huge-text {
    font-size: 5vw;
  }

  .company-features-container {
    justify-content: space-between;
    width: 87%;
  }

  .feature {
    margin-right: 0;
  }

  .special-image-wrapper {
    height: 75vh;
  }

  .special-container.center {
    width: 100%;
  }

  .special-description {
    height: 75vh;
  }

  .part-blue-background.rounded {
    border-bottom-left-radius: 160px;
  }

  .slider {
    margin-left: 3vw;
  }

  .top-arrow {
    margin-bottom: 30px;
  }

  .bottom-arrow {
    margin-top: 30px;
  }

  .narrow-container {
    align-self: center;
    width: 85%;
    margin-left: 0;
    padding-left: 115px;
    padding-right: 40px;
  }

  .typography-content {
    padding-right: 300px;
  }

  .license-image-container {
    width: 150px;
    height: 150px;
  }

  .license-content {
    margin-top: 20px;
    margin-bottom: 120px;
  }

  .div-equally-coast {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .div-serious-accurate {
    display: none;
  }

  .div-tool-theory {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .a-take-safe {
    margin-left: 4rem;
  }

  .div-school-amount {
    display: flex;
  }
}

@media screen and (min-width: 1920px) {
  .navbar-container {
    z-index: 5555;
    position: relative;
  }

  .logo {
    width: 300px;
  }

  .nav-link {
    font-size: 22px;
  }

  .wide-container {
    max-width: 80%;
  }

  .wide-container.horizontal-to-vertical {
    justify-content: flex-start;
  }

  .wide-container.blog {
    width: 80%;
  }

  .above-title-text {
    font-size: 32px;
  }

  .paragraph {
    max-width: 540px;
    font-size: 22px;
  }

  .paragraph.wide {
    max-width: 650px;
  }

  .paragraph.feature {
    max-width: 360px;
  }

  .paragraph.feature.career {
    max-width: 400px;
  }

  .paragraph.narrow {
    max-width: 450px;
  }

  .paragraph.narrow.footer-credit-row {
    font-size: 17px;
  }

  .paragraph.black.license {
    width: 540px;
    margin-right: 120px;
  }

  .paragraph.semi-wide {
    max-width: 530px;
  }

  .paragraph.job {
    max-width: 1000px;
  }

  .paragraph.service, .paragraph.service.with-margin {
    max-width: 700px;
  }

  .button-type-1 {
    font-size: 22px;
  }

  .button-type-1.form {
    padding: 15px 25px;
  }

  .button-type-1.job {
    margin-top: auto;
  }

  .button-type-1.password {
    padding: 15px 30px;
  }

  .button-type-1._404 {
    margin-top: 35px;
  }

  .section.both-round-corners {
    padding-bottom: 100px;
  }

  .section.top-no-margin-on-mobile {
    padding-top: 100px;
  }

  .section.last-section.careers {
    padding-bottom: 400px;
  }

  .left-side-content {
    padding-right: 50px;
  }

  .heading-2.service {
    max-width: 28vw;
  }

  .button-type-2-text {
    font-size: 18px;
  }

  .homepage-about-image-wrapper {
    margin-top: 60px;
    left: -16vw;
  }

  .right-side-content {
    height: 100vh;
  }

  .company-feature {
    padding-left: 50px;
  }

  .feature-title-number {
    font-size: 5vw;
  }

  .heading-3 {
    font-size: 28px;
  }

  .heading-3.white {
    display: inline-block;
  }

  .heading-3.semibold.newest-homepage-blog {
    max-width: 340px;
  }

  .heading-3.semibold.other-services {
    margin-top: 30px;
  }

  .heading-3.office {
    margin-top: 10px;
    margin-bottom: 100px;
  }

  .feature-row-content {
    margin-top: 40px;
  }

  .feature-row {
    margin-top: 80px;
    padding-bottom: 80px;
  }

  .feature-row.hire {
    margin-top: 50px;
  }

  .big-text {
    font-size: 28px;
  }

  .horizontal-border {
    bottom: 5px;
  }

  .homepage-newest-blog-post-list {
    margin-top: 35px;
  }

  .blog-description-homepage {
    padding-left: 30px;
  }

  .small-text.office {
    padding-left: 3px;
    font-size: 18px;
  }

  .other-blogs-collection-item {
    width: 100%;
  }

  .homepage-other-blogs-list {
    margin-bottom: 20px;
  }

  .homepage-other-blogs-grid {
    grid-column-gap: 30px;
    grid-row-gap: 50px;
    margin-top: 50px;
  }

  .hire-icon {
    width: 40px;
    height: 40px;
  }

  .footer-link {
    font-size: 22px;
  }

  .utility-page-content {
    width: 25vw;
  }

  .footer-links-container {
    margin-top: 160px;
    margin-bottom: 160px;
  }

  .social-icon {
    width: 30px;
    height: 30px;
  }

  .hero-type-1-pattern {
    right: 16%;
  }

  .company-features-container {
    width: 90%;
  }

  .feature-image {
    width: 125px;
    height: 125px;
    margin-bottom: 20px;
  }

  .feature-image.career {
    width: 65px;
    height: 65px;
    margin-bottom: 15px;
  }

  .special-image-wrapper {
    margin-top: 35px;
  }

  .slider {
    margin-left: 4vw;
  }

  .company-image {
    width: 130px;
    height: 130px;
  }

  .contact-information {
    margin-top: 40px;
  }

  .contact-line {
    margin-top: 20px;
  }

  .contact-link, .form-label, .text-field {
    font-size: 22px;
  }

  .text-field.password {
    margin-top: 40px;
  }

  .textarea, .success-text, .error-text {
    font-size: 22px;
  }

  .locations-list {
    margin-top: 40px;
  }

  .feature-grid {
    grid-row-gap: 75px;
    margin-top: 70px;
  }

  .job-collection-list {
    margin-top: 0;
  }

  .dropdown-text {
    font-size: 18px;
  }

  .service-features-container {
    margin-top: 20px;
  }

  .service-features-rich-text {
    margin-top: 0;
    margin-bottom: 0;
    padding-right: 100px;
    font-size: 22px;
    line-height: 250%;
  }

  .service-second-section-rich-text {
    max-width: 600px;
    font-size: 22px;
  }

  .other-services-collection {
    margin-top: 35px;
  }

  .other-services-grid {
    grid-column-gap: 30px;
  }

  .narrow-container {
    width: 67%;
    padding-left: 0;
    padding-right: 0;
  }

  .page-not-found-image {
    width: 10vw;
    margin-bottom: 35px;
  }

  .loader-logo-image {
    width: 75px;
    height: 75px;
  }

  .rht-image {
    width: 75px;
  }

  .dropdown-list.w--open {
    width: 300px;
  }

  .navbar-fill {
    z-index: 5000;
    background-color: #fff;
    width: 20vw;
    display: block;
    position: absolute;
  }
}

@media screen and (max-width: 991px) {
  .nav-menu {
    background-color: #fff;
  }

  .nav-menu.menu-type-2 {
    height: auto;
  }

  .logo {
    width: 200px;
  }

  .nav-link, .nav-link.w--current {
    color: #000;
    padding-left: 40px;
  }

  .nav-link.dropdown {
    width: 100%;
  }

  .nav-link.in-dropdown {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 60px;
  }

  .hero-homepage {
    min-height: 80vh;
  }

  .hero-image-container, .hero-image.position-left {
    height: 80vh;
  }

  .hero-content {
    left: 0;
  }

  .heading-1 {
    font-size: 68px;
  }

  .wide-container {
    padding-left: 70px;
  }

  .wide-container.horizontal-to-vertical {
    flex-direction: column;
    align-items: flex-start;
  }

  .wide-container.horizontal-to-reverse-vertical {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .wide-container.style-guide {
    flex-direction: column;
  }

  .paragraph.feature {
    text-align: left;
  }

  .paragraph.narrow {
    max-width: 600px;
  }

  .paragraph.narrow.black.newest-blog-post {
    max-width: 550px;
  }

  .paragraph.narrow.with-margin {
    max-width: 600px;
  }

  .paragraph.footer-bold {
    margin-bottom: 20px;
  }

  .paragraph.wide-white, .paragraph.wide-white.with-margin {
    max-width: 600px;
  }

  .paragraph.black.license {
    width: 100%;
    margin-left: 0;
  }

  .paragraph.job {
    width: 70%;
  }

  .paragraph.service, .paragraph.service.with-margin {
    max-width: 700px;
  }

  .button-type-1.job {
    margin-top: auto;
  }

  .border {
    left: -27px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.round-bottom-left-corner {
    border-bottom-left-radius: 40px;
  }

  .section.round-top-left-corner {
    border-top-left-radius: 40px;
  }

  .section.round-top-left-corner.last-section {
    padding-bottom: 100px;
  }

  .section.both-round-corners {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 0;
    padding-bottom: 0;
  }

  .section.both-round-corners.normal-padding, .section.both-round-corners.services {
    border-bottom-left-radius: 40px;
    padding-bottom: 60px;
  }

  .section.top-no-margin-on-mobile {
    padding-top: 0;
  }

  .section.last-section {
    padding-bottom: 100px;
  }

  .section.last-section.careers {
    padding-top: 0;
    padding-bottom: 100px;
  }

  .section.bottom-no-margin-on-mobile {
    padding-bottom: 0;
  }

  .left-side-content {
    width: 100%;
    padding-right: 0;
  }

  .button-type-2.services {
    margin-top: 20px;
  }

  .button-type-2.white:hover, .button-type-2-text.white {
    color: #fff;
  }

  .homepage-about-image-wrapper {
    width: 100vw;
    height: 55vh;
    left: -70px;
  }

  .hero-contact-image {
    width: 150%;
    max-width: 150%;
    transform: translate(15%);
  }

  .right-side-content {
    justify-content: space-between;
    width: 100%;
    height: 630px;
  }

  .company-feature {
    padding-left: 30px;
  }

  .heading-3.semibold.newest-homepage-blog {
    max-width: 550px;
  }

  .heading-3.office {
    margin-bottom: 0;
  }

  .about-us-pattern {
    display: none;
  }

  .feature-row-content {
    width: 100%;
    margin-top: 0;
  }

  .number-container.about-us {
    margin-bottom: 10px;
  }

  .big-text {
    font-size: 24px;
  }

  .big-text.smaller-on-mobile {
    font-size: 14px;
  }

  .homepage-newest-blog-image-wrapper {
    width: 100%;
    height: 40vh;
  }

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

  .blog-description-homepage {
    align-self: flex-start;
    padding-left: 0;
  }

  .wrapper.horizontal-to-vertical {
    flex-direction: column;
    justify-content: flex-start;
  }

  .blog-category-wrapper, .blog-category-wrapper.other-blog {
    margin-top: 10px;
  }

  .homepage-other-blogs-grid {
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .other-blog-image-wrapper {
    height: 40vh;
  }

  .homepage-blogs-pattern {
    display: none;
  }

  .footer {
    padding: 20px 20px 30px;
  }

  .footer-top {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    height: 40px;
  }

  .huge-text {
    font-size: 68px;
  }

  .mouse-pointer-icon {
    width: 30px;
    height: 30px;
    bottom: -10px;
  }

  .footer-links-container {
    grid-row-gap: 40px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    margin-top: 50px;
    margin-bottom: 65px;
  }

  .hero-type-1 {
    height: 65vh;
  }

  .hero-type-1.template {
    height: 35vh;
  }

  .heroy-type-1-image-container {
    width: 100%;
    height: 65vh;
  }

  .heroy-type-1-image-container.template {
    height: 35vh;
  }

  .main-title-container.type-1 {
    margin-top: 25vh;
  }

  .main-title-container.type-1.template {
    margin-top: 15vh;
  }

  .hero-type-1-pattern {
    display: none;
  }

  .company-features-container {
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }

  .feature {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    margin-right: 0;
    display: flex;
  }

  .feature.last {
    margin-bottom: 0;
  }

  .feature.career {
    align-items: flex-start;
    margin-bottom: 0;
  }

  .special-image-wrapper {
    width: 100%;
    height: 55vh;
  }

  .special-container, .special-container.center {
    flex-direction: column-reverse;
  }

  .special-description {
    width: 80%;
    height: auto;
    padding-left: 0;
  }

  .special-description.type-2 {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .special-description.type-2.cavalry {
    height: auto;
    margin-bottom: 0;
  }

  .personnel-image-grid, .employee-grid {
    width: 100%;
  }

  .special-pattern {
    display: none;
  }

  .part-blue-background {
    width: 100%;
  }

  .part-blue-background.rounded {
    border-bottom-left-radius: 40px;
  }

  .our-cavalry-image-container {
    width: 100vw;
    max-width: 1200px;
    height: 55vh;
    position: relative;
    left: 40px;
  }

  .testimonial-container {
    border-right-style: none;
    width: 100%;
  }

  .testimonial-image-container {
    width: 100%;
  }

  .slider {
    flex-direction: row;
    width: 100%;
    margin-left: 0;
  }

  .mask {
    width: 80%;
  }

  .top-arrow {
    justify-content: center;
    align-items: center;
    height: 300px;
    margin-top: auto;
    margin-bottom: auto;
    display: flex;
    position: relative;
    top: -5vh;
  }

  .arrow-up {
    width: 30px;
    height: 30px;
    transform: rotate(-90deg);
  }

  .bottom-arrow {
    justify-content: center;
    align-items: center;
    height: 300px;
    margin-top: auto;
    margin-bottom: auto;
    display: flex;
    position: relative;
    top: -5vh;
  }

  .arrow-down {
    width: 30px;
    height: 30px;
    transform: rotate(-90deg);
  }

  .companies-grid {
    border-bottom: 1px solid #000;
  }

  .companies-container {
    width: 100%;
  }

  .hero-type-2 {
    height: 65vh;
  }

  .contact-information-container {
    width: 100%;
  }

  .contact-information {
    margin-bottom: 40px;
  }

  .contact-information.office {
    margin-bottom: 0;
  }

  .form-container {
    width: 100%;
    max-width: 100%;
    margin-left: 0%;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
  }

  .form-blue-overlay {
    display: none;
  }

  .form-block {
    max-width: 500px;
    margin-bottom: 0;
  }

  .form-blue-overlay-mobile {
    z-index: -1;
    background-color: var(--blue);
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    width: 100vw;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: -70px;
  }

  .location-grid {
    grid-row-gap: 10px;
    border-bottom-style: none;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr auto;
    padding-top: 60px;
    padding-bottom: 0;
  }

  .locations-list {
    margin-top: -30px;
  }

  .number-grid-cell, .loaction-info-grid-cell {
    height: auto;
  }

  .location-image-grid-cell {
    padding-left: 0%;
  }

  .location-image-container {
    width: 100vw;
    height: 55vh;
    position: relative;
    left: -70px;
  }

  .feature-grid {
    grid-row-gap: 50px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
  }

  .job-collection-list {
    margin-top: -20px;
  }

  .careers-pattern {
    display: none;
  }

  .dropdown-text {
    color: #000;
    font-size: 16px;
  }

  .service-text-half {
    padding-right: 0;
  }

  .service-text-half.right {
    margin-top: 20px;
  }

  .service-features-rich-text {
    margin-top: 0;
    margin-bottom: 0;
  }

  .service-second-section-rich-text {
    max-width: 700px;
  }

  .other-services-image-container {
    height: 40vh;
  }

  .other-service-content {
    max-width: 700px;
  }

  .other-services-grid {
    grid-column-gap: 20px;
    grid-row-gap: 60px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: flex-start;
    display: grid;
  }

  .narrow-container {
    width: 100%;
    margin-left: 0;
    padding-left: 70px;
    padding-right: 40px;
  }

  .blog-rich-text {
    flex-direction: column;
    margin-top: 30px;
    display: flex;
  }

  .stroke {
    width: 90%;
    left: 5%;
  }

  .typography-content {
    padding-right: 0;
  }

  .buttons-content {
    margin-top: 60px;
  }

  .typography {
    margin-top: 45px;
  }

  .colors-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
  }

  .buttons {
    margin-top: -20px;
  }

  .license-content {
    flex-direction: column-reverse;
    align-items: flex-start;
    margin-bottom: 40px;
  }

  .license-images {
    margin-bottom: 10px;
  }

  .loader-wrapper {
    margin-bottom: 20vh;
  }

  .dropdown-list.w--open {
    box-shadow: none;
    background-color: #fff;
    border-radius: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .menu-icon {
    width: 35px;
    height: 35px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .menu-icon.dark, .menu-icon.close {
    opacity: 0;
  }

  .menu-button {
    background-color: #0000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    padding: 0;
    display: flex;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .values-content-area {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    max-width: 648px;
    margin-left: auto;
    margin-right: auto;
  }

  .values-section-02 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .values-slider-area {
    order: -1;
    margin-left: auto;
    margin-right: auto;
  }

  .values-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
  }

  .values-bottom-block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .text-neutral-4 {
    letter-spacing: -2px;
    font-size: 48px;
  }

  .values-top-block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .section-content-wrapper-4 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .feature-image-wrapper {
    width: 80%;
    max-width: none;
    padding-left: 100px;
    padding-right: 100px;
  }

  .heading-02-small-2 {
    font-size: 42px;
  }

  .heading-02-small-2.counter-number {
    font-size: 40px;
  }

  .feature-section.padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .feature-content-wrapper-5 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    width: 80%;
    max-width: none;
  }

  .feature-content-wrapper-5._02 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    width: 80%;
    max-width: none;
  }

  .single-feature-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-flow: column;
    align-items: center;
  }

  .single-feature-wrapper.style-02 {
    flex-flow: column-reverse;
  }

  .contact-title-2 {
    font-size: 32px;
  }

  .feature-title-2 {
    letter-spacing: -2px;
    font-size: 45px;
  }

  .contact-bottom-content {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .contact-area-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .contact-section-5.section-padding, .contact-section-5.section-padding.remove-padding-top {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .single-contact-box {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding: 20px 24px;
  }

  .contact-top-area {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .heading-64.text-neutral-04 {
    letter-spacing: -1.5px;
    font-size: 48px;
  }

  .contact-form-wrapper {
    width: 100%;
    padding-top: 45px;
  }

  .body-text-93.text-neutral-03.contact-heading-p {
    width: 80%;
  }

  .container-94 {
    max-width: 768px;
  }

  .footer-content-wrapper-2 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .footer-menu-list._02 {
    width: 25%;
  }

  .footer-menu-list._03 {
    width: 20%;
  }

  .footer-menu-list._01 {
    width: 22%;
  }

  .mail-number {
    width: 60%;
  }

  .footer-section-2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .footer-menu-list-wrapper {
    flex-flow: wrap;
    width: 65%;
  }

  .social-media-text {
    width: 40%;
  }

  .div-equally-coast {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .image-slider-content.body-text-57.text-neutral-03 {
    width: 50%;
  }

  .single-nav {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list-2.shadow-three.w--open {
    position: absolute;
  }

  .nav-dropdown-list-2.shadow-three.mobile-shadow-hide.w--open {
    width: 100%;
    margin-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    box-shadow: 0 2px 10px #0000001a;
  }

  .nav-menu-wrapper-2 {
    z-index: 9;
    background-color: var(--orange);
    border-radius: 16px;
    flex-flow: column;
    justify-content: flex-start;
    width: 100%;
    margin-top: 25px;
    padding: 20px 20px 30px;
    box-shadow: 0 2px 10px #0000001a;
  }

  .nav-dropdown-2 {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .heading-content {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .mega-menu-list {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: #fff0;
    border-radius: 0;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }

  .nav-button-wrapper {
    justify-content: flex-start;
    width: 100%;
    margin-top: 20px;
  }

  .menu-icon-2 {
    z-index: 99;
    color: #fff;
    border: 1px solid #a1a1a100;
    width: 35px;
    position: relative;
  }

  .section-content-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .display-heading-4 {
    font-size: 62px;
  }

  .display-heading-4.text-neutral-04 {
    font-size: 60px;
  }

  .hero-section.section-padding.home.remove-top-padding {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .menu-trigger {
    align-items: center;
    width: 35px;
    padding: 0;
  }

  .menu-trigger.w--open {
    color: #fff;
    background-color: #c8c8c800;
  }

  .header-4 {
    width: 100%;
  }

  .body-text-57.text-neutral-03.hero-header-p {
    width: 80%;
  }

  .list-item-2 {
    width: 100%;
  }

  .mega-menu-wrapper {
    flex-flow: row;
    justify-content: space-between;
    width: 100%;
  }

  .nav-menu-two {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: #fff0;
    border-radius: 0;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }

  .slider-image-2 {
    width: 100%;
    height: 400px;
  }

  .section-content-wrapper-5 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .section-title-25 {
    font-size: 48px;
  }

  .blog-title-6 {
    font-size: 22px;
  }

  .blog-section-7.padding-bottom {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .blog-card-list-3 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}

@media screen and (max-width: 767px) {
  .navbar-container {
    padding-left: 0;
    padding-right: 0;
  }

  .logo {
    width: 150px;
    height: 80%;
  }

  .nav-link, .nav-link.w--current {
    padding-left: 20px;
  }

  .hero-image.position-left {
    object-position: 50% 70%;
  }

  .hero-content {
    left: 0;
  }

  .title-container {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .heading-1 {
    font-size: 7vw;
  }

  .wide-container {
    padding-left: 35px;
  }

  .above-title-text {
    font-size: 16px;
  }

  .paragraph.feature.career {
    text-align: left;
    max-width: 500px;
  }

  .paragraph.narrow.with-margin, .paragraph.wide-white.with-margin {
    margin-bottom: 10px;
  }

  .paragraph.job {
    width: 100%;
  }

  .paragraph.service.with-margin {
    margin-bottom: 10px;
  }

  .button-type-1 {
    margin-top: 30px;
  }

  .button-type-1.job {
    margin-top: 20px;
    margin-right: auto;
  }

  .border {
    border-width: 1px;
    flex: 0 auto;
    width: 3px;
    left: -14px;
  }

  .pattern-home-hero {
    display: none;
  }

  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section.round-bottom-left-corner {
    border-bottom-left-radius: 25px;
  }

  .section.round-top-left-corner {
    border-top-left-radius: 25px;
  }

  .section.round-top-left-corner.last-section {
    padding-bottom: 65px;
  }

  .section.both-round-corners {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 0;
  }

  .section.both-round-corners.normal-padding, .section.both-round-corners.services {
    border-bottom-left-radius: 25px;
    padding-bottom: 40px;
  }

  .section.last-section, .section.last-section.careers {
    padding-bottom: 65px;
  }

  .heading-2 {
    font-size: 5vw;
  }

  .button-type-2.services {
    margin-top: 15px;
  }

  .button-type-2.white:hover {
    color: #fff;
  }

  .homepage-about-image-wrapper {
    height: 40vh;
    left: -35px;
  }

  .hero-contact-image {
    width: 210%;
    max-width: 210%;
    transform: translate(25%);
  }

  .right-side-content {
    height: 560px;
  }

  .feature-title-number {
    font-size: 48px;
  }

  .heading-3 {
    font-size: 22px;
  }

  .heading-3.semibold.other-services {
    margin-top: 15px;
  }

  .heading-3.office {
    font-size: 4.25vw;
  }

  .blue-background {
    background-color: var(--blue);
    width: 100%;
    height: 100%;
  }

  .image-background {
    background-color: var(--blue);
    background-image: none;
    background-size: auto;
    width: 100%;
    height: 100%;
    position: absolute;
  }

  .image-background.careers {
    background-image: none;
    background-position: 0 0;
    background-size: auto;
  }

  .feature-row-content {
    margin-top: -15px;
  }

  .feature-row {
    margin-top: 40px;
    padding-bottom: 40px;
  }

  .number-container {
    margin-bottom: 10px;
  }

  .big-text {
    font-size: 14px;
  }

  .feature-content-wrapper {
    align-self: flex-start;
  }

  .horizontal-border {
    height: 3px;
  }

  .homepage-newest-blog-post-list {
    margin-top: 10px;
  }

  .homepage-other-blogs-grid {
    grid-row-gap: 40px;
    margin-top: 40px;
  }

  .hire-icon {
    margin-bottom: 10px;
  }

  .footer {
    padding: 25px 20px 30px;
  }

  .footer-top {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    height: 25px;
  }

  .huge-text {
    font-size: 36px;
  }

  .mouse-pointer-icon {
    width: 20px;
    height: 20px;
    bottom: -5px;
  }

  .footer-links-container {
    grid-column-gap: 25px;
  }

  .hero-type-1, .heroy-type-1-image-container {
    height: 60vh;
  }

  .main-title-container.type-1 {
    margin-top: 25vh;
  }

  .feature.career {
    text-align: left;
    align-items: flex-start;
  }

  .special-image-wrapper {
    height: 40vh;
    margin-top: 20px;
  }

  .special-description {
    width: 100%;
    padding-left: 35px;
    padding-right: 40px;
  }

  .special-description.type-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .personnel-image-grid {
    height: auto;
  }

  .employee-grid {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    height: auto;
  }

  .part-blue-background.rounded {
    border-bottom-left-radius: 25px;
  }

  .our-cavalry-image-container {
    height: 40vh;
    left: 40px;
  }

  .companies-grid {
    grid-row-gap: 0px;
  }

  .company-image {
    width: 80px;
    height: 80px;
  }

  .hero-type-2 {
    height: 60vh;
  }

  .form-container {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .form-block {
    margin-bottom: 0;
  }

  .form-blue-overlay-mobile {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    left: -35px;
  }

  .location-grid {
    grid-template-columns: 1fr 12%;
    padding-top: 60px;
  }

  .locations-list {
    margin-top: -10px;
  }

  .location-image-container {
    height: 40vh;
    left: -35px;
  }

  .feature-grid {
    grid-row-gap: 40px;
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr;
    margin-top: 10px;
  }

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

  .job-item {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .service-text-half.right, .service-features-container {
    margin-top: 10px;
  }

  .service-features-rich-text {
    padding-right: 40px;
  }

  .other-services-collection {
    margin-top: 10px;
  }

  .other-services-grid {
    grid-row-gap: 50px;
  }

  .narrow-container {
    margin-top: -20px;
    padding-left: 35px;
  }

  .stroke {
    width: 94%;
    left: 3%;
  }

  .typography {
    margin-top: 15px;
  }

  .colors-grid {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-top: 10px;
  }

  .buttons {
    margin-top: -30px;
  }

  .values-content-area {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .values-section-02 {
    padding: 60px 20px;
  }

  .values-slider-area {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .values-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .slider-2 {
    max-width: 100%;
  }

  .text-neutral-4 {
    letter-spacing: -1.5px;
    font-size: 40px;
  }

  .section-content-wrapper-4 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .feature-image-wrapper {
    width: 100%;
    padding: 30px 50px;
  }

  .feature-title-6.style-02 {
    font-size: 28px;
  }

  .heading-02-small-2, .heading-02-small-2.counter-number {
    letter-spacing: -1px;
    font-size: 36px;
  }

  .single-counter {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .feature-section.padding {
    padding: 60px 20px;
  }

  .feature-content-wrapper-5 {
    width: 100%;
  }

  .feature-content-wrapper-5._02 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    width: 100%;
  }

  .single-feature-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .slider-3 {
    max-width: 100%;
  }

  .contact-title-2 {
    font-size: 28px;
  }

  .feature-title-2 {
    letter-spacing: -1.5px;
    font-size: 36px;
  }

  .contact-area-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .contact-section-5.section-padding, .contact-section-5.section-padding.remove-padding-top {
    padding: 60px 20px;
  }

  .contact-top-area {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .heading-64.text-neutral-04 {
    letter-spacing: -1px;
    font-size: 40px;
  }

  .form-input.text-area {
    height: 180px;
  }

  .contact-form-wrapper {
    padding-top: 35px;
  }

  .body-text-93.text-neutral-03.contact-heading-p {
    width: 100%;
  }

  .footer-content-wrapper-2 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .footer-menu-list._02 {
    width: 23%;
  }

  .footer-menu-list._03 {
    width: 18%;
  }

  .footer-menu-list._01 {
    width: 20%;
  }

  .mail-number {
    justify-content: flex-start;
    width: 100%;
  }

  .footer-section-2 {
    padding: 60px 20px;
  }

  .footer-menu-list-wrapper {
    width: 100%;
  }

  .footer-content-top {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    justify-content: flex-start;
  }

  .footer-bottom {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .social-media-text {
    width: 100%;
  }

  .div-equally-coast {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .image-slider-content.body-text-57.text-neutral-03 {
    width: 60%;
  }

  .nav-dropdown-list-2.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list-2.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list-2.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .nav-dropdown-list-2.shadow-three.mobile-shadow-hide.w--open {
    flex-flow: row;
    align-items: flex-start;
    width: 100%;
  }

  .nav-dropdown-toggle-2 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-dropdown-toggle-2.w--open {
    margin-left: 0;
    margin-right: auto;
  }

  .nav-dropdown-2 {
    align-items: center;
    display: block;
  }

  .mega-menu-list {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 0;
  }

  .navbar-logo {
    width: 200px;
    padding-left: 0;
  }

  .nav-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-content-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .display-heading-4 {
    font-size: 48px;
  }

  .display-heading-4.text-neutral-04 {
    font-size: 45px;
  }

  .hero-section.section-padding.home.remove-top-padding {
    padding: 40px 20px 60px;
  }

  .menu-trigger {
    width: 30px;
    margin-right: 3px;
  }

  .body-text-57.text-neutral-03.hero-header-p {
    width: 100%;
  }

  .navbar-container-wapper {
    max-width: 100%;
  }

  .nav-button {
    margin-top: 10px;
  }

  .mega-menu-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }

  .nav-menu-two {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 0;
  }

  .slider-image-2 {
    width: 100%;
    height: 300px;
  }

  .section-content-wrapper-5 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .section-title-25 {
    letter-spacing: -1.5px;
    font-size: 40px;
  }

  .blog-section-7.padding-bottom {
    padding: 60px 20px;
  }

  .blog-card-list-3 {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  .nav-menu {
    background-color: var(--orange);
    color: #fff;
  }

  .logo-container.w--current {
    margin-left: 50px;
    padding-left: 0;
  }

  .logo {
    width: 200px;
    height: 60%;
    padding-left: 0;
  }

  .nav-link, .nav-link.contact {
    color: var(--blue);
  }

  .heading-1 {
    font-size: 30px;
  }

  .wide-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .wide-container.horizontal-to-vertical {
    padding-bottom: 0;
  }

  .paragraph.feature.career {
    max-width: 340px;
  }

  .paragraph.narrow.with-margin {
    margin-bottom: 10px;
  }

  .paragraph.footer-bold {
    margin-bottom: 15px;
  }

  .paragraph.wide-white.with-margin {
    margin-bottom: 10px;
  }

  .paragraph.black.with-margin {
    margin-bottom: 0;
  }

  .paragraph.contact {
    margin-bottom: 2px;
  }

  .button-type-1 {
    padding: 10px 24px;
  }

  .section {
    padding-bottom: 0;
  }

  .heading-2 {
    font-size: 28px;
  }

  .heading-2.white {
    text-align: center;
    font-size: 30px;
  }

  .button-type-2.white:hover {
    color: #fff;
  }

  .button-circle {
    background-color: var(--light-grey);
  }

  .homepage-about-image-wrapper {
    margin-top: 0;
    left: -20px;
  }

  .right-side-content {
    justify-content: center;
    height: auto;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .company-feature {
    padding-left: 15px;
  }

  .heading-3.office {
    font-size: 26px;
  }

  .image {
    width: 100%;
    height: 60%;
    top: 15px;
  }

  .horizontal-border {
    display: none;
    overflow: visible;
  }

  .text-span-2 {
    color: var(--orange);
    white-space: normal;
    text-decoration: none;
  }

  .small-text.office {
    font-size: 14px;
  }

  .footer {
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-links-container {
    grid-row-gap: 30px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    margin-top: 35px;
    margin-bottom: 60px;
  }

  .feature {
    margin-bottom: 30px;
  }

  .feature-image {
    width: 75px;
    height: 75px;
    margin-bottom: 10px;
  }

  .special-description {
    padding-left: 20px;
    padding-right: 20px;
  }

  .our-cavalry-image-container {
    left: 20px;
  }

  .mask {
    min-width: 100px;
  }

  .top-arrow {
    top: -8vh;
  }

  .arrow-up {
    width: 20px;
    height: 20px;
  }

  .bottom-arrow {
    top: -8vh;
  }

  .arrow-down {
    width: 20px;
    height: 20px;
  }

  .testimonial-slide {
    min-width: 100px;
  }

  .companies-grid {
    grid-column-gap: 20px;
  }

  .contact-information {
    margin-top: 20px;
  }

  .contact-information.office {
    margin-top: 30px;
  }

  .contact-line {
    flex-direction: column;
    margin-top: 15px;
  }

  .form-blue-overlay-mobile {
    left: -20px;
  }

  .location-grid {
    grid-template-columns: 1fr 20%;
  }

  .locations-list {
    margin-top: -50px;
  }

  .location-image-container {
    left: -20px;
  }

  .service-features-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-features-rich-text {
    padding-right: 0;
  }

  .narrow-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .license-image-container {
    width: 65px;
    height: 65px;
    margin-right: 10px;
  }

  .menu-icon {
    width: 30px;
    height: 30px;
  }

  .menu-button {
    width: 50px;
    height: 55px;
  }

  .values-content-area {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .values-slider-area {
    padding: 10px;
  }

  .body-text-20 {
    font-size: 18px;
  }

  .offer-item {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .value-subtitle {
    font-size: 15px;
  }

  .text-neutral-4 {
    font-size: 34px;
  }

  .offer-item-text {
    font-size: 16px;
  }

  .section-content-wrapper-4 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .feature-image-wrapper {
    border-radius: 12px;
    padding: 0;
  }

  .feature-title-6.style-02 {
    font-size: 26px;
  }

  .heading-02-small-2, .heading-02-small-2.counter-number {
    font-size: 32px;
  }

  .feature-image-8 {
    border-radius: 8px;
    width: 100%;
  }

  .feature-counter-wrapper {
    grid-template-columns: 1fr;
  }

  .feature-subtitle-5.style-02 {
    width: 100%;
  }

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

  .single-counter.style-02 {
    text-align: left;
    align-items: flex-start;
  }

  .top-feature-content {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .feature-content-wrapper-5 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .feature-content-wrapper-5._02 {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
  }

  .single-feature-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .code-embed {
    height: 450px;
    padding-top: 0;
  }

  .contact-title-2 {
    font-size: 26px;
  }

  .feature-title-2 {
    font-size: 32px;
  }

  .contact-bottom-content {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
  }

  .contact-area-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .contact-section-5.section-padding {
    border-style: solid;
    border-width: 1px 0 0;
    border-color: var(--light-grey);
  }

  .single-contact-box {
    padding-left: 20px;
    padding-right: 20px;
  }

  .name-email {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
  }

  .heading-64 {
    font-size: 40px;
  }

  .heading-64.text-neutral-04 {
    font-size: 25px;
  }

  .form-input.text-area {
    height: 120px;
  }

  .body-text-93.text-neutral-03.contact-heading-p {
    font-size: 20px;
  }

  .footer-content-wrapper-2 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .footer-menu-list._02 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    width: 100%;
  }

  .footer-menu-list._03, .footer-menu-list._01 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    align-items: center;
    width: 100%;
  }

  .project-logo.w--current {
    width: 90%;
  }

  .body-text-14-px-regular-2 {
    font-size: 18px;
    font-weight: 600;
  }

  .mail-number {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    align-items: center;
  }

  .footer-section-2 {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .footer-menu-list-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: wrap;
    justify-content: center;
  }

  .social-media-text {
    flex-flow: column;
    align-items: flex-start;
  }

  .body-text-16-px-medium-2.menu-text-opacity {
    text-align: center;
    width: 100%;
  }

  .menu-list {
    text-align: center;
    align-items: center;
    width: 100%;
  }

  .div-block-2 {
    padding: 0;
  }

  .div-block-4 {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    display: flex;
  }

  .div-before-type {
    min-width: 100%;
    max-width: 100%;
  }

  .div-equally-coast {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .div-serious-accurate {
    display: flex;
  }

  .div-tool-theory, .div-school-amount {
    flex-direction: column;
    display: none;
  }

  .image-slider-content-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .image-slider-content.body-text-57.text-neutral-03 {
    width: 100%;
  }

  .single-nav {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .nav-dropdown-list-2.shadow-three.mobile-shadow-hide.w--open {
    flex-flow: column;
  }

  .nav-dropdown-2 {
    padding-bottom: 0;
  }

  .mega-menu-list {
    flex-direction: column;
  }

  .menu-icon-2 {
    width: 30px;
  }

  .navbar-logo {
    width: 150px;
  }

  .display-heading-4 {
    font-size: 42px;
  }

  .display-heading-4.text-neutral-04 {
    font-size: 40px;
  }

  .hero-section.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-section.section-padding.home {
    padding-bottom: 90px;
  }

  .menu-trigger {
    margin-right: 0;
  }

  .body-text-57.text-neutral-03 {
    text-align: left;
  }

  .button-wrapper {
    flex-flow: column;
  }

  .mega-menu-wrapper {
    width: 100%;
  }

  .image-slider-arrow {
    width: 42px;
    height: 42px;
    bottom: -60px;
  }

  .image-slider-arrow.left-arrow {
    bottom: -60px;
    right: 60px;
  }

  .nav-menu-two {
    flex-direction: column;
  }

  .slider-image-2 {
    height: 160px;
  }

  .blog-title-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .section-content-wrapper-5 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .blog-thumbnail-wrapper-2 {
    width: 100%;
  }

  .section-title-25 {
    font-size: 36px;
  }
}

#w-node-d0b5ef37-78d5-b43f-5eaa-7ebadeb3b2ed-deb3b2eb, #w-node-d0b5ef37-78d5-b43f-5eaa-7ebadeb3b2f5-deb3b2eb {
  align-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-d0b5ef37-78d5-b43f-5eaa-7ebadeb3b2ed-deb3b2eb {
    grid-area: 1 / 2 / 2 / 3;
    align-self: start;
  }

  #w-node-d0b5ef37-78d5-b43f-5eaa-7ebadeb3b2f5-deb3b2eb {
    grid-area: 1 / 1 / 2 / 2;
    align-self: center;
  }

  #w-node-_9204e9d5-aef6-9975-cf2d-e4c427de300a-deb3b2eb {
    grid-area: 2 / 1 / 3 / 3;
  }
}


