.cover {
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  padding-bottom: 60px;
  position: relative;
  background: linear-gradient(to bottom right, transparent, rgba(19, 194, 101, 0.0549019608), rgba(19, 194, 101, 0.0666666667), rgba(19, 194, 101, 0.1647058824));
}
.cover #coverMobChecks {
  display: block;
}
.cover #coverDesChecks {
  display: none;
}
.cover .content {
  width: 100%;
  height: auto;
  position: relative;
  padding-top: 120px;
  padding-inline: 20px;
}
.cover .content .text {
  position: relative;
}
.cover .content .text .headingp {
  color: #13c265;
  font-size: 14px;
  padding: 5px 18px;
  border-radius: 25px;
  background: rgba(19, 194, 101, 0.0901960784);
  width: -moz-max-content;
  width: max-content;
  font-weight: 500;
  margin-bottom: 15px;
}
.cover .content .text h1 {
  color: #1F1F1F;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 15px;
}
.cover .content .text h1 span {
  color: #13c265;
}
.cover .content .text p {
  color: #1F1F1F;
  font-size: 17px;
}
.cover .content .text p span {
  font-weight: 500;
}
.cover .content form {
  position: relative;
  margin-top: 45px;
  padding: 16px;
  background: #e1fae9;
  border-radius: 6px;
  animation: bgPulse 1s infinite;
}
.cover .content form input {
  width: 100%;
  height: 62px;
  background: white;
  border: 1px solid lightgray;
  outline: none;
  padding: 14px;
  color: #1F1F1F;
  border-radius: 4px;
  font-size: 16px;
  text-transform: uppercase;
}
.cover .content form input::-moz-placeholder {
  text-transform: none;
}
.cover .content form input::placeholder {
  text-transform: none;
}
.cover .content form input:active, .cover .content form input:focus {
  border: 2px solid rgba(0, 0, 255, 0.521);
}
.cover .content form button {
  width: 100%;
  height: 57px;
  background: #13c265;
  outline: none;
  padding: 14px;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 400;
  margin-top: 10px;
}
.cover .content .checks {
  display: flex;
  flex-direction: column;
  margin-top: 25px;
}
.cover .content .checks p {
  color: #1F1F1F;
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 12px;
}
.cover .content .checks p i {
  color: #2a66f5;
  margin-right: 15px;
}

@keyframes bgPulse {
  0% {
    background-color: #dbffe7;
  }
  50% {
    background-color: #c5ffd8; /* slightly brighter/lighter */
  }
  100% {
    background-color: #dbffe7;
  }
}
.reasons {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 40px;
  border-bottom: 1px solid lightgray;
  padding-bottom: 40px;
}
.reasons .content {
  padding-inline: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 70px;
  row-gap: 40px;
  flex-wrap: wrap;
}
.reasons .content .icon {
  text-align: center;
  width: calc(50% - 35px);
  min-width: calc(50% - 35px);
}
.reasons .content .icon i {
  color: #13c265;
  background: rgba(210, 255, 225, 0.5137254902);
  padding: 18px;
  border-radius: 10px;
  font-size: 36px;
}
.reasons .content .icon h4 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 15px;
}
.reasons .content .icon p {
  color: #1F1F1F;
  font-size: 16px;
}

.locations {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 50px;
}
.locations .content {
  padding-inline: 20px;
}
.locations .content .text h2 {
  font-size: 28px;
  color: #1F1F1F;
  font-weight: 600;
}
.locations .content .text h2 span {
  color: #13c265;
}
.locations .content .text p {
  color: #1F1F1F;
  font-size: 16px;
}
.locations .content .text p span {
  background: #e1fae9;
  padding-inline: 2px;
}
.locations .content .flex {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
  overflow-x: scroll;
  width: 100%;
  padding-bottom: 15px;
}
.locations .content .flex .city-row {
  width: 100%;
  height: auto;
  margin-top: 20px;
}
.locations .content .flex .city-row.last {
  margin-top: 50px;
}
.locations .content .flex .city-row h3 {
  font-size: 24px;
  color: #1F1F1F;
}
.locations .content .flex .city-row .city-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 25px;
}
.locations .content .flex .city-row .city {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(211, 211, 211, 0.18);
  border: 1px solid lightgray;
  width: calc(50% - 10px);
  min-width: calc(50% - 10px);
  padding: 16px 6px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.2s;
  cursor: pointer;
  text-align: center;
}
.locations .content .flex .city-row .city p {
  text-align: center;
  color: #1F1F1F;
  margin-bottom: 0;
  font-size: 14px;
  border-radius: 6px;
  transition: 0.2s;
}
.locations .content .flex .city-row .city:hover {
  background: rgba(228, 255, 237, 0.5607843137);
  border-color: #13c265;
}
.locations .content .flex .city-row .city:hover p {
  color: #13c265;
}
.locations .content .flex .bottom-cta {
  margin-top: 25px;
  color: #13c265;
  text-align: center;
  font-size: 16px;
  text-decoration-color: #13c265;
  text-decoration: underline;
}

