.hero {
  height: 80vh;
  user-select: none;
  -webkit-user-select: none;
}

.hero img {
  -webkit-user-drag: none;
}

.hero__slider {
  position: relative;
  height: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.hero__slider.is-dragging {
  cursor: grabbing;
}

.hero__slide {
  display: flex;
  overflow: hidden;
  align-items: stretch;
  position: absolute;
  height: 80vh;
  width: 100%;
  color: white;
}

.hero__slide-color {
  width: 100%;
  background-color: black;
  position: relative;
  z-index: 2;
}

.hero__slide-color::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/wp-content/themes/tengri/assets/images/color_bg.png);
  background-position: center;
  background-size: cover;
  filter: brightness(0) invert(1) opacity(0.08);
}

.hero__slide-content {
  position: absolute;
  inset-inline: 0;
  z-index: 3;
  top: 50%;
  translate: 0 -50%;
}

.hero__slide-image--wrapper {
  width: 200%;
  position: relative;
  z-index: 1;
}

.hero__slide-image {
  height: 100%;
  object-fit: cover;
}

.hero-slide__headline {
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  margin: 0;
  margin-bottom: 1rem;
}

.hero-slide__description {
  margin: 0;
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.hero-slide__button--wrapper {
  overflow: hidden;
  width: fit-content;
}

.hero__controls {
  position: absolute;
  z-index: 5;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgb(17 17 17 / 88%);
}

.hero__pagination {
  display: flex;
  gap: 0.5rem;
}

.hero__pagination-button,
.hero__pause {
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #222;
  color: #fff;
  cursor: pointer;
}

.hero__pagination-button {
  overflow: hidden;
  filter: grayscale(1) brightness(0.45);
  opacity: 0.7;
  transition:
    filter 300ms ease,
    opacity 300ms ease;
}

.hero__pagination-button:hover,
.hero__pagination-button:focus-visible {
  opacity: 1;
}

.hero__pagination-button.is-active {
  filter: none;
  opacity: 1;
}

.hero__pagination-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero__pause {
  display: grid;
  place-items: center;
  transition:
    background-color 300ms ease,
    color 300ms ease;
}

.hero__pause:hover,
.hero__pause:focus-visible {
  background: #fff;
  color: #111;
}

.hero__pause-icon {
  position: relative;
  display: block;
  width: 1rem;
  height: 1.125rem;
  border-inline: 0.2rem solid currentColor;
}

.hero__pause.is-paused .hero__pause-icon {
  width: 0;
  height: 0;
  border-top: 0.5625rem solid transparent;
  border-right: 0;
  border-bottom: 0.5625rem solid transparent;
  border-left: 0.875rem solid currentColor;
}

@media (max-width: 639px) {
  .hero__controls {
    right: 0.75rem;
    bottom: 0.75rem;
    gap: 0.375rem;
    padding: 0.375rem;
  }

  .hero__pagination {
    gap: 0.375rem;
  }

  .hero__pagination-button,
  .hero__pause {
    width: 2.75rem;
    height: 2.75rem;
  }
}

.category-showcase {
  padding-block: 5rem;
}

.category-showcase__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.5rem;
}

.category-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 0.88;
  overflow: hidden;
  background: #111;
  color: #fff;
  text-decoration: none;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 42%) 0%, transparent 45%);
  pointer-events: none;
}

.category-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.category-card:hover .category-card__image {
  transform: scale(1.06);
}

.category-card__title {
  position: absolute;
  z-index: 1;
  top: 1rem;
  left: 1rem;
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.category-card__arrow {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  background: #fff;
  color: #111;
}

.category-card__arrow svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: square;
  stroke-linejoin: miter;
  transform: rotate(-45deg);
  transition: transform 300ms ease;
}

.category-card:hover .category-card__arrow svg {
  transform: rotate(0deg);
}

@media (max-width: 1199px) {
  .category-showcase__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .category-showcase {
    padding-block: 2.5rem;
  }

  .category-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .category-card__title {
    top: 0.75rem;
    left: 0.75rem;
    font-size: 1.125rem;
  }

  .category-card__arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .category-card__image,
  .category-card__arrow svg {
    transition: none;
  }
}

.featured-products {
  padding-block: 5rem 7rem;
}

