@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  word-break: normal;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  font-size: 10px;
}

body {
  font-family: "Inter", sans-serif;
  color: #6e6e6e;
  font-size: 1.6rem;
}

ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

header {
  padding: 5px 1.5rem;
  position: fixed;
  width: 100%;
  top: 0;
  background: #fff;
  border: #8ED0DB 1px solid;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
}

header+* {
  margin: 5rem 0 0;
}

.logo {
  width: 200px;
  transition: 0.2s;
  line-height: 0;
  /*padding: .4rem 0;*/
  margin: 0 50px 0 0;
}

.logo svg {
  width: 100%;
}

.overlay {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  transition: .2s;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  transform: translateX(100%);
}

nav>ul {
  display: flex;
  justify-content: right;
  align-items: center;
  font-size: 1.5rem;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.2);
  margin: 0px;
}

nav>ul>li {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

nav>ul>li:last-of-type {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

nav>ul>li>a,
nav>ul>li>a:link,
nav>ul>li>a:visited {
  position: relative;
  display: block;
  padding: 1.2rem 1.5rem 1.3rem;
  color: black;
  text-decoration: none;
  /*transition: .2s cubic-bezier(.8, -.4, 1, 1.5);*/
  transition: .25s;
  /*box-shadow: inset 0 -1px 0 #e8e8e8;*/
}

nav>ul>li>a:hover,
nav>ul>li.active a {
  color: #00829B;
  /*margin: 0 0 -2px;*/
  /*padding: 2.1rem 2.6rem 1.8rem;*/
  /*border-radius: 0 0 2px 2px;*/
}

nav>ul>li>a:hover:before,
nav>ul>li.active a:before {
  top: auto;
  bottom: -5px;
  opacity: 1;
}

nav ul li a.contact {
  margin-right: 130px;
}

nav ul li a.joinastradie {
  color: #00829B;
}

nav ul li a.SignIn_btn {
  color: #00829B;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #00829B;
  border-radius: 8px;
  padding: 3px 20px;
  font-size: 14px;
  margin-right: 15px;
}

nav ul li a.SignIn_btn:hover {
  color: #fff;
  background: #00829B 0% 0% no-repeat padding-box;
}


nav ul li a.SignUp_btn {
  color: #fff;
  background: #00829B 0% 0% no-repeat padding-box;
  border: 1px solid #00829B;
  border-radius: 8px;
  padding: 3px 20px;
  font-size: 14px;
}

nav ul li a.SignUp_btn:hover {
  color: #00829B;
  background: #fff 0% 0% no-repeat padding-box;
}

/* CSS for hamburger menu bar */

.toggle-menu {
  display: none;
  width: 24px;
  height: 16px;
  margin: 0 -22px 0 auto;
  position: relative;
  z-index: 6;
  cursor: pointer;
}

.menu-toggler {
  display: none;
}

.nav-toggler {
  display: none;
  position: relative;
  width: 20px;
  height: 14px;
  z-index: 5;
}

.nav-toggler span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: black;
  transition: 0.3s;
  top: 7px;
}

.nav-toggler span:nth-of-type(1) {
  animation: rotateLeft2 .3s forwards, moveToTop .2s .3s forwards;
}

.nav-toggler span:nth-of-type(3) {
  animation: rotateRight2 .3s forwards, moveToBottom .2s .3s forwards;
}

@keyframes moveToTop {
  100% {
    top: 1px;
  }
}

@keyframes moveToBottom {
  100% {
    top: 13px;
  }
}

@keyframes rotateLeft2 {
  0% {
    transform: rotate(-45deg);
  }

  100% {
    transform: rotate(0);
  }
}

@keyframes rotateRight2 {
  0% {
    transform: rotate(45deg);
  }

  100% {
    transform: rotate(0);
  }
}

.menu-toggler:checked+.nav-toggler span:nth-of-type(1) {
  animation: moveFromTop .2s forwards, rotateLeft .3s .2s forwards;
}

.menu-toggler:checked+.nav-toggler span:nth-of-type(2) {
  opacity: 0;
}

.menu-toggler:checked+.nav-toggler span:nth-of-type(3) {
  animation: moveFromBottom .2s forwards, rotateRight .3s .2s forwards;
}

@keyframes moveFromTop {
  0% {
    top: 1px;
  }

  100% {
    top: 7px;
  }
}

@keyframes moveFromBottom {
  0% {
    top: 13px;
  }

  100% {
    top: 7px;
  }
}

@keyframes rotateLeft {
  100% {
    transform: rotate(-45deg);
    background: white;
  }
}

@keyframes rotateRight {
  100% {
    transform: rotate(45deg);
    background: white;
  }
}

/* CSS for hamburger menu bar */

/* Responsive CSS */

@media (max-width: 991px) {

  .toggle-menu,
  .nav-toggler {
    display: block;
  }

  .logo {
    padding: .4rem 0;
  }



  header>nav {
    position: fixed;
    width: 250px;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 9;
    padding: 4.4rem 0 0;
    overflow: auto;
    background: rgba(0, 0, 0, 0.5);
    transition: .3s cubic-bezier(.8, -.4, 1, 1.5);
    transform: translate(-100%, 0);
  }

  header>nav>ul {
    display: block;
  }

  nav>ul>li,
  nav>ul>li:first-of-type {
    border: none;
    margin: 0 0 1px;
  }

  nav>ul>li>a,
  nav>ul>li>a:link,
  nav>ul>li>a:visited {
    background: #00a9ff;
    color: white;
    box-shadow: none;
    padding: 1.5rem 2rem 1.3rem;
    transition: .3s;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
  }

  nav>ul>li>a:hover,
  nav>ul>li.active a {
    margin: 0;
    border-radius: 0;
  }

  nav>ul>li>a:hover {
    text-shadow: 300px 1px 0 rgba(0, 0, 0, 0.15);
  }

  nav>ul>li.active a {
    background: white;
    text-shadow: none;
    color: #00a9ff;
  }

  nav>ul>li>a:before {
    display: none;
  }

  .menu-toggler:checked+.nav-toggler+.overlay {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .menu-toggler:checked+.nav-toggler+.overlay+nav {
    transform: translate(0, 0);
  }
}

/*----home slider----*/

section.home_slider {
  padding: 40px 20px 160px;
  text-align: center;
  background: transparent linear-gradient(180deg, #E2F9FE 0%, #FCFCFC 100%);
}

.home_slider h6 {
  border: 1px solid #00829B;
  border-radius: 26px;
  width: auto;
  display: inline-block;
  padding: 6px 15px;
  color: #00829B;
  font-size: 14px;
}

.home_slider h6 span {
  color: #15BEDE;
}

.home_slider h6 span {
  color: #15BEDE;
}

.home_slider h1 {
  width: 100%;
  display: inline-block;
  font-size: 50px;
  color: #000;
  font-weight: bold;
  padding: 20px 0px 0px;
}

.home_slider h1 span {
  background: transparent linear-gradient(106deg, #0096B1 0%, #00D8C2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slider_box {
  background: transparent linear-gradient(180deg, #FFFFFF00 0%, #FFFFFF 100%);
  border-radius: 24px;
  padding: 20px 0px 50px;
}

.slider_box p {
  width: 60%;
  display: inline-block;
}

p {
  color: #6B6B6B;
  font-size: 15px;
  text-align: center;
}

a.GetStarted_btn {
  width: auto;
  display: inline-block;
  margin: 0px 40% 40px;
  background: #00829B;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  padding: 0px 40px;
  height: 50px;
  line-height: 50px;
  margin-top: 20px;
}

a.GetStarted_btn:hover {
  background: #000;
}

.boxcol {
  display: inline-block;
  width: 100%;
  position: relative;
  z-index: 2;
}

.boxcol::after {
  position: absolute;
  right: -90px;
  bottom: -30px;
  border-left: #00829B 1px solid;
  border-bottom: #00829B 1px solid;
  border-radius: 0px 0px 0px 10px;
  content: '';
  width: 100%;
  height: 40px;
  z-index: 1;
}

.boxcol1::before {
  position: absolute;
  left: -50px;
  top: 60px;
  bottom: 0px;
  border-top: #00829B 1px solid;
  border-bottom: 0px;
  border-radius: 0px;
  content: '';
  width: 100%;
  height: 40px;
  z-index: 1;
}

.boxcol2::after {
  position: absolute;
  right: -90px;
  top: 0px;
  bottom: 0px;
  border-left: #00829B 1px solid;
  border-top: #00829B 1px solid;
  border-bottom: 0px;
  border-radius: 10px 0px 0px 0px;
  content: '';
  width: 100%;
  height: 40px;
  z-index: 1;
}

.boxcol4::after {
  position: absolute;
  right: -90px;
  top: 0px;
  bottom: 0px;
  border-left: #00829B 1px solid;
  border-top: #00829B 1px solid;
  border-bottom: 0px;
  border-radius: 10px 0px 0px 0px;
  content: '';
  width: 100%;
  height: 40px;
  z-index: 1;
}

.boxcol6::after {
  position: absolute;
  right: -50px;
  top: 0px;
  bottom: 0px;
  border-left: #00829B 1px solid;
  border-top: #00829B 1px solid;
  border-bottom: 0px;
  border-radius: 10px 0px 0px 0px;
  content: '';
  width: calc(100% - 40px);
  height: 40px;
  z-index: 1;
}

.boxcol .icon {
  display: inline-block;
  width: 80px;
  height: 80px;
  position: relative;
  background: #73C31C;
  border-radius: 19px;
  line-height: 80px;
  text-align: center;
  z-index: 2;
}

.boxcol .icon img {
  width: 40px;
  height: auto;
}

.boxcol span {
  display: inline-block;
  width: 100%;
  font-size: 13px;
  margin-bottom: 5px;
  line-height: normal;
}

.boxcol2 .icon {
  background: #0057AE;
}

.boxcol3 .icon {
  background: #F45C47;
}

.boxcol4 .icon {
  background: #005857;
}

.boxcol5 .icon {
  background: #5CB1FE;
}

.boxcol6 .icon {
  background: #FA7C21;
}


/*------Getting Started is Easy-----*/
.GettingStarted {
  padding-top: 20px;
}

h2 {
  color: #00829B;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}


.GettingStarted h2 {
  margin-top: -130px;
}

.getting_box {
  background: #FCFCFC;
  padding: 0px 0px 40px;
}

.getting_box ul li {
  width: 100%;
  display: inline-block;
}

.getting_box ul li a {
  width: 100%;
  display: inline-block;
  padding: 30px 0px;
  border-bottom: #DEEDF0 2px solid;

  text-decoration: none;
}

.getting_box ul li a span.icon {
  background: #EFFAFC;
  width: 50px;
  height: 50px;
  float: left;
  line-height: 50px;
  text-align: center;
  border-radius: 50px;
  margin-right: 20px;
  color: #00829B;
  font-size: 14px;
}

.getting_box ul li a h4 {
  color: #000;
  opacity: .5;
  font-size: 19px;
  margin-bottom: 15px;
  margin-top: 5px;
  display: inline-block;
}

.getting_box ul li a h4 span {
  color: #6B6B6B;
  display: block;
  font-size: 14px;
  font-weight: 400;
}

.getting_box ul li a:hover {
  border-bottom: #00829B 2px solid;
}

.getting_box ul li a:hover span.icon {
  background: #00829B;
  color: #fff;
}

.getting_box ul li a:hover h4 {
  opacity: 1;
}

.getting_box .tab-content>.tab-pane img {
  width: auto;
  height: 480px;
  padding: 40px 0px 0px;
}

.blok {
  padding: 40px 30px 30px;
}


.tab-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0px;
}

.tab-menu {
  display: inline-block;
  align-items: center;
  justify-content: center;
  list-style-type: none;
  padding: 0;
}

@media (max-width: 767px) {
  .tab-menu {
    display: none;
  }
}

.tab-menu .menu-item {
  text-align: center;
}

.tab-menu .menu-item .menu-link {
  font-size: 16px;
  line-height: 20px;
  color: #00829B;
  background: #fff;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  padding: 10px 0px;
  width: 120px;
  border-radius: 8px;
  display: block;
  transition: background 0.3s;
  border: 1px solid #00829B !important;
}

.tab-menu .menu-item:hover .menu-link,
.tab-menu .menu-item.active .menu-link {
  background: #00829B;
  color: #fff;
}

.tab-menu .menu-item:last-child .menu-link {
  border-right: none;
}

.section {
  display: none;
}

@media (max-width: 767px) {
  .section {
    margin: 0 0 10px;
    display: block !important;
  }
}

.section .section-title {
  display: none;
}

@media (max-width: 767px) {
  .section .section-title {
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    background: #03748A;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    padding: 10px 15px;
    display: block;
    transition: background 0.3s;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    cursor: pointer;
    border: none;
  }

  .section .section-title:after {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    border: 2px solid #fff;
    right: 10px;
    top: 13px;
    border-left: none;
    border-top: none;
    transform: rotate(45deg);
  }
}

.section .section-text {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
}

.section .tab-content {
  display: none;
  padding: 30px 0px;
  background: none;
  box-shadow: 0px;
}

@media (min-width: 768px) {
  .section .tab-content {
    display: block !important;
  }
}

.section.active {
  display: block !important;
}

@media (max-width: 767px) {
  .section.active .tab-content {
    display: block;
  }
}

.section.active .section-title {
  background: #004653;
  color: #fff;
}

.section.active .section-title:after {
  transform: rotate(-135deg);
  top: 17px;
}

/*------succeed------*/

section.succeed {
  background: #004E5D;
  padding: 60px 0px 50px;
  text-align: center;
}

.succeed h2 {
  width: 100%;
  display: inline-block;
  font-size: 44px;
  color: #fff;
  font-weight: bold;
  padding: 0px;
}

.succeed h2 span {
  background: transparent linear-gradient(106deg, #0096B1 0%, #00D8C2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.succeed p {
  width: 40%;
  display: inline-block;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}

.succeed_col {
  background: #005767;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
}

.succeed_col span.icon {
  background: transparent linear-gradient(133deg, #0098B6 0%, #00E0D7 100%) 0% 0% no-repeat padding-box;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  float: left;
  line-height: 50px;
  margin: 0px 0px 20px;
}

.succeed_col h5 {
  width: 100%;
  display: inline-block;
  text-align: left;
  color: #fff;
  font-size: 18px;
  margin-bottom: 5px;
}

.succeed_col p {
  width: 100%;
  display: inline-block;
  text-align: left;
  color: #fff;
  font-size: 14px;
}


/*---Plan----*/

section.plan {
  background: transparent linear-gradient(180deg, #EFFAFC 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
  padding: 60px 0px;
}

.plan_tab {
  text-align: center;
  padding: 20px 0px 0px;
}

.tab-menu .menu-item {
  text-align: center;
  display: inline-block;
}

.planbox {
  background: #FFFFFF;
  border: 1px solid #CEE1E4;
  border-radius: 15px;
  padding: 20px;
  text-align: left;
  height: 450px;
  position: relative;
}

.planbox h3 {
  color: #000;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0px;
}

.planbox p {
  color: #6B6B6B;
  font-size: 14px;
  text-align: left;
}

.planbox h2.price {
  color: #00829B;
  font-size: 30px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 20px;
  border-bottom: #CEE1E4 1px solid;
  padding: 10px 0px 20px;
}

.planbox h2.price sub {
  color: #000;
  font-size: 15px;
  font-weight: 500;
}

.plantxt {
  text-align: center;
}

.plantxt h5 {
  font-size: 18px;
  color: #000000;
  text-align: left;
}

.plantxt ul {
  margin: 10px 0px 10px;
  width: 100%;
  display: inline-block;
}

.plantxt ul li {
  width: 100%;
  float: left;
  margin: 0px 0px 10px;
  font-size: 14px;
  text-align: left;
}

.getStarted_btn {
  width: 80%;
  display: inline-block;
  border: #00829B 1px solid;
  background: #fff;
  height: 44px;
  line-height: 42px;
  font-size: 15px;
  padding: 0px 30px;
  text-decoration: none;
  color: #00829B;
  border-radius: 10px;
}

.getStarted_btn:hover {
  background: #00829B;
  color: #fff;
}


.mostPopular_btn {
  width: auto;
  position: absolute;
  right: 20px;
  top: 20px;
  background: transparent linear-gradient(106deg, #0098B6 0%, #00E0D7 100%) 0% 0% no-repeat padding-box;
  border-radius: 12px;
  height: 40px;
  line-height: 40px;
  padding: 0px 20px;
  text-decoration: none;
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
}

.mostPopular_btn:hover {
  background: transparent linear-gradient(106deg, #00E0D7 0%, #0098B6 100%) 0% 0% no-repeat padding-box;
  color: #fff;
}

.planbox:hover {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 16px #00829B45;
  border: 3px solid #00829B;
  border-radius: 15px;
}

.planbox:hover .getStarted_btn {
  background: #00829B 0% 0% no-repeat padding-box;
  border: 2px solid #00829B;
  color: #fff;
}





/*------------Loved by Tradies Nationwide-----------------*/

.lovedby h2 {
  margin-bottom: 50px;
  display: inline-block;
  width: 100%;
}

.lovedbybox {
  background: transparent linear-gradient(180deg, #EFFAFC 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
  border: 1px solid #CEE1E4;
  border-radius: 15px;
  padding: 20px;
  text-align: left;
}

.lovedbybox .icon {
  margin-bottom: 10px;
  width: auto;
  display: inline-block;
}

.lovedbybox p {
  text-align: left;
  color: #6B6B6B;
  font-size: 14px;
}

.lovedbybox p svg {
  width: auto;
  height: 15px;
}

.profile-sec span.icon {
  width: 44px;
  height: 44px;
  display: inline-block;
  line-height: 44px;
  text-align: center;
  background: #ddd;
  border-radius: 50px;
  float: left;
  margin-right: 15px;
}

.profile-sec h5 {
  width: auto;
  display: inline-block;
  color: #000;
  font-weight: 600;
  margin: 0px;
}

/*----Download the App & Start Getting Jobs Fast----*/

.downloadApp {
  width: 100%;
  display: inline-block;
  padding: 60px 0px;
  text-align: left;
}

.downloadApp img {
  width: 80%;
}

.downloadApp h2 {
  text-align: left;
}

.downloadApp p {
  text-align: left;
}

.pointbox {
  background: transparent linear-gradient(90deg, #00829B 0%, #00829B00 100%) 0% 0% no-repeat padding-box;
  padding: 2px;
  border-radius: 10px;
  margin: 20px 0px;
  width: 100%;
  display: inline-block;
}

.pointbox ul {
  background: transparent linear-gradient(90deg, #EFFAFC 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
  padding: 20px;
  margin: 0px;
  border-radius: 10px;
  width: 100%;
  float: left;
}

.pointbox ul li {
  width: 47%;
  float: left;
  margin: 10px 3% 10px 0px;
  padding: 0px 0px 0px 30px;
}

.pointbox ul li a {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.barcode img.barcode-img {
  width: 100px;
  float: left;
  margin-right: 20px;
}

.barcode h5 {
  font-size: 20px;
  color: #000;
  margin: 10px 0px 10px;
  float: inline-block;
  width: auto;
}

.barcode a {
  width: 120px;
  height: auto;
  float: left;
}

.barcode a img {
  width: auto;
  height: 40px;
}


.footer_main {
  background: #017288;
  padding: 50px 0px 30px;
}

.top_footer {
  border-bottom: #EFFAFC42 1px solid;
  padding: 0px 0px 20px;
  margin: 0px 0px 40px;
}

.top_footer h2 {
  text-align: left;
  color: #fff;
  font-size: 40px;
  font-weight: 500;
  width: 80%;
  float: left;
}

a.postjob_btn {
  border: 2px solid #FFFFFF;
  border-radius: 10px;
  float: right;
  width: 180px;
  height: 54px;
  line-height: 48px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  margin-top: 20px;
}

a.postjob_btn:hover {
  border: 2px solid #FFF;
  background: #fff;
  color: #017288;
  text-decoration: none;
}

.bottom_footer svg {
  width: auto;
  height: 60px;
  margin-bottom: 20px;
}

.bottom_footer p {
  width: 90%;
  font-size: 14px;
  color: #fff;
  text-align: left;
  margin-bottom: 20px;
}

.bottom_footer p svg {
  width: 20px;
  height: auto;
  float: left;
  margin-right: 10px;
}

.bottom_footer h5 {
  color: #fff;
  font-size: 18px;
}

.bottom_footer ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.bottom_footer ul li {
  margin: 0px;
  padding: 0px;
}

.bottom_footer ul li a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.copyright {
  border-top: #EFFAFC42 1px solid;
  padding: 30px 0px 0px;
  margin: 20px 0px 0px;
}

.copyright p {
  color: #fff;
  font-size: 15px;
  margin-top: 8px;
}

.copyright a {
  text-decoration: none;
}

.copyright a svg {
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-left: 5px;
}

/*------------About us-------------*/

.inner_slider {
  width: 100%;
  display: inline-block;
  background: #004653;
  padding: 60px 20px;
}

.about_box {
  width: 100%;
  display: inline-block;
  background: transparent linear-gradient(181deg, #00465300 0%, #00829B 100%) 0% 0% no-repeat padding-box;
  border-radius: 24px;
  text-align: center;
  padding: 20px 0px 180px;
}

.about_box h5 {
  width: 100%;
  display: inline-block;
  background: url(../images/bg1.png) center center no-repeat;
  background-size: 100%;
  height: 100px;
}

.about_box h5 span {
  width: 250px;
  display: inline-block;
  margin-top: 7px;
  font-size: 15px;
  color: #000000;
  background: transparent linear-gradient(270deg, #37DEFD0F 0%, #4CE2FE42 15%, #7CEAFF 49%, #4EE2FE42 83%, #37DEFD0F 100%) 0% 0% no-repeat padding-box;
  border-radius: 25px;
  padding: 10px 20px;
}

.about_box h2 {
  color: #fff;
  font-size: 44px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  width: 55%;
  display: inline-block;
}

.about_box h2 span {
  background: transparent linear-gradient(133deg, #0EE3FF 0%, #00FFF5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about_box p {
  color: #fff;
  font-size: 15px;
  text-align: center;
  width: 50%;
  display: inline-block;
  margin: 0px;
  padding: 0px;
}

.about_box::after {
  width: 100%;
  height: 80px;
  display: inline-block;
  background: url(../images/bg2.png) center bottom no-repeat;
  background-size: 90%;
  content: '';
}

.about_info img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 24px;
}

.about_info {
  width: 100%;
  display: inline-block;
  margin-top: -140px;
}

.abInfo {
  text-align: center;
  margin: 50px 0px 0px;
}

.abInfo h6 {
  color: #fff;
  font-size: 18px;
  padding: 10px 0px;
}

.abInfo h4 {
  color: #05BED5;
  font-size: 32px;
  font-weight: bold;
}

.ourStory {
  padding: 60px 0px 0px;
  background: transparent linear-gradient(180deg, #EFFAFC 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
}

.ourStory h2 {
  padding-bottom: 40px;
}

.ourstory_txt {
  background: transparent linear-gradient(180deg, #FFFFFF 0%, #FFFFFF00 100%) 0% 0% no-repeat padding-box;
  border-radius: 24px;
  padding: 40px;
}

.ourstory_txt h3 {
  width: 90%;
  color: #000;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.ourstory_txt p {
  width: 90%;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: left;
}

.ourstory_txt img {
  width: 100%;
  border-radius: 24px;
  height: 400px;
  object-fit: cover;
}


.values {
  padding: 50px 0px 0px;
  text-align: center;
}

.valuesbox {
  width: 80%;
  display: inline-block;
  margin-bottom: 40px;
}

.valuesbox span.no {
  background: transparent linear-gradient(133deg, #0098B6 0%, #00E0D7 100%) 0% 0% no-repeat padding-box;
  border-radius: 12px;
  font-size: 15px;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
}

.valuesbox h5 {
  color: #000000;
  font-size: 17px;
  padding: 10px 0px 0px;
}

.valuesbox p {
  color: #6B6B6B;
  font-size: 14px;
}


.ourJourney {
  position: relative;
  width: 100%;
  display: inline-block;
  height: 650px;
  padding: 40px 20px 60px;
}

#container .box {
  width: 300px;
  display: inline-block;
  position: relative;
  margin: 20px 10px;
  text-align: center;
  height: 200px;
}

#container .box::before {
  width: 24px;
  height: 24px;
  border-radius: 20px;
  background: #00829B;
  position: absolute;
  bottom: -30px;
  left: 46%;
  content: '';
  z-index: 99;
}

#container .box::after {
  width: 18px;
  height: 18px;
  border-radius: 20px;
  background: transparent linear-gradient(133deg, #0098B6 0%, #00E0D7 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 8px #00000029;
  border: 1px solid #FFFFFF;
  position: absolute;
  bottom: -27px;
  left: 47%;
  content: '';
  z-index: 99;
}

#container .box div {
  width: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  padding: 20px;
  border-radius: 12px;
  background: #00829B 0% 0% no-repeat padding-box;
  text-align: left;
}

#container .box .line {
  width: 2px;
  height: 20px;
  background: #EFFAFC;
  position: absolute;
  bottom: -35px;
  left: 49.5%;
}

#container .box2 .line {
  width: 2px;
  height: 20px;
  background: #EFFAFC;
  position: absolute;
  top: -35px;
  bottom: auto;
  left: 49.5%;
}

#container .box2 div {
  top: 280px;
}

#container {
  overflow-y: scroll;
  overflow-x: hidden;
  transform: rotate(270deg) translateX(-100%);
  transform-origin: top left;
  position: absolute;
  width: 100vh;
  height: 98vw;
}

#container2 {
  transform: rotate(90deg) translateY(-100vh);
  transform-origin: top left;
  white-space: nowrap;
  font-size: 0;
  position: relative;
}


#container2::after {
  width: 400%;
  height: 10px;
  position: absolute;
  left: 0px;
  top: 235px;
  background: #00829B 0% 0% no-repeat padding-box;
  border-radius: 8px;
  content: '';
}


#container .box .year {
  background: transparent linear-gradient(114deg, #0098B6 0%, #00E0D7 100%) 0% 0% no-repeat padding-box;
  border: 1px solid #FFFFFF;
  border-radius: 12px;
  padding: 5px 15px;
  font-size: 18px;
  color: #fff;
}

#container .box h5 {
  font-size: 18px;
  color: #fff;
  margin: 20px 0px 10px;
  padding: 0px;
  white-space: initial;
}

#container .box p {
  font-size: 14px;
  color: #fff;
  margin: 0px;
  padding: 0px;
  text-align: left;
  white-space: initial;
}


.missionbox {
  background: transparent radial-gradient(closest-side at 50% 50%, #03748A 0%, #004653 100%) 0% 0% no-repeat padding-box;
  border-radius: 24px;
  padding: 110px 60px 70px;
  position: relative;
  text-align: center;
}

.missionbox::after {
  position: absolute;
  left: 0px;
  top: 0px;
  background: url(../images/bg3.png) center 60px no-repeat;
  background-size: 96%;
  width: 100%;
  height: 85%;
  content: '';
}

a.postaJob_btn {
  background: #fff;
  width: 180px;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  color: #00829B;
  border-radius: 10px;
  text-decoration: none;
  margin: 30px 10px 0px;
  font-size: 16px;
}

a.pecomeaTradie_btn {
  background: transparent linear-gradient(108deg, #0098B6 0%, #00E0D7 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 8px #00000029;
  border-radius: 10px;
  width: 180px;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  margin: 30px 10px 0px;
  z-index: 1;
}


.missionbox h2 {
  width: 100%;
  display: inline-block;
  font-size: 50px;
  color: #fff;
  font-weight: bold;
  padding: 20px 0px 0px;
}

.missionbox h2 span {
  background: transparent linear-gradient(106deg, #0096B1 0%, #00D8C2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.missionbox p {
  width: 40%;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  margin: 0px 30% 40px;
}

.meetOurTeam {
  padding: 60px 0px;
}

.meetOurTeam h2 {
  margin-bottom: 40px;
}

.meetOurTeam h2 {
  margin-bottom: 40px;
}

.teambox {
  width: 100%;
  display: inline-block;
  text-align: center;
}


.teambox img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
}

.teambox h5 {
  color: #000000;
  font-size: 17px;
  padding: 10px 0px 0px;
}

.teambox p {
  color: #6B6B6B;
  font-size: 14px;
}

/*----------Contact-----------*/

section.contact {
  padding: 40px 0px 60px !important;
  display: inline-block;
  width: 100%;
}

.contact p {
  width: 50%;
  display: inline-block;
  margin-bottom: 50px;
  margin-top: 10px;
}

.contact img {
  width: 100%;
  height: 500px;
  border-radius: 24px;
  object-fit: cover;
}

.contact_form {
  width: 100%;
  display: inline-block;
  background: transparent linear-gradient(180deg, #FFFFFF00 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
  border-radius: 24px;
  padding: 20px;
}

.contact_form .groupdiv {
  width: 90%;
}

.contact_form label {
  width: 100%;
  display: inline-block;
  color: #000;
  font-size: 14px;
  text-align: left;
  margin-bottom: 5px;
}

.contact_form input {
  width: 100%;
  display: inline-block;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #00829B;
  border-radius: 10px;
  height: 48px;
  padding: 0px 15px;
  color: #000;
  margin-bottom: 20px;
}

.contact_form textarea {
  width: 100%;
  display: inline-block;
  background: #FFFFFF;
  border: 1px solid #00829B;
  border-radius: 10px;
  height: 100px;
  padding: 10px 15px;
  color: #000;
  margin-bottom: 20px;
}

.contact_form input[type="submit"] {
  background: #00829B 0% 0% no-repeat padding-box;
  border-radius: 10px;
  width: 160px;
  float: left;
  height: 60px;
  color: #fff;
  margin: 0px;
  cursor: pointer;
}

.contact_form input[type="submit"]:hover {
  background: #000;
}

/*--------How it works------*/

section.home_slider.howitworks {
  padding: 40px 20px;
  background: transparent linear-gradient(180deg, #E2F9FE 0%, #FCFCFC 100%) 0% 0% no-repeat padding-box;
}

.howitworks .getting_box {
  background: none;
  padding: 0px;
}

.howitworks .blok {
  padding: 0px;
}

.readybox {
  background: transparent linear-gradient(359deg, #03748A 0%, #004653 100%) 0% 0% no-repeat padding-box;
  border-radius: 24px;
  padding: 100px 60px;
  position: relative;
  margin: 60px 0px;
}

.readybox h2 {
  text-align: left;
  color: #fff;
  z-index: 2;
  position: relative;
}

.readybox h2 span {
  background: transparent linear-gradient(106deg, #0096B1 0%, #00D8C2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.readybox p {
  text-align: left;
  color: #fff;
  margin-bottom: 20px;
  padding-left: 60px;
  z-index: 2;
  position: 'relative';
}

.readybox a.postjob_btn {
  float: left;
  width: 180px;
  height: 54px;
  line-height: 48px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  margin-top: 10px;
  margin-left: 60px;
  background: transparent linear-gradient(107deg, #0098B6 0%, #00E0D7 100%) 0% 0% no-repeat padding-box;
  border-radius: 10px;
  border: 0px;
  z-index: 2;
  position: relative;
}

.readybox a.postjob_btn:hover {
  background: transparent linear-gradient(107deg, #00E0D7 0%, #0098B6 100%) 0% 0% no-repeat padding-box;
}

.readybox::after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  content: '';
  background: url(../images/bg4.png) center center no-repeat;
  z-index: 1;
}

.customers .lovedbybox {
  padding: 0px;
  background: #EFFAFC;
}

.customers .lovedbybox img {
  border-radius: 15px 15px 0px 0px;
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
}

.customers .lovedbybox .icon {
  margin: 0px 20px 15px;
}

.customers .lovedbybox p {
  margin: 0px 20px 15px;
}

.customers .lovedbybox .profile-sec h5 {
  margin: 0px 20px;
}

/*-----Login page-------*/

.loginpage {
  padding: 60px 0px;
  background: transparent linear-gradient(180deg, #E2F9FE 0%, #F9F9F9 100%) 0% 0% no-repeat padding-box;
}

.toggle-button {
  display: inline-flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: unset;
  right: 12px;
  cursor: pointer;
}

.eye-icon {
  width: 20px;
  height: 20px;
}

.login_txt h2 {
  text-align: left;
}

.login_txt p {
  text-align: left;
  color: #000;
  width: 90%;
}

.login_txt img {
  width: 90%;
  height: auto;
}

a.forgot_txt {
  position: absolute;
  right: 5px;
  top: 0px;
  font-size: 14px;
  color: #00829B;
  text-decoration: none;
}

a.forgot_txt:hover {
  text-decoration: underline;
}

.login_form {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border-radius: 15px;
  padding: 30px;
}

.login_form h4 {
  color: #000;
  font-size: 21px;
  font-weight: bold;
}

.login_form p {
  color: #000;
  font-size: 13px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
}

.login_form label {
  width: 100%;
  display: inline-block;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 5px;
}

.login_form input {
  width: 100%;
  display: inline-block;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #00829B;
  border-radius: 10px;
  height: 48px;
  padding: 0px 15px;
  color: #000;
  margin-bottom: 20px;
}

.groupdiv {
  position: relative;
}

.groupdiv .form-group {
  display: block;
  margin-bottom: 15px;
}

.groupdiv .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.groupdiv .form-group label {
  position: relative;
  cursor: pointer;
}

.groupdiv .form-group label a {
  color: #00829B;
  text-decoration: none;
}

.groupdiv .form-group label a:hover {
  text-decoration: underline;
}

.groupdiv .form-group label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #00829B;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
  border-radius: 4px;
}

.groupdiv .form-group input:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #00829B;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.groupdiv input[type="submit"] {
  background: #00829B;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  margin-top: 10px;
  height: 48px;
  margin-bottom: 0px;
}

.groupdiv input[type="submit"]:hover {
  background: #000;
}

.line {
  position: relative;
  width: 100%;
  height: 2px;
  background: #D9D9D9;
  margin: 20px 0px 40px;
  text-align: center;
}

.line span {
  position: absolute;
  width: auto;
  height: auto;
  background: #fff;
  padding: 2px 10px;
  top: -14px;
  display: inline-block;
  left: 45%;
}

a.g_btn {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  width: 47%;
  display: inline-block;
  text-align: center;
  color: #000;
  font-size: 15px;
  text-decoration: none;
  height: 48px;
  line-height: 48px;
  margin-right: 4%;
}

a.f_btn {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  width: 47%;
  display: inline-block;
  text-align: center;
  color: #000;
  font-size: 15px;
  text-decoration: none;
  height: 48px;
  line-height: 48px;
}

.login_form .groupdiv p {
  color: #000;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  margin: 20px 0px 0px
}

.login_form .groupdiv p a {
  color: #00829B;
  text-decoration: none;
}

.login_form .groupdiv p a:hover {
  color: #00829B;
  text-decoration: underline;
}

.border_r {
  border-right: 1px solid #B6DDE5;
}

.fourbox svg {
  width: auto;
  float: left;
  padding-left: 30px;
  margin-right: 15px;
}

.fourbox h5 {
  width: calc(100% - 100px);
  float: left;
  font-size: 15px;
  color: #000;
  text-align: left;
}

/*--------signup page---------*/
.login_txt {
  width: 90%;
}

.login_txt ul {
  margin: 20px 0px 40px;
  padding: 0px;
}

.login_txt ul li {
  width: 100%;
  display: inline-block;
  margin: 0px 0px 20px;
  padding: 10px 0px;
  border-bottom: 1px solid #00829B42;
}


.login_txt ul li:last-child {
  border: 0px;
}

.login_txt ul li img {
  width: 70px;
  height: auto;
  float: left;
  margin-right: 20px;
  margin-bottom: 30px;
}

.login_txt ul li h5 {
  color: #00829B;
  font-size: 18px;
  font-weight: 600;
}

.login_txt ul li p {
  color: #000;
  font-size: 14px;
  font-weight: 600;
}


.threebox h6 {
  color: #000;
  font-size: 14px;
}

.threebox h3 {
  color: #00829B;
  font-size: 21px;
  font-weight: 700;
}


/*------verification-----*/

.verification {
  padding: 0px 0px 60px;
}

.verificationbox {
  background: transparent linear-gradient(180deg, #FFFFFF00 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
  border-radius: 24px;
  padding: 50px;
  text-align: center;
}

.verificationbox img {
  width: 180px;
  height: auto;
  margin: 20px 0px;
}



.verificationbox .otp-input-fields {
  margin: auto;
  max-width: 400px;
  width: auto;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0px;
}

.verificationbox .otp-input-fields input {
  height: 40px;
  width: 40px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  text-align: center;
  outline: none;
  font-size: 15 px;
}

.verificationbox .otp-input-fields input::-webkit-outer-spin-button,
.verificationbox .otp-input-fields input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  /* Firefox */
}

.verificationbox .otp-input-fields input[type=number] {
  -moz-appearance: textfield;
}

.verificationbox .otp-input-fields input:focus {
  border-width: 2px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #00829B;
  border-radius: 10px;
  font-size: 20px;
}


.verificationbox input[type="submit"] {
  background: #00829B 0% 0% no-repeat padding-box;
  border-radius: 10px;
  border: 0px;
  width: 180px;
  display: inline-block;
  height: 50px;
  color: #fff;
  margin: 10px 0px 0px;
  cursor: pointer;
}

.verificationbox input[type="submit"]:hover {
  background: #000 0% 0% no-repeat padding-box;
}

.verificationbox p {
  color: #000000;
  font-weight: 500;
  margin: 10px 0px;
}

.verificationbox p a,
.verificationbox p span {
  color: #00829B;
  text-decoration: none;
}

.verificationbox h5 {
  color: #000000;
  font-size: 16px;
  margin-bottom: 20px;
}

/*------Job create---------*/


.jobcreate #checkout-progress {
  width: 90%;
  margin: 0px auto;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .jobcreate #checkout-progress {
    font-size: 15px;
  }
}

.jobcreate #checkout-progress:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  height: 3px;
  width: 40%;
  background-color: #C6DEE2;
  -webkit-transform: translateY(-50%) perspective(1000px);
  transform: translateY(-50%) perspective(1000px);
  margin-top: -70px;
}

.jobcreate #checkout-progress:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  height: 3px;
  width: 40%;
  background-color: #00829B;
  -webkit-transform: scaleX(0) translateY(-50%) perspective(1000px);
  transform: scaleX(0) translateY(-50%) perspective(1000px);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  margin-top: -70px;
}

.jobcreate #checkout-progress.step-2:after {
  -webkit-transform: scaleX(0.333) translateY(-50%) perspective(1000px);
  transform: scaleX(0.333) translateY(-50%) perspective(1000px);
}

.jobcreate #checkout-progress.step-3:after {
  -webkit-transform: scaleX(0.666) translateY(-50%) perspective(1000px);
  transform: scaleX(0.666) translateY(-50%) perspective(1000px);
}

.jobcreate #checkout-progress.step-4:after {
  -webkit-transform: scaleX(1) translateY(-50%) perspective(1000px);
  transform: scaleX(1) translateY(-50%) perspective(1000px);
}

.jobcreate #checkout-progress.step-5:after {
  -webkit-transform: scaleX(1) translateY(-50%) perspective(1000px);
  transform: scaleX(1) translateY(-50%) perspective(1000px);
}

.jobcreate #checkout-progress.step-6:after {
  -webkit-transform: scaleX(1) translateY(-50%) perspective(1000px);
  transform: scaleX(1) translateY(-50%) perspective(1000px);
}

.jobcreate #checkout-progress .progress-bar {
  width: 40%;
  float: right;
  height: 100px;
  justify-content: space-between;
  align-items: center;
  flex-direction: inherit;
  background: no-repeat;
  overflow: inherit;
  margin-top: -120px;
}

.jobcreate #checkout-progress .progress-bar .step {
  z-index: 2;
  position: relative;
}

.jobcreate #checkout-progress .progress-bar .step .step-label {
  position: absolute;
  top: calc(100% + 25px);
  left: 50%;
  -webkit-transform: translateX(-50%) perspective(1000px);
  transform: translateX(-50%) perspective(1000px);
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  color: #000000;
  transition: 0.3s ease;
}

@media (max-width: 767px) {
  .jobcreate #checkout-progress .progress-bar .step .step-label {
    top: calc(100% + 15px);
  }
}

.jobcreate #checkout-progress .progress-bar .step span {
  color: #ccc;
  transition: 0.3s ease;
  display: block;
  -webkit-transform: translate3d(0, 0, 0) scale(1) perspective(1000px);
  transform: translate3d(0, 0, 0) scale(1) perspective(1000px);
}