.conquer {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
  border-top: 1px solid lightgray;
  background: #f9fafb;
}
.conquer .content {
  padding-inline: 20px;
}
.conquer .content .text .headingp {
  color: #13c265;
  font-size: 14px;
  padding: 5px 18px;
  border-radius: 25px;
  background: rgba(19, 194, 101, 0.0901960784);
  width: -moz-max-content;
  width: max-content;
  font-weight: 500;
  margin-bottom: 15px;
}
.conquer .content .text h2 {
  color: #1F1F1F;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}
.conquer .content .text h2 span {
  color: #13c265;
}
.conquer .content .text p {
  color: #1F1F1F;
  font-size: 16px;
}
.conquer .content .cards {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 35px;
}
.conquer .content .cards .card {
  padding: 24px 20px;
  background: white;
  border: 1px solid rgba(211, 211, 211, 0.2);
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
}
.conquer .content .cards .card:hover {
  border-color: #13c265;
  background: #f6fffb;
}
.conquer .content .cards .card i {
  color: white;
  background: #13c265;
  padding: 17px;
  border-radius: 10px;
  font-size: 28px;
  width: -moz-max-content;
  width: max-content;
}
.conquer .content .cards .card h4 {
  font-size: 24px;
  color: #1F1F1F;
  margin-top: 18px;
  margin-bottom: 18px;
  font-weight: 600;
}
.conquer .content .cards .card p {
  margin-bottom: 0;
  font-size: 16px;
  color: #1F1F1F;
}
.conquer .content .button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #13c265;
  border-radius: 6px;
  width: 100%;
  height: 56px;
  color: white;
  margin-top: 35px;
}
.conquer .content .underbtn-text {
  margin-top: 25px;
  opacity: 0.8;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 5px;
  min-width: -moz-max-content;
  min-width: max-content;
}

