/* cover-home: */

.cover-home {
  isolation: isolate;
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 100vh;
  padding: 0 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1f2b22;
  background-image: none;
  position: relative;
  color: #fff;
  overflow: hidden;
}

.cover-home__slides {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.cover-home__slides span {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  animation: coverHomeFade var(--cover-slide-duration, 30s) infinite;
  animation-delay: calc(var(--slide-index) * 6s);
}

.cover-home__slides span:first-child {
  opacity: 1;
}

@keyframes coverHomeFade {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }
  8%,
  22% {
    opacity: 1;
  }
  32%,
  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

.cover-home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(11, 18, 12, 0.88) 0%, rgba(11, 18, 12, 0.68) 42%, rgba(11, 18, 12, 0.18) 72%, rgba(11, 18, 12, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.42) 100%);
}

.cover-home::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(10, 15, 11, 0.76));
}

.cover-home__inner {
  display: grid;
  grid-template-rows: 1fr auto;
  width: min(100%, 1366px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 192px 0 42px;
  position: relative;
  z-index: 1;
}

.cover-home__inner::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 168px;
  width: min(320px, 46vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  pointer-events: none;
  transform: translateX(-50%);
}

.cover-home__content {
  align-self: center;
  max-width: 780px;
  padding: 42px 0 48px;
  position: relative;
  text-align: left;
}

.cover-home__content::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 54px;
  width: 3px;
  height: 118px;
  border-radius: 999px;
  background: linear-gradient(180deg, #9fe06d, rgba(159, 224, 109, 0.08));
  box-shadow: 0 0 24px rgba(159, 224, 109, 0.28);
}

.cover-home h1 {
  max-width: 860px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5.2vw, 74px);
  line-height: 1.04;
  font-weight: 850;
  letter-spacing: 0;
  text-shadow: 0 22px 56px rgba(0, 0, 0, 0.36);
}