.featured-products__tabs {
  --front-tabs-line-left: 0px;
  --front-tabs-line-width: 0px;
  position: relative;
  display: flex;
  width: fit-content;
  max-width: 100%;
  justify-content: center;
  gap: 3rem;
  margin: 0 auto 2.5rem;
  border-bottom: 1px solid #dedede;
}

.featured-products__tabs::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: var(--front-tabs-line-width);
  height: 2px;
  background: #111;
  transform: translateX(var(--front-tabs-line-left));
  transition:
    width 300ms ease,
    transform 300ms ease;
  pointer-events: none;
}

.featured-products__tab {
  padding: 1rem 0 1.25rem;
  border: 0;
  background: transparent;
  color: #777;
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  transition: color 300ms;
}

.featured-products__tab:hover,
.featured-products__tab:focus-visible,
.featured-products__tab.is-active {
  color: #111;
}

.featured-products__panel[hidden] {
  display: none;
}

.featured-products__empty {
  margin: 0;
  padding-block: 4rem;
  text-align: center;
}

@media (max-width: 767px) {
  .featured-products {
    padding-block: 3.5rem 5rem;
  }

  .featured-products__tabs {
    width: 100%;
    justify-content: flex-start;
    gap: 1.75rem;
    overflow-x: auto;
  }

  .featured-products__tab {
    flex: 0 0 auto;
    font-size: 0.875rem;
  }
}

.catalog-preview {
  padding-top: 1rem;
  padding-bottom: 7rem;
}

.catalog-preview__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.catalog-preview__eyebrow {
  margin: 0 0 0.5rem;
  color: #777;
  font-family: "Oswald", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-preview__title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.catalog-preview__link {
  padding-bottom: 0.35rem;
  border-bottom: 1px solid #111;
  color: #111;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-section {
  padding-block: 7rem;
}

.contact-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(28rem, 0.95fr);
  min-height: 43rem;
  overflow: hidden;
}

.contact-section__media {
  position: relative;
  z-index: 2;
  min-height: 43rem;
  margin-right: -2.5rem;
  overflow: hidden;
  background: #111;
  clip-path: polygon(
    0 0,
    calc(100% - 2.5rem) 0,
    100% 50%,
    calc(100% - 2.5rem) 100%,
    0 100%
  );
}

.contact-section__media::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.08) 12%,
    rgba(5, 5, 5, 0.88) 100%
  );
}

.contact-section__image {
  width: 100%;
  height: 100%;
  min-height: 43rem;
  object-fit: cover;
  object-position: 45% center;
  transform-origin: center center;
  will-change: transform;
}

.contact-section__media-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 42rem;
  padding: 3rem;
  color: #fff;
}

