:root {
  --color-secondary: #dae5ed;
  --color-primary: #fc7a10;
  --gray-backgroud: #fdfbfa;
}

/* body {.caveat-<uniquifier> {
  font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
 */

body {
  font-family: "Google Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  overflow-x: hidden;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23414651' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-toggler {
  border: none;
  box-shadow: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='%23EE3523' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Sticky header, 100px tall */
.teacherbar-site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: #fff;
}
.teacherbar-site-header #cp-navigation,
.teacherbar-site-header .navbar {
  min-height: 100px;
}

/* Header navbar pill */
.rounded-navbar {
  background-color: #f7f7fa;
  border-radius: 999px;
  padding-left: 16px;
  padding-right: 16px;
}
.rounded-navbar .nav-link.active {
  border-bottom: 2px solid #fc7a10;
}

/* Header left-side icons */
.header-icons {
  gap: 32px;
}
.header-icon img {
  width: 32px;
  height: 32px;
}

.bg-hero-gradient {
  background: radial-gradient(
    71.4% 82.31% at 50% -3.48%,

    #ff6eaa 0%,

    #021231 100%
  );
}

.fs-16 {
  font-size: 16px;
}
.fs-18 {
  font-size: 18px;
}
.fs-20 {
  font-size: 20px;
}
.fs-24 {
  font-size: 24px;
}

/* ---- Breadcrumbs (RTL) ----
   The vendored bootstrap-rtl still floats the divider left, which dumps the
   separator at the far end and collapses the items. Reset it so crumbs read
   right-to-left with a chevron between them. */
