/* Design Laptop navbar  */
nav.myNavbar {
  width: 100%;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 3rem;
  background-color: #1b1b1b;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
@media screen and (max-width: 1024px) {
  nav.myNavbar {
    padding-inline: 1.3rem;
  }
}
nav.myNavbar a.logo {
  text-decoration: none;
  display: inline-block;
  width: 120px;
}
nav.myNavbar a.logo img {
  width: 100%;
  height: 100%;
}
nav.myNavbar .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 1024px) {
  nav.myNavbar .links {
    display: none;
  }
}
nav.myNavbar .links ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
nav.myNavbar .links ul a {
  text-decoration: none;
  font-size: 0.9rem;
  color: #ddd;
  position: relative;
  display: inline-block;
  overflow: hidden;
}
nav.myNavbar .links ul a::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: #E68815;
  font-weight: 400;
  -webkit-transition: 500ms all cubic-bezier(1, 0, 0, 1);
  transition: 500ms all cubic-bezier(1, 0, 0, 1);
}
nav.myNavbar .links ul a:hover::before {
  width: 100%;
}
nav.myNavbar .links .auth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
nav.myNavbar .links .auth a {
  text-decoration: none;
  font-size: 0.9rem;
  background-color: #E68815;
  color: #ddd;
  padding: 10px 40px;
  border-radius: 7px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
nav.myNavbar .links .auth a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #1b1b1b;
  z-index: -1;
  -webkit-transition: 500ms all cubic-bezier(1, 0, 0, 1);
  transition: 500ms all cubic-bezier(1, 0, 0, 1);
}
nav.myNavbar .links .auth a:hover::before {
  width: 100%;
}
nav.myNavbar .links .oursub {
  position: relative;
}
nav.myNavbar .links .oursub li {
  text-decoration: none;
  font-size: 0.9rem;
  color: #ddd;
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}
nav.myNavbar .links .oursub li::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: #E68815;
  font-weight: 400;
  -webkit-transition: 500ms all cubic-bezier(1, 0, 0, 1);
  transition: 500ms all cubic-bezier(1, 0, 0, 1);
}
nav.myNavbar .links .oursub li:hover::before {
  width: 100%;
}
nav.myNavbar .links .oursub .dropdown {
  width: 25vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #1b1b1b;
  position: absolute;
  top: 3rem;
  left: -3rem;
  padding: 1rem 2rem 2rem 3rem;
  gap: 1rem;
  -webkit-transform: translateY(-200%);
          transform: translateY(-200%);
  -webkit-transition: 1s;
  transition: 1s;
  z-index: 2;
}
nav.myNavbar .links .oursub .show {
  -webkit-transform: translateY(5%);
          transform: translateY(5%);
}
nav.myNavbar .links .oursub .rotate {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
nav.myNavbar #hamburger {
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 1024px) {
  nav.myNavbar #hamburger {
    display: inline-block;
  }
}