p.moscow-and-region {
  display: inline-block;
  margin: 0 0 22px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

p.moscow-and-region:hover {
  background: rgba(255, 255, 255, 0.18);
}

p.make-request {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 31px;
  font-weight: 400;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

.cover-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 54px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
  font-size: 15px;
  line-height: 20px;
  font-weight: 550;
  cursor: pointer;
  transition: background 0.24s ease, color 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.home-button svg {
  display: block;
  flex: 0 0 auto;
}

.home-button__icon svg {
  width: 18px;
  height: 18px;
}

.home-button__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: currentColor;
  transition: background 0.24s ease, transform 0.24s ease;
}

.home-button--primary .home-button__icon {
  background: rgba(255, 255, 255, 0.24);
}

.home-button:hover .home-button__icon {
  transform: translateX(2px);
}

.home-button--primary {
  background: var(--service-single-accent);
  color: #fff;
}

.home-button--secondary {
  border-color: var(--home-button-secondary-border, rgba(255, 255, 255, 0.26));
  background: var(--home-button-secondary-bg, rgba(255, 255, 255, 0.13));
  color: var(--home-button-secondary-color, #fff);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.home-button:hover {
  transform: translateY(-2px);
}

.home-button--primary:hover {
  background: var(--service-single-accent-hover);
}

.home-button--secondary:hover {
  border-color: var(--home-button-secondary-border-hover, rgba(255, 255, 255, 0.42));
  background: var(--home-button-secondary-bg-hover, rgba(255, 255, 255, 0.2));
}

.cover-home__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  list-style: none;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cover-home__features li {
  min-height: 96px;
  margin: 0;
  padding: 18px 18px 19px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 21px;
  font-weight: 400;
  transition: background 0.24s ease, color 0.24s ease;
}

.cover-home__features li:hover {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.cover-home__features span {
  display: block;
  margin-bottom: 8px;
  color: #9fe06d;
  font-size: 13px;
  line-height: 16px;
  font-weight: 600;
}

@media screen and (min-width: 1367px) {
  .cover-home {
    max-width: none;
    margin: 0;
    border-radius: 0;
  }
}

@media screen and (max-width: 960px) and (min-width: 769px) {
  .cover-home {
    padding: 0 28px;
    background-position: center;
  }
  .cover-home__inner {
    padding-top: 132px;
  }
  .cover-home__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .cover-home {
    min-height: auto;
    padding: 0 20px;
    background-position: 58% center;
  }
  .cover-home::before {
    background:
      linear-gradient(90deg, rgba(11, 18, 12, 0.88) 0%, rgba(11, 18, 12, 0.66) 72%, rgba(11, 18, 12, 0.36) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.48) 100%);
  }
  .cover-home__inner {
    min-height: 100vh;
    padding: 104px 0 28px;
  }
  .cover-home__content {
    padding: 34px 0 34px;
  }
  .cover-home__content::before,
  .cover-home__inner::after {
    display: none;
  }
  .cover-home h1 {
    font-size: 36px;
    line-height: 1.08;
  }
  p.make-request {
    margin-top: 20px;
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
  }
  .cover-home__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .cover-home__button {
    width: 100%;
    min-height: 52px;
  }
  .cover-home__features {
    grid-template-columns: 1fr;
  }
  .cover-home__features li {
    min-height: 0;
  }
}

/* our-services-home: */

.our-services-home {
  width: 100%;
  padding: 92px 40px 96px;
  background:
    radial-gradient(circle at 12% 12%, rgba(118, 160, 86, 0.12), transparent 30%),
    linear-gradient(180deg, #f7f8f4 0%, #eef3ea 100%);
  position: relative;
  overflow: hidden;
}

.our-services-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(40, 54, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 54, 42, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.our-services-home__inner {
  width: min(100%, 1366px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.our-services-home__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 28px;
}

.our-services-home__head p {
  display: inline-block;
  margin: 0 0 16px;
  padding: 8px 13px;
  border: 1px solid rgba(31, 44, 32, 0.16);
  border-radius: 999px;
  background: rgba(31, 44, 32, 0.1);
  color: var(--service-single-ink);
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  text-transform: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.our-services-home__head p:hover {
  background: rgba(31, 44, 32, 0.14);
}

.our-services-home__head h2 {
  max-width: 680px;
  margin: 0;
  color: var(--service-single-ink);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  font-weight: 800;
}

.our-services-home__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-service-card {
  display: flex;
  align-items: flex-end;
  min-height: 330px;
  border-radius: 12px;
  background-color: #223023;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 46px rgba(30, 43, 31, 0.16);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.home-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: inherit;
  transition: transform 0.5s ease;
}

.home-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(9, 15, 10, 0.06) 0%, rgba(9, 15, 10, 0.28) 42%, rgba(9, 15, 10, 0.82) 100%),
    linear-gradient(90deg, rgba(9, 15, 10, 0.34), transparent 62%);
}

.home-service-card:hover::before {
  transform: scale(1.06);
}

.home-service-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.home-service-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 16px;
  width: 100%;
  padding: 24px;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.home-service-card h3 {
  max-width: 420px;
  margin: 0 0 10px;
  color: #fff;
  font-size: 24px;
  line-height: 29px;
  font-weight: 650;
}

.home-service-card p {
  display: inline-flex;
  margin: 0;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  backdrop-filter: blur(12px);
}

.home-service-card__button {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: auto;
  white-space: nowrap;
  transition: opacity 0.22s ease, transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.home-service-card:hover .home-service-card__button,
.home-service-card:focus-within .home-service-card__button {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (min-width: 1367px) {
  .our-services-home {
    max-width: none;
  }
}

@media screen and (max-width: 960px) and (min-width: 769px) {
  .our-services-home__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .our-services-home {
    padding: 64px 20px;
  }
  .our-services-home__head {
    display: block;
  }
  .our-services-home__grid {
    grid-template-columns: 1fr;
  }
  .home-service-card {
    min-height: 280px;
  }
  .home-service-card__content {
    display: block;
  }
  .home-service-card__button {
    margin-top: 18px;
    opacity: 1;
    transform: none;
  }
}

/* home-services-showcase: */

.home-services-showcase {
  position: relative;
  width: 100%;
  padding: 84px 24px 92px;
  background:
    radial-gradient(circle at 88% 10%, rgba(118, 160, 86, 0.1), transparent 28%),
    linear-gradient(180deg, #eef3ea 0%, #eef3ea 48%, #f7f8f4 100%);
  overflow: hidden;
}
.home-services-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 52, 36, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 52, 36, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, #000, #000 78%, transparent);
  pointer-events: none;
}
.home-services-showcase::after {
  content: "";
  position: absolute;
  right: max(24px, calc((100vw - 1366px) / 2));
  top: 74px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(79, 100, 39, 0.16);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 48%, rgba(79, 100, 39, 0.12) 49%, transparent 51%),
    linear-gradient(45deg, transparent 48%, rgba(79, 100, 39, 0.1) 49%, transparent 51%);
  opacity: 0.32;
  pointer-events: none;
}
.home-services-showcase__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}
.home-services-showcase__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.home-services-showcase__head > div:first-child {
  max-width: 850px;
}
.home-services-showcase__head p {
  display: inline-block;
  margin: 0 0 16px;
  padding: 8px 13px;
  border: 1px solid rgba(31, 44, 32, 0.16);
  border-radius: 999px;
  background: rgba(31, 44, 32, 0.1);
  color: var(--service-single-ink);
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.home-services-showcase__head p:hover {
  background: rgba(31, 44, 32, 0.14);
}
.home-services-showcase__head h2 {
  margin: 0;
  color: #1e261d;
  font-size: 42px;
  line-height: 50px;
  font-weight: 820;
}
.home-services-showcase__controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.home-services-showcase__arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(79, 100, 39, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: #1e261d;
  font-size: 34px;
  line-height: 1;
  font-weight: 300;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}
.home-services-showcase__arrow:hover {
  border-color: #4f6427;
  background: #4f6427;
  color: #fff;
  transform: translateY(-2px);
  cursor: pointer;
}
.home-services-showcase__arrow:disabled {
  opacity: 0.42;
  transform: none;
  cursor: default;
}
.home-services-showcase__arrow:disabled:hover {
  border-color: rgba(79, 100, 39, 0.2);
  background: rgba(255, 255, 255, 0.78);
  color: #1e261d;
}
.home-services-showcase__viewport {
  overflow: hidden;
  margin: 0 -10px;
  padding: 10px;
}
.home-services-showcase__track {
  display: flex;
  align-items: stretch;
  transition: transform 0.38s ease;
  will-change: transform;
}
.home-service-slide {
  position: relative;
  flex: 0 0 calc(50% - 14px);
  min-height: 430px;
  margin-right: 27px;
  border-radius: 16px;
  background: #1f2c20;
  box-shadow: 0 24px 60px rgba(28, 42, 25, 0.15);
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}
.home-service-slide:hover {
  box-shadow: 0 30px 78px rgba(28, 42, 25, 0.22);
  transform: translateY(-5px);
}
.home-service-slide__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.home-service-slide__media {
  position: absolute;
  inset: 0;
  background-color: #dfe7d8;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.5s ease;
}
.home-service-slide:hover .home-service-slide__media {
  transform: scale(1.06);
}
.home-service-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 16, 11, 0.1) 0%, rgba(10, 16, 11, 0.38) 42%, rgba(10, 16, 11, 0.8) 100%),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.28), transparent 34%);
  z-index: 1;
  transition: background 0.3s ease;
}
.home-service-slide:hover::before {
  background:
    linear-gradient(180deg, rgba(10, 16, 11, 0.16) 0%, rgba(10, 16, 11, 0.42) 35%, rgba(10, 16, 11, 0.86) 100%),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.25), transparent 34%);
}
.home-service-slide__content {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: end;
  min-height: 430px;
  padding: 28px;
  color: #fff;
  pointer-events: none;
}
.home-service-slide__badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 13px;
  line-height: 18px;
  font-weight: 800;
}
.home-service-slide h3 {
  max-width: 330px;
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 34px;
  font-weight: 820;
}
.home-service-slide__hover {
  max-height: 0;
  opacity: 0;
  transform: translateY(14px);
  overflow: hidden;
  transition: max-height 0.28s ease, opacity 0.28s ease, transform 0.28s ease, margin-top 0.28s ease;
}
.home-service-slide:hover .home-service-slide__hover,
.home-service-slide:focus-within .home-service-slide__hover {
  max-height: 190px;
  margin-top: 18px;
  opacity: 1;
  transform: translateY(0);
}
.home-service-slide__hover p {
  max-width: 350px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 23px;
}
.home-service-slide__hover > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-service-slide__hover .home-service-card__button {
  position: relative;
  z-index: 4;
  min-height: 44px;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.home-service-slide__hover .home-service-card__button:hover {
  transform: translateY(-2px);
}
.home-services-showcase__bottom {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.home-services-showcase__bottom .home-button--secondary {
  --home-button-secondary-color: var(--service-single-accent-hover);
  --home-button-secondary-border: rgba(var(--service-single-accent-rgb), 0.28);
  --home-button-secondary-bg: rgba(255, 255, 255, 0.52);
  --home-button-secondary-border-hover: rgba(var(--service-single-accent-rgb), 0.44);
  --home-button-secondary-bg-hover: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 38px rgba(28, 42, 25, 0.08);
}

@media screen and (max-width: 960px) and (min-width: 769px) {
  .home-service-slide {
    flex-basis: calc(66.666% - 12px);
    margin-right: 28px;
  }
}

@media screen and (max-width: 768px) {
  .home-services-showcase {
    padding: 62px 18px 70px;
  }
  .home-services-showcase::after {
    display: none;
  }
  .home-services-showcase__head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
  }
  .home-services-showcase__head h2 {
    font-size: 32px;
    line-height: 39px;
  }
  .home-services-showcase__controls {
    width: 100%;
    justify-content: flex-end;
  }
  .home-service-slide {
    flex-basis: 100%;
    min-height: 390px;
    margin-right: 18px;
  }
  .home-service-slide__content {
    min-height: 390px;
    padding: 22px;
  }
  .home-service-slide h3 {
    font-size: 25px;
    line-height: 31px;
  }
  .home-service-slide__hover {
    max-height: 190px;
    margin-top: 16px;
    opacity: 1;
    transform: translateY(0);
  }
  .home-services-showcase__bottom {
    justify-content: stretch;
  }
  .home-services-showcase__bottom > a {
    justify-content: center;
    width: 100%;
  }
}

/* how-we-work: */

.how-we-work {
  position: relative;
  width: 100%;
  padding: 64px 24px 72px;
  background:
    radial-gradient(circle at 82% 18%, rgba(var(--service-single-accent-rgb), 0.13), transparent 30%),
    linear-gradient(180deg, #f7f8f4 0%, #edf2e8 100%);
  overflow: hidden;
}
.how-we-work::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(31, 44, 32, 0.05), transparent 34%),
    radial-gradient(circle at 12% 84%, rgba(31, 44, 32, 0.08), transparent 28%);
  pointer-events: none;
}
.how-we-work__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1366px);
  margin: 0 auto;
}
.how-we-work__head {
  max-width: 850px;
  margin-bottom: 22px;
}
.how-we-work__head p {
  display: inline-block;
  margin: 0 0 16px;
  padding: 8px 13px;
  border: 1px solid rgba(31, 44, 32, 0.16);
  border-radius: 999px;
  background: rgba(31, 44, 32, 0.1);
  color: var(--service-single-ink);
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.how-we-work__head h2 {
  max-width: 860px;
  margin: 0 0 12px;
  color: var(--service-single-ink);
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1.18;
  font-weight: 300;
}
.how-we-work__head span {
  display: block;
  max-width: 640px;
  color: rgba(31, 44, 32, 0.72);
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
}
.how-we-work__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}
.cost-quiz,
.work-steps {
  border: 1px solid rgba(31, 44, 32, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(28, 42, 25, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.cost-quiz {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 24px;
}
.cost-quiz__progress {
  height: 7px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(31, 44, 32, 0.09);
  overflow: hidden;
}
.cost-quiz__progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--service-single-accent), var(--service-single-accent-hover));
  transition: width 0.28s ease;
}
.cost-quiz__step {
  margin: 0;
  padding: 0;
  border: 0;
}
.cost-quiz__step[hidden],
.cost-quiz__after-send[hidden],
.cost-quiz__next[hidden],
.cost-quiz__messenger[hidden] {
  display: none;
}
.cost-quiz legend {
  display: block;
  margin-bottom: 16px;
  color: var(--service-single-ink);
  font-size: 24px;
  line-height: 31px;
  font-weight: 430;
}
.cost-quiz legend small {
  display: block;
  margin-bottom: 8px;
  color: rgba(31, 44, 32, 0.55);
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
}
.cost-quiz__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.cost-quiz__options label {
  position: relative;
  display: block;
}
.cost-quiz__options label[hidden] {
  display: none !important;
}
.cost-quiz__options label.is-hidden {
  display: none !important;
}
.cost-quiz__options input {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.cost-quiz__options span {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 14px 14px 14px 46px;
  border: 1px solid rgba(31, 44, 32, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(31, 44, 32, 0.82);
  font-size: 16px;
  line-height: 22px;
  font-weight: 430;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cost-quiz__options span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(31, 44, 32, 0.28);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.cost-quiz__options label:hover span {
  border-color: rgba(var(--service-single-accent-rgb), 0.42);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(28, 42, 25, 0.08);
  transform: translateY(-2px);
  cursor: pointer;
}
.cost-quiz__options input:focus-visible + span {
  outline: 2px solid rgba(var(--service-single-accent-rgb), 0.45);
  outline-offset: 3px;
}
.cost-quiz__options input:checked + span {
  border-color: rgba(var(--service-single-accent-rgb), 0.5);
  background: rgba(var(--service-single-accent-rgb), 0.12);
  color: var(--service-single-ink);
}
.cost-quiz__options input:checked + span::before {
  border-color: var(--service-single-accent);
  box-shadow: inset 0 0 0 5px #fff, inset 0 0 0 9px var(--service-single-accent);
}
.cost-quiz__options input[type="checkbox"] + span::before {
  border-radius: 5px;
}
.cost-quiz__options input[type="checkbox"]:checked + span::before {
  background: var(--service-single-accent);
  border-color: var(--service-single-accent);
  box-shadow: none;
}
.cost-quiz__options input[type="checkbox"] + span::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: translateY(-58%) rotate(45deg);
  transition: opacity 0.2s ease;
}
.cost-quiz__options input[type="checkbox"]:checked + span::after {
  opacity: 1;
}
.cost-quiz__summary {
  margin-top: 4px;
  padding: 18px;
  border: 1px solid rgba(var(--service-single-accent-rgb), 0.2);
  border-radius: 14px;
  background: rgba(var(--service-single-accent-rgb), 0.1);
}
.cost-quiz__summary small {
  display: block;
  margin-bottom: 8px;
  color: rgba(31, 44, 32, 0.58);
  font-size: 14px;
  line-height: 18px;
  font-weight: 650;
}
.cost-quiz__summary strong {
  display: block;
  margin-bottom: 8px;
  color: var(--service-single-ink);
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
}
.cost-quiz__summary p {
  max-width: 620px;
  margin: 0;
  color: rgba(31, 44, 32, 0.76);
  font-size: 16px;
  line-height: 25px;
}
.cost-quiz__selected {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}
.cost-quiz__selected li {
  padding: 8px 10px;
  border: 1px solid rgba(31, 44, 32, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.68);
  color: rgba(31, 44, 32, 0.72);
  font-size: 13px;
  line-height: 18px;
  font-weight: 560;
}
.cost-quiz__selected li strong {
  display: block;
  margin-bottom: 3px;
  color: var(--service-single-ink);
  font-size: 12px;
  line-height: 16px;
  font-weight: 760;
}
.cost-quiz__form {
  margin-top: 14px;
}
.cost-quiz__form .wpcf7-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.cost-quiz__form .wpcf7-form p {
  margin: 0;
}
.cost-quiz__form .wpcf7-form p:has(.modal-form-agreement),
.cost-quiz__form .wpcf7-form p:has(input[type="submit"]),
.cost-quiz__form .wpcf7-response-output {
  grid-column: 1 / -1;
}
.cost-quiz__form input[type="text"],
.cost-quiz__form input[type="tel"] {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(31, 44, 32, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--service-single-ink);
  font-size: 15px;
  line-height: 20px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.cost-quiz__form input[type="text"]:focus,
.cost-quiz__form input[type="tel"]:focus {
  border-color: rgba(var(--service-single-accent-rgb), 0.52);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(var(--service-single-accent-rgb), 0.12);
}
.cost-quiz__form .modal-form-agreement {
  display: block;
  color: rgba(31, 44, 32, 0.66);
  font-size: 13px;
  line-height: 19px;
}
.cost-quiz__form .modal-form-agreement a {
  color: var(--service-single-accent-hover);
  font-weight: 650;
}
.cost-quiz__form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  accent-color: var(--service-single-accent);
  vertical-align: middle;
}
.cost-quiz__form input[type="submit"] {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--service-single-accent);
  border-radius: 999px;
  background: var(--service-single-accent);
  color: #fff;
  font-size: 15px;
  line-height: 18px;
  font-weight: 760;
  box-shadow: 0 16px 34px rgba(var(--service-single-accent-rgb), 0.24);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cost-quiz__form input[type="submit"]:hover {
  border-color: var(--service-single-accent-hover);
  background: var(--service-single-accent-hover);
  box-shadow: 0 20px 42px rgba(var(--service-single-accent-rgb), 0.3);
  transform: translateY(-2px);
  cursor: pointer;
}
.cost-quiz__form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  color: #b42318;
  font-size: 12px;
  line-height: 16px;
}
.cost-quiz__form .wpcf7-response-output {
  margin: 0 !important;
  padding: 12px 14px !important;
  border-radius: 12px;
  color: var(--service-single-ink);
  font-size: 13px;
  line-height: 19px;
}
.cost-quiz__after-send {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(var(--service-single-accent-rgb), 0.12);
  color: var(--service-single-ink);
  font-size: 14px;
  line-height: 20px;
}
.cost-quiz__after-send p {
  margin: 0;
}
.cost-quiz__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 20px;
}
.cost-quiz__prev:disabled {
  opacity: 0.45;
  pointer-events: none;
}
.cost-quiz .home-button--secondary {
  --home-button-secondary-color: var(--service-single-ink);
  --home-button-secondary-border: rgba(31, 44, 32, 0.34);
  --home-button-secondary-bg: rgba(255, 255, 255, 0.78);
  --home-button-secondary-border-hover: rgba(31, 44, 32, 0.52);
  --home-button-secondary-bg-hover: #fff;
  box-shadow: 0 12px 28px rgba(28, 42, 25, 0.08);
}
.cost-quiz__messenger {
  --home-button-secondary-color: #fff;
  --home-button-secondary-border: #238f55;
  --home-button-secondary-bg: #238f55;
  --home-button-secondary-border-hover: #1f7547;
  --home-button-secondary-bg-hover: #1f7547;
}
.work-steps {
  padding: 20px;
}
.work-steps__card {
  margin-bottom: 18px;
  padding: 20px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(31, 44, 32, 0.94), rgba(57, 79, 43, 0.92));
  color: #fff;
  overflow: hidden;
  position: relative;
}
.work-steps__card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -48px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}
.work-steps__card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 17px;
  font-weight: 650;
}
.work-steps h3 {
  max-width: 260px;
  margin: 0 0 8px;
  color: #fff;
  font-size: 23px;
  line-height: 29px;
  font-weight: 430;
}
.work-steps p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 22px;
}
.work-steps ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.work-steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 11px;
  border: 1px solid rgba(31, 44, 32, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.56);
  color: rgba(31, 44, 32, 0.78);
  font-size: 15px;
  line-height: 22px;
  font-weight: 430;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.work-steps li span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(var(--service-single-accent-rgb), 0.12);
  color: var(--service-single-accent-hover);
  font-size: 13px;
  line-height: 1;
  font-weight: 760;
  transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}