.reviews {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 50px;
}
.reviews .content {
  padding-inline: 20px;
}
.reviews .content .text .headingp {
  color: #13c265;
  font-size: 14px;
  padding: 5px 18px;
  border-radius: 25px;
  background: rgba(19, 194, 101, 0.0901960784);
  width: -moz-max-content;
  width: max-content;
  font-weight: 500;
  margin-bottom: 15px;
}
.reviews .content .text h2 {
  font-size: 28px;
  color: #1F1F1F;
  font-weight: 600;
  margin-bottom: 10px;
}
.reviews .content .text h2 span {
  color: #13c265;
}
.reviews .content .text p {
  color: #1F1F1F;
  font-size: 16px;
}
.reviews .content .text p span {
  background: #e1fae9;
  padding-inline: 2px;
}
.reviews .content .flex {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 25px;
}
.reviews .content .flex .card {
  width: 100%;
  height: auto;
  background: white;
  border: 1px solid rgba(211, 211, 211, 0.652);
  border-radius: 6px;
  padding: 20px;
}
.reviews .content .flex .card h2 {
  font-size: 18px;
  color: #1F1F1F;
}
.reviews .content .flex .card p {
  font-size: 16px;
  color: #1F1F1F;
  opacity: 0.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.reviews .content .flex .card .business {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
}
.reviews .content .flex .card .business .name {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.reviews .content .flex .card .business .name img {
  width: 40px;
  height: auto;
}
.reviews .content .flex .card .business .name p {
  font-size: 14px;
  color: #1F1F1F;
  font-weight: 500;
  margin-bottom: 0;
}
.reviews .content .flex .card .business .rating {
  padding: 4px 10px;
  background: #13c265;
  color: white;
  font-size: 16px;
  border-radius: 4px;
}

.process {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 75px;
}
.process .content {
  padding-inline: 20px;
}
.process .content .text .headingp {
  color: #13c265;
  font-size: 14px;
  padding: 5px 18px;
  border-radius: 25px;
  background: rgba(19, 194, 101, 0.0901960784);
  width: -moz-max-content;
  width: max-content;
  font-weight: 500;
  margin-bottom: 15px;
}
.process .content .text h2 {
  color: #1F1F1F;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}
.process .content .text h2 span {
  color: #13c265;
}
.process .content .text p {
  color: #1F1F1F;
  font-size: 16px;
}
.process .content .cards {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 35px;
}
.process .content .cards .card {
  padding: 24px 20px;
  background: white;
  border: 1px solid rgba(211, 211, 211, 0.2);
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
}
.process .content .cards .card:hover {
  border-color: #13c265;
  background: #f6fffb;
}
.process .content .cards .card i {
  color: white;
  background: #13c265;
  padding: 17px;
  border-radius: 60px;
  font-size: 28px;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}
.process .content .cards .card i span {
  position: absolute;
  background: white;
  border: 2px solid #13c265;
  top: -10px;
  right: -10px;
  font-size: 14px;
  color: #1F1F1F;
  border-radius: 60px;
  padding: 10px 14px;
  padding-bottom: 8px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process .content .cards .card i p {
  position: absolute;
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
  min-width: -moz-max-content;
  min-width: max-content;
  color: #13c265;
}
.process .content .cards .card h4 {
  font-size: 24px;
  color: #1F1F1F;
  margin-top: 18px;
  margin-bottom: 18px;
  font-weight: 600;
}
.process .content .cards .card p {
  margin-bottom: 0;
  font-size: 16px;
  color: #1F1F1F;
}
.process .content .button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #13c265;
  border-radius: 6px;
  width: 100%;
  height: 56px;
  color: white;
  margin-top: 35px;
}
.process .content .underbtn-text {
  margin-top: 25px;
  opacity: 0.8;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 5px;
  min-width: -moz-max-content;
  min-width: max-content;
}

.why-us {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
  border-top: 1px solid lightgray;
  background: #f9fafb;
}
.why-us .content {
  padding-inline: 20px;
}
.why-us .content .text {
  text-align: center;
}
.why-us .content .text .headingp {
  color: #13c265;
  font-size: 14px;
  padding: 5px 18px;
  border-radius: 25px;
  background: rgba(19, 194, 101, 0.0901960784);
  width: -moz-max-content;
  width: max-content;
  font-weight: 500;
  margin-bottom: 15px;
  margin-inline: auto;
}
.why-us .content .text h2 {
  color: #1F1F1F;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}
.why-us .content .text h2 span {
  color: #13c265;
}
.why-us .content .text p {
  color: #1F1F1F;
  font-size: 16px;
}
.why-us .content .cards {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 35px;
}
.why-us .content .cards .card {
  padding: 24px 20px;
  background: white;
  border: 1px solid rgba(211, 211, 211, 0.35);
  border-radius: 14px;
  text-decoration: none;
  transition: 0.2s;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why-us .content .cards .card.advantages {
  background: #10ab58;
}
.why-us .content .cards .card.advantages .circle {
  padding: 70px;
  border-radius: 80px;
  background: #13c265;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  right: -55px;
  top: -55px;
}
.why-us .content .cards .card.advantages .circle2 {
  padding: 40px;
  border-radius: 80px;
  background: #13c265;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  bottom: -25px;
  left: -25px;
}
.why-us .content .cards .card.advantages i {
  color: #13c265;
  background: white;
}
.why-us .content .cards .card.advantages h4, .why-us .content .cards .card.advantages p {
  color: white;
}
.why-us .content .cards .card.advantages .reasons .reason i {
  color: white;
}
.why-us .content .cards .card.advantages .reasons .reason p {
  color: white;
}
.why-us .content .cards .card i {
  color: red;
  background: rgba(255, 0, 0, 0.1);
  padding: 18px 22px;
  border-radius: 60px;
  font-size: 28px;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
}
.why-us .content .cards .card h4 {
  font-size: 24px;
  color: #1F1F1F;
  margin-top: 18px;
  margin-bottom: 10px;
  font-weight: 500;
}
.why-us .content .cards .card p {
  margin-bottom: 0;
  font-size: 16px;
  color: #1F1F1F;
}
.why-us .content .cards .card .reasons {
  display: flex;
  flex-direction: column;
  border: none;
  gap: 15px;
  text-align: left !important;
}
.why-us .content .cards .card .reasons .reason {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  gap: 15px;
  text-align: left !important;
}
.why-us .content .cards .card .reasons .reason i {
  background: none;
  font-size: 18px;
  padding: 0;
  opacity: 0.8;
  transform: translateY(6px);
}
.why-us .content .cards .card .reasons .reason p {
  width: 90%;
  margin-bottom: 0;
  color: #1F1F1F;
  font-size: 15px;
  text-align: left;
}
.why-us .content .button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #13c265;
  border-radius: 6px;
  width: 100%;
  height: 56px;
  color: white;
  margin-top: 35px;
}
.why-us .content .underbtn-text {
  margin-top: 25px;
  opacity: 0.8;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 5px;
  min-width: -moz-max-content;
  min-width: max-content;
}

.cta-card {
  position: relative;
  width: 100%;
  height: auto;
  padding-inline: 20px;
  padding-top: 50px;
}
.cta-card .content {
  margin-inline: auto;
  background: #e1fae9;
  padding: 20px;
  border-radius: 6px;
}
.cta-card .content .text h2 {
  color: #1F1F1F;
  font-size: 22px;
  font-weight: 500;
}
.cta-card .content .text p {
  font-size: 16px;
  color: #1F1F1F;
}
.cta-card .content form {
  position: relative;
  margin-top: 18px;
}
.cta-card .content form input {
  width: 100%;
  height: 60px;
  background: white;
  border: 1px solid lightgray;
  outline: none;
  padding: 14px;
  color: #1F1F1F;
  border-radius: 4px;
  font-size: 16px;
  text-transform: uppercase;
}
.cta-card .content form input::-moz-placeholder {
  text-transform: none;
}
.cta-card .content form input::placeholder {
  text-transform: none;
}
.cta-card .content form input:active, .cta-card .content form input:focus {
  border: 2px solid rgba(0, 0, 255, 0.521);
}
.cta-card .content form button {
  width: 100%;
  height: 60px;
  background: #13c265;
  outline: none;
  padding: 14px;
  color: white;
  border: none;
  border-radius: 4px;
  margin-top: 15px;
}

@media only screen and (min-device-width: 1140px) {
  .cover {
    width: 100%;
    height: -moz-max-content;
    height: max-content;
    position: relative;
    background: linear-gradient(to bottom right, transparent, rgba(19, 194, 101, 0.0352941176), rgba(19, 194, 101, 0.0352941176), rgba(19, 194, 101, 0.0823529412));
  }
  .cover #coverMobChecks {
    display: none;
  }
  .cover #coverDesChecks {
    display: block;
  }
  .cover .checks {
    transform: translateX(5px);
    display: flex;
    flex-direction: column;
    margin-top: 30px;
  }
  .cover .checks p {
    color: #1F1F1F;
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 12px;
  }
  .cover .checks p i {
    color: blue;
    margin-right: 15px;
  }
  .cover .content {
    width: 100%;
    height: auto;
    position: relative;
    max-width: 1400px;
    margin-inline: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
    padding-inline: 50px;
    padding-top: 150px;
  }
  .cover .content .text {
    width: 60%;
    position: relative;
    padding-inline: 0;
    padding-top: 0;
  }
  .cover .content .text h1 {
    color: #1F1F1F;
    font-size: 52px;
    font-weight: 500;
  }
  .cover .content .text p {
    color: #1F1F1F;
    font-size: 20px;
    opacity: 0.8;
    max-width: 400px;
  }
  .cover .content form {
    position: relative;
    margin-top: 0;
    padding: 24px;
    background: #dbffe7;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 400px;
    animation: bgPulse 1s infinite;
  }
  .cover .content form input {
    width: 100%;
    height: 62px;
    background: white;
    border: 1px solid lightgray;
    outline: none;
    padding: 14px;
    color: #1F1F1F;
    border-radius: 4px;
    font-size: 16px;
    text-transform: uppercase;
  }
  .cover .content form input::-moz-placeholder {
    text-transform: none;
  }
  .cover .content form input::placeholder {
    text-transform: none;
  }
  .cover .content form input:active, .cover .content form input:focus {
    border: 2px solid rgba(0, 0, 255, 0.521);
  }
  .cover .content form button {
    border: 1px solid transparent;
    width: 100%;
    height: 62px;
    background: #13c265;
    outline: none;
    padding: 14px;
    color: white;
    border: none;
    border-radius: 4px;
    margin-top: 0;
  }
  .how-it-works {
    position: relative;
    width: 100%;
    height: auto;
    padding-inline: 50px;
    max-width: 1300px;
    margin-inline: auto;
    padding-top: 110px;
  }
  .how-it-works .content {
    border-radius: 6px;
    padding: 32px;
    background: #f2f7fc;
    max-width: 1300px;
    margin-inline: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
  }
  .how-it-works .content .text {
    width: 40%;
  }
  .how-it-works .content .text .headingp {
    color: #2142a6;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .how-it-works .content .text h2 {
    color: #1F1F1F;
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 10px;
  }
  .how-it-works .content .text p {
    color: #1F1F1F;
    font-size: 16px;
  }
  .how-it-works .content .steps {
    position: relative;
    margin: 0 0;
    width: 500px;
    padding-left: 0;
  }
  .how-it-works .content .steps::before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 50px;
    left: 13px;
    width: 2px;
    background: #2a66f5;
  }
  .how-it-works .content .steps .step {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: unset;
    align-self: flex-end;
    margin-bottom: 40px;
  }
  .how-it-works .content .steps .step:last-child {
    margin-bottom: 0;
  }
  .how-it-works .content .steps .step .circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #2a66f5;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    flex-shrink: 0;
    margin-right: 25px;
  }
  .how-it-works .content .steps .step .text {
    width: 100%;
    margin-left: 25px;
  }
  .how-it-works .content .steps .step .text h4 {
    font-size: 18px;
    margin: 0 0 6px;
    color: #1F1F1F;
  }
  .how-it-works .content .steps .step .text p {
    font-size: 16px;
    color: #444;
    margin: 0;
  }
  .reviews {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 110px;
  }
  .reviews .content {
    padding-inline: 50px;
    max-width: 1300px;
    margin-inline: auto;
  }
  .reviews .content .text {
    max-width: 600px;
  }
  .reviews .content .text h2 {
    font-size: 30px;
    color: #1F1F1F;
  }
  .reviews .content .text p {
    color: #1F1F1F;
    font-size: 16px;
  }
  .reviews .content .text p span {
    background: #e1fae9;
    padding-inline: 2px;
  }
  .reviews .content .flex {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-top: 25px;
  }
  .reviews .content .flex .card {
    width: 330%;
    height: auto;
    background: white;
    border: 1px solid rgba(211, 211, 211, 0.652);
    border-radius: 6px;
    padding: 20px;
    cursor: pointer;
    transition: 0.4s;
  }
  .reviews .content .flex .card:hover {
    transform: scale(1.02);
  }
  .reviews .content .flex .card h2 {
    font-size: 18px;
    color: #1F1F1F;
  }
  .reviews .content .flex .card p {
    font-size: 16px;
    color: #1F1F1F;
    opacity: 0.8;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
  }
  .reviews .content .flex .card .business {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 35px;
  }
  .reviews .content .flex .card .business .name {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .reviews .content .flex .card .business .name img {
    width: 40px;
    height: auto;
  }
  .reviews .content .flex .card .business .name p {
    font-size: 14px;
    color: #1F1F1F;
    font-weight: 500;
    margin-bottom: 0;
  }
  .reviews .content .flex .card .business .rating {
    padding: 4px 10px;
    background: #13c265;
    color: white;
    font-size: 16px;
    border-radius: 4px;
  }
  .network {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 110px;
  }
  .network .content {
    padding-inline: 50px;
    max-width: 1300px;
    margin-inline: auto;
  }
  .network .content .text {
    max-width: 600px;
  }
  .network .content .text h2 {
    font-size: 30px;
    color: #1F1F1F;
  }
  .network .content .text p {
    color: #1F1F1F;
    font-size: 16px;
  }
  .network .content .flex {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 35px;
    overflow: hidden !important;
    width: 100%;
    padding-bottom: 0;
  }
  .network .content .flex .city-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow: hidden;
    height: auto;
    gap: 15px;
  }
  .network .content .flex .city-row .city {
    border: 1px solid rgba(211, 211, 211, 0.652);
    width: 33%;
    min-width: 240px;
    height: 60px;
    border-radius: 2px;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    cursor: pointer;
  }
  .network .content .flex .city-row .city:hover a {
    text-decoration: underline;
  }
  .network .content .flex .city-row .city img {
    height: 60px;
    width: 70px;
    -o-object-fit: cover;
       object-fit: cover;
    filter: brightness(70%);
  }
  .network .content .flex .city-row .city a {
    color: #1F1F1F;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
  }
  .network .content .flex .city-row .city a span {
    font-weight: 400;
    opacity: 0.7;
    font-size: 14px;
  }
  .network .content .button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 50px;
    background: none;
    border: 2px solid #2a66f5;
    color: #2a66f5;
    border-radius: 6px;
    margin-top: 25px;
  }
  .cta-card {
    position: relative;
    width: 100%;
    height: auto;
    padding-inline: 50px;
    padding-top: 110px;
    max-width: 1300px;
    margin-inline: auto;
  }
  .cta-card .content {
    margin-inline: auto;
    background: #e1fae9;
    padding: 56px 40px;
    border-radius: 6px;
    max-width: 1300px;
    margin-inline: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 80px;
    align-items: center;
  }
  .cta-card .content .text {
    width: 75%;
  }
  .cta-card .content .text h2 {
    color: #1F1F1F;
    font-size: 24px;
    font-weight: 500;
  }
  .cta-card .content .text p {
    font-size: 16px;
    color: #1F1F1F;
  }
  .cta-card .content form {
    position: relative;
    margin-top: 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
  }
  .cta-card .content form input {
    width: 100%;
    height: 60px;
    background: white;
    border: 1px solid lightgray;
    outline: none;
    padding: 14px;
    color: #1F1F1F;
    border-radius: 4px;
    font-size: 16px;
    text-transform: uppercase;
  }
  .cta-card .content form input::-moz-placeholder {
    text-transform: none;
  }
  .cta-card .content form input::placeholder {
    text-transform: none;
  }
  .cta-card .content form input:active, .cta-card .content form input:focus {
    border: 2px solid rgba(0, 0, 255, 0.521);
  }
  .cta-card .content form button {
    width: 100%;
    height: 60px;
    background: #13c265;
    outline: none;
    padding: 14px;
    color: white;
    border: none;
    border-radius: 4px;
    margin-top: 0;
  }
  .why-us {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 110px;
  }
  .why-us .content {
    padding-inline: 50px;
    max-width: 1300px;
    margin-inline: auto;
  }
  .why-us .content .text .headingp {
    color: #2142a6;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .why-us .content .text h2 {
    font-size: 30px;
    color: #1F1F1F;
  }
  .why-us .content .text p {
    color: #1F1F1F;
    font-size: 16px;
  }
  .why-us .content .text p span {
    background: #e1fae9;
    padding-inline: 2px;
  }
  .why-us .content .reasons {
    display: flex;
    margin-top: 45px;
    width: 100%;
    flex-direction: row;
    gap: 75px;
  }
  .why-us .content .reasons .reason {
    display: flex;
    flex-direction: column;
    justify-content: unset;
    gap: 20px;
    align-items: flex-start;
    width: 33%;
  }
  .why-us .content .reasons .reason .left {
    order: 2;
  }
  .why-us .content .reasons .reason .left h4 {
    font-size: 20px;
    margin: 0 0 6px;
    color: #1F1F1F;
  }
  .why-us .content .reasons .reason .left p {
    font-size: 16px;
    color: #444;
    margin: 0;
  }
  .why-us .content .reasons .reason .right {
    background: #f2f7fc;
    padding: 24px;
    border-radius: 100%;
    order: 1;
  }
  .why-us .content .reasons .reason .right img {
    width: 75px;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about-us {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 100px;
  }
  .about-us .content {
    padding-inline: 50px;
    max-width: 1300px;
    margin-inline: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 90px;
  }
  .about-us .content .text .headingp {
    color: #2142a6;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .about-us .content .text h2 {
    font-size: 30px;
    color: #1F1F1F;
  }
  .about-us .content .text p {
    color: #1F1F1F;
    font-size: 16px;
  }
  .about-us .content .text p span {
    background: #e1fae9;
    padding-inline: 2px;
  }
  .about-us .content .text img {
    width: 130px;
    height: auto;
  }
  .about-us .content .text a.button {
    color: #2a66f5;
    font-size: 16px;
    margin-top: 15px;
    font-weight: 500;
    width: -moz-max-content;
    width: max-content;
  }
  .about-us .content form {
    margin-top: 0;
    position: relative;
    background: #f2f7fc;
    border-radius: 6px;
    padding: 43px;
    align-self: flex-end;
  }
  .about-us .content form h4 {
    color: #1F1F1F;
    font-size: 22px;
    font-weight: 500;
  }
  .about-us .content form p {
    font-size: 16px;
    color: #1F1F1F;
  }
  .about-us .content form button {
    width: 100%;
    height: 60px;
    background: white;
    outline: none;
    padding: 14px;
    color: #2a66f5;
    border: 2px solid #2a66f5;
    border-radius: 4px;
    margin-top: 15px;
  }
}/*# sourceMappingURL=base.css.map */