@charset "UTF-8";

:root {
  --theme-color: #1ea7aa;
  --theme-color-2: #055b8d;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #2c2c2c;
  font-family: "Open Sans", sans-serif;
  -moz-osx-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  background: #f9f9f9;
}

.bg-black {
  background-color: #000;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

a:hover,
a:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}


button {
  cursor: pointer;
}

.form-control:focus,
button:visited,
button.active,
button:hover,
button:focus,
input:visited,
input.active,
.wizard-form-field select.active,
input:focus,
textarea:hover,
textarea:focus,
a:hover,
a:focus,
a:visited,
a.active,
select,
select:hover,
select:focus,
select:visited {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-decoration: none;
  color: inherit;
}

.form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.relative-position {
  position: relative;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Open Sans", sans-serif;
}


.main-header {
  width: 100%;
  top: 0;
  z-index: 9;
  position: absolute;
  background: rgb(255 255 255 / 79%);
  box-shadow: 0px 0px 20px rgb(0 0 0 / 11%);
}

.header-area {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: block;
}

.logo a {
  display: block;
  height: auto;
  padding: 15px 0;
  width: 100%;
  text-align: center;
  max-width: 270px;
  margin: auto;
}

.header-right a {
  color: var(--theme-color);
  font-weight: 600;
}