.jobcreate #checkout-progress .progress-bar .step .fa-check {
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: translate3d(-50%, -50%, 0) scale(0) perspective(1000px);
  transform: translate3d(-50%, -50%, 0) scale(0) perspective(1000px);
}

.jobcreate #checkout-progress .progress-bar .step.active span,
#checkout-progress .progress-bar .step.active .step-label {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

#checkout-progress .progress-bar .step.active .step-label {
  color: #000000;
  font-size: 12px;
}

.jobcreate #checkout-progress .progress-bar .step.valid .fa-check {
  -webkit-transform: translate3d(-50%, -50%, 0) scale(1) perspective(1000px);
  transform: translate3d(-50%, -50%, 0) scale(1) perspective(1000px);
}

.jobcreate #checkout-progress .progress-bar .step.valid span {
  color: #00829B;
  -webkit-transform: translate3d(0, 0, 0) scale(2) perspective(1000px);
  transform: translate3d(0, 0, 0) scale(2) perspective(1000px);
}

.jobcreate #checkout-progress .progress-bar .step.valid .step-label {
  color: #000 !important;
}

.jobcreate #checkout-progress .progress-bar .step:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) perspective(1000px);
  transform: translate(-50%, -50%) perspective(1000px);
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #ccc;
  transition: 0.3s ease;
}