nav.myMobile-navbar {
  width: 100%;
  height: 100vh;
  background-color: #1b1b1b;
  position: fixed;
  top: 0;
  left: 100vw;
  z-index: 102;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 2rem 3rem;
  display: none;
  -webkit-transition: all 500ms;
  transition: all 500ms;
}
@media screen and (max-width: 1024px) {
  nav.myMobile-navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
nav.myMobile-navbar header {
  width: 100%;
  padding-top: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
nav.myMobile-navbar header ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
nav.myMobile-navbar header ul li {
  color: #ddd;
  font-size: 1rem;
}
nav.myMobile-navbar header ul .mobile-dropdown {
  width: 100%;
  height: 140px;
  padding: 1.2rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: none;
  -webkit-transition: 1s;
  transition: 1s;
}
nav.myMobile-navbar header ul .mobile-dropdown p {
  margin-bottom: 0.7rem;
}
nav.myMobile-navbar header ul .mobile-show {
  display: block !important;
  -webkit-transition: 1s;
  transition: 1s;
}
nav.myMobile-navbar header ul a {
  text-decoration: none;
  color: #ddd;
  position: relative;
  font-size: 1rem;
  display: inline-block;
  overflow: hidden;
}
nav.myMobile-navbar header ul a::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: #E68815;
  font-weight: 400;
  -webkit-transition: 500ms all cubic-bezier(1, 0, 0, 1);
  transition: 500ms all cubic-bezier(1, 0, 0, 1);
}
nav.myMobile-navbar header ul a:hover::before {
  width: 100%;
}
nav.myMobile-navbar header .auth a {
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
  background-color: #E68815;
  color: #ddd;
  padding: 10px 40px;
  border-radius: 7px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
nav.myMobile-navbar header .auth a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #1b1b1b;
  z-index: -1;
  -webkit-transition: 500ms all cubic-bezier(1, 0, 0, 1);
  transition: 500ms all cubic-bezier(1, 0, 0, 1);
}
nav.myMobile-navbar header .auth a:hover::before {
  width: 100%;
}
nav.myMobile-navbar .socials {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  padding-bottom: 1.5rem;
}
nav.myMobile-navbar .socials a {
  color: #ddd;
  text-decoration: none;
  font-size: 1.5rem;
}
nav.myMobile-navbar .socials a:hover {
  color: #E68815;
}

footer.footer {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #1b1b1b;
}
footer.footer section.top {
  width: 100%;
  height: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4rem 1fr 4rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  padding: 7rem 4rem 7rem;
}
@media screen and (max-width: 767px) {
  footer.footer section.top {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    padding: 6rem 2rem 4rem;
  }
}
@media screen and (max-width: 1024px) and (min-width: 767px) {
  footer.footer section.top {
    padding: 6rem 2rem 5rem;
    gap: 2.5rem;
  }
}
footer.footer section.top main.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5rem;
}
footer.footer section.top main.info .footerLogo {
  text-decoration: none;
  display: inline-block;
  width: 200px;
}
@media screen and (max-width: 1024px) and (min-width: 767px) {
  footer.footer section.top main.info .footerLogo {
    width: 150px;
  }
}
footer.footer section.top main.info .footerLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer.footer section.top main.info p {
  color: #ddd;
  text-align: justify;
  font-size: 0.9rem;
}
footer.footer section.top aside.links {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/span 2;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  footer.footer section.top aside.links {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/span 1;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 0;
    gap: 2rem;
  }
}
footer.footer section.top aside.links .col {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  footer.footer section.top aside.links .col {
    gap: 0.5rem;
  }
}
footer.footer section.top aside.links .col h3 {
  color: #f7f7f7;
  font-weight: 500;
  font-size: 1.1rem;
}
footer.footer section.top aside.links .col ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  list-style: none;
}
footer.footer section.top aside.links .col ul li {
  color: #f9f1e8;
  font-size: 0.8rem;
}
footer.footer section.top aside.links .col ul li a {
  text-decoration: none;
  color: #f9f1e8;
  position: relative;
  display: inline-block;
}
footer.footer section.top aside.links .col ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: #E68815;
  -webkit-transition: 200ms all cubic-bezier(1, 0, 0, 1);
  transition: 200ms all cubic-bezier(1, 0, 0, 1);
}
footer.footer section.top aside.links .col ul li a:hover::before {
  width: 100%;
}
footer.footer section.bottom {
  width: 100%;
  border-top: 1px solid #ddd;
  padding-block: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  footer.footer section.bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.5rem;
  }
}
footer.footer section.bottom p {
  color: #E68815;
  font-size: 0.75rem;
  margin-left: 4rem;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 767px) {
  footer.footer section.bottom p {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-left: 0;
  }
}
footer.footer section.bottom .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-right: 4rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 767px) {
  footer.footer section.bottom .socials {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-right: 0;
  }
}
footer.footer section.bottom .socials a {
  color: #ddd;
  text-decoration: none;
  font-size: 1.1rem;
}
footer.footer section.bottom .socials a:hover {
  color: #E68815;
}