.work-steps li.is-active {
  border-color: rgba(var(--service-single-accent-rgb), 0.34);
  background: rgba(var(--service-single-accent-rgb), 0.12);
  color: var(--service-single-ink);
  box-shadow: 0 14px 32px rgba(var(--service-single-accent-rgb), 0.12);
  transform: translateX(-4px);
}
.work-steps li.is-active span {
  background: var(--service-single-accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(var(--service-single-accent-rgb), 0.24);
}
.work-steps li.is-done {
  border-color: rgba(31, 44, 32, 0.08);
  background: rgba(255, 255, 255, 0.74);
  color: rgba(31, 44, 32, 0.58);
}
.work-steps li.is-done span {
  background: rgba(var(--service-single-accent-rgb), 0.18);
  color: var(--service-single-accent-hover);
}

@media screen and (max-width: 960px) {
  .how-we-work__layout {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .how-we-work {
    padding: 64px 18px 70px;
  }
  .how-we-work__head h2 {
    font-size: 32px;
    line-height: 39px;
  }
  .how-we-work__head span {
    font-size: 16px;
    line-height: 25px;
  }
  .cost-quiz {
    min-height: 0;
    padding: 20px;
  }
  .cost-quiz legend {
    font-size: 25px;
    line-height: 31px;
  }
  .cost-quiz__options {
    grid-template-columns: 1fr;
  }
  .cost-quiz__selected {
    grid-template-columns: 1fr;
  }
  .cost-quiz__actions .home-button {
    justify-content: center;
    width: 100%;
  }
}

/* useful-articles: */

.useful-articles {
  position: relative;
  width: 100%;
  padding: 88px 24px 96px;
  background:
    radial-gradient(circle at 12% 12%, rgba(var(--service-single-accent-rgb), 0.1), transparent 28%),
    linear-gradient(180deg, #edf2e8 0%, #f7f8f4 100%);
  overflow: hidden;
}
.useful-articles::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(31, 44, 32, 0.045), transparent 30%),
    radial-gradient(circle at 88% 78%, rgba(31, 44, 32, 0.08), transparent 26%);
  pointer-events: none;
}
.useful-articles__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1366px);
  margin: 0 auto;
}
.useful-articles__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.useful-articles__head p {
  display: inline-block;
  margin: 0 0 16px;
  padding: 8px 13px;
  border: 1px solid rgba(31, 44, 32, 0.16);
  border-radius: 999px;
  background: rgba(31, 44, 32, 0.1);
  color: var(--service-single-ink);
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.useful-articles__head h2 {
  max-width: 720px;
  margin: 0;
  color: var(--service-single-ink);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 820;
}
.useful-articles__head .home-button--secondary {
  --home-button-secondary-color: var(--service-single-ink);
  --home-button-secondary-border: rgba(31, 44, 32, 0.22);
  --home-button-secondary-bg: rgba(255, 255, 255, 0.68);
  --home-button-secondary-border-hover: rgba(var(--service-single-accent-rgb), 0.38);
  --home-button-secondary-bg-hover: #fff;
  box-shadow: 0 14px 34px rgba(28, 42, 25, 0.08);
}
.useful-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.useful-article-card {
  position: relative;
  min-height: 470px;
  border: 1px solid rgba(31, 44, 32, 0.1);
  border-radius: 16px;
  background: #1f2c20;
  box-shadow: 0 24px 70px rgba(28, 42, 25, 0.1);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.useful-article-card:hover {
  border-color: rgba(var(--service-single-accent-rgb), 0.28);
  box-shadow: 0 30px 82px rgba(28, 42, 25, 0.16);
  transform: translateY(-5px);
}
.useful-article-card__link {
  position: absolute;
  inset: 0;
  z-index: 3;
}
.useful-article-card__media {
  position: absolute;
  inset: 0;
  background-color: #dfe7d8;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: transform 0.5s ease;
}
.useful-article-card:hover .useful-article-card__media {
  transform: scale(1.05);
}
.useful-article-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 13, 9, 0.08) 0%, rgba(8, 13, 9, 0.26) 38%, rgba(8, 13, 9, 0.86) 100%),
    linear-gradient(90deg, rgba(8, 13, 9, 0.36), transparent 62%);
  transition: background 0.28s ease;
}
.useful-article-card:hover::before {
  background:
    linear-gradient(180deg, rgba(8, 13, 9, 0.16) 0%, rgba(8, 13, 9, 0.38) 34%, rgba(8, 13, 9, 0.92) 100%),
    linear-gradient(90deg, rgba(8, 13, 9, 0.42), transparent 62%);
}
.useful-article-card__content {
  display: grid;
  align-content: end;
  min-height: 470px;
  position: relative;
  z-index: 2;
  padding: 26px;
  color: #fff;
}
.useful-article-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.useful-article-card__meta span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 13px;
  line-height: 17px;
  font-weight: 650;
}
.useful-article-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 24px;
  line-height: 30px;
  font-weight: 760;
}
.useful-article-card p {
  margin: 0;
  max-height: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  opacity: 0;
  overflow: hidden;
  transform: translateY(12px);
  transition: max-height 0.28s ease, opacity 0.28s ease, transform 0.28s ease, margin 0.28s ease;
}
.useful-article-card:hover p,
.useful-article-card:focus-within p {
  max-height: 96px;
  margin-top: 4px;
  opacity: 1;
  transform: translateY(0);
}
.useful-article-card__more {
  display: inline-flex;
  align-items: center;
  margin-top: 0;
  color: #b8e0c2;
  font-size: 15px;
  line-height: 20px;
  font-weight: 720;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease, margin 0.28s ease, color 0.22s ease;
}
.useful-article-card:hover .useful-article-card__more,
.useful-article-card:focus-within .useful-article-card__more {
  margin-top: 18px;
  opacity: 1;
  transform: translateY(0);
}
.useful-article-card:hover .useful-article-card__more {
  color: #d2f0d9;
}