@media (max-width: 767px) {
  .jobcreate #checkout-progress .progress-bar .step:after {
    width: 40px;
    height: 40px;
  }
}

.jobcreate #checkout-progress .progress-bar .step.active:after {
  border: 1px solid #00829B;
  background: #00829B;
}

.jobcreate #checkout-progress .progress-bar .step.valid:after {
  background-color: #00829B;
  border: 5px solid #00829B;
}

.jobcreate .button-container {
  display: inline-block;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  margin: 40px auto 0px;
}

.btn.btn-next {
  float: right;
}

.btn.btn-submit {
  float: right;
}

.jobcreate .button-container .btn {
  display: inline-block;
  background-color: #00829B;
  color: #fff;
  font-size: 13px;
  padding: 10px 15px;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid #00829B;
  transition: 0.3s ease;
  cursor: pointer;
  text-align: center;
  width: 180px;
}

.jobcreate .button-container .btn-prev {
  background-color: #fff;
  color: #00829B;
  border: 1px solid #00829B;
}

.jobcreate .button-container .btn-prev:hover {
  background-color: #00829B !important;
  color: #fff !important;
  border: 1px solid #00829B !important;
}

@media (max-width: 767px) {
  .jobcreate .button-container .btn {
    width: 48%;
    margin-bottom: 15px;
  }
}