.contact-section__eyebrow {
  margin: 0 0 0.75rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-section__title {
  max-width: 34rem;
  margin: 0 0 1rem;
  color: inherit;
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.contact-section__lead {
  max-width: 36rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-section__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 1.75rem;
}

.contact-section__contacts a {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-section__form-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 3.5rem 3.5rem 6rem;
  background: #f3f3f1;
}

.contact-section__form-title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.contact-section__form-intro {
  max-width: 34rem;
  margin: 1rem 0 2rem;
  color: #5f5f5f;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-form__field {
  display: grid;
  gap: 0.5rem;
  margin: 0;
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form__field > span:not(.wpcf7-form-control-wrap) {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.75rem 0;
  border: 0;
  border-bottom: 1px solid #999;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: #111;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  transition: border-color 200ms ease;
}

.contact-form textarea {
  min-height: 6rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: #111;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8a8a8a;
  opacity: 1;
}

.contact-form__honeypot {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0;
  color: #5f5f5f;
  font-size: 0.75rem;
  line-height: 1.5;
}

.contact-form__consent input {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  accent-color: #111;
}

.contact-form__consent a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.contact-form__submit {
  border: 1px solid #111;
}

.contact-form__submit:disabled {
  cursor: wait;
  opacity: 0.6;
}

.contact-form__status {
  display: none;
  margin: 1rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
}

.contact-form__status.is-visible {
  display: block;
}

.contact-form__status.is-success {
  color: #286629;
}

.contact-form__status.is-error {
  color: #a32020;
}

@media (max-width: 1100px) {
  .contact-section__inner {
    grid-template-columns: minmax(0, 1fr) minmax(25rem, 0.9fr);
  }

  .contact-section__media-content,
  .contact-section__form-panel {
    padding: 1.5rem;
  }

  .contact-section__form-panel {
    padding-left: 5rem;
  }
}

@media (max-width: 900px) {
  .contact-section__inner {
    grid-template-columns: 1fr;
  }

  .contact-section__media {
    margin-right: 0;
    clip-path: none;
  }

  .contact-section__media,
  .contact-section__image {
    min-height: 32rem;
  }

  .contact-section__form-panel {
    padding-left: 2.5rem;
  }
}

@media (max-width: 767px) {
  .catalog-preview {
    padding-block: 5rem;
  }

  .catalog-preview__heading {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

  .catalog-preview__title {
    font-size: 2.25rem;
  }

  .catalog-preview__link {
    width: fit-content;
  }

  .contact-section {
    padding: 0 0 5rem;
  }

  .contact-section__media,
  .contact-section__image {
    min-height: 27rem;
  }

  .contact-section__media {
    clip-path: none;
  }

  .contact-section__media-content,
  .contact-section__form-panel {
    padding: 1rem;
  }

  .contact-section__title {
    font-size: 2.25rem;
  }

  .contact-section__form-title {
    font-size: 2rem;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-form__field--full {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-section__image {
    will-change: auto;
  }
}

.faq {
  padding: 0 0 7rem;
  background: #fff;
}

.faq__header {
  padding-top: 1rem;
  padding-bottom: 3rem;
}

.faq__eyebrow {
  margin: 0 0 0.75rem;
  color: #db1215;
  font-family: "Oswald", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq__title {
  max-width: 46rem;
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.faq__list {
  border-top: 1px solid #d9d9d5;
}

.faq__item {
  interpolate-size: allow-keywords;
  border-bottom: 1px solid #d9d9d5;
}

.faq__item::details-content {
  block-size: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    block-size 450ms ease,
    opacity 300ms ease,
    content-visibility 450ms allow-discrete;
}

.faq__item[open]::details-content {
  block-size: auto;
  opacity: 1;
}

.faq__summary {
  cursor: pointer;
  list-style: none;
  transition: color 300ms ease;
}

.faq__summary-inner {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
}

.faq__summary::-webkit-details-marker {
  display: none;
}

.faq__summary::marker {
  content: "";
}

.faq__summary:hover,
.faq__summary:focus-visible {
  color: #db1215;
}

.faq__icon {
  position: relative;
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5rem;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 250ms ease;
}

.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item[open] .faq__icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq__item[open] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.faq__answer {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 2.5rem;
}

.faq__answer p {
  max-width: 72rem;
  margin: 0;
  color: #4f4f4f;
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .faq {
    padding-bottom: 5rem;
  }

  .faq__header {
    padding-top: 0;
    padding-bottom: 2rem;
  }

  .faq__title {
    font-size: 2.25rem;
  }

  .faq__answer {
    padding-bottom: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq__icon::before,
  .faq__icon::after,
  .faq__item::details-content {
    transition: none;
  }
}

.about {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  margin-top: -100svh;
  display: flex;
  overflow: hidden;
  border-bottom: 1px solid #dedede;
}

.about__counter {
  min-height: 100%;
  flex: 0 0 clamp(5rem, 8.5vw, 10rem);
  display: grid;
  place-content: center;
  border-right: 1px solid #dedede;
}

.about__main {
  position: relative;
  min-width: 0;
  flex: 1 1 auto;
}

.about__slide {
  inset: 0;
  width: 100%;
  min-width: 0;
  min-height: 100svh;
  display: flex;
  gap: 6rem;
  position: absolute;
  background: #fff;
}

.about__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100svh;
  min-height: 0;
  object-fit: cover;
}

.about__content {
  flex: 2;
  min-width: 0;
  min-height: 100%;
  display: grid;
  place-content: center;
  padding-left: 6rem;
}

.about__image--wrapper {
  flex: 4;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
}

.about__content-logo {
  width: 55%;
  margin-top: 1rem;
}

.about__content-uptitle,
.about__counter-link {
  margin: 0 0 0.75rem;
  color: #db1215;
  font-family: "Oswald", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about__content-title {
  max-width: 21rem;
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.25;
  text-transform: uppercase;
  margin: 0;
}

.about__content-title b {
  font-weight: 700;
}

.about__content-text ul {
  padding: 0;
  margin-bottom: 0;
}

.about__content-text p {
  margin-bottom: 0;
}

.about__content-button {
  margin-top: 1rem;
}

.about__counter-link {
  color: #dedede;
  margin: 0;
  font-size: 1rem;
  margin: -2px;
  transition: color 300ms;
  position: relative;
}

.about__counter-link.active {
  color: #db1215;
}

.about__counter-link span {
  display: inline-flex;
}

.counter-link_pin {
  margin: -3px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  border: 1px solid #dedede;
  position: relative;
}

.counter-link_pin::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #dedede;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  transition: background-color 300ms;
}

.about__counter-link.active .counter-link_pin::before {
  background-color: #db1215;
}

.about__counter-link:not(:last-child)::after {
  display: block;
  content: "";
  height: 50px;
  width: 1px;
  background-color: #dedede;
  border-radius: 999px;
  position: relative;
  left: 5px;
}

.about__counter-link:not(:last-child)::before {
  display: block;
  content: "";
  height: var(--link-height, 0svh);
  width: 1px;
  background-color: #db1215;
  border-radius: 999px;
  position: absolute;
  left: 5px;
  z-index: 1;
  top: 12px;
}

@media (max-width: 768px) {
  .about__counter-link:not(:last-child)::after {
    height: 62px;
  }

  .hero__slide {
    flex-direction: column-reverse;
  }

  .hero__slide-color {
    display: none;
  }

  .hero__slide-content {
    position: relative;
    padding-block: 2rem;
    background-color: black;
    top: unset;
    translate: unset;
  }

  .hero__slide-content::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(/wp-content/themes/tengri/assets/images/color_bg.png);
    background-position: center;
    background-size: cover;
    filter: brightness(0) invert(1) opacity(0.08);
  }

  .hero__slide-image--wrapper {
    width: 100%;
    height: 100%;
  }

  .hero__slide {
    height: 100%;
  }

  .hero {
    height: 65vh;
  }

  .hero__controls {
    bottom: 31vh;
  }

  .featured-products__tabs {
    overflow-x: unset;
  }
}

@media (max-width: 1360px) {
  .about__content {
    padding-left: 2rem;
    flex: 3;
  }
}

@media (max-width: 1024px) {
  .about__slide {
    flex-direction: column;
  }

  .about__image {
    height: 100%;
  }

  .about__image--wrapper {
    position: absolute;
    height: 25rem;
    width: 25rem;
    min-height: unset;
    right: 0;
  }

  .about__content {
    place-content: end start;
    padding-block: 2rem;
    padding-right: 2rem;
  }

  .about__content-logo {
    width: 12rem;
  }

  .about__content-text {
    max-width: 33rem;
    font-size: 0.875rem;
  }

  .about__content-title {
    font-size: 2rem;
  }
}

@media (max-width: 900px) {
  .about__image--wrapper {
    width: 100%;
    height: 22rem;
  }
}

@media (max-width: 768px) {
  .about__content-title {
    font-size: 1.5rem;
  }

  .about__counter {
    flex: 0 0 clamp(3rem, 8.5vw, 10rem);
  }

  .about__content {
    padding-block: 1rem;
    padding-right: 1rem;
    padding-left: 1rem;
    min-height: unset;
  }

  .about__image--wrapper {
    height: 16rem;
    position: relative;
  }

  .about__content-text {
    font-size: 0.625rem;
  }

  .about__slide {
    gap: 1rem;
    flex-direction: column-reverse;
  }

  .about__counter-link {
    font-size: 0.75rem;
  }
}

/* Contact Form 7 keeps the existing contact-section layout. */
.contact-form .wpcf7-form-control-wrap { display: block; }
.contact-form .wpcf7-acceptance .wpcf7-list-item { margin: 0; }
.contact-form .wpcf7-acceptance label { display: flex; align-items: flex-start; gap: .75rem; }
.contact-form .wpcf7-acceptance input { flex-shrink: 0; }
.contact-form .wpcf7-response-output { margin: 1rem 0 0; padding: .75rem; font-size: .875rem; }
.contact-form .wpcf7-not-valid-tip { margin-top: .4rem; font-size: .75rem; }