@media screen and (max-width: 960px) and (min-width: 769px) {
  .useful-articles__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .useful-articles {
    padding: 64px 18px 70px;
  }
  .useful-articles__head {
    align-items: flex-start;
    flex-direction: column;
  }
  .useful-articles__head h2 {
    font-size: 32px;
    line-height: 39px;
  }
  .useful-articles__head .home-button {
    justify-content: center;
    width: 100%;
  }
  .useful-articles__grid {
    grid-template-columns: 1fr;
  }
  .useful-article-card {
    min-height: 0;
  }
  .useful-article-card__media {
    min-height: 360px;
  }
  .useful-article-card__content {
    min-height: 360px;
    padding: 22px;
  }
  .useful-article-card p,
  .useful-article-card__more {
    max-height: none;
    opacity: 1;
    transform: none;
  }
  .useful-article-card__more {
    margin-top: 16px;
  }
}

/* request-estimate: */

.request-estimate {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  column-gap: 20px;
  row-gap: 20px;
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding: 60px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.request-estimate > div {
  display: grid;
  height: 100%;
  position: relative;
  z-index: 2;
}
.request-estimate > div > div {
  align-self: center;
  text-align: center;
}

.request-estimate > div:nth-child(1) {
  grid-column: 1 / span 2;
}
.request-estimate > div:nth-child(2) {
  display: grid;
  height: 100%;
  position: relative;
  z-index: 2;
}
.request-estimate > div:nth-child(3) {
  display: grid;
  height: 100%;
  position: relative;
  z-index: 2;
}

.request-estimate > div:nth-child(4) {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 1;
  opacity: 0.9;
  filter: blur(10px);
}

.request-estimate form {
  margin: 0 auto;
}
.request-estimate form input[type="text"],
.request-estimate form input[type="tel"] {
  display: inline-block;
  width: 49%;
  margin-bottom: 20px;
  border: none;
  border-radius: 10px;
  background: #fff;
  padding: 15px 30px;
}
.request-estimate form input[type="text"]:focus,
.request-estimate form input[type="tel"]:focus {
  box-shadow: inset 0px 0px 5px sienna;
}
.request-estimate form input[type="submit"] {
  width: auto;
  margin-bottom: 20px;
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  outline: none;
  background: linear-gradient(to top, firebrick, sandybrown) firebrick;
  box-shadow: none;
  font-weight: 600;
  color: #fff;
  transform: translateY(0);
  transition: all 0.3s;
}
.request-estimate form input[type="submit"]:hover {
  background: linear-gradient(to top, #820d0d, firebrick) #820d0d;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 3px 5px;
  transform: translateY(-5px);
  cursor: pointer;
}

/* + cf7 :*/

.request-estimate .wpcf7-not-valid-tip {
  display: block;
  position: absolute;
  top: 30px;
  left: 0;
  font-size: 1em;
  font-weight: normal;
  color: yellow;
}

.example-photos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  column-gap: 20px;
}
.example-photos > div {
  align-self: center;
  text-align: center;
}
.example-photos > div img {
  width: 100%;
  height: auto;
  max-width: 150px;
  box-shadow: rgba(0, 0, 0, 0.25) 0 2px 5px;
  transform: scale(1) rotate(0deg);
  transition: all 0.3s;
}
.example-photos > div img:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 10px 10px 15px;
  transform: scale(1.2) rotate(5deg);
}