.jobcreate .button-container .btn:hover {
  background-color: transparent;
  color: #00829B;
  -webkit-transform: scale(1.02) perspective(1000px);
  transform: scale(1.02) perspective(1000px);
}

.jobcreate section .step {
  background: transparent linear-gradient(180deg, #FFFFFF00 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
  border-radius: 24px;
  padding: 30px;
}

.jobcreate section .step img {
  width: 100%;
  height: auto;
}

.drop-zone {
  max-width: 100%;
  height: auto;
  padding: 25px 18%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
  color: #cccccc;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px dashed #00829B;
  border-radius: 14px;
  margin: 0px 0px 30px;
}

.drop-zone h6 {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  margin: 20px 0px 5px;
}

.drop-zone p {
  color: #6B6B6B;
  font-size: 11px;
}

.drop-zone a.choose_btn {
  background: #fff;
  border: #00829B 1px solid;
  color: #00829B;
  padding: 8px 20px;
  font-size: 12px;
  text-decoration: none;
  border-radius: 5px;
}

.drop-zone--over {
  border-style: solid;
}

.drop-zone__input {
  display: none !important;
}

.drop-zone__thumb {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background-color: #cccccc;
  background-size: cover;
  position: relative;
}

.drop-zone__thumb::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  text-align: center;
}

