@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
nav.navbar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: transparent;
  width: 100%;
  transition: all 250ms ease-in-out;
}
nav.navbar .header-btn.show-on-desktop {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 992px) {
  nav.navbar .header-btn.show-on-desktop {
    display: none;
  }
}
nav.navbar ul {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 0;
}
nav.navbar ul li a {
  color: #fff;
}
nav.navbar ul li a.active {
  color: #e97f02;
}

@media (max-width: 992px) {
  .brand_logo {
    max-width: 200px;
  }
}

#menuOption {
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
  padding-top: 6px;
  padding-bottom: 40px;
  background-color: #212529;
  opacity: 0;
  visibility: hidden;
  transition: all 250ms ease-in-out;
}
#menuOption.active {
  opacity: 1;
  visibility: visible;
}
#menuOption .logo_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#menuOption ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-block: 16px;
}
#menuOption ul li a {
  color: #fff;
}
#menuOption ul li a.active {
  color: #e97f02;
}

img.brand_logo {
  width: 50%;
}

footer {
  color: #fff;
  padding-top: 130px;
  padding-bottom: 70px;
  background-color: #212529;
  position: relative;
}
footer img.brand_logo {
  width: 50%;
}
@media (max-width: 992px) {
  footer {
    padding-block: 60px;
  }
}
footer .footer_shape_left,
footer .footer_shape_right {
  position: absolute;
}
@media (max-width: 768px) {
  footer .footer_shape_left,
  footer .footer_shape_right {
    display: none;
  }
}
footer .footer_shape_left {
  left: 0;
  bottom: 0;
}
footer .footer_shape_right {
  right: 0;
  top: 0;
  height: 100%;
}
@media (max-width: 992px) {
  footer .row {
    gap: 20px;
  }
}
footer .row .col-lg-4:nth-child(1) img {
  margin-bottom: 16px;
}
footer .row .col-lg-4:last-child h5, footer .row .col-lg-4:last-child .col-lg-4:nth-child(1) p, footer .row .col-lg-4:nth-child(1) .col-lg-4:last-child p {
  border-bottom: 2px solid #e97f02;
  margin-bottom: 13px;
  display: inline-block;
}
footer .row .col-lg-4:last-child .contact_us {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
footer .row .col-lg-4:last-child .contact_us p {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .row .col-lg-4:last-child .contact_us p a {
  color: #fff;
}
footer .row .col-lg-3 h5, footer .row .col-lg-3 .col-lg-4:nth-child(1) p, footer .row .col-lg-4:nth-child(1) .col-lg-3 p {
  border-bottom: 2px solid #e97f02;
  margin-bottom: 13px;
  display: inline-block;
}
footer .row .col-lg-3 .quick_links {
  display: grid;
  gap: 10px;
}
footer .row .col-lg-3 .quick_links a {
  text-transform: capitalize;
  color: #fff;
}

.copyright {
  background-color: #2a2e32;
  padding-block: 15.5px;
}
.copyright p {
  color: #fff;
}
.copyright p span {
  color: #e97f02;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body footer .row .col-lg-4:nth-child(1) p,
footer .row .col-lg-4:nth-child(1) body p,
body h6,
body p,
body a {
  font-family: "Plus Jakarta Sans", sans-serif;
}
body h1 {
  font-size: 50px;
}
@media (max-width: 992px) {
  body h1 {
    font-size: 36px;
  }
}
body h2 {
  font-size: 28px;
}
@media (max-width: 992px) {
  body h2 {
    font-size: 22px;
  }
}
body h3 {
  font-size: 24px;
}
@media (max-width: 992px) {
  body h3 {
    font-size: 18px;
  }
}
body h4 {
  font-size: 20px;
}
@media (max-width: 992px) {
  body h4 {
    font-size: 16px;
  }
}
body h5, body footer .row .col-lg-4:nth-child(1) p, footer .row .col-lg-4:nth-child(1) body p {
  font-size: 18px;
}
@media (max-width: 992px) {
  body h5, body footer .row .col-lg-4:nth-child(1) p, footer .row .col-lg-4:nth-child(1) body p {
    font-size: 14px;
  }
}
body p {
  font-size: 16px;
  margin: 0;
}
@media (max-width: 992px) {
  body p {
    font-size: 14px;
  }
}
body a {
  font-size: 16px;
  text-decoration: none;
}
@media (max-width: 992px) {
  body a {
    font-size: 14px;
  }
}

ul li {
  list-style: none;
}

.bold, .hero_container .hero_content h5, .hero_container .hero_content footer .row .col-lg-4:nth-child(1) p, footer .row .col-lg-4:nth-child(1) .hero_container .hero_content p, .hero_container h1 {
  font-weight: 700;
}

.medium {
  font-weight: 500;
}

.semibold, nav.navbar ul li a, #menuOption ul li a {
  font-weight: 600;
}

.main-color {
  color: #e97f02;
}

.gradient-color {
  background: linear-gradient(to right, #e97f02 0%, #834701 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-block: 14px;
}
@media (max-width: 992px) {
  .gradient-color {
    text-align: center;
  }
}

.primary_button {
  padding: 15px 78px;
  color: #fff;
  background-color: #e97f02;
  border: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  border-radius: 6px;
  display: block;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px;
}

.hero_container {
  background-image: url("../../img/hero_img.png");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 770px;
  position: relative;
  top: -132px;
  display: flex;
  align-items: center;
  margin-bottom: -132px;
  overflow: hidden;
}
@media (max-width: 576px) {
  .hero_container {
    top: -80px;
  }
}
.hero_container .col-lg-8 {
  padding-top: 60px;
}
.hero_container h1 {
  color: #fff;
}
.hero_container .hero_content {
  margin-top: 30px;
}
.hero_container .hero_content h5, .hero_container .hero_content footer .row .col-lg-4:nth-child(1) p, footer .row .col-lg-4:nth-child(1) .hero_container .hero_content p {
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 11px;
}
.hero_container .hero_content p {
  font-size: 18px;
  color: #fff;
}
.hero_container .rectangle_container {
  position: absolute;
  bottom: -7%;
  min-height: 120px;
  background-color: #fff;
  left: 0px;
  right: 0px;
}
.hero_container .rectangle_container .rectangle {
  position: absolute;
  background-color: #fff;
  min-height: 145px;
  rotate: -3deg;
  left: 0px;
  bottom: 55%;
  right: -6px;
}
.hero_container .hero_float_img {
  position: absolute;
  right: 6%;
  bottom: 14%;
  z-index: 2;
}
.hero_container .shapes {
  position: absolute;
  bottom: 0;
  right: 5%;
}

.bg_alternate {
  background-color: #f1f5f8;
  padding-block: 60px;
}

.alternate_container .alternate_block {
  display: grid;
  gap: 30px;
}
@media (min-width: 992px) {
  .alternate_container .alternate_block .row:nth-child(even) .col-lg-6:nth-child(1) {
    order: 2;
  }
}
.alternate_container .alternate_block img {
  max-width: 100%;
}
@media (max-width: 992px) {
  .alternate_container .alternate_block img {
    margin-bottom: 20px;
    margin: auto;
    display: block;
  }
}

.dream_job_container {
  padding-block: 60px;
  color: #fff;
  background-color: #244034;
  position: relative;
}
.dream_job_container .shape_1,
.dream_job_container .shape_2,
.dream_job_container .shape_3,
.dream_job_container .shape_4 {
  position: absolute;
}
@media (max-width: 768px) {
  .dream_job_container .shape_1,
  .dream_job_container .shape_2,
  .dream_job_container .shape_3,
  .dream_job_container .shape_4 {
    display: none;
  }
}
.dream_job_container .shape_1 {
  top: 0;
  left: 0;
}
.dream_job_container .shape_2 {
  bottom: 0;
  left: 0;
}
.dream_job_container .shape_3 {
  top: 0;
  right: 0;
}
.dream_job_container .shape_4 {
  bottom: 0;
  right: 0;
}
.dream_job_container .dream_job_header {
  margin-inline: auto;
  margin-bottom: 44px;
}
.dream_job_container .dream_job_header h2 {
  margin-bottom: 15px;
  text-align: center;
}
.dream_job_container .dream_job_header p {
  text-align: center;
}
@media (max-width: 992px) {
  .dream_job_container .dream_cards_container .row {
    gap: 24px;
  }
}
.dream_job_container .dream_cards_container .dream_cards {
  background-color: rgba(65, 90, 80, 0.3411764706);
  padding: 28px 40px;
  border-radius: 6px;
  height: 100%;
}
@media (max-width: 992px) {
  .dream_job_container .dream_cards_container .dream_cards {
    text-align: center;
  }
}
.dream_job_container .dream_cards_container .dream_cards .col-lg-2 img {
  max-width: 100%;
}
@media (max-width: 992px) {
  .dream_job_container .dream_cards_container .dream_cards .col-lg-2 img {
    display: block;
    margin: auto;
  }
}
.dream_job_container .dream_cards_container .dream_cards .col-lg-10 p:first-child {
  margin-bottom: 10px;
}
.dream_job_container .dream_cards_container .dream_cards .primary_button {
  margin-top: 20px;
}

.alternate_container_2 .header {
  margin-inline: auto;
  margin-bottom: 44px;
  text-align: center;
  max-inline-size: 562px;
}
.alternate_container_2 .header h2 {
  margin-bottom: 15px;
}
.alternate_container_2 .alternate_block {
  display: grid;
  gap: 44px;
}
@media (min-width: 992px) {
  .alternate_container_2 .alternate_block .row:nth-child(even) .col-lg-6:nth-child(1) {
    order: 2;
  }
}
.alternate_container_2 .alternate_block .col-lg-6 img {
  max-width: 100%;
}
@media (max-width: 992px) {
  .alternate_container_2 .alternate_block .col-lg-6 img {
    margin-bottom: 20px;
    margin: auto;
    display: block;
  }
}
.alternate_container_2 .alternate_block .col-lg-6 h3 {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .alternate_container_2 .alternate_block .col-lg-6 h3 {
    text-align: center;
  }
}
.alternate_container_2 .alternate_block .col-lg-6 h4 {
  margin-bottom: 15px;
}
.alternate_container_2 .alternate_block .col-lg-6 h5, .alternate_container_2 .alternate_block .col-lg-6 footer .row .col-lg-4:nth-child(1) p, footer .row .col-lg-4:nth-child(1) .alternate_container_2 .alternate_block .col-lg-6 p {
  margin-bottom: 10px;
  color: #244034;
}
.alternate_container_2 .alternate_block .col-lg-6 .for_block {
  display: grid;
  gap: 15px;
}

.ellipse {
  width: 100%;
  height: 55px;
  border-radius: 100%;
  background-color: #fff;
  position: relative;
  top: 30px;
}
@media (max-width: 992px) {
  .ellipse {
    display: none;
  }
}

.ellipse.reverse {
  top: -30px;
}

.space-ptb {
  padding-block: 60px;
}
@media (max-width: 992px) {
  .space-ptb {
    padding-block: 30px;
  }
}
.space-ptb .col-lg-12 ul li {
  list-style: disc;
}
.space-ptb .col-lg-12 p {
  margin-bottom: 15px;
}
.space-ptb .col-lg-12 p a {
  color: #e97f02;
}
.space-ptb .col-lg-12 p:last-child {
  margin-bottom: 0;
}

section.breadcrumb {
  background-image: url("../../img/hero_img.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 60px;
}
section.breadcrumb h2 {
  text-align: center;
  padding-top: 80px;
  color: #fff;
}
section.breadcrumb ul.breadcrumb-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
section.breadcrumb ul.breadcrumb-list li {
  color: #fff;
}
section.breadcrumb ul.breadcrumb-list a {
  color: #e97f02;
}

.form-control {
  border: 1px solid #eeeeee !important;
  color: #626262 !important;
  height: 50px !important;
  padding: 10px 20px !important;
  box-shadow: none !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border-radius: 3px !important;
  margin-top: 10px !important;
}/*# sourceMappingURL=style.css.map */