.breadcrumb {
  --bs-breadcrumb-divider: "\203A"; /* mirrors to a left chevron under RTL */
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: none;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.bg-gray {
  background-color: var(--gray-backgroud);
}

/* style.css (Underscores boilerplate) sets a:visited/hover/focus/active colors
   (specificity 0,1,1) that override Bootstrap's .btn color (0,1,0), turning
   button-as-link text red once focused. Re-assert the Bootstrap button colors. */
.btn:link,
.btn:visited {
  color: var(--bs-btn-color);
}
.btn:hover,
.btn:focus,
.btn:active {
  color: var(--bs-btn-hover-color);
}

/* Extra bottom room so the rounded cap overlaps added space, not hero content.
   Uses higher specificity to override .py-100's padding-bottom. */
section.hp-hero {
  padding-bottom: 220px;
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.my-100 {
  margin-top: 100px;
  margin-bottom: 100px;
}
.my-60 {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (max-width: 767.98px) {
  section.hp-hero {
    padding-bottom: 160px;
  }
}

/* Decoration layer: rounded gray cap that overlaps the bottom of the hero,
   making the next section look layered on top of the hero. */
.hp-rounded-cap {
  position: relative;
  z-index: 2;
  margin-top: -120px;
  border-top-left-radius: 120px;
  border-top-right-radius: 120px;
}
@media (max-width: 767.98px) {
  .hp-rounded-cap {
    margin-top: -60px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
  }
}

/* Hero medal icons */
.hero-medal-icon {
  width: 72px;
  height: 72px;
}

/* Animated scroll-down indicator (chevrons flash one at a time) */
.hero-scroll {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  line-height: 0;
  z-index: 3;
}
@media (max-width: 767.98px) {
  .hero-scroll {
    bottom: 80px;
  }
}
.scroll-down-anim .chev {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.2;
  animation: heroScrollFade 1.6s ease-in-out infinite;
}
.scroll-down-anim .chev-2 {
  animation-delay: 0.4s;
}

.welcome-to,
.caveat-subtitle {
  font-family: "Caveat", cursive;
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
}

/* "Why Teacher Bar?" paper cards */
.why-tb-papers > .paper-box {
  flex: 1 1 0;
  min-width: 0;
}
.paper-box {
  background-color: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 8px 20px 40px 0px rgba(124, 111, 104, 0.1);
}
.why-tb-icon {
  width: auto;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: 0;
}
.gap-40 {
  gap: 40px;
}

/* "About Teacher Bar" two-column section */
.about-tb-grid {
  gap: 80px;
}
.about-tb-text {
  flex: 1 1 0;
  min-width: 0;
  max-width: 660px;
  width: 100%;
}
.about-tb-image {
  flex: 0 0 auto;
  max-width: 500px;
  width: 100%;
}
/* Medal aligned to the image top, sticking 50% out on the right only. */
.about-tb-medal {
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: auto;
  transform: translateX(50%);
}
@media (max-width: 991.98px) {
  .about-tb-grid {
    gap: 40px;
  }
  .about-tb-medal {
    width: 90px;
  }
}

/* ---- "הקורסים שלנו" / Our Courses tabs ---- */
/* Tab buttons: "קורס 1", "קורס 2", ... */
.our-courses-tab {
  font-family: "Google Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  background-color: transparent;
  border: 2px solid #fc7a10;
  border-radius: 14px;
  padding: 12px 32px;
  color: inherit;
  line-height: 1;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}
.our-courses-tab:hover,
.our-courses-tab.active {
  background-color: #fc7a10;
  color: #fff;
}

/* Paper container holding the active course's content */
.course-paper {
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 8px 20px 40px 0px rgba(124, 111, 104, 0.1);
  padding: 80px;
  max-width: 1520px;
  margin-inline: auto;
}

/* On the courses page, stack the papers with a 48px gap between them */
.courses-container .course-paper + .course-paper {
  margin-top: 48px;
}

/* Two columns: video 60% (right in RTL), text fills the rest, 60px gap */
.course-paper-grid {
  gap: 60px;
}
.course-paper-video {
  flex: 0 0 60%;
  max-width: 60%;
  width: 100%;
}
.course-paper-text {
  flex: 1 1 0;
  min-width: 0;
}

@media (max-width: 991.98px) {
  .course-paper {
    padding: 32px;
  }
  .course-paper-grid {
    gap: 32px;
  }
  .course-paper-video {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ---- Certifications: 3 equal-width, equal-height columns ---- */
.certifications-grid {
  align-items: stretch;
}
.certifications-grid > .certification-col {
  flex: 1 1 0;
  min-width: 0;
}
/* Fill the (stretched) column height so all three images share one row height,
   contain keeps each certificate's aspect ratio, centered within its column. */
.certification-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---- Single course: "what's included" cards (3 per row) ---- */
.course-include-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.course-include-card {
  background-color: #fff;
  border-radius: 32px;
  box-shadow: 8px 20px 40px 0px rgba(124, 111, 104, 0.1); /* #7C6F681A */
  padding: 40px;
}
.course-include-icon {
  display: block;
  margin-left: auto; /* keep the icon on the right (start) in RTL */
  margin-right: 0;
}
@media (max-width: 991.98px) {
  .course-include-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .course-include-grid {
    grid-template-columns: 1fr;
  }
  .course-include-card {
    padding: 28px;
  }
}

/* Limit a course section's row to the 1330px content width, centred */
.course-limit {
  max-width: 1330px;
  margin-inline: auto;
}

/* ---- Single course: "what's included" pricing panel ---- */
.course-included-panel {
  background-color: #dae5ed;
  border-radius: 24px;
  padding: 56px;
}
.course-included-card {
  background-color: #fff;
  border-radius: 24px;
  padding: 48px;
}
.course-price {
  font-family: "Google Sans", sans-serif;
  font-size: 55px;
  font-weight: 700;
  line-height: 1;
  color: #000;
}
@media (max-width: 575.98px) {
  .course-included-panel {
    padding: 28px;
  }
  .course-included-card {
    padding: 28px;
  }
}

/* ---- Single course: "why it works" cards (2 per row) ---- */
.wiw-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.wiw-card {
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 8px 20px 40px 0px rgba(124, 111, 104, 0.1); /* #7C6F681A */
  padding: 40px;
}
.wiw-card-content {
  font-family: "Google Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000;
}
.wiw-finisher {
  font-size: 24px;
  font-weight: 400;
  color: #000;
}
@media (max-width: 575.98px) {
  .wiw-grid {
    grid-template-columns: 1fr;
  }
  .wiw-card {
    padding: 28px;
  }
}

/* ---- Single course page ---- */
/* Extra bottom room so the rounded cap (margin-top: -120px) overlaps added
   space, not the hero subtitle — 120px for the cap + 100px clearance. */
section.course-hero {
  padding-bottom: 220px;
}
@media (max-width: 767.98px) {
  section.course-hero {
    padding-bottom: 160px;
  }
}
.course-hero-title {
  font-size: 80px;
  font-weight: 700;
  color: #fbf7fe;
}
.course-hero-subtitle {
  color: #fbf7fe;
}
@media (max-width: 767.98px) {
  .course-hero-title {
    font-size: 48px;
  }
}

/* Course content: list items get a badge-check icon instead of bullets */
.course-content ul {
  list-style: none;
  padding-inline-start: 0;
  margin-bottom: 0;
  padding-left: 0;
}
.course-content ul li {
  position: relative;
  padding-inline-start: 36px;
  margin-bottom: 16px;
}
.course-content ul li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.15em;
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/badge-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

/* "בואו נתחיל ללמוד!" call-to-action — larger than a default button */
.course-start-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 297px;
  max-width: 100%;
  height: 68px;
  border-radius: 999px;
  font-weight: 700;
}

.teacher-bar-title {
  font-family: "Noto Sans", "Google Sans", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
  display: flex;
  direction: ltr;
  align-items: center;
  gap: 0.03em;
  .space {
    width: 0.35em;
  }
  .c1 {
    color: #d81f0a;
  }
  .c2 {
    color: #f2c72c;
  }
  .c3 {
    color: #8f39f9;
  }
  .c4 {
    color: #1a68ff;
  }
  .c5 {
    color: #fc7a10;
  }
  .c6 {
    color: #17bf6e;
  }
  .c7 {
    color: #37cdff;
  }
  .c8 {
    color: #d81f0a;
  }
  .c9 {
    color: #f3c82d;
  }
  .c10 {
    color: #8f39f9;
  }
}

/* ---- Testimonials / Social proof ---- */
/* Rounded container that holds the whole section (header + grid). */
.testimonials-box {
  background-color: #dae5ed;
  border-radius: 56px;
  padding: 80px 96px;
}

/* 4-column grid: each image card is 1 column, each colored review card spans 2.
   On an RTL page the grid fills right-to-left, so the cell order
   (review, image, image / image, image, review) renders the review on the
   right of row 1 and on the left of row 2 — the design's zig-zag. */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.testimonial-card {
  border-radius: 32px;
  overflow: hidden;
}

/* Colored review card (blue / purple background set inline) */
.testimonial-card--review {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 48px;
  color: #fff;
}
.review-stars {
  display: inline-flex;
  margin-bottom: 28px;
}
.review-stars svg {
  width: 36px;
  height: 36px;
  fill: #fff;
}
.review-quote {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  max-width: 520px;
  margin: 0 0 24px;
}
.review-name {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}
.review-location {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.85;
  margin: 0;
}

/* WhatsApp chat screenshot card */
.testimonial-card--chat {
  background-color: #ece5dd;
}
.chat-screenshot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Wide certificate image — spans two columns. Its natural (tall) height drives
   the row height, so the review card beside it stretches to match. */
.testimonial-card--cert {
  grid-column: span 2;
}
.cert-image {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 992px) {
  /* Match the design's ~500px-tall cards so chat screenshots aren't over-cropped */
  .testimonial-card--review {
    min-height: 460px;
  }
}
@media (max-width: 991.98px) {
  .testimonials-box {
    padding: 56px 40px;
    border-radius: 40px;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-card--review,
  .testimonial-card--cert {
    grid-column: span 2;
  }
}
@media (max-width: 767.98px) {
  .testimonials-box {
    padding: 40px 20px;
    border-radius: 32px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card--review,
  .testimonial-card--cert {
    grid-column: span 1;
  }
  .testimonial-card--review {
    padding: 40px 28px;
  }
  .review-quote {
    font-size: 22px;
  }
}

/* ---- Parents & kids share: vertical-video Slick carousel ---- */
/* Side padding reserves room (inside the content width) for the arrows so they
   don't overlap the first/last slide. */
.parents-kids-carousel-wrap {
  padding-left: 64px;
  padding-right: 64px;
}
/* 40px gap between slides = 20px slide padding both sides, with the slick-list
   pulled out by the same amount so the first/last slides stay flush. */
.parents-kids-carousel .slick-list {
  margin: 0 -20px;
}
.parents-kids-carousel .pk-slide {
  padding: 0 20px;
}
.parents-kids-carousel .pk-slide:focus {
  outline: none;
}
/* Graceful pre-JS / no-JS fallback: lay the slides out as columns. */
.parents-kids-carousel:not(.slick-initialized) {
  display: flex;
  gap: 40px;
}
.parents-kids-carousel:not(.slick-initialized) .pk-slide {
  flex: 1 1 0;
  min-width: 0;
  padding: 0;
}
.parents-kids-video {
  display: block;
  width: 100%;
  margin: 0 auto;
  max-width: 400px;
  aspect-ratio: 396 / 625; /* matches vertical-video-placeholder.jpg */
  object-fit: cover;
  border-radius: 24px;
}

/* Carousel arrows — round SVG buttons, vertically centered at the content edges */
.pk-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  padding: 0;
  border: 0;
  background: transparent;
  line-height: 0;
  cursor: pointer;
}
.pk-arrow img {
  display: block;
  width: 40px;
  height: 40px;
}
.pk-arrow--right {
  right: 0;
}
.pk-arrow--left {
  left: 0;
}

@media (max-width: 991.98px) {
  .parents-kids-carousel-wrap {
    padding-left: 52px;
    padding-right: 52px;
  }
  .parents-kids-carousel .slick-list {
    margin: 0 -16px;
  }
  .parents-kids-carousel .pk-slide {
    padding: 0 16px;
  }
  .parents-kids-carousel:not(.slick-initialized) {
    gap: 32px;
  }
}
@media (max-width: 767.98px) {
  .parents-kids-carousel-wrap {
    padding-left: 44px;
    padding-right: 44px;
  }
  .parents-kids-carousel .slick-list {
    margin: 0 -8px;
  }
  .parents-kids-carousel .pk-slide {
    padding: 0 8px;
  }
}

/* ---- FAQ accordion (reusable: homepage "Parents Asks", FAQ page, …) ---- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-accordion .accordion-item {
  background-color: #fff;
  border: 0;
  border-radius: 24px;
  box-shadow: 5px 8px 16px 0px rgba(124, 111, 104, 0.1); /* #7C6F681A */
}
.faq-accordion .accordion-button {
  padding: 24px;
  border-radius: 24px;
  color: inherit;
  background-color: #fff;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: inherit;
  background-color: #fff;
  box-shadow: none;
}
.faq-accordion .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}
/* Swap the chevron image (down → up) instead of rotating Bootstrap's default */
.faq-accordion .accordion-button::after {
  background-image: url("../images/icons/chevron-down.png");
  /* Push the chevron to the inline end (left in RTL) regardless of direction */
  margin-inline-start: auto;
  margin-inline-end: 0;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("../images/icons/chevron-up.png");
  transform: none;
}
.faq-accordion .accordion-body {
  padding: 0 24px 24px;
}

/* ---- Contact section (Contact Form 7) ---- */
.contact-section {
  /* Horizontal gutter so the coloured box never touches the screen edges.
     The gap to the footer is this section's bottom padding (.py-100), now
     visible because the coloured box is contained rather than full-bleed. */
  padding-left: 24px;
  padding-right: 24px;
}
/* Coloured background limited to the content width (1520px), centred */
.contact-box {
  max-width: 1520px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 96px;
  background-color: #dae5ed;
  border-radius: 56px;
}
/* The form itself is limited to 1120px, centred inside the box */
.contact-form-wrap {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991.98px) {
  .contact-box {
    padding: 56px 32px;
    border-radius: 40px;
  }
}
@media (max-width: 767.98px) {
  .contact-box {
    padding: 40px 20px;
    border-radius: 28px;
  }
}
/* Optional social-media row below the form (display_social_media), limited to
   the form's content width (1120px). */
.contact-social {
  max-width: 1120px;
}
.contact-social-sep {
  margin: 0 0 40px;
  border: 0;
  border-top: 1px solid #fff;
  opacity: 1;
}
.contact-social-list {
  gap: 24px 48px;
}
.contact-social-item {
  font-size: 18px;
  text-decoration: none;
}
/* Re-assert the colour across all link states — the theme's style.css sets
   a:link/a:visited/etc (specificity 0,1,1) which otherwise win, turning the
   social labels (visited links) the wrong colour. */
.contact-social-item:link,
.contact-social-item:visited,
.contact-social-item:hover,
.contact-social-item:focus,
.contact-social-item:active {
  color: #39323f;
}
.contact-social-icon {
  flex-shrink: 0;
}
/* Force the form to RTL regardless of the active Bootstrap (LTR/RTL) build.
   Bootstrap's .row flex order follows `direction`, so this also right-orders
   the columns. */
.contact-form-wrap,
.teacherbar-contact-form {
  direction: rtl;
  text-align: right;
}
.teacherbar-contact-form .tb-field,
.teacherbar-contact-form .tb-textarea {
  text-align: right;
}
.teacherbar-contact-form .form-label {
  display: block;
  margin-bottom: 12px;
}
/* CF7 wraps each field in an inline span — make it block so inputs fill width */
.teacherbar-contact-form .wpcf7-form-control-wrap {
  display: block;
}
.teacherbar-contact-form .tb-field {
  width: 100%;
  height: 56px;
  padding: 0 24px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 999px;
}
.teacherbar-contact-form .tb-textarea {
  width: 100%;
  min-height: 140px;
  padding: 16px 24px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 24px;
  resize: vertical;
}
.teacherbar-contact-form .tb-field:focus,
.teacherbar-contact-form .tb-textarea:focus {
  outline: none;
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(26, 104, 255, 0.18);
}
.teacherbar-contact-form .tb-submit {
  min-width: 240px;
  height: 56px;
  border-radius: 999px;
  font-weight: 700;
}
/* Underscores' style.css styles input[type="submit"] (specificity 0,1,1),
   overriding Bootstrap's .btn-primary (0,1,0). Re-assert the Bootstrap button
   colors (driven by the --bs-btn-* vars that .btn-primary already sets) with a
   two-class selector so the submit looks like a real btn btn-primary. */
.teacherbar-contact-form .tb-submit {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
}
.teacherbar-contact-form .tb-submit:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.teacherbar-contact-form .tb-submit:active {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}

/* ---- Site footer ---- */
.footer-main {
  position: relative;
  color: #fff;
  background-color: #011230;
  /* Navy panel with a magenta glow rising from the bottom-centre */
  background-image: radial-gradient(
    95% 85% at 50% 108%,
    #8a4572 0%,
    #4a2b54 24%,
    #1a1a3b 44%,
    #011230 68%
  );
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
}
/* Fill the rounded-corner notches with the page background colour (#fdfbfa)
   so the footer appears to sit on it. */
.footer-main::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 48px;
  background-color: #fdfbfa;
  z-index: -1;
}
/* Remove the list's inline-start padding (right side in RTL) so items align right */
.footer-menu,
.footer-contact,
.footer-social {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-logo {
  max-width: 240px;
  height: auto;
}
.footer-heading {
  color: #fff;
  margin-bottom: 20px;
}
.footer-main a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.footer-main a:hover,
.footer-main a:focus {
  color: #fff;
}
.footer-menu li,
.footer-contact li,
.footer-social li {
  margin-bottom: 12px;
}
.footer-address {
  color: rgba(255, 255, 255, 0.85);
}

@keyframes heroScrollFade {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-down-anim .chev {
    animation: none;
    opacity: 0.7;
  }
}