.savefile {
  background: #EFFAFC 0% 0% no-repeat padding-box;
  border: 1px solid #00829B;
  border-radius: 5px;
  padding: 10px;
  position: relative;
  z-index: 1;
}

.savefile a.close {
  position: absolute;
  right: -15px;
  top: -15px;
  z-index: 2;
  width: 24px;
  height: 24px;
}

.savefile a.close svg {
  background: #fff;
  border-radius: 24px;
}

.note_txt {
  width: 100%;
  display: inline-block;
  border-top: #00829B4F 1px solid;
  margin: 30px 0px 0px;
  padding: 30px 0px 0px;
  text-align: left;
}

.note_txt svg {
  float: left;
  margin-right: 20px;
}

.note_txt p {
  font-size: 13px;
  color: #00829B;
  text-align: left;
}

.jobcreate section .step h4 {
  color: #000000;
  font-size: 18px;
  margin: 0px 0px 20px;
  font-weight: 600;
}

.jobtypebox {
  width: 90%;
}

.jobcreate section .step label {
  width: 100%;
  display: inline-block;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 5px;
}

.jobcreate section .step input {
  width: 100%;
  display: inline-block;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #00829B;
  border-radius: 10px;
  height: 48px;
  padding: 0px 15px;
  color: #000;
  margin-bottom: 20px;
  font-size: 14px;
}

