/*-------------------------------------------
  Base
-------------------------------------------*/
/* ------ START responsive breakpoints ------- */
/* ------ END responsive breakpoints ------- */
:root {
  --red: #30484e;
  --yellow: #FCBF49;
  --darkblue: #003049;
  --light-bg: #F2F4F6;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: #E5E5E5;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji;
  color: var(--darkblue);
  scroll-behavior: smooth;
}
body::-webkit-scrollbar {
  width: 12px;
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--darkblue);
}

* {
  margin: 0;
  box-sizing: border-box;
}

/*-------------------------------------------
  helpers
-------------------------------------------*/
.text-red {
  color: var(--red) !important;
}

.text-yellow {
  color: var(--yellow) !important;
}

.bg-red {
  background-color: var(--red);
}

.bg-yellow {
  background-color: var(--yellow);
}

.bg-light {
  background-color: var(--light-bg);
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-700 {
  font-weight: bold !important;
}

.unde {
  text-decoration: underline !important;
}

.w-100 {
  width: 100%;
}

.w-75 {
  width: 75%;
}

.w-50 {
  width: 50%;
}

.w-25 {
  width: 25%;
}

.w-20 {
  width: 20%;
}

.w-10 {
  width: 10%;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.para {
  line-height: 24px;
  font-size: 16px;
}

/*----------- Noba buttons ----------*/
button.noba-btn,
.noba-btn {
  font-size: 25px;
  text-align: center;
  color: #ffffff;
  border-radius: 0;
  border: 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
button.noba-btn.btn-lg,
.noba-btn.btn-lg {
  padding: 20px;
  width: 100%;
  font-size: 25px;
  font-weight: 700;
  color: #fff;
}
button.noba-btn.btn-lg:hover, button.noba-btn.btn-lg:focus, button.noba-btn.btn-lg:active,
.noba-btn.btn-lg:hover,
.noba-btn.btn-lg:focus,
.noba-btn.btn-lg:active {
  background-color: #C5CCCC;
  color: #000;
  outline: none !important;
  border: none;
}
button.noba-btn.bg-red,
.noba-btn.bg-red {
  box-shadow: inset 0px -6px 0px 0px var(--red);
}
button.noba-btn.bg-red:hover,
.noba-btn.bg-red:hover {
  color: #fff;
  background-color: var(--red);
}
button.noba-btn.bg-yellow,
.noba-btn.bg-yellow {
  background: #30484E;
}
button.noba-btn.bg-yellow:hover,
.noba-btn.bg-yellow:hover {
  color: #000;
  background-color: #C5CCCC;
}

/*-------------------------------------------
  calcualtor
-------------------------------------------*/
body {
  background-color: rgba(48, 72, 78, 0.1) !important;
}

#app {
  background-color: #ffffff;
  padding: 0 0 80px;
}

.noba-calculator-wrapper {
  width: 100%;
  margin: 0 auto;
  border-radius: 0;
  background-color: #ffffff;
  overflow: hidden;
}

/* calculator header style */
.noba-calculator-header {
  color: #ffffff;
  text-align: center;
  padding: 24px 30px 15px;
  background-color: #30484e;
}
.noba-calculator-header .title {
  color: #fff;
  font-weight: 700 !important;
}

.noba-calculator-header h2 {
  font-size: 32px;
  margin: 0 0 16px;
  color: #fff;
}
@media (min-width: 1024px) {
  .noba-calculator-header h2 {
    font-size: 36px;
  }
}

.noba-calculator-header p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

/* calculator body style */
.noba-calculator-body {
  padding: 25px 25px 30px;
  max-width: 780px;
  margin: 0 auto;
}

.noba-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.noba-step-btn {
  outline: none;
  width: 36px;
  height: 36px;
  border: 0;
  padding: 0;
  color: rgb(48, 72, 78);
  font-size: 18px;
  border-radius: 50%;
  background-color: #ffffff;
  cursor: not-allowed;
  pointer-events: none;
  margin-right: 78px;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.noba-step-btn:hover, .noba-step-btn:focus, .noba-step-btn:active {
  outline: none !important;
  border: none;
}

.noba-step-btn:last-child {
  margin-right: 0;
}

.noba-step-btn::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 4px;
  border-radius: 0;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  right: calc(100% + 14px);
}

.noba-step-btn:first-child::before {
  display: none;
}

.noba-step-btn.active,
#nobaStep2.active:before,
#nobaStep3.active:before {
  cursor: pointer;
  pointer-events: all;
  background-color: #7fb069 !important;
  color: #ffffff;
}

/*--------- Noba step content ------------*/
.noba-list {
  list-style: none;
}
.noba-list li {
  font-size: 15px;
  padding: 5px 5px 5px 25px;
  background-image: url("/wp-content/themes/hello-elementor-child/assets/images/icon-check.svg");
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 18px 18px;
  font-weight: 500;
  line-height: 22.5px;
}

.noba-checkbox {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: auto;
}
.noba-checkbox .text {
  cursor: pointer;
  font-size: 16px;
}
.noba-checkbox input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  opacity: 0;
  height: 0;
  width: 0;
}
.noba-checkbox .check-icon {
  background: #ffffff;
  border: 1px solid rgba(0, 48, 73, 0.5);
  border-radius: 0;
  height: 20px;
  width: 20px;
  display: inline-block;
  margin-right: 11px;
  cursor: pointer;
}
.noba-checkbox input[type=checkbox]:checked ~ .check-icon {
  background-image: url("/wp-content/themes/hello-elementor-child/assets/images/icon-checkbox.svg");
  background-size: 14px 9px;
  background-position: center center;
  background-repeat: no-repeat;
}

