*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

svg {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

label {
  display: block;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

::-moz-placeholder {
  color: inherit;
}

::placeholder {
  color: inherit;
}

textarea {
  display: block;
}

input,
textarea,
button,
select {
  font: inherit;
  color: inherit;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
}

ul,
ol {
  list-style-type: none;
}

picture,
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 1.5px solid #333333;
  outline-offset: 0px;
}

html,
body {
  overflow-x: clip;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
@media (prefers-reduced-motion) {
  html {
    scroll-behavior: none;
  }
}

body {
  min-width: 320px;
  -webkit-tap-highlight-color: transparent;
  font-weight: 400;
  font-style: normal;
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 2.0833333333vw, 1.125rem);
  background-color: #f5f5f5;
  color: #000;
  min-height: 100vh;
  line-height: 1.5;
}
@supports (min-height: 100svh) {
  body {
    min-height: 100svh;
  }
}

.max-width {
  max-width: 71.25rem;
  width: 100%;
  margin: 0 auto;
  height: 100%;
}

.green {
  color: #1d594e;
}

.yellow {
  color: #f29f05;
}

.red {
  color: #c50700;
}

.container {
  padding: 0 clamp(1rem, 2.6041666667vw, 1.25rem) 2rem;
  background-color: #fff;
}
@media (min-width: 1140px) {
  .container {
    padding: 1rem 1.25rem 2rem;
    border-radius: 1.25rem;
  }
}

.disclosure {
  font-size: 0.75rem;
  line-height: normal;
}
.disclosure .ad {
  text-align: center;
}
.disclosure .disclosure__link {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0.25rem;
  text-align: right;
  color: #888;
}
.disclosure.desktop {
  padding: 0.5rem 0 0.75rem;
  display: none;
}
@media (min-width: 1140px) {
  .disclosure.desktop {
    display: block;
  }
}
.disclosure.mobile {
  padding: 0.25rem 0 0.75rem;
  display: block;
}
@media (min-width: 1140px) {
  .disclosure.mobile {
    display: none;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid #1d594e;
  padding-bottom: clamp(0.75rem, 2.0833333333vw, 1rem);
}
.header__logo img {
  width: 72px;
  height: auto;
}

.header__logo-text-title {
  font-size: 36px;
  line-height: normal;
}

.header__logo-text-description {
  max-width: 250px;
  font-size: clamp(12px, 1.8229166667vw, 14px);
  color: #818285;
  line-height: normal;
}

.header__icons {
  display: none;
}
@media (min-width: 1140px) {
  .header__icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #1d594e;
  }
}

.header__icons-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #5b9782;
  font-weight: 500;
  font-size: 1rem;
}
.header__icons-item img {
  height: 42px;
  width: auto;
}