.jobcreate section .step select {
  width: 100%;
  display: inline-block;
  background: #FFFFFF url(../images/dropdown.png) 95% center no-repeat;
  border: 1px solid #00829B;
  border-radius: 10px;
  height: 44px;
  padding: 0px 15px;
  color: #000;
  margin-bottom: 20px;
  font-size: 14px;
  appearance: none;
}

.jobcreate section .step textarea {
  width: 100%;
  display: inline-block;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #00829B;
  border-radius: 10px;
  height: 90px;
  padding: 10px 15px;
  color: #000;
  margin-bottom: 20px;
  font-size: 14px;
}

.questionnaire {
  width: 90%;
}

.questionnaire h4 {
  width: calc(100% - 30px);
  float: left;
}

.questionnaire a.ic {
  width: auto;
  float: right;
}

.questionnairebox {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border-radius: 24px;
  padding: 20px;
  width: 100%;
  display: inline-block;
}

.questionnairebox .scrolldiv {
  width: 100%;
  display: inline-block;
  height: 300px;
  overflow-y: auto;
}

.questionnairebox .scrolldiv li {
  border-bottom: #B6DDE5 1px solid;
  padding: 6px 0px;
  margin: 0px 0px 10px;
}

.questionnairebox .scrolldiv li:last-child {
  border-bottom: #B6DDE5 0px solid;
}