.request-estimate h2 {
  margin-bottom: 20px;
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
}
.request-estimate a {
  color: sandybrown;
}

.request-estimate button {
  margin: 0 20px 0 0;
}
.request-estimate button:last-child {
  margin: 0 0 0 0;
}

@media screen and (min-width: 1367px) {
  .request-estimate {
    max-width: 1366px;
    min-height: auto;
    margin: 0 auto;
    border-radius: 40px;
  }
  .request-estimate > div:nth-child(4) {
    border-radius: 40px;
  }
}

@media screen and (max-width: 960px) and (min-width: 769px) {
  .request-estimate {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 40px;
    min-height: auto;
  }
  .request-estimate > div:nth-child(1) {
    grid-column: 1 / span 1;
  }
  .request-estimate h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

@media screen and (max-width: 768px) {
  .request-estimate {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 40px;
    min-height: auto;
  }
  .request-estimate > div:nth-child(1) {
    grid-column: 1 / span 1;
  }
  .request-estimate form input[type="text"],
  .request-estimate form input[type="tel"] {
    width: 99%;
  }
  .request-estimate h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .request-estimate button {
    display: block;
    width: 80%;
    margin: 0 auto 10px auto;
  }
  .request-estimate button:last-child {
    margin: 0 auto 0 auto;
  }
}
/* 

contact page:

*/