.noba-step-content {
  padding: 25px 0 0 0;
}
.noba-step-content .nsc-header {
  padding: 20px;
  border-radius: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  margin-bottom: 35px;
}
@media (min-width: 1024px) {
  .noba-step-content .nsc-header {
    flex-wrap: wrap;
  }
}
.noba-step-content .nsc-header .left {
  width: 100%;
}
@media (min-width: 1024px) {
  .noba-step-content .nsc-header .left {
    width: 50%;
  }
}
.noba-step-content .nsc-header .right {
  width: 100%;
}
@media (min-width: 1024px) {
  .noba-step-content .nsc-header .right {
    width: 50%;
  }
}
.noba-step-content .nsc-form label {
  display: block;
  font-size: 18px;
  line-height: 29px;
  margin-bottom: 8px;
}
.noba-step-content .nsc-form input[type=text],
.noba-step-content .nsc-form input[type=number],
.noba-step-content .nsc-form input[type=email] {
  font-size: 18px;
  color: var(--darkblue);
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(0, 48, 73, 0.5);
  border-radius: 0;
  height: 60px;
  padding: 10px 15px;
  outline: none;
  -webkit-appearance: none;
}
.noba-step-content .nsc-form input[type=text]::placeholder,
.noba-step-content .nsc-form input[type=number]::placeholder,
.noba-step-content .nsc-form input[type=email]::placeholder {
  color: rgba(0, 48, 73, 0.4);
  font-size: 18px;
}
.noba-step-content .nsc-form .noba-checkbox label {
  display: inline-block;
  font-size: 16px;
  margin-bottom: 0;
}
.noba-step-content .noba-form-field {
  margin-bottom: 20px;
  display: block;
  width: 100%;
}
.noba-step-content .noba-form-field--cta {
  margin-top: 40px;
}
.noba-step-content .noba-form-field:last-child {
  margin-bottom: 0;
}

.noba-toggle-field {
  background: #ffffff;
  border: 1px solid rgba(0, 48, 73, 0.5);
  box-sizing: border-box;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  overflow: hidden;
  position: relative;
  padding: 9px;
  height: 60px;
}
.noba-toggle-field input[type=radio] {
  appearance: none;
  opacity: 0;
  display: none;
}
.noba-toggle-field label {
  width: 50%;
  height: 96%;
  min-height: 72px;
  text-align: center;
  background-color: #fff;
  margin-bottom: 0 !important;
  display: flex !important;
  justify-content: center;
  align-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 24px;
}
.noba-toggle-field label .text {
  color: #99acb6;
  width: 100%;
  min-height: 45px;
  display: flex !important;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: 0;
  font-size: 16px;
}
.noba-toggle-field label input[type=radio]:checked ~ .text {
  background-color: var(--red);
  color: #fff;
}

.noba-form-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  .noba-form-row {
    flex-wrap: nowrap;
  }
}
.noba-form-row .noba-form-col:not(:first-child) {
  margin-top: 30px;
}
@media (min-width: 1024px) {
  .noba-form-row .noba-form-col:not(:first-child) {
    margin-top: 0;
  }
}
.noba-form-row .w-50 {
  width: 100%;
}
@media (min-width: 1024px) {
  .noba-form-row .w-50 {
    width: 48%;
  }
}

#noba-step-content-1 .nsc-header .left {
  width: 100%;
}
@media (min-width: 1024px) {
  #noba-step-content-1 .nsc-header .left {
    width: 55%;
  }
}
#noba-step-content-1 .nsc-header .right {
  width: 100%;
}
@media (min-width: 1024px) {
  #noba-step-content-1 .nsc-header .right {
    width: 45%;
  }
}
#noba-step-content-1 .nsc-header .noba-list {
  padding-left: 0;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  #noba-step-content-1 .nsc-header .noba-list {
    padding-left: 20px;
    margin-top: 0;
  }
}
#noba-step-content-1 .nsc-header .title-1 {
  font-size: 18px;
  margin: 0;
  line-height: 26px;
}
#noba-step-content-1 .nsc-header .para {
  font-size: 16px;
}
#noba-step-content-1 .nsc-header .title-2 {
  font-size: 18px;
  margin: 30px 0 0 0;
}