.questionnairebox .scrolldiv li h6 {
  color: #00829B;
  font-size: 16px;
}

.questionnairebox .scrolldiv li p {
  color: #000000;
  text-align: left;
  font-size: 13px;
}

/*------------Congratulations--------*/

.congratulations {
  text-align: center;
}

.congratulations img {
  width: 60%;
  height: auto;
  display: inline-block;
  margin: 0px 0px 20px;
}

.congratulations h3 {
  color: #2CB45B;
  font-size: 21px;
  margin: 0px;
  padding: 0px;
}

.congratulations h6 {
  color: #000000;
  font-size: 16px;
  margin-top: 10px;
}

.congratulations p {
  width: 50%;
  display: inline-block;
  margin-top: 5px;
  font-size: 13px;
}

.congratulations .fourbox {
  border-top: 1px dashed #00829B;
}

.congratulations .fourbox h5 {
  font-size: 13px;
}

.congratulations .fourbox h4 {
  color: #00829B;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}


/*-------my job--------*/

.myjob_tab {
  width: 100%;
  display: inline-block;
}

.myjob_tab ul#myTab {
  width: 90%;
  float: left;
  border: 0px;
}

.myjob_tab li.nav-item {
  width: 100%;
  float: left;
  border-bottom: #B6DDE5 1px solid;
  padding: 0px;
}

.myjob_tab li.nav-item:last-child {
  border-bottom: #B6DDE5 0px solid;
}

.myjob_tab li.nav-item button {
  width: 100%;
  border: 0px;
  color: #000;
  text-align: left;
  font-size: 21px;
  font-weight: 600;
  padding: 25px 0px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #00829B;
  background: none;
  border: none;
}

div#myTabContent {
  width: 100%;
  float: right;
}

.accordion-item {
  background: none;
  border: 0px;
}

.myjob_cont {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border-radius: 24px;
  padding: 20px;
  position: relative;
}

.myjob_cont h3 {
  color: #000000;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
}

.myjob_cont p {
  width: 100%;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: left;
}

.help-txt {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  text-align: center;
  padding: 20px;
  border-top: 1px solid #B6DDE5;
}

