@font-face {
  font-family: "AcciaPiano";
  src: url("../fonts/AcciaPiano-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AcciaPiano";
  src: url("../fonts/AcciaPiano-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
*,
*::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: 300px;
}
@media (prefers-reduced-motion) {
  html {
    scroll-behavior: none;
  }
}

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

.max-width {
  max-width: 67.125rem;
  width: calc(100% - clamp(0.5rem, 2.6041666667vw, 2.5rem) * 2);
  margin: 0 auto;
  height: 100%;
}

.bold {
  font-weight: 700;
}

.uppercase {
  text-transform: uppercase;
}

.green {
  color: #30764e;
}

.red {
  color: #ff0000;
}

.header .topbar {
  background-color: #fff;
  padding: clamp(1.5rem, 5.46875vw, 42px) 0;
}
@media (min-width: 768px) {
  .header .topbar {
    background-image: url("../img/menu-bg.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
  }
}
.header .topbar__logo {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3.125vw, 1.5rem);
}
.header .topbar__logo img {
  width: clamp(80px, 14.3229166667vw, 110px);
  height: auto;
}
.header .topbar__logo p span {
  display: block;
  transform: translateY(8px);
}
.header .topbar__logo p span:first-child {
  text-transform: uppercase;
  color: #30764e;
  font-weight: 700;
  font-size: clamp(1.8rem, 4.1666666667vw, 3.2rem);
  line-height: 0.9;
  letter-spacing: clamp(2px, 0.5208333333vw, 4px);
  font-family: "Noto Serif", serif;
}
.header .topbar__logo p span:last-child {
  color: #4b9222;
  font-family: "Alex Brush", cursive;
  font-size: clamp(1.5rem, 4.1666666667vw, 2.5rem);
  line-height: 0.9;
}
.header .navbar {
  background-color: #4b9222;
  padding: 0.75rem 0;
}
.header .navbar nav {
  display: none;
}
@media (min-width: 768px) {
  .header .navbar nav {
    display: flex;
    padding: 0 1rem;
    gap: clamp(1.5rem, 5.2083333333vw, 4rem);
    align-items: center;
    justify-content: flex-start;
    font-size: 1.25rem;
    color: #fff;
  }
}
.header .navbar nav a {
  opacity: 0.9;
  transition: opacity 200ms ease-in-out;
}
.header .navbar nav a:hover {
  opacity: 1;
}

.footer {
  max-width: 45rem;
  margin: 0 auto;
  padding: clamp(3rem, 7.8125vw, 3.75rem) 0;
  text-align: center;
  color: #808080;
  font-size: 0.75rem;
  font-family: "Roboto", sans-serif;
}
.footer__links {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 0.75rem;
}
.footer__links a {
  text-decoration: underline;
  color: #808080;
  line-height: 1;
  transition: color 200ms ease-in-out;
  padding: 0 0.5rem;
}
.footer__links a:not(:last-child) {
  border-right: 1px solid #808080;
}
.footer__links a:hover {
  color: #000;
}
.footer__text:not(:last-child) {
  margin-bottom: 1rem;
}

.max-width-content {
  max-width: 67.125rem;
  width: 100%;
  margin: 0 auto;
  height: 100%;
}
@media (min-width: 768px) {
  .max-width-content {
    width: calc(100% - clamp(0.5rem, 2.6041666667vw, 2.5rem) * 2);
  }
}

.main {
  padding: clamp(1rem, 3.125vw, 1.5rem) clamp(1rem, 2.6041666667vw, 1.25rem) 3rem;
  background-color: white;
}
@media (min-width: 768px) {
  .main {
    padding: 1.5rem 1.25rem 4.5rem;
  }
}
@media (min-width: 1150px) {
  .main {
    display: flex;
    align-items: flex-start;
    gap: 35px;
  }
}
.main .sidebar {
  display: none;
}
@media (min-width: 1150px) {
  .main .sidebar {
    display: block;
    width: 308px;
  }
}
.main .sidebar .banner {
  font-family: "Poppins", sans-serif;
  position: relative;
  width: 100%;
  min-height: 397px;
  background-image: url("../img/baner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: grid;
  align-content: space-between;
  justify-content: center;
  padding: 1rem 0.5rem;
  margin-bottom: 54px;
  border: 1px solid #b9b9b9;
  border-radius: 10px;
  overflow: hidden;
}
.main .sidebar .banner::before {
  content: "";
  width: 200%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  bottom: -102%;
  left: -50%;
  transform-origin: center;
  transform: scale(1.5);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.368627451);
  background-color: #fff;
  z-index: 0;
}
.main .sidebar .banner header {
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}
.main .sidebar .banner header h2 {
  color: #263380;
}
.main .sidebar .banner header h2 span {
  display: block;
}
.main .sidebar .banner header h2 span:first-child {
  font-size: 26px;
  font-weight: 500;
  line-height: 0.9;
}
.main .sidebar .banner header h2 span:last-child {
  font-weight: 900;
  font-size: 51px;
  line-height: 0.9;
}
.main .sidebar .banner header .badge {
  font-size: 25px;
  color: #fff;
  font-weight: 900;
  background-color: #293682;
  border-radius: 100vmax;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.1rem 0.6rem;
  margin: 0.2rem auto 0;
}
.main .sidebar .banner button {
  position: relative;
  z-index: 1;
  border: 1px solid #293682;
  background: linear-gradient(90deg, #ff5700 0%, #ffa200 100%) 0% 0%;
  border: 2px solid rgba(255, 255, 255, 0.5019607843);
  border-radius: 100vmax;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1rem;
  display: grid;
  gap: 5px;
  align-items: center;
  grid-template-columns: 1fr 24px;
  opacity: 0.85;
  transition: opacity 250ms ease-in-out;
}
.main .sidebar .banner button .icon {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTE2Ljk2MSAxMS44MDlhLjUuNSAwIDAgMC0uMTA4LS4xNjNsLTQuNS00LjVhLjUuNSAwIDAgMC0uNzA3LjcwOGwzLjY0NyAzLjY0Nkg3LjVhLjUuNSAwIDAgMCAwIDFoNy43OTNsLTMuNjQ3IDMuNjQ2YS41LjUgMCAxIDAgLjcwNy43MDhsNC41LTQuNWEuNS41IDAgMCAwIC4xNDUtLjM0NEwxNyAxMmwtLjAwMS0uMDA3YS41LjUgMCAwIDAtLjAzOC0uMTg0Wk0xMiAyQzYuNDc3IDIgMiA2LjQ3NyAyIDEyczQuNDc3IDEwIDEwIDEwYzUuNTItLjAwNiA5Ljk5NC00LjQ4IDEwLTEwIDAtNS41MjMtNC40NzctMTAtMTAtMTBabTAgMTlhOSA5IDAgMCAxIDAtMTggOS4wMSA5LjAxIDAgMCAxIDkgOSA5IDkgMCAwIDEtOSA5WiIvPjwvc3ZnPg==");
  width: 24px;
  height: 24px;
}
.main .sidebar .banner:hover button {
  opacity: 1;
}
.main .sidebar .sidebar__links {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.main .sidebar .sidebar__links h3 {
  margin-bottom: 8px;
  font-family: "AcciaPiano", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
}
.main .sidebar .sidebar__links a {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.main .sidebar .sidebar__links a img {
  width: 68px;
  height: auto;
}

.main .container {
  max-width: 700px;
}
.main .container h1 {
  font-family: "AcciaPiano", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5.2083333333vw, 2.5rem);
  line-height: 1.1;
}
.main .container > .h2 {
  margin-top: 1.5rem;
}
.main .container > p {
  margin-top: 1.25rem;
}
.main .container .lead {
  font-size: clamp(1rem, 2.6041666667vw, 1.25rem);
  font-weight: 700;
}

.main .box {
  background-color: #fafaf5;
  border-radius: 10px;
  box-shadow: 0px 0px 10px #d8d7d3;
  margin-top: clamp(1.5rem, 3.90625vw, 30px);
  padding: clamp(1rem, 2.6041666667vw, 1.5rem) clamp(1rem, 2.6041666667vw, 1.5rem) 1rem;
  font-family: "Times New Roman", Times, serif;
  letter-spacing: 0.24px;
  font-style: italic;
}
.main .box p:not(:last-child) {
  margin-bottom: 1rem;
}
.main .box + p {
  margin-top: clamp(1.5rem, 3.90625vw, 36px);
}

.main .testimonials {
  margin-top: clamp(1.5rem, 3.90625vw, 32px);
}
.main .testimonials .testimonial {
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #808080;
  display: flex;
  flex-direction: column;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 10px;
  padding: 1rem;
}
.main .testimonials .testimonial:not(:last-child) {
  margin-bottom: clamp(1.5rem, 3.90625vw, 32px);
}
.main .testimonials .testimonial img {
  width: 115px;
  height: auto;
}
.main .testimonials .testimonial > div {
  display: flex;
  flex-direction: column;
  row-gap: clamp(1rem, 2.0833333333vw, 1.25rem);
}
.main .testimonials .testimonial h3 {
  color: #30764e;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "AcciaPiano", sans-serif;
}
.main .testimonials .testimonial p {
  font-style: italic;
}
.main .testimonials .testimonial span {
  align-self: flex-end;
}
.main .testimonials .testimonial p,
.main .testimonials .testimonial span {
  letter-spacing: 0.24px;
  font-family: "Times New Roman", Times, serif;
}
@media (min-width: 600px) {
  .main .testimonials .testimonial {
    flex-direction: row;
    align-items: flex-start;
    padding: 1.5rem;
  }
  .main .testimonials .testimonial h3 {
    text-align: center;
  }
}

.main .features {
  margin-top: clamp(1.5rem, 3.6458333333vw, 28px);
  background-color: rgba(48, 118, 78, 0.07);
  border-radius: 10px;
  padding: 1rem;
}
@media (min-width: 600px) {
  .main .features {
    padding: 1rem 1.5rem 1.25rem;
  }
}
.main .features h2 {
  max-width: 580px;
  margin-bottom: 1.25rem;
}
.main .features ul li {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 0.5rem;
}
.main .features ul li:not(:last-child) {
  margin-bottom: 0.6rem;
}
.main .features ul li .icon {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIyMS4xOTYiIGRhdGEtbmFtZT0iR3JvdXAgMTM5MDUiPjxkZWZzPjxjbGlwUGF0aCBpZD0iYSI+PHBhdGggZmlsbD0iIzMwNzY0ZSIgZD0iTTAgMGgyNXYyMS4xOTZIMHoiIGRhdGEtbmFtZT0iUmVjdGFuZ2xlIDEyIi8+PC9jbGlwUGF0aD48L2RlZnM+PGcgZmlsbD0iIzMwNzY0ZSIgY2xpcC1wYXRoPSJ1cmwoI2EpIiBkYXRhLW5hbWU9Ikdyb3VwIDEzNjYyIj48cGF0aCBkPSJNMTguMDkzIDEwLjkxMmE3LjY0MyA3LjY0MyAwIDEgMS0yLjE4NS01LjUyMWwyLTJhMTAuNDIgMTAuNDIgMCAxIDAgMi43NDIgNC45NjVaIiBkYXRhLW5hbWU9IlBhdGggMTk3OCIvPjxwYXRoIGQ9Im00Ljg1IDcuODM1IDQuMTY0IDcuMDE4IDEuMzI0IDEuODQ3LjIyNi4zNDkgMS42NTMtMS44NTlMMjUgMCAxMC43MzkgMTJaIiBkYXRhLW5hbWU9IlBhdGggMTk3OSIvPjwvZz48L3N2Zz4=");
  width: 25px;
  height: auto;
}

figure.image {
  position: relative;
  margin-top: 10px;
  border-radius: 7px;
}
figure.image img {
  position: relative;
  z-index: 1;
}
figure.image figcaption {
  position: relative;
  z-index: 0;
  width: calc(100% - 4px);
  margin: 0 auto;
  background-color: #a5e282;
  padding: 30px 20px 10px;
  transform: translateY(-20px);
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}
figure.image + p {
  margin-top: 8px !important;
}

.h2 {
  color: #30764e;
  font-size: clamp(1.25rem, 3.2552083333vw, 25px);
  font-family: "AcciaPiano", sans-serif;
  line-height: 1.1;
  font-weight: 800;
}

.link {
  display: inline-block;
  margin-top: clamp(2rem, 5.2083333333vw, 40px);
  color: #0000ff;
  text-decoration: underline;
  font-weight: 700;
  font-size: clamp(1.25rem, 3.515625vw, 28px);
  line-height: 1.3;
  opacity: 0.8;
  transition: opacity 200ms;
}
.link:hover {
  opacity: 1;
}

.main .comments {
  margin-top: clamp(2rem, 5.2083333333vw, 40px);
}
.main .comments h3 {
  font-family: "Roboto", sans-serif;
  font-size: clamp(1.5rem, 3.6458333333vw, 2rem);
  margin-bottom: 1.25rem;
}
.main .comments .comments-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.6041666667vw, 1.5rem);
}
.main .comments .comment {
  border-bottom: 2px solid #dedede;
  padding-bottom: clamp(1rem, 2.6041666667vw, 1.5rem);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.main .comments .comment img {
  width: clamp(2.5rem, 5.5989583333vw, 43px);
  height: clamp(2.5rem, 5.5989583333vw, 43px);
}
.main .comments .comment > div h4 {
  margin-bottom: 0.25rem;
}

.summary {
  background-color: #fff;
  padding: clamp(2rem, 5.2083333333vw, 40px) clamp(1rem, 2.6041666667vw, 1.25rem);
}

.summary__content {
  max-width: 783px;
  text-align: center;
  margin: 0 auto;
}
.summary__content h1 {
  font-family: "AcciaPiano", sans-serif;
  color: #4b9222;
  font-size: clamp(2rem, 5.859375vw, 58px);
}
.summary__content > p {
  margin-top: 1.25rem;
}
.summary__content img {
  width: 284px;
  height: auto;
}
.summary__content .info {
  max-width: 576px;
  margin: 1.25rem auto 0;
}
.summary__content .cta {
  width: -moz-fit-content;
  width: fit-content;
  margin: 1.25rem auto 1rem;
  background-color: #a0522d;
  color: #fff;
  font-family: "AcciaPiano", sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 3.6458333333vw, 32px);
  min-height: 67px;
  display: grid;
  place-items: center;
  padding: 0.25rem clamp(1rem, 2.6041666667vw, 1.5rem);
}
@media (min-width: 996px) {
  .summary__content .cta {
    min-width: 625px;
  }
}
.summary__content .phone-link {
  width: -moz-fit-content;
  width: fit-content;
  margin: 1.25rem auto 1rem;
  background-color: #fff;
  color: #a0522d;
  border: 3px solid #a0522d;
  font-family: "AcciaPiano", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 4.1666666667vw, 40px);
  min-height: 67px;
  display: grid;
  place-items: center;
  padding: 0.25rem clamp(1rem, 2.6041666667vw, 1.5rem);
  line-height: 1;
}
@media (min-width: 996px) {
  .summary__content .phone-link {
    min-width: 625px;
  }
}

.summary .small-text {
  font-size: clamp(0.9rem, 1.953125vw, 15px);
}

.summary .large-text {
  font-size: clamp(18px, 2.6041666667vw, 1.25rem);
}/*# sourceMappingURL=styles.css.map */