section.career {
  width: 100%;
  min-height: 500px;
  margin-top: 90px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-inline: 3rem;
  padding-block: 8rem 3rem;
  overflow-x: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  section.career {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    padding-block: 5rem 2rem;
    padding-inline: 1rem;
    gap: 5rem;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  section.career {
    padding-block: 5rem 3rem;
    padding-inline: 2rem;
  }
}
section.career .texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 767px) {
  section.career .texts {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
section.career .texts h1 {
  color: #f9f1e8;
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  section.career .texts h1 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  section.career .texts h1 {
    font-size: 1.8rem;
  }
}
section.career .texts h1 span {
  color: #E68815;
}
section.career .texts p {
  color: #f9f1e8;
  text-align: justify;
  margin-top: 1rem;
  line-height: 25px;
  font-size: 0.9rem;
}
@media screen and (max-width: 767px) {
  section.career .texts p {
    font-size: 0.95rem;
    margin-top: 1rem;
    line-height: 27px;
    text-align:left;
  }
}
section.career .texts a {
  background-color: #E68815;
  color: #f9f1e8;
  padding: 10px 40px;
  border-radius: 7px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  width: 30%;
  text-transform: capitalize;
}
section.career .texts a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #1b1b1b;
  z-index: -1;
  -webkit-transition: 500ms all cubic-bezier(1, 0, 0, 1);
  transition: 500ms all cubic-bezier(1, 0, 0, 1);
}
section.career .texts a:hover::before {
  width: 100%;
}
@media screen and (max-width: 767px) {
  section.career .texts a {
    width: 50%;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  section.career .texts a {
    width: 50%;
  }
}
section.career .texts .circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: #1b1b1b;
  position: relative;
  left: -30%;
  bottom: -2rem;
  display: -ms-grid;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px) {
  section.career .texts .circle {
    width: 180px;
    height: 180px;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  section.career .texts .circle {
    width: 180px;
    height: 180px;
    display: none;
  }
}
section.career .texts .circle img {
  width: 100%;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
section.career .bg {
  height: 100%;
  width: 70%;
  background-color: #232223;
  position: absolute;
  left: 0;
  z-index: -1;
  border-radius: 0 0 400px 0;
}
@media screen and (max-width: 767px) {
  section.career .bg {
    width: 100%;
    height: 70%;
    bottom: 0;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  section.career .bg {
    width: 75%;
    border-radius: 0 0 250px 0;
  }
}
section.career .Image {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  position: relative;
  padding: 4rem 0 0 0;
}
@media screen and (max-width: 767px) {
  section.career .Image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 2rem 0 0 0;
  }
}
section.career .Image .bg_dot {
  position: absolute;
  top: 0;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  right: 5rem;
}
@media screen and (max-width: 767px) {
  section.career .Image .bg_dot {
    top: 0;
    left: 0;
  }
}
section.career .Image .imgWrapper {
  width: 80%;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  section.career .Image .imgWrapper {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  section.career .Image .imgWrapper {
    width: 90%;
    height: 300px;
  }
}
section.career .Image .imgWrapper .careerImg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
}
section.career .Image .phone_image {
  width: 50%;
  position: absolute;
  bottom: 0;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  section.career .Image .phone_image {
    bottom: -2.5rem;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  section.career .Image .phone_image {
    width: 40%;
    top: 53%;
  }
}

section.careerJoinUS {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 4rem;
  padding-block: 5rem 3rem;
}
@media screen and (max-width: 767px) {
  section.careerJoinUS {
    padding-inline: 1.5rem;
    padding-block: 3rem 3rem;
    gap: 4rem;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  section.careerJoinUS {
    padding-block: 5rem 3rem;
    padding-inline: 2rem;
  }
}
section.careerJoinUS main {
  width: 100%;
  min-height: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  section.careerJoinUS main {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
  }
}
section.careerJoinUS main .texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
section.careerJoinUS main .texts h1 {
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 8px;
  font-size: 1.2rem;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-image: -webkit-gradient(linear, left top, right top, from(#E68815), to(#232223));
  background-image: linear-gradient(to right, #E68815, #232223);
  background-clip: text;
}
@media screen and (max-width: 767px) {
  section.careerJoinUS main .texts h1 {
    margin-bottom: 1rem;
  }
}
section.careerJoinUS main .texts .joinDetails {
  width: 100%;
  height: 30%;
  background-color: #232223;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 20px;
  padding: 0.5rem;
}
section.careerJoinUS main .texts .joinDetails:hover {
  cursor: pointer;
  background-color: #E68815;
}
section.careerJoinUS main .texts .joinDetails .ImageHolder {
  width: 15%;
  display: -ms-grid;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px) {
  section.careerJoinUS main .texts .joinDetails .ImageHolder {
    width: 17%;
    padding: 1rem;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  section.careerJoinUS main .texts .joinDetails .ImageHolder {
    width: 17%;
    padding: 1rem;
  }
}
section.careerJoinUS main .texts .joinDetails .ImageHolder .ImageWrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #f9f1e8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  section.careerJoinUS main .texts .joinDetails .ImageHolder .ImageWrapper {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  section.careerJoinUS main .texts .joinDetails .ImageHolder .ImageWrapper {
    width: 50px;
    height: 50px;
  }
}
section.careerJoinUS main .texts .joinDetails .ImageHolder .ImageWrapper img {
  width: 50%;
}
section.careerJoinUS main .texts .joinDetails .textContent {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1rem;
  gap: 0.4rem;
}
section.careerJoinUS main .texts .joinDetails .textContent h2 {
  color: #f9f1e8;
  font-size: 1.2rem;
}
section.careerJoinUS main .texts .joinDetails .textContent p {
  color: #ccc;
  font-size: 0.8rem;
  text-align:left;
}
section.careerJoinUS main .Image {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
section.careerJoinUS main .Image .bg_dot2 {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  position: absolute;
  top: 0;
  right: 2.2rem;
}
@media screen and (max-width: 767px) {
  section.careerJoinUS main .Image .bg_dot2 {
    width: 30%;
    top: -0.5rem;
    right: -0.5rem;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  section.careerJoinUS main .Image .bg_dot2 {
    width: 50%;
    right: -0.5rem;
    top: 25%;
  }
}
section.careerJoinUS main .Image .imgWrapper {
  width: 80%;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-column-align: center;
      justify-self: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  section.careerJoinUS main .Image .imgWrapper {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  section.careerJoinUS main .Image .imgWrapper {
    width: 95%;
    height: 300px;
  }
}
section.careerJoinUS main .Image .imgWrapper .subImage {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
}
section.careerJoinUS main .Image .bg_dot3 {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  position: absolute;
  bottom: 0;
  left: 2.2rem;
}
@media screen and (max-width: 767px) {
  section.careerJoinUS main .Image .bg_dot3 {
    width: 30%;
    bottom: -0.5rem;
    left: -0.5rem;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  section.careerJoinUS main .Image .bg_dot3 {
    width: 50%;
    left: -0.5rem;
    bottom: 24%;
  }
}

section.perksBenefits {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6rem;
  padding-inline: 4rem;
  padding-block: 6rem 0;
}
@media screen and (max-width: 767px) {
  section.perksBenefits {
    padding-inline: 1rem;
    padding-block: 3rem 3rem;
    gap: 3rem;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  section.perksBenefits {
    padding-block: 2rem 3rem;
    gap: 3rem;
    padding-inline: 2rem;
  }
}
section.perksBenefits h1 {
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 10px;
  color: #232223;
}
@media screen and (max-width: 767px) {
  section.perksBenefits h1 {
    font-size: 1.2rem;
    letter-spacing: 7px;
  }
}
section.perksBenefits main {
  width: 100%;
  min-height: 500px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 6rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 6rem;
}
@media screen and (max-width: 767px) {
  section.perksBenefits main {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  section.perksBenefits main {
    min-height: 350px;
  }
}
section.perksBenefits main .benefitCard {
  width: 100%;
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  border-top: 1px solid #232223;
}
@media screen and (max-width: 767px) {
  section.perksBenefits main .benefitCard {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-inline: 1rem;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  section.perksBenefits main .benefitCard {
    height: 220px;
  }
}
section.perksBenefits main .benefitCard .textContent {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
section.perksBenefits main .benefitCard .textContent h2 {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  section.perksBenefits main .benefitCard .textContent h2 {
    font-size: 1.1rem;
  }
}
section.perksBenefits main .benefitCard .textContent p {
  font-size: 0.9rem;
  text-align:left;
}
@media screen and (max-width: 767px) {
  section.perksBenefits main .benefitCard .textContent p {
    max-width: 95%;
  }
}
section.perksBenefits main .benefitCard .ImageHolder {
  width: 20%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 2rem;
}
section.perksBenefits main .benefitCard .ImageHolder .ImageWrapper {
  width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.perksBenefits main .benefitCard .ImageHolder .ImageWrapper img {
  -o-object-fit: cover;
     object-fit: cover;
}

.openPositions {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 4rem;
  gap: 3rem;
  padding-block: 0 6rem;
}
@media screen and (max-width: 767px) {
  .openPositions {
    padding-inline: 1rem;
    gap: 1rem;
    padding-top: 3rem;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .openPositions {
    padding-inline: 2rem;
    padding-top: 3rem;
  }
}
.openPositions h1 {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-image: -webkit-gradient(linear, left top, right top, from(#E68815), to(#1b1b1b));
  background-image: linear-gradient(to right, #E68815, #1b1b1b);
  background-clip: text;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 50px;
  letter-spacing: 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .openPositions h1 {
    text-align: center;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .openPositions h1 {
    font-size: 1.5rem;
  }
}
.openPositions .hidden {
  display: none !important;
}
.openPositions .vacancy {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-block: 1rem 6rem;
  padding-block: 7rem;
  gap: 0.5rem;
  border-radius: 20px;
  background-image: url(../img/career_bg_job.jpg);
  background-size: cover;
  background-position: top;
  position: relative;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.openPositions .vacancy h2 {
  font-size: 1.5rem;
  color: #f9f1e8;
  z-index: 2;
}
.openPositions .vacancy p {
  color: #E68815;
  font-size: 1.2rem;
  text-transform: capitalize;
  text-align: center;
  width: 30%;
  z-index: 2;
 
}
@media screen and (max-width: 767px) {
  .openPositions .vacancy p {
    width: 60%;
     text-align:left;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .openPositions .vacancy p {
    width: 50%;
     text-align:left;
  }
}
.openPositions .main {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.openPositions .main .role1, .openPositions .main .role4, .openPositions .main .role3, .openPositions .main .role2 {
  width: 100%;
  height: 250px;
  background-color: #232223;
  padding: 2rem;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .openPositions .main .role1, .openPositions .main .role4, .openPositions .main .role3, .openPositions .main .role2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    gap: 5rem;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .openPositions .main .role1, .openPositions .main .role4, .openPositions .main .role3, .openPositions .main .role2 {
    height: auto;
  }
}
.openPositions .main .role1 .roleDetails, .openPositions .main .role4 .roleDetails, .openPositions .main .role3 .roleDetails, .openPositions .main .role2 .roleDetails {
  width: 75%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .openPositions .main .role1 .roleDetails, .openPositions .main .role4 .roleDetails, .openPositions .main .role3 .roleDetails, .openPositions .main .role2 .roleDetails {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.openPositions .main .role1 .roleDetails h2, .openPositions .main .role4 .roleDetails h2, .openPositions .main .role3 .roleDetails h2, .openPositions .main .role2 .roleDetails h2 {
  font-size: 1.2rem;
  color: #E68815;
}
@media screen and (max-width: 767px) {
  .openPositions .main .role1 .roleDetails h2, .openPositions .main .role4 .roleDetails h2, .openPositions .main .role3 .roleDetails h2, .openPositions .main .role2 .roleDetails h2 {
    width: 100%;
  }
}
.openPositions .main .role1 .roleDetails p, .openPositions .main .role4 .roleDetails p, .openPositions .main .role3 .roleDetails p, .openPositions .main .role2 .roleDetails p {
  color: #f9f1e8;
  max-width: 95%;
}
@media screen and (max-width: 767px) {
  .openPositions .main .role1 .roleDetails p, .openPositions .main .role4 .roleDetails p, .openPositions .main .role3 .roleDetails p, .openPositions .main .role2 .roleDetails p {
     text-align:left;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .openPositions .main .role1 .roleDetails p, .openPositions .main .role4 .roleDetails p, .openPositions .main .role3 .roleDetails p, .openPositions .main .role2 .roleDetails p {
    width: 92%;
  }
}
.openPositions .main .role1 .roleDetails i, .openPositions .main .role4 .roleDetails i, .openPositions .main .role3 .roleDetails i, .openPositions .main .role2 .roleDetails i {
  font-weight: 700;
  color: #ccc;
}
.openPositions .main .role1 .applicaationDetails, .openPositions .main .role4 .applicaationDetails, .openPositions .main .role3 .applicaationDetails, .openPositions .main .role2 .applicaationDetails {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .openPositions .main .role1 .applicaationDetails, .openPositions .main .role4 .applicaationDetails, .openPositions .main .role3 .applicaationDetails, .openPositions .main .role2 .applicaationDetails {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.openPositions .main .role1 .applicaationDetails a, .openPositions .main .role4 .applicaationDetails a, .openPositions .main .role3 .applicaationDetails a, .openPositions .main .role2 .applicaationDetails a {
  text-decoration: none;
  background-color: #E68815;
  color: #f9f1e8;
  padding: 10px 40px;
  border-radius: 7px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.openPositions .main .role1 .applicaationDetails a::before, .openPositions .main .role4 .applicaationDetails a::before, .openPositions .main .role3 .applicaationDetails a::before, .openPositions .main .role2 .applicaationDetails a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #1b1b1b;
  z-index: -1;
  -webkit-transition: 500ms all cubic-bezier(1, 0, 0, 1);
  transition: 500ms all cubic-bezier(1, 0, 0, 1);
}
.openPositions .main .role1 .applicaationDetails a:hover::before, .openPositions .main .role4 .applicaationDetails a:hover::before, .openPositions .main .role3 .applicaationDetails a:hover::before, .openPositions .main .role2 .applicaationDetails a:hover::before {
  width: 100%;
}
.openPositions .main .role1 .applicaationDetails i, .openPositions .main .role4 .applicaationDetails i, .openPositions .main .role3 .applicaationDetails i, .openPositions .main .role2 .applicaationDetails i {
  font-size: 0.9rem;
  color: #ccc;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .openPositions .main .role1 .applicaationDetails i, .openPositions .main .role4 .applicaationDetails i, .openPositions .main .role3 .applicaationDetails i, .openPositions .main .role2 .applicaationDetails i {
    text-align: center;
    font-size: 0.7rem;
  }
}