.help-txt h5 {
  color: #000000;
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.help-txt .yesno {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #00829B;
  border-radius: 6px;
  width: auto;
  display: inline-block;
}

.help-txt .yesno a {
  padding: 10px 15px;
  display: inline-block;
  width: 60px;
  color: #00829B;
  font-size: 14px;
  border-right: 1px solid #00829B;
  text-decoration: none;
}

.help-txt .yesno a:last-child {
  border-right: 0px solid #00829B;
}

.help-txt p {
  width: 100%;
  font-size: 13px;
  text-align: center;
  margin-top: 15px;
}

.help-txt p a {
  color: #00829B;
}

@media (max-width: 991px) {
  .tab-content>.tab-pane {
    display: block;
    opacity: 1;
  }
}

.myjob {
  padding-top: 0px;
}

.myjob .heading {
  width: 100%;
  display: inline-block;
  background: #00829B;
  padding: 60px 0px;
  margin-bottom: 60px;
  text-align: center;
}

.myjob .heading h2 {
  color: #fff;
}


/*Jeel 28-11-2025*/
/*Help and support*/

.top-header {
  text-align: center;
  padding: 0px 20px 40px;
  background: transparent linear-gradient(180deg, #FFFFFF00 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
  border-radius: 24px;
  margin-top: 30px;
}

.help-btn {
  padding: 8px 18px;
  border: 1px solid #8ecad8;
  border-radius: 26px;
  background: #f0fcff;
  color: #008ea3;
  font-weight: 600;
  font-size: 22px;
  cursor: pointer;
}

.title {
  font-size: 40px;
  margin-top: 25px;
  font-weight: 700;
}

.title span {
  color: #2fb7c5;
}

.subtitle {
  font-weight: 700;
  padding-top: 25px;
  text-align: center;
  letter-spacing: 0px;
  color: #6B6B6B;
  margin: 0;
}

/* SEARCH BOX */
.search-container {
  margin: 38px auto;
  width: 100%;
  max-width: 730px;
  display: flex;
  align-items: center;
}

.search-container .subtitle {
  text-align: left;
  color: #000;
  font-size: 14px;
}

.search-container input {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #D0D6E1;
  outline: none;
}

.search-btn {
  padding: 12px 14px;
  background: #3dcad6;
  border: none;
  border-radius: 0 6px 6px 0;
  color: #fff;
  cursor: pointer;
}

/* POPULAR TAGS */
.popular {
  margin-top: 15px;
  font-size: 14px;
}

.popular strong {
  color: #00829B;
  font-weight: 600;
}

.tag {
  padding: 5px 10px;
  margin: 0 5px;
  font-size: 13px;
  cursor: pointer;
  border: 1px solid #B5D7DE;
  border-radius: 5px;
  opacity: 1;
  font-weight: 600;
  display: inline-block;
}

span.tag:hover {
  background-color: #B5D7DE;
  color: #00829B;
  transition: 0.5s;
}

/* SECTION TITLE */
.homeowner-section {
  margin-top: 70px;
  text-align: center;
}

.homeowner-section h2 {
  font-size: 24px;
  color: #027b8c;
  margin-bottom: 60px;
}

/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 20px;
  margin: auto;
  padding: 10px 20px 50px;
}

.card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  background: transparent linear-gradient(180deg, #EFFAFC 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
  border: 1px solid #CEE1E4;
  border-radius: 15px;
  opacity: 1;
  padding: 15px 25px;
}

.card:hover {
  background: #427f98;
  border: 1px solid #427f98;
  transition: 0.5s;
}

.card:hover p,
.card:hover .arrow {
  color: #fff;
}

.icon {
  padding-right: 12px;
  border-radius: 50%;
  font-size: 18px;
  width: 50px;
  height: 50px;
}

.icon img {
  width: 100%;
  height: 100%;
}

.card p {
  flex: 1;
  text-align: left;
  font-weight: 600;
  margin: 0;
}

.arrow {
  font-size: 24px;
  color: #02849a;
  position: relative;
  right: 0;
}

.help-support h1 {
  padding: 0;
  margin: 0;
}

.homeowner-section.tradies-section {
  margin-top: 20px;
}

.homeowner-section.tradies-section h2 {
  margin-bottom: 30px;
}

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

.missionbox h2 {
  text-align: left;
  flex: 0 0 50%;
}

.missionbox p {
  width: 100%;
  text-align: left;
  margin: 0;
}

.help-support .missionbox::before {
  position: absolute;
  left: 0px;
  top: 0px;
  background-size: 96%;
  width: 100%;
  content: '';
  background: url(../images/bg3.png) 550px no-repeat;
  height: 100%;
}

.help-support .missionbox::after {
  content: none;
}

.help-support .missionbox div {
  max-width: 30%;

}

.search-container .field-icon {
  position: relative;
  width: 100%;
}

.search-container .field-icon input {
  width: 100%;
}

.search-btn {
  position: absolute;
  right: 4px;
  top: 3px;
  width: 43px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #4aa4c8, #58d3b5);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.search-btn .icon {
  font-size: 32px;
  color: white;
}

.help-support a.pecomeaTradie_btn:hover {
  background: transparent linear-gradient(106deg, #00E0D7 0%, #0098B6 100%) 0% 0% no-repeat padding-box;
  color: #fff;
}

/*--------forgot_password----------*/

.forgot_password {
  text-align: center;
}

.forgot_password label {
  width: 100%;
  display: inline-block;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 5px;
}

.forgot_password input {
  width: 100%;
  display: inline-block;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #00829B;
  border-radius: 10px;
  height: 48px;
  padding: 0px 15px;
  color: #000;
  margin-bottom: 20px;
}

.forgot_password .groupdiv {
  position: relative;
  width: 60%;
  display: inline-block;
  clear: both;
  margin: 0px 10%;
}

.main-password {
  position: relative;
}

.icon-view {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 30px;
  height: 30px;
  color: #000000;
}

/*Footer start*/
.codepen_profile {
  position: fixed;
  right: 20px;
  bottom: 20px;
}

.codepen_profile a {
  background: rgba(245, 122, 32, 0.53);
  padding: 15px;
  border-radius: 50%;
  box-shadow: #ccc 0 5px 16px;
  height: 60px;
  width: 60px;
  display: inline-block;
}

/*Footer End*/


/*----------trady-login_step--------*/

.login_step.jobcreate #checkout-progress .progress-bar {
  width: 60%;
  float: none;
  margin: 0px 20%;
}

.login_step.jobcreate #checkout-progress:before {
  width: 60%;
  margin: 0px 20%;
}

.login_step.jobcreate #checkout-progress:after {
  width: 60%;
  margin: 0px 20%;
}


.login_step .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0px;
}

.login_step .form-group {
  display: flex;
  flex-direction: column;
}

.login_step .form-group.full {
  grid-column: 1 / -1;
}

.login_step .form-label {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
}

.login_step .form-input {
  padding: 14px 16px;
  border: 2px solid #0891A8;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: #FFFFFF;
  color: #000000;
}

.login_step .form-input::placeholder {
  color: #D1D5DB;
}

.login_step .form-input:focus {
  outline: none;
  border-color: #0891A8;
}

.login_step .password-wrapper {
  position: relative;
}

.login_step .password-toggle {
  position: absolute;
  right: 16px;
  top: 36%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login_step .password-toggle svg {
  width: 20px;
  height: 20px;
  color: #000;
}

.login_step .checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.login_step .checkbox-group .checkbox-input {
  width: 24px;
  height: 24px;
  border: 2px solid #D1D5DB;
  border-radius: 4px;
  cursor: pointer;
}

.login_step .checkbox-group .checkbox-label {
  font-size: 14px;
  color: #000000;
  margin-top: -15px;
}

.login_step .checkbox-label a {
  color: #0891A8;
  text-decoration: none;
}

.login_step .checkbox-label a:hover {
  text-decoration: underline;
}


.login_step .form-select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: #FFFFFF;
  color: #9CA3AF;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.login_step .form-select:focus {
  outline: none;
  border-color: #0891A8;
}

.login_step .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: #FFFFFF;
  color: #000000;
  min-height: 120px;
  resize: vertical;
}

.login_step .form-textarea::placeholder {
  color: #D1D5DB;
}

.login_step .form-textarea:focus {
  outline: none;
  border-color: #0891A8;
}

.login_step .form-description {
  font-size: 12px;
  color: #6B7280;
  margin-bottom: 8px;
}