.header-right .step-call {
  align-items: center;
  background: linear-gradient(-180deg, #fff, #005c5f2e);
  border: none;
  border-radius: 4px;
  box-shadow: 0 0 0 1px #005c5f;
  color: var(--theme-color);
  display: flex;
  font-size: 18px;
  line-height: 24px;
  min-width: 100px;
  padding: 10px 18px;
  text-decoration: none;
  font-weight: 700;
}

.header-right .step-call:hover {
  align-items: center;
  background: linear-gradient(359deg, #fff, #005c5f2e);
  border: none;
}

.header-right .step-call img {
  height: 20px;
  margin-right: 8px;
  width: 20px;
  opacity: .8;
}

.hero-section {
  min-height: 90vh;
  background-image: url(../img/hero-img.jpg);
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: top;
}

.hero-img {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: -1;
}

.hero-text {
  text-align: left;
  max-width: 550px;
}

.hero-text h1 {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0px 0px 5px #000;
}

.hero-text p {
  font-size: 25px;
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 50px;
  text-shadow: 0px 0px 5px #000;
}

.theme-btn {
  border-radius: 5px;
  background: var(--theme-color);
  border-width: 1px 0;
  border: 0;
  color: #ffffff !important;
  font-size: 16px;
  padding: 15px 30px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  max-width: 100%;
  min-width: 200px;
  display: inline-block;
  font-weight: 700;
  transition: .5s ease all;
}

.theme-btn:hover {
  background: #000;
}

.zip-form {
  display: flex;
}

.zip-form .floating-label-content {
  margin: 0;
  width: 100%;
}

.hero-text .theme-btn {
  min-width: 200px;
  border-radius: 0;
}

.carrier-logos {
  background: var(--theme-color-2);
  padding: 35px 0;
}

.carrier-logos .col {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 850px;
  margin: auto;
}

.footer-area-top p {
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.footer-area-top {
  background: var(--theme-color);
  padding-top: 50px;
  padding-bottom: 10px;
  border-bottom: 1px solid #25c8cb;
}

.footer-area-bottom {
  background: #1a9093;
  padding: 20px 0;
}

.footer-area-bottom ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-area-bottom ul li a {
  color: #eee;
  display: inline-block;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
}

.footer-area-bottom ul li:after {
  content: '|';
  color: #eee;
}

.footer-area-bottom ul li:last-child::after {
  opacity: 0;
}

.copyright-text a:hover {
  text-decoration: underline;
  color: #fff;
}

.copyright-text a {
  color: #1FC157;
}

.copyright>p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.footer .get-start-title * {
  color: #fff;
}

.footer .get-start-title h2 {
  font-size: 40px;
}

.footer .get-start-title p {
  font-size: 16px;
}

.footer-client {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.footer-client img {
  max-width: 125px;
}

footer.footer ul {
  text-align: center;
  list-style: none;
  margin: 25px auto;
  padding: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 2;
  display: flex;
  gap: 15px;
}



.zip-input {
  appearance: none;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
  color: #000;
  margin: 0;
  outline: none;
  width: 100%;
  font-size: 16px;
  height: 65px;
  line-height: 24px;
  padding: 15px 20px 15px;
}

.zip-form input::placeholder {
  color: #777;
}

.zip-form input:focus::placeholder {
  color: #777;
}

.form-control {
  background-color: #ffffff !important;
  border: 2px solid #e1e1e1;
  min-height: 55px;
  font-size: 14px;
  box-shadow: none;
  border-radius: 5px;
  color: #777;
  outline: 0;
  box-shadow: inset 0 0 10px #0000001c;
}

.form-control:focus {
  border: 2px solid var(--theme-color);
  box-shadow: none;
  background-color: #fff !important;
}

select.form-control {
  background-image: url(../img/chevron-down.svg);
  background-size: 15px;
  background-position: calc(100% - 15px) 50%;
  background-repeat: no-repeat;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.single-item .theme-btn {
  width: 100%;
  text-align: center;
  font-size: 14px;
}

.single-item .theme-btn-2 {
  margin-top: 10px;
  background: #055b8d;
}

.single-item {
  padding: 25px 30px;
    background: #fff;
  display: flex;
  justify-content: space-between;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  align-items: center;
  border: 1px solid #eee;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 10px 20px 0 rgb(16 43 147 / 10%);
  box-shadow: 0 10px 20px 0 rgb(16 43 147 / 10%);

}

.item-left {
  display: flex;
  align-items: center;
  width: calc(100% - 300px);
  padding-right: 30px;
}

.item-right {
  float: right;
  width: 300px;
}

.item-right .btn {
  display: flex;
  align-items: center;
  font-size: 18px;
  justify-content: center;
}

.item-img a {
  display: inline-block;
  width: 200px;
}

.item-img img {
  overflow: hidden;
  z-index: 999;
  width: 100%;
  height: auto;
}

.item-details h4 {
  color: #121212;
  font-size: 22px;
  text-align: left;
  padding-left: 25px;
  font-weight: 700;
}

.custom-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  margin-top: 20px;
}

.custom-list li {
  padding-left: 30px;
  line-height: 1.5;
  font-size: 14px;
  color: #000;
  font-weight: 400;
  position: relative;
  margin-bottom: 5px;
  text-align: left;
}

.custom-list li a {
  color: #2c2c2c;
  text-decoration: underline;
}

.custom-list li:before {
  content: "";
  background-image: url(../img/check-dark.svg);
  color: #e92739;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: -25px;
  top: 5px;
  width: 16px;
  height: 16px;
  font-weight: 900;
  position: absolute;
  background-size: contain;
}

.listing-main {
  /* max-width: 991px; */
  margin: auto;
}

.Recommended {
  display: flex;
  position: absolute;
  background: var(--theme-color-2);
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  font-weight: 700;
  padding: 5px 10px;
}

.single-item.active {
  position: relative;
  border: 1px solid var(--theme-color-2);
  padding-top: 56px;
}

.Recommended img {
  width: 22px;
  height: 22px;
  background: #115d60;
  border-radius: 100%;
  padding: 2px;
  margin-right: 5px;
}

.phone-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.phone-bottom .checkbox-chk {
  margin-left: 10px;
}

.header-call {
  display: flex;
  align-items: center;
}

.header-call-icon {
  width: 60px;
  background: radial-gradient(#0092cd, #055b8d);
  border-radius: 100%;
  height: 60px;
  padding: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-call p {
  width: calc(100% - 60px);
  line-height: 1.3;
  padding-left: 15px;
}

.header-call p span {
  font-size: 16px;
}

.header-call p a {
  display: block;
  font-size: 30px;
  font-weight: 800;
}

.header-call-icon img {
  width: 30px;
  filter: invert(1);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.for-mobile {
  display: none !important;
  width: 50px;
  border-radius: 100%;
  height: 50px;

}

.zip-form label.error {
  position: absolute;
  bottom: -30px;
  font-weight: 700;
}

label.error {
  color: red;
}




.wizard-container {
  background: #fff;
  position: relative;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  z-index: 1;
  padding: 65px;
  overflow: hidden;
  border-radius: 3px;
  transition: 0.4s;
  z-index: 1;
  margin-bottom: 30px;
  max-width: 991px;
  margin: auto;
  width: 100%;
  /* min-height: 500px; */
  display: flex;
  /* align-items: center; */
  justify-content: center;
}

.form-section-wrap {
  width: 100%;
}

.inner-form {
  max-width: 450px;
  margin: auto;
  text-align: center;
  padding-top: 20px;
}

.inner-form.info-form {
  max-width: 700px;
}

.footer-text {
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: left;
  padding: 0 15px;
}

.progress-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: auto;
  z-index: 9;
  margin-bottom: 45px;
  margin-top: 0px;
}

.progress-container::before {
  content: "";
  background-color: var(--theme-color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 3px;
  width: 100%;
  z-index: -1;
}

.progress-container .progress {
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 4px;
  width: 0%;
  z-index: -1;
  transition: 0.4s ease;
}

.progress-container .circle {
  background-color: #fff;
  color: var(--theme-color);
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--theme-color);
  transition: 0.4s ease;
  font-size: 16px;
  font-weight: 700;
}

.progress-container .circle.active {
  border-color: #0c6769;
  background: var(--theme-color);
  color: white;
  animation: pulse 2s infinite;
}

.progress-container .circle.active.compleated {
  animation: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #00ad3c;
  }

  100% {
    box-shadow: 0 0 0 10px #027f0000;
  }
}


.question {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
}

.wizard-form h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
}

.wizard-form p {
  text-align: center;
  font-size: 16px;
  max-width: 700px;
  margin: auto;
}

.note {
  margin: 0;
  margin-top: 35px !important;
  text-align: center;
  font-size: 16px;
  color: #138339;
  font-weight: 600;
}

.radio_text {
  padding: 0px;
  display: flex;
  width: 100%;
  justify-content: center;
  max-width: 500px;
  margin: auto;
  column-gap: 20px;
  margin-top: 30px;
  column-gap: 20px;
}

.radio_text p {
  display: inline-block;
  width: 100%;
  margin-bottom: 12px;
}

.radio_text input[type="radio"] {
  display: none;
}

.radio_text input[type="radio"]+label {
  max-width: 400px;
  min-height: 60px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: var(--theme-color);
  width: 100%;
  padding: 20px 15px;
  box-sizing: border-box;
  border-radius: 4px;
  border: 2px solid var(--theme-color);
  margin: auto;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  padding-left: 55px;
  text-align: left;
}

.radio_text input[type="radio"]+label:hover {
  background: var(--theme-color-2);
  border: 2px solid var(--theme-color-2);
}

.radio_text input[type="radio"]+label:before,
.radio_text input[type="radio"]+label:after {
  /* opacity: 0; */
  content: "";
  position: absolute;
  /* top: 0; */
  left: 20px;
  width: 22px;
  height: 22px;
  text-align: center;
  background: #f2f2f2;
  font-family: Times;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.radio_text input[type="radio"]+label:before {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 0 0.2em #eeeeee, inset 0 0 0 1em #eeeeee;
  border: 1px solid #b9b9b9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radio_text input[type="radio"]:checked+label:before {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  content: "";
  background: var(--theme-color-2);
  border-radius: 100%;
  width: 14px;
  height: 14px;
  display: inline-block;
  z-index: 9;
  box-shadow: none;
  border: 0;
  top: 24px;
  left: 24px;
}

.radio_text input[type="radio"]:checked+label {
  border: 2px solid var(--theme-color-2);
  font-weight: 700;
  color: #fff;
  background: var(--theme-color-2);
}

section.main {
  padding: 50px 0;
}

.box-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  color: var(--theme-color-2);
}



.flat_radio [type="radio"]:checked,
.flat_radio [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.flat_radio [type="radio"]:checked+label,
.flat_radio [type="radio"]:not(:checked)+label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #0a0a0a;
  margin-bottom: 10px;
}

.flat_radio [type="radio"]:checked+label:before,
.flat_radio [type="radio"]:not(:checked)+label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--theme-color);
  border-radius: 100%;
  background: #fff;
}

.flat_radio [type="radio"]:checked+label:after,
.flat_radio [type="radio"]:not(:checked)+label:after {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--theme-color);
  position: absolute;
  top: 5px;
  left: 3px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.flat_radio [type="radio"]:not(:checked)+label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.flat_radio [type="radio"]:checked+label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.thank-title h2 {
  font-size: 30px;
  font-weight: 800;
  /* text-align: center; */
  text-transform: uppercase;
  color: var(--theme-color);
  margin-bottom: 10px;
}

.thank-title {
  /* text-align: center; */
  /* margin-bottom: 20px; */
}

.thank-title h4 {
  font-size: 20px;
}

.thank-title h4 em {
  font-style: normal;
  font-weight: 700;
}

.thankyou-form h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.popBox {
  padding: 25px;
  background: #e1f3f3;
  border: 1px dashed var(--theme-color);
  margin-bottom: 15px;
}

.popBox input {
  width: 65px;
  border: 1px solid #ccc;
  padding: 3px 10px;
}

.flat_radio {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.thankyou-form h3 em {
  font-weight: 400;
  font-size: 14px;
}

.thank-title h5 {
  font-size: 18px;
  line-height: 1.5;
}

.thank-title h5 span {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: var(--theme-color-2);
  padding: 10px 0;
}


.search-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  margin-top: 50px;
}

.search-list li {
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease-in;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

.search-list .loader,
.search-list .checkmark {
  width: 25px;
  height: 25px;
  margin-right: 10px;
  flex-shrink: 0;
}

.search-list .loader {
  border: 3px solid #e5e5e5;
  border-top: 3px solid #1ea7aa;
  border-radius: 50%;
  animation: search-spin 1s linear infinite;
}

.search-list .checkmark {
  background: #055b8d;
  display: none;
  margin-top: -5px;
  border-radius: 100%;
  padding: 0px 3px;
}

.search-list .checkmark img {
  filter: invert(1);
}

.search-list .visible {
  opacity: 1;
}

@keyframes search-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.searching-box {
  display: flex;
  align-items: center;
  margin-top: 35px;
}

.searching-box .thank-title {
  width: 60%;
}

.searching-box .searching-box-img {
  width: 40%;
}

.searching-box .searching-box-img img {
  width: 100%;
}

.call-box {
  text-align: center;
  margin-bottom: 20px;
}

.call-box h3 {
  font-size: 25px;
  font-weight: 600;
}

.call-box h4 a {
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  color: var(--theme-color-2);
}

.wizard-container .form-control.error {
  border: 2px solid #f00;
  box-shadow: inset 0 0 10px #ff00003d;
}

.wizard-container label.error {
  text-align: left;
  display: block;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width:767px) {
  .logo img {
    max-width: 210px;
  }

  .main-header {
    position: relative;
  }

  .for-mobile {
    display: inline-block !important;
  }

  .header-call {
    display: none;
  }

  .header-call-icon.for-mobile a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .hero-section {
    min-height: auto;
    padding: 60px 0;
  }

  .carrier-logos .col {
    flex-wrap: wrap;
    gap: 15px;
  }

  .hero-section:after {
    content: '';
    position: absolute;
    background: rgb(0 0 0 / 70%);
    width: 100%;
    height: 100%;
  }

  .hero-section .container {
    position: relative;
    z-index: 9;
  }

  .zip-form {
    display: block;
  }

  .hero-text .theme-btn {
    width: 100%;
    margin-top: 10px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-text {
    text-align: center;
  }

  .progress-container {
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text h1,
  .get-start-title h2,
  .quote-section .hero-text h1,
  .footer .get-start-title h2 {
    font-size: 30px;
  }


  .footer-client {
    flex-wrap: wrap;
  }

  .footer-area-top p {
    font-size: 12px;
  }

  footer.footer ul {
    margin: 20px auto;
    flex-wrap: wrap;

  }

  .copyright>p {
    font-size: 10px;
  }

  .carrier-logos .col img {
    height: 22px;
  }

  .footer-area-top {
    padding-bottom: 0;
  }

  .single-item {
    display: block;
    justify-content: center;
    text-align: center;
  }

  .item-left {
    display: block;
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }

  .item-right {
    float: none;
    max-width: 100%;
    margin: auto;
    width: 100%;
  }

  .item-img a {
    margin: auto;
    height: auto;
    border: 0;
  }

  .item-img {
    text-align: center;
    margin-bottom: 10px;
  }

  .item-details h4 {
    font-size: 18px;
  }

  .checkbox-group .checkbox-chk {
    width: 100%;
  }

  section.main {
    padding: 30px 0;
  }

  .box-title {
    font-size: 28px;
  }

  .wizard-container {
    padding: 20px;
  }

  .progress-container .circle {
    height: 40px;
    width: 40px;
  }

  .question {
    font-size: 20px;
  }

  .wizard-form h3 {
    text-align: center;
    font-size: 18px;
  }

  .radio_text {
    flex-wrap: wrap;
  }

  .wizard-container .theme-btn {
    width: 100%;
  }

  .thank-title h4 {
    font-size: 16px;
    line-height: 1.5;
  }

  .thankyou-form h3 {
    font-size: 16px;
  }

  .flat_radio {
    flex-wrap: wrap;
    row-gap: 2px;
  }

  .popBox label {
    display: block;
  }

  .searching-box {
    margin: 0;
    display: flex;
    flex-wrap: wrap-reverse;
  }

  .searching-box .thank-title {
    width: 100%;
  }

  .searching-box .searching-box-img {
    display: none;
  }

  .thank-title h5 {
    font-size: 16px;
    line-height: 1.5;
  }

  .thank-title h5 span {
    font-size: 30px;
  }

  .search-list {
    margin-top: 28px;
  }

  .search-list li {
    font-size: 16px;
  }

  .search-list .checkmark {
    margin-top: -1px;
  }

  .listing-main .thank-title h2 {
    font-size: 25px;
  }

  .call-box h3 {
    font-size: 18px;
  }

  .call-box h4 a {
    font-size: 25px;
  }

  .single-item .theme-btn {
    width: 100%;
    font-size: 12px;
  }

  .flat_radio [type="radio"]:checked+label,
  .flat_radio [type="radio"]:not(:checked)+label {
    font-size: 14px;
  }
  .zip-form label.error {
    position: relative;
    bottom: 0;
    font-weight: 700;
}
}