.header__nav {
  display: none;
}
@media (min-width: 1140px) {
  .header__nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3.2rem;
    text-transform: uppercase;
    font-size: 14px;
    padding: 1rem 0;
  }
}
.header__nav a {
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.header__nav a:hover {
  opacity: 1;
}

.footer {
  max-width: 960px;
  margin: 4rem auto 0;
  padding-bottom: 2rem;
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-weight: 300;
  font-size: 14px;
  line-height: normal;
  width: calc(100% - 2rem);
}

.footer__links {
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 0.5rem;
}
@media (min-width: 768px) {
  .footer__links {
    flex-direction: row;
  }
}
.footer__links a {
  line-height: normal;
  padding: 0 0.5rem;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.footer__links a:hover {
  opacity: 1;
}
@media (min-width: 768px) {
  .footer__links a:not(:last-child) {
    border-right: 1px solid currentColor;
  }
}

.btn {
  display: block;
  background-color: #f7941d;
  color: #fff;
  border-radius: 100vmax;
  font-weight: 700;
  text-shadow: 0 3px 3px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0);
  line-height: normal;
}
.btn:hover {
  background-color: #d87600;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25);
}

@media (min-width: 1140px) {
  .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
}

.sidebar {
  display: none;
}
@media (min-width: 1140px) {
  .sidebar {
    width: 260px;
    flex-shrink: 0;
    display: block;
    position: sticky;
    top: 1rem;
  }
}

.sidebar__banner {
  display: flex;
  flex-direction: column;
  background-color: #dff1ff;
  border-radius: 1.25rem;
  text-align: center;
  padding: 1rem;
}
.sidebar__banner img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.sidebar__banner h2 {
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.sidebar__banner p {
  max-width: 240px;
  margin: 1.25rem auto 1rem;
  font-weight: 500;
  line-height: normal;
}

.sidebar__banner-button {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.15rem;
  padding: 0.7rem 1rem;
}

.main {
  padding-top: 1rem;
  width: 100%;
  max-width: 820px;
}
@media (min-width: 1140px) {
  .main {
    width: 820px;
  }
}

.main__title {
  font-size: clamp(35px, 5.2083333333vw, 47px);
  line-height: normal;
  font-weight: 500;
}
.main__title strong {
  font-weight: 700;
}
.main__title .bold {
  font-weight: 800;
}

.main__two-images {
  padding: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
@media (min-width: 850px) {
  .main__two-images {
    flex-direction: row;
  }
}
.main__two-images img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.main__promotion {
  line-height: 1.25;
  font-weight: 500;
  font-size: clamp(18px, 2.6041666667vw, 20px);
}
.main__promotion p {
  max-width: 700px;
}
.main__promotion ul {
  margin-top: 1.25rem;
  list-style: disc;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.main__promotion li span {
  font-weight: 700;
  text-transform: uppercase;
}

.promotion-box {
  margin: clamp(1.25rem, 3.125vw, 2rem) 0;
  background-color: #dff1ff;
  border-radius: 1.25rem;
  padding: clamp(1rem, 2.6041666667vw, 2rem) clamp(1rem, 2.6041666667vw, 1.25rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
  row-gap: 1rem;
  min-height: 266px;
}
@media (min-width: 850px) {
  .promotion-box {
    flex-direction: row;
  }
}
.promotion-box img {
  width: 100%;
  height: auto;
  max-width: 281px;
  margin: 0 auto;
}
.promotion-box > div {
  max-width: 518px;
}
.promotion-box h2 {
  font-size: clamp(25px, 3.90625vw, 32px);
  line-height: normal;
  margin-bottom: 1.25rem;
}
.promotion-box h2 span {
  color: #008000;
}
.promotion-box a {
  font-size: clamp(20px, 3.125vw, 26px);
  padding: 0.6rem 0.3rem;
}

.main__text {
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.main__subtitle {
  font-size: clamp(22px, 3.125vw, 25px);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.main__img-text .two-columns {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 850px) {
  .main__img-text .two-columns {
    flex-direction: row;
    align-items: center;
  }
}
.main__img-text .two-columns img {
  max-width: 353px;
  width: 100%;
  height: auto;
  order: 2;
}
@media (min-width: 850px) {
  .main__img-text .two-columns img {
    order: 1;
  }
}
.main__img-text .two-columns > div {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  order: 1;
}
@media (min-width: 850px) {
  .main__img-text .two-columns > div {
    order: 2;
  }
}

.main__features {
  margin-top: 2rem;
}

.main__features-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.promotion-box.promotion-box-2 {
  min-height: 266px;
}
.promotion-box.promotion-box-2 h2 {
  font-size: 1.25rem;
}
.promotion-box.promotion-box-2 a {
  font-size: clamp(1rem, 2.6041666667vw, 1.25rem);
  padding: 0.8rem 0.5rem;
}

.main__testimonials {
  margin-bottom: 2.5rem;
}

.main__testimonials-items {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3.125vw, 2rem);
}

.main__testimonials-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .main__testimonials-item {
    flex-direction: row;
    align-items: center;
  }
}
.main__testimonials-item img {
  max-width: 261px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.main__testimonials-item h3 {
  font-size: clamp(20px, 2.6041666667vw, 23px);
  margin-bottom: 1rem;
  line-height: normal;
}
.main__testimonials-item .author {
  margin-top: 1.25rem;
}

.promotion-box.promotion-box-3 h2 {
  color: #008000;
  font-size: 2rem;
}
.promotion-box.promotion-box-3 a {
  padding: 1.2rem 1rem;
  font-size: 25px;
}

.main__opinion {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .main__opinion {
    flex-direction: row;
    align-items: flex-start;
  }
}
.main__opinion img {
  max-width: 261px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.main__opinion h3 {
  font-size: 20px;
  margin-bottom: 1.5rem;
  line-height: normal;
}
.main__opinion .author {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  align-items: flex-end;
  text-align: right;
}

.main__before-after {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .main__before-after {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
  }
}

.main__before,
.main__after {
  max-width: 372px;
  border-radius: 1.25rem;
  padding: clamp(1rem, 2.6041666667vw, 1.25rem);
}
.main__before h4,
.main__after h4 {
  font-size: 18px;
  text-align: center;
  margin-bottom: 1.25rem;
}
.main__before ul,
.main__after ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.main__before ul li,
.main__after ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.main__before ul li img,
.main__after ul li img {
  width: 24px;
  height: auto;
  margin-top: 0.2rem;
}

.main__before {
  background-color: #fff2ef;
}
.main__before h4 span {
  color: #c50700;
}

.main__after {
  background-color: #eeffd4;
}
.main__after h4 span {
  color: #008000;
}

.main__info {
  margin: 2.5rem 0 3rem;
}
.main__info > p:first-of-type {
  margin-bottom: 1.25rem;
}
.main__info img {
  width: 100%;
  max-width: 443px;
  height: auto;
  margin: 1.25rem auto;
  display: block;
}

.link {
  color: #000fff;
  font-weight: 500;
  font-size: clamp(22px, 3.125vw, 30px);
  text-decoration: underline;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.link:hover {
  opacity: 1;
}

.main__comments h3 {
  font-size: 25px;
  margin-bottom: 0.5rem;
}
.main__comments p {
  font-size: 16px;
  line-height: normal;
}

.main__comments-items {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.main__comments-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.main__comments-item img {
  width: 73px;
  height: auto;
}
.main__comments-item .author {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.summary {
  padding: 2rem clamp(1rem, 2.6041666667vw, 1.25rem);
  background-color: #fff;
  border-bottom-left-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  font-size: 1rem;
}
@media (min-width: 1140px) {
  .summary {
    margin-top: 3rem;
    padding: 1.5rem;
    border-radius: 1.25rem;
  }
}

.summary__title {
  color: #49cf0a;
  line-height: normal;
  font-size: clamp(36px, 5.859375vw, 54px);
}

.summary__content {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media (min-width: 1140px) {
  .summary__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.summary__content img {
  width: 100%;
  max-width: 531px;
  height: auto;
  margin: 0 auto;
}

.summary__content-text {
  max-width: 668px;
}
.summary__content-text p:not(:last-of-type) {
  margin-bottom: 1rem;
}

.summary__cta {
  border-top: 1px solid #d9d9d9;
  padding-top: 1.5rem;
}
@media (min-width: 1140px) {
  .summary__cta {
    border-top: none;
  }
}
.summary__cta h2 {
  font-size: 25px;
  line-height: 1.2;
  text-align: center;
}
.summary__cta h2 span {
  font-weight: 900;
  color: #008000;
}

.summary__cta-phone {
  margin: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.summary__cta-phone-button {
  min-height: 80px;
  padding: 0.2rem clamp(1rem, 2.6041666667vw, 1.5rem);
  font-size: clamp(21px, 3.2552083333vw, 25px);
  width: 100%;
  max-width: 577px;
}
.summary__cta-phone-button.hidden {
  display: none;
}

.summary__cta-phone-number {
  display: block;
  background-color: #ffffff;
  border-radius: 100vmax;
  font-weight: 700;
  line-height: normal;
  color: #d87600;
  font-size: clamp(26px, 4.9479166667vw, 49px);
  border: 1px solid #d87600;
  box-shadow: inset 0px 0px 25px rgba(0, 0, 0, 0.25);
  min-height: 80px;
  display: grid;
  place-items: center;
  padding: 0.2rem clamp(1rem, 2.6041666667vw, 1.5rem);
  width: 100%;
  max-width: 577px;
}
.summary__cta-phone-number.hidden {
  display: none;
}

.summary__info {
  padding: 1.25rem 0;
  font-size: 15px;
  text-align: center;
  max-width: 571px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.summary__info p span {
  font-weight: 700;
  color: #c50700;
}/*# sourceMappingURL=styles.css.map */