body {
  background-color: #f5f5f5;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  min-height: 100vh;
  overflow: auto;
}
/* Add this CSS in your global styles file or in a CSS module */
.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tab {
  padding: 10px 20px;
  cursor: pointer;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  margin-right: 5px;
  border-radius: 5px;
}

.tab.active {
  background-color: #116034;
  color: white;
  border-color: #116034;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  max-width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  font-weight: 200;
  letter-spacing: 1px;
}

#header .logo a {
  color: #000;

  /* .header-scrolled & {
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  } */
}

#header .logo img {
  max-height: 70px;
}

#header.header-scrolled {
  background-color: rgba(17, 96, 52, 0.85);
  padding: 12px 0;
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/**
  * Desktop Navigation 
  */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 30px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-size: 16px;
  padding: 0;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0.4px;
  position: relative;
  text-transform: none;

  .header-scrolled & {
    color: #ffffff;
  }
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  width: 0;
  background-color: #ffc424;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 80%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #ffc424;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #4e4e4e;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #0078ff;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
  * Mobile Navigation 
  */
.mobile-nav-toggle {
  color: #000;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;

  .header-scrolled & {
    color: #fff;
  }
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  /* .navbar-mobile {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    width: 100%;
    height: 100vh;
    z-index: 999;
  } */

  .navbar ul {
    display: none;
  }
  .mobile-nav-toggle.bi-x {
    color: #000;
  }

  .mobile-nav-toggle.bi-list {
    color: #fff;
  }
  .navbar .dropdown .dropdown-active {
    display: block;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(78, 78, 78, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: rgba(17, 96, 52, 0.85);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: white;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #0078ff;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #0078ff;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.rectangle-4 {
  background: rgba(17, 96, 52, 0.85);
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  height: 100%;
}

.menu-text {
  font-size: 1rem;
  /* width: 66.66%; */
}

.logo-img {
  width: 74.4px;
  height: 78px;
  margin-left: 3rem;
}

.rounded-corner {
  border-radius: 25px;
  padding-top: 0px;
}

.banner-left {
  border-radius: 35px;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 613.7px;
  box-sizing: border-box;
}

.slogan {
  display: inline-block;
  font-family: "Poppins";
  font-weight: 700;
  font-size: 50px;
  color: #ffffff;
}

.subscribe {
  margin-top: -80px;
}

.sub-btn {
  margin-left: 3rem;
}

.slogan-text {
  font-family: "Inter";
  font-weight: 400;
  font-size: 24px;
  color: #ffffff;
}

.container {
  overflow: hidden;
}

.container-27 {
  position: absolute;
  left: 50%;
  top: 0px;
  translate: -50% 0;
  width: 242.1px;
  height: 67.2px;
}

.container-4 {
  margin-top: 2px;
  display: flex;
  flex-direction: row;
  width: 39.6px;
  height: fit-content;
  box-sizing: border-box;
}

.container-row {
  margin-right: 0.3px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 169.4px;
  box-sizing: border-box;
}

.application-submitted-thank-you-for-applying-to-job-title-at-company-name-your-cv-and-profile-summary-have-been-forwarded-to-the-recruiter-you-will-be-contacted-if-you-are-selected-for-an-interview-reply-with-more-to-view-more-jobopportunities {
  overflow-wrap: break-word;
  font-family: "Inter";
  font-weight: 400;
  font-size: 6.6px;
  color: #000000;
}

section .features {
  text-align: center;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 40px;
}

section .features-ask {
  text-align: left;
  margin-top: 20px;
  font-size: 300px;
}

section .row {
  margin-left: 0;
  margin-right: 0;
}

.features {
  text-align: center;
  margin: 0 1px 37px 0;
  overflow-wrap: break-word;
  font-family: "Poppins";
  font-weight: 600;
  font-size: 50px;
  line-height: 1.35;
  color: #000000;
}

.div-num-box-1 {
  border-radius: 60px;
  background: #ffffff;
  margin-right: 33px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 8px 8px 0 8px;
  width: 86px;
  height: 130px;
  box-sizing: border-box;
}

.span-number-1 {
  border-radius: 54px;
  background: #ffca63;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 19px;
  width: 70px;
  height: 70px;
  box-sizing: border-box;
}

.feature-box {
  border-radius: 60px;
  margin: 0 33.4px 25px 0;
  display: flex;
  flex-direction: row;
  width: fit-content;
  box-sizing: border-box;
}

.feature-header {
  margin: 11px 0 9.5px 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.accessible {
  margin-bottom: 10.5px;
  display: inline-block;
  align-self: flex-start;
  overflow-wrap: break-word;
  font-family: "Poppins";
  font-weight: 500;
  font-size: 30px;
  color: #000000;
}

.feature-content {
  overflow-wrap: break-word;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 18px;
  color: #000000;
}

.visual-image-png {
  background: url(/landing_assets/images/visualImagePng.png);
  /* width: 645px; */
  height: 545px;
  background-repeat: repeat-y;
}

.testimonials {
  margin-right: 34px;
  width: 1006px;
  overflow-wrap: break-word;
  font-family: "Poppins";
  font-weight: 600;
  font-size: 50px;
  line-height: 1.35;
  color: #000000;
}

.button-1 {
  border-radius: 30px;
  background: #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 24px 0 23.1px 0;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
}

.button-1.active,
.button-2.active {
  background: #116034;
}

.vector-77 {
  width: 7.3px;
  height: 12.8px;
}

.button-2 {
  border-radius: 30px;
  background: #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 24px 0 23.1px 0;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
}

.vector-78 {
  width: 7.3px;
  height: 12.8px;
}

.tabpanel-blockquote {
  border-radius: 185px 0 185px 185px;
  border: 5px solid #e7e7e7;
  margin-right: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding-right: 19px;
  box-sizing: border-box;
  padding-bottom: 49px;
}

.tabpanel-quote {
  margin-bottom: 30.5px;
  margin-top: 30.5px;
  display: inline-block;
  overflow-wrap: break-word;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #2c2c2c;
  margin-left: 84px;
}

.cite,
.cite-1 {
  position: relative;
  display: flex;
  margin-left: 10%;
  flex-direction: column;
  align-items: flex-start;
  align-self: self-start;
  width: fit-content;
  box-sizing: border-box;
  margin-top: 15px;
}

.img-client-01-jpg,
.img-client-02-jpg {
  width: 60px;
  height: 60px;
  background-size: cover;
  background-position: center;
  border-radius: 40px 0 40px 40px;
  margin-bottom: 10px;
}

.strong-linda-willimeson {
  position: relative;
  margin: 14.7px 0 40.3px 0;
  display: inline-block;
  overflow-wrap: break-word;
  font-family: "Epilogue";
  font-weight: 700;
  font-size: 24px;
  color: #000000;
}

.marketing-manager {
  position: absolute;
  right: 52.7px;
  bottom: 14.8px;
  overflow-wrap: break-word;
  font-family: "Epilogue";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #2c2c2c;
}

.tabpanel-blockquote-1 {
  border-radius: 0 185px 185px 185px;
  border: 5px solid #e7e7e7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 47px 0 32px;
  box-sizing: border-box;
  padding-bottom: 49px;
}

.strong-jakki-robbert {
  position: relative;
  margin: 14.7px 0 40.3px 0;
  display: inline-block;
  overflow-wrap: break-word;
  font-family: "Epilogue";
  font-weight: 700;
  font-size: 24px;
  color: #000000;
}

.marketing-manager-1 {
  position: absolute;
  right: 19.3px;
  bottom: 14.8px;
  overflow-wrap: break-word;
  font-family: "Epilogue";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #2c2c2c;
}

.tab-1-of-2 {
  border-radius: 1px;
  background: #116034;
  width: 71px;
  height: 4px;
}

.tab-2-of-2 {
  border-radius: 1px;
  background: #e5e5e5;
  width: 71px;
  height: 4px;
}

.tab-3-of-2 {
  border-radius: 1px;
  background: #e5e5e5;
  width: 71px;
  height: 4px;
}

.tab-4-of-2 {
  border-radius: 1px;
  background: #e5e5e5;
  width: 71px;
  height: 4px;
}

.progress-nav {
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 1px;
  display: flex;
  /* flex-direction: row; */
  column-gap: 8px;
  width: 308px;
  box-sizing: border-box;
  text-align: center;
}

.price {
  border-radius: 45px;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    linear-gradient(#116034, #116034);
  position: relative;

  display: flex;
  flex-direction: row;
  padding: 64.4px 17.6px 65.1px 70px;
  /* width: fit-content; */
  box-sizing: border-box;
  margin-left: 5px;
  margin-right: 5px;
}

.price-text {
  border-radius: 35px;
  margin: 44.6px 59.5px 43.9px 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.pricing-info {
  margin-bottom: 20px;
  overflow-wrap: break-word;
  font-family: "Poppins";
  font-size: 14px;
  color: #ffffff;
}

.bold-text {
  font-weight: 700;
}

.light-text {
  font-weight: 400;
}

@media (min-width: 768px) {
  .pricing-info {
    font-size: 40px;
  }
}

.list-out-benefits-such-as-unlimited-job-alerts-priority-support-and-additional-resources {
  margin: 0 18.3px 30px 0;
  display: inline-block;
  overflow-wrap: break-word;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
}

.position-relative {
  position: relative;
}

.before-img {
  width: 60%;
  height: auto;
  position: relative;
  z-index: 1;
}

.image-circle-img {
  width: 60%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

@media (max-width: 768px) {
  .image-circle-img {
    width: 40%;
  }
}

@media (max-width: 576px) {
  .image-circle-img {
    width: 40%;
  }
}

@media (max-width: 768px) {
  .before-img {
    width: 60%;
  }
}

@media (max-width: 576px) {
  .before-img {
    width: 60%;
  }
}

.img-explore-jpg {
  border-radius: 32px;
  margin: 68px 30px 60px 0;
  max-width: 100%;
  /* Ensure the image is responsive */
  height: auto;
  /* Maintain aspect ratio */
  display: block;
  /* Ensure no inline spacing */
}

.frequently-ask-questions {
  margin-bottom: 17px;
  align-self: flex-start;
  overflow-wrap: break-word;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1.3;
  color: #000000;
}

.faqs-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  padding-left: 20px;
  padding-top: 40px;
}

.accordians {
  border-radius: 12px;
  background: #f7f7f7;
  margin-bottom: 22px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 24px 35px;
  width: 100%;
  box-sizing: border-box;
}

.regular-plus {
  margin: 1px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 24px;
  height: 24px;
  box-sizing: border-box;
}

.plus {
  width: 24px;
  height: 24px;
}

.accordians-1 {
  border-radius: 12px;
  background: #ededed;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-sizing: border-box;
}

.heading {
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}

.accordion {
  border-radius: 12px;
  background: #f7f7f7;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  transition: background 0.3s;
}

.accordion-header {
  padding: 24px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-radius: 12px;
}

.accordion.active .accordion-header {
  background: #ededed;
}

.accordion-body {
  padding: 0 35px 24px 35px;
  border-top: 1px solid #ddd;
  background: #ededed;
}

.icon {
  font-size: 24px;
}

.accordion-question {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #333;
}

.accordion-answer {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #666;
}

.what-we-like-to-do-what-we-dont-like-to-do {
  margin-right: 13px;
  /* width: 585px; */
  overflow-wrap: break-word;
  font-family: var(--body-large-500-font-family, "Inter");
  font-weight: var(--body-large-500-font-weight, 500);
  font-size: var(--body-large-500-font-size, 18px);
  line-height: var(--body-large-500-line-height, 1.444);
  color: #000000;
}

.duotone-x {
  margin: 1px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 24px;
  height: 24px;
  box-sizing: border-box;
}

.x {
  width: 24px;
  height: 24px;
}

.line-6 {
  opacity: 0.15;
  background: #000000;
  margin-bottom: 19px;
  width: 100%;
  height: 1px;
}

.policy-term {
  margin-bottom: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 346.7px;
  box-sizing: border-box;
}

.item-link-about-us {
  margin-right: 12px;
  width: 187px;
  overflow-wrap: break-word;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 18px;
  line-height: 1.319;
  color: #ffc424;
}

.item-link-carrer {
  overflow-wrap: break-word;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 18px;
  line-height: 1.319;
  color: #ffffff;
}

.career-blog {
  margin-bottom: 56px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-self: flex-start;
  width: 238.2px;
  box-sizing: border-box;
}

.item-link-blogs {
  margin-right: 12px;
  width: 187px;
  overflow-wrap: break-word;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 18px;
  line-height: 1.319;
  color: #ffffff;
}

.item-link-faqs {
  overflow-wrap: break-word;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 18px;
  line-height: 1.319;
  color: #ffffff;
}

.social-media {
  display: flex;
  flex-direction: row;
  align-self: flex-start;
  column-gap: 20px;
  width: 136px;
  box-sizing: border-box;
}

.social-link {
  width: 32px;
  height: 32px;
}

.contact-input {
  margin-bottom: 30.5px;
  display: flex;
  flex-direction: row;
  width: fit-content;
  box-sizing: border-box;
}

.span-wpcf-7-form-control-wrap {
  margin-right: 20px;
  width: 247px;
  box-sizing: border-box;
}

.input {
  border-radius: 70px;
  border: 1px solid var(--themetechmount-com-porcelain, #f1f4f5);
  background: #fbfbfb;
  padding: 10px 60px 10px 10px;
  box-sizing: border-box;
}

.email {
  overflow-wrap: break-word;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 14px;
  color: var(--themetechmount-com-boulder, #757575);
}

.span-wpcf-7-form-control-wrap-1 {
  width: 247px;
  box-sizing: border-box;
}

.input-send {
  border-radius: 60px;
  border: 1px solid #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 10px 0 10px 0px;
  width: 514px;
  box-sizing: border-box;
  margin-bottom: 46px;
}

.input-send:focus {
  outline: 0;
}

.input-send:hover {
  background-color: #2f2f2f;
  color: #fff;
  transition: all 500ms ease;
}

.div-textbox {
  margin: 64.7px 99.5px 49.9px 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-basis: 488px;
  box-sizing: border-box;
}

.contact-form {
  margin-left: 10rem;
  z-index: -1;
  margin-top: 10rem;
}

@media (max-width: 700px) {
  .contact-form {
    margin-left: 1rem;
    margin-top: 2rem;
  }
}

.form-main {
  padding-top: 10rem;
  margin-left: 0.5rem;
}
.rounded-more {
  border-radius: 25px;
}

.form {
  position: relative;
  margin-left: 1px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding: 5px;
  /* width: 487px; */
  box-sizing: border-box;
}

.heading-3-subscribe-newsletter-1 {
  margin-bottom: 9.9px;
  display: inline-block;
  align-self: flex-start;
  overflow-wrap: break-word;
  font-family: "Poppins";
  font-weight: 700;
  font-size: 36px;
  line-height: 1.35;
  color: #000000;
}

.heading-3-subscribe-newsletter {
  margin-bottom: 20.5px;

  font-family: "Poppins";
  font-weight: 500;
  font-size: 24px;
  color: #ffffff;
}

.well-keep-you-updated-with-the-best-new-jobs {
  margin-bottom: 12px;
  display: inline-block;
  align-self: flex-start;
  overflow-wrap: break-word;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 16px;
  line-height: 2.188;
  color: #000000;
}

.enter-your-number {
  overflow-wrap: break-word;
  font-family: "Inter";
  font-weight: 400;
  font-size: 20px;
  color: #a7a7a7;
}

.input-3 {
  border-radius: 35px;
  border: 1px solid #ffffff;
  background: #ffffff;
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  padding: 18.5px 0 22.5px 35px;
  height: 100%;
  box-sizing: border-box;
}

.enter-your-number {
  overflow-wrap: break-word;
  font-family: "Inter";
  font-weight: 400;
  font-size: 20px;
  color: #a7a7a7;
}

.menu-link {
  color: white !important;
  text-decoration: none;
  position: relative;
}

.menu-link.active {
  color: #ffc107 !important;
}

.menu-link.active::after {
  content: "";
  width: 100%;
  background-color: #ffc107;
}

.empowering-text {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 70px;
  line-height: 84px;
  color: white;
  text-align: left;
}

@media (max-width: 1024px) {
  .empowering-text {
    font-size: 60px;
    line-height: 72px;
  }
}

@media (max-width: 994px) {
  .empowering-text {
    font-size: 55px;
    line-height: 66px;
  }
}

@media (max-width: 768px) {
  .empowering-text {
    font-size: 50px;
    line-height: 60px;
  }
}

@media (max-width: 770px) {
  .empowering-text {
    font-size: 48px;
    line-height: 58px;
  }
}

@media (max-width: 640px) {
  .empowering-text {
    font-size: 45px;
    line-height: 54px;
  }
}

@media (max-width: 576px) {
  .empowering-text {
    font-size: 40px;
    line-height: 48px;
  }
}

@media (max-width: 480px) {
  .empowering-text {
    font-size: 35px;
    line-height: 42px;
  }
}

.phone-chat {
  width: 100%;
  height: 100%;
  margin-top: 10%;
  display: block;
}

@media (max-width: 768px) {
  .phone-chat {
    max-width: 100%;
    max-height: 80%;
  }
}

.div-icon-box {
  border-radius: 97.5px;
  border: 5px solid #e3eeff;
  position: relative;
  padding-top: 135px;
  width: 195px;
  box-sizing: border-box;
  margin: auto;
}

.rectangle {
  width: 92.5px;
  height: 92.5px;
}

.step-001-svg {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 92.5px;
  height: 92.5px;
  box-sizing: border-box;
}

.hiw-text {
  margin: auto;
  text-align: center;
  overflow-wrap: break-word;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 18px;
  color: #383838;
}

.heading-3-create-account {
  margin-top: 10px;
  overflow-wrap: break-word;
  font-family: "Poppins";
  font-weight: 600;
  font-size: 40px;
  line-height: 1.333;
  color: #116034;
}

.container-11 {
  border-radius: 25px;
  background: #116034;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 5px 0;
  width: 50px;
  height: fit-content;
  box-sizing: border-box;
}

.heading-3-complete-your-profile {
  overflow-wrap: break-word;
  font-family: "Poppins";
  font-weight: 700;
  font-size: 24px;
  line-height: 1.667;
  color: #ffffff;
}

@media screen and (max-width: 1000px) {
  .container-fluid {
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }

  .slogan {
    position: relative;
    margin-bottom: 319px;
    margin-top: -9px;
    display: inline-block;
    align-self: flex-start;
    overflow-wrap: break-word;
    font-family: "Poppins";
    font-weight: 700;
    font-size: 23px;
    line-height: 1.2;
    padding: 50px 50px 50px 50px;
    color: #ffffff;
  }

  .banner-left {
    border-radius: 35px;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
  }

  .slogan-text {
    position: absolute;
    left: 40%;
    bottom: 47px;
    translate: -50% 0;
    overflow-wrap: break-word;
    font-family: "Inter";
    font-weight: 400;
    font-size: 24px;
    color: #ffffff;
    margin-left: 11px;
  }

  .menu-text {
    font-size: 0.5rem;
  }

  .image-circle-png {
    background: url(/landing_assets/images/imageCirclePng.png);
    position: absolute;
    top: 77%;
    right: 70px;
    translate: 0 -50%;
    width: 463px;
    height: 438px;
  }

  .phone-chat {
    height: 44%;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .r-10-per-month-billed-monthly-after-your-free-trial-cancel-anytime {
    margin-bottom: 20px;
    overflow-wrap: break-word;
    font-family: "Poppins";
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
  }

  .list-out-benefits-such-as-unlimited-job-alerts-priority-support-and-additional-resources {
    margin: 0 18.3px 30px 0;
    display: inline-block;
    overflow-wrap: break-word;
    font-family: "Poppins";
    font-weight: 400;
    font-size: 11px;
    color: #ffffff;
  }

  .price-text {
    border-radius: 35px;
    margin: 33.6px -0.5px 48.9px -4px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
  }

  .price {
    border-radius: 45px;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
      linear-gradient(#116034, #116034);
    position: relative;
    display: flex;
    flex-direction: row;
    padding: 20px 17.6px 11px 24px;
    box-sizing: border-box;
    margin-left: 5px;
    margin-right: 5px;
  }

  .testimonials {
    margin-right: 34px;
    overflow-wrap: break-word;
    font-family: "Poppins";
    font-weight: 600;
    font-size: 39px;
    line-height: 1.35;
    color: #000000;
  }
}

.testimonial-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: #000000;
  margin-top: 10px;
}

.testimonial-position {
  font-size: 1rem;
  color: #555;
  margin-top: 5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1e1e1e;
  font-family: "Poppins", sans-serif;
}

a {
  color: #1e1e1e;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

a:hover {
  color: #0078ff;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

.p-r {
  position: relative;
}

.color-a {
  text-decoration: none;
  color: #000000;
}

.color-d {
  color: #f5f5f5;
}

.color-text-a {
  text-decoration: none;
  color: #4e4e4e;
}

.box-shadow,
.card-blog,
.work-box,
.service-box,
.paralax-mf {
  box-shadow: 0 13px 8px -10px rgba(0, 0, 0, 0.1);
}

.box-shadow-a,
.button:hover {
  text-decoration: none;
  box-shadow: 0 0 0 4px #cde1f8;
}

.display-5 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.1;
}

.display-6 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.1;
}

.avatar {
  width: 32px;
  height: 32px;
  margin-right: 4px;
  overflow: hidden;
}

.bg-image {
  background-repeat: no-repeat;
  background-attachment: local;
  background-position: center center;
}

@media (max-width: 1024px) {
  .bg-image {
    background-attachment: scroll;
  }
}

.overlay-mf {
  background-color: #000000;
}

.overlay-mf {
  position: absolute;
  top: 0;
  left: 0px;
  padding: 0;
  height: 100%;
  width: 100%;
}

.paralax-mf {
  position: relative;
  padding: 8rem 0;
}

.display-table {
  width: 100%;
  height: 100%;
  display: table;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
}

/*--/ Sections /--*/
.sect-4 {
  padding: 4rem 0;
}

.sect-pt4 {
  padding-top: 4rem;
}

.sect-mt4 {
  margin-top: 4rem;
}

/*--/ Title s /--*/
.title-s {
  font-weight: 200;
  color: #1e1e1e;
  font-size: 1.1rem;
}

/*--/ Title A /--*/
.title-box {
  margin-bottom: 4rem;
}

.title-a {
  text-decoration: none;
  font-size: 3rem;
  font-weight: bold;
  text-transform: none;
}

.subtitle-a {
  text-decoration: none;
  padding: 12px 12px 12px 12px;
  font-size: 1.2rem;
  font-weight: 200;
  text-transform: none;
}

.line-mf {
  width: 40px;
  height: 5px;
  margin: 0 auto;
}

/*--/ Title Left /--*/
.title-box-2 {
  margin-bottom: 3rem;
}

.title-left {
  font-size: 2rem;
  position: relative;
}

.title-left:before {
  content: "";
  position: absolute;
  height: 3px;
  width: 100px;
  bottom: -12px;
}

/*------/ Box /------*/
.box-pl2 {
  padding-left: 2rem;
}

.box-shadow-full {
  padding: 3rem 1.25rem;
  position: relative;
  background-color: #000000;
  margin-bottom: 3rem;
  z-index: 2;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.06), 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .box-shadow-full {
    padding: 3rem;
  }
}

/*------/ Socials /------*/
.socials {
  padding: 1.5rem 0;
}

.socials ul li {
  display: inline-block;
}

.socials .ico-circle {
  height: 40px;
  width: 40px;
  font-size: 1.2rem;
  border-radius: 50%;
  line-height: 1.6;
  margin: 0 15px 0 0;
  box-shadow: 0 0 0 3px #0078ff;
  transition: all 500ms ease;
}

.socials .ico-circle:hover {
  background-color: #0078ff;
  color: #fff;
  box-shadow: 0 0 0 3px #cde1f8;
  transition: all 500ms ease;
}

/*------/ Ul resect /------*/
.ul-resect,
.widget-tags ul,
.widget-sidebar .list-sidebar,
.box-comments .list-comments,
.blog-wrapper .post-meta ul,
.list-ico,
.socials ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.list-ico {
  line-height: 2;
}

.list-ico span {
  color: #0078ff;
  margin-right: 10px;
}

/*------/ Ico Circle /------*/
.ico-circle {
  height: 100px;
  width: 100px;
  font-size: 2rem;
  border-radius: 50%;
  line-height: 1.55;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 0 0 10px #0078ff;
  display: block;
}

/*------/ Owl Carousel /------*/
.owl-theme .owl-dots {
  text-align: center;
  margin-top: 18px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
}

.owl-theme .owl-dots .owl-dot span {
  width: 18px;
  height: 7px;
  margin: 5px 5px;
  background: #cde1f8;
  border: 0px solid #cde1f8;
  display: block;
  transition: all 0.6s ease-in-out;
  cursor: pointer;
}

.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #cde1f8;
}

.owl-theme .owl-dots .owl-dot.active span {
  background-color: #1b1b1b;
  width: 25px;
}

/*--/ Scrolltop s /--*/
.scrolltop-mf {
  position: relative;
  display: none;
}

.scrolltop-mf span {
  z-index: 999;
  position: fixed;
  width: 42px;
  height: 42px;
  background-color: #0078ff;
  opacity: 0.7;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  top: auto;
  left: auto;
  right: 30px;
  bottom: 50px;
  cursor: pointer;
  border-radius: 50%;
}

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0078ff;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #298eff;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*------/ Prelaoder /------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #0078ff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*------/ Button /------*/
.button {
  background: #000000;
  position: relative;
  box-sizing: border-box;
  border-radius: 30px;
  vertical-align: middle;
  font-size: 1rem;
  border: 1px solid transparent;
  transition: all 500ms ease;
  cursor: pointer;
  padding: 10px 24px 10px 20px;
  color: #ffffff;
  font-weight: 600;
}

.button:focus {
  outline: 0;
}

.button:hover {
  background-color: #2f2f2f;
  color: #fff;
  transition: all 500ms ease;
}

.button-a {
  text-decoration: none;
  background-color: #0078ff;
  color: #fff;
  border-color: #cde1f8;
}

.button-big {
  padding: 0.9rem 2.3rem;
  font-size: 1.2rem;
}

.button-rouded {
  border-radius: 5rem;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
.hero {
  height: 100vh;
  position: relative;
  color: #000;
  background-size: cover;
  background-position: center;
}

.hero .hero-content {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  padding-top: 100px;
}

.hero .overlay-itro {
  position: absolute;
  top: 0;
  left: 0px;
  padding: 0;
  height: 100%;
  width: 100%;
  opacity: 0.9;
}

/* Default: No margin on wide screens */
.margin-responsive {
  margin-top: 0;
}

/* Apply margin only on mobile screens */
@media (max-width: 1024px) {
  .margin-responsive {
    margin-top: 50px;
  }
}

@media (max-width: 991px) {
  .margin-responsive {
    margin-top: 350px;
  }
}
@media (max-width: 911px) {
  .margin-responsive {
    margin-top: 350px;
  }
}
@media (max-width: 769px) {
  .margin-responsive {
    margin-top: 350px;
  }
}
@media (max-width: 540px) {
  .margin-responsive {
    margin-top: 200px;
  }
}
@media (max-width: 412px) {
  .margin-responsive {
    margin-top: 30px;
  }
}
@media (max-width: 430px) {
  .margin-responsive {
    margin-top: 30px;
  }
}
@media (max-width: 360px) {
  .margin-responsive {
    margin-top: 120px;
  }
}
@media (max-width: 375px) {
  .margin-responsive {
    margin-top: 200px;
  }
}
footer {
  padding: 40px 0;
  color: white;
  background: black;
}

.section {
  border-radius: 30px;
  background: #ffc424;
  margin: 0 auto;
  max-width: 80%;
  display: flex;
  padding: 0 54.5px 15.5px 80px;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
  align-items: center;
  margin-bottom: -10rem;
}

.img-newsletter-png {
  background: url("/landing_assets/images/imgNewsletterPng.png");
  height: 200px;
  width: 400px;
  background-size: contain;
  background-repeat: no-repeat;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .img-newsletter-png {
    visibility: hidden;
  }
  .form {
    visibility: visible;
  }
  .section {
    border-radius: 30px;
    background: #ffc424;
    margin: 0 auto;
    display: flex;
    padding: 10px;
    z-index: 10;
    align-items: center;
    margin-bottom: -10rem;
    max-height: 80%;
  }
}