#noba-step-content-2 .nsc-header {
  justify-content: center;
  text-align: center;
}
@media (min-width: 1024px) {
  #noba-step-content-2 .nsc-header {
    justify-content: flex-start;
    text-align: left;
  }
}
#noba-step-content-2 .nsc-header .left,
#noba-step-content-2 .nsc-header .right {
  width: auto;
}
#noba-step-content-2 .nsc-header .left {
  margin-right: 20px;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  #noba-step-content-2 .nsc-header .left {
    margin-bottom: 0;
  }
}
#noba-step-content-2 .nsc-header .right .title-1 {
  font-size: 20px;
  margin-bottom: 10px;
}
#noba-step-content-2 .nsc-form .title-1 {
  font-size: 32px;
  padding-bottom: 26px;
  text-align: center;
}
@media (min-width: 1024px) {
  #noba-step-content-2 .nsc-form .title-1 {
    font-size: 42px;
    text-align: left;
  }
}
#noba-step-content-2 .nsc-form .noba-divider {
  margin-bottom: 30px;
  opacity: 0.2;
}

#noba-step-content-3 .noba-list {
  padding-left: 0;
  margin-top: 10px;
}
#noba-step-content-3 .nsc-header--top {
  padding: 0;
}
#noba-step-content-3 .nsc-header--top .left {
  padding: 44px 40px;
  border-radius: 0;
  text-align: center;
  width: 100%;
}
@media (min-width: 1024px) {
  #noba-step-content-3 .nsc-header--top .left {
    width: 50%;
  }
}
#noba-step-content-3 .nsc-header--top .left .title-1 {
  color: var(--darkblue);
  font-size: 22px;
}
#noba-step-content-3 .nsc-header--top .left .title-2 {
  color: var(--red);
  font-size: 42px;
}
#noba-step-content-3 .nsc-header--top .left .title-2 span {
  font-weight: 400 !important;
  font-size: 20px !important;
  color: var(--darkblue);
  opacity: 0.5;
}
#noba-step-content-3 .nsc-header--top .left .para {
  font-size: 16px;
}
#noba-step-content-3 .nsc-header--top .right {
  width: 100%;
  margin-top: 30px;
}
@media (min-width: 1024px) {
  #noba-step-content-3 .nsc-header--top .right {
    width: 45%;
    margin-top: 0;
  }
}
#noba-step-content-3 .nsc-header--top .right .line-item {
  padding: 3px 0;
  font-size: 16px;
  line-height: 24px;
}
#noba-step-content-3 .nsc-header--top .right .line-item span {
  font-size: 16px;
}
#noba-step-content-3 .nsc-header--bottom {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 45px 0;
  text-align: center;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  #noba-step-content-3 .nsc-header--bottom {
    flex-wrap: nowrap;
    text-align: left;
  }
}
#noba-step-content-3 .nsc-header--bottom .title-1 {
  font-size: 20px;
  color: var(--red);
  font-weight: bold;
  margin-bottom: 5px;
}
#noba-step-content-3 .nsc-header--bottom .para {
  margin-bottom: 10px;
  font-size: 16px;
}
#noba-step-content-3 .nsc-header--bottom .para:last-child {
  margin-bottom: 0;
}
#noba-step-content-3 .nsc-header--bottom .left,
#noba-step-content-3 .nsc-header--bottom .right {
  width: 100%;
}
@media (min-width: 1024px) {
  #noba-step-content-3 .nsc-header--bottom .left,
  #noba-step-content-3 .nsc-header--bottom .right {
    width: auto;
  }
}
#noba-step-content-3 .nsc-header--bottom .left {
  margin-right: 20px;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  #noba-step-content-3 .nsc-header--bottom .left {
    margin-bottom: 0;
  }
}
#noba-step-content-3 .nsc-form .title-1 {
  font-size: 42px;
  padding-bottom: 26px;
}
#noba-step-content-3 .nsc-form .noba-divider {
  margin-bottom: 30px;
  opacity: 0.2;
}
#noba-step-content-3 .nsc-content .title-1 {
  font-weight: 400;
}
#noba-step-content-3 .nsc-content .noba-divider {
  opacity: 0.2;
  margin: 35px 0;
}
#noba-step-content-3 .noba-form-row a {
  display: block;
}
#noba-step-content-3 .noba-form-field--cta .col:first-child {
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  #noba-step-content-3 .noba-form-field--cta .col:first-child {
    margin-bottom: 0;
  }
}

.noba-calculator-errors {
  padding: 20px;
  border-radius: 0;
  margin-top: 30px;
  background-color: rgba(255, 84, 84, 0.1);
}
.noba-calculator-errors li {
  color: #ff5454;
  font-weight: bold;
}

footer,
[data-elementor-type=footer] {
  display: none;
}

#loader,
#loader:after {
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

#loader {
  font-size: 4px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(0, 0, 0, 0.2);
  border-right: 1.1em solid rgba(0, 0, 0, 0.2);
  border-bottom: 1.1em solid rgba(0, 0, 0, 0.2);
  border-left: 1.1em solid #fff;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 0.4s infinite linear;
  animation: load8 0.4s infinite linear;
  margin-left: 12px;
  display: inline-block;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=style.css.map */
