:root {
  --cream: #f7f2e8;
  --green: #3f7855;
  --green-dark: #063f35;
  --black: #000;
  --white: #fff;
  --text: #111;
  --muted: #777;
  --line: #bcbcbc;
  --ease: cubic-bezier(.16, .84, .24, 1);
  --header-height: 105px
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}
html {
  scroll-behavior: smooth
}
body {
  background: #fff;
  color: var(--text);
  font-family: Inter,Arial,Helvetica,sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}
a {
  color: inherit;
  text-decoration: none
}
ul {
  list-style: none
}
button {
  border: 0;
  background: 0 0;
  font-family: inherit;
  color: inherit;
  cursor: pointer
}
img {
  display: block;
  max-width: 100%
}
.wrap {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding-left: 55px;
  padding-right: 55px
}
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #000;
  transform: translateY(100%);
  pointer-events: none
}
.page-transition.active {
  transform: translateY(0);
  transition: transform .7s cubic-bezier(.77, 0, .175, 1)
}
.page-transition.reveal {
  transform: translateY(-100%);
  transition: transform .8s cubic-bezier(.77, 0, .175, 1)
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  z-index: 9999;
  background: 0 0;
  mix-blend-mode: difference;
  transition: transform .4s var(--ease),background .35s var(--ease),box-shadow .35s var(--ease)
}
.site-header.header-hidden {
  transform: translateY(-100%)
}
.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 220px;
  height: auto;
  line-height: 0;
  position: relative;
  z-index: 100
}
.lsa-lead-logo {
  display: block;
  width: 220px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  transition: filter .35s ease,opacity .35s ease
}
.header-dark .lsa-lead-logo {
  filter: brightness(0) invert(1)
}
.header-light .lsa-lead-logo {
  filter: brightness(0)
}
.header-pink .lsa-lead-logo {
  filter: brightness(0) invert(1)
}
@media (max-width:768px) {
  .logo {
    width: 160px
  }
  .lsa-lead-logo {
    width: 160px
  }
}
.site-nav {
  margin-left: auto;
  margin-right: 24px
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-right: 54px
}
.nav-list a {
  position: relative;
  font-family: Arial,Helvetica,sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: .02em
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width .3s ease
}
.nav-list a:hover::after,
.nav-list a[aria-current=page]::after {
  width: 100%
}
.locale-btn {
  position: relative;
  overflow: hidden;
  width: 85px;
  height: 40px;
  border-radius: 50px;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease,color .3s ease
}
.locale-text {
  position: relative;
  z-index: 2;
  font-size: 19px;
  font-weight: 700
}
.background-hover {
  position: absolute;
  inset: 0;
  background: #45c17d;
  border-radius: 50px;
  transform: translateY(100%);
  transition: transform .45s var(--ease);
  z-index: 1
}
.locale-btn:hover .background-hover {
  transform: translateY(0)
}
.locale-btn:hover {
  color: #fff;
  transform: translateY(-2px)
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: #fff
}
@media (max-width:1200px) {
  .site-header {
    padding: 0 35px
  }
  .nav-list {
    gap: 35px;
    margin-right: 25px
  }
}
@media (max-width:992px) {
  :root {
    --header-height: 80px
  }
  .site-header {
    padding: 0 24px
  }
  .locale-btn,
  .site-nav {
    display: none
  }
  .hamburger {
    display: flex
  }
}
.about-hero {
  position: relative;
  min-height: 570px;
  height: 72vh;
  max-height: 820px;
  background: var(--green-dark);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center
}
.about-hero-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden
}
.hero-background-svg {
  position: absolute;
  width: 20000px;
  height: 15000px;
  top: 60%;
  left: 75%;
  transform: translate(-50%,-50%);
  overflow: visible
}
.hero-svg-spin {
  transform-origin: 7500px 7500px;
  animation: aboutHeroSvgSpin 30s linear infinite
}
@keyframes aboutHeroSvgSpin {
  from {
    transform: rotate(0)
  }
  to {
    transform: rotate(360deg)
  }
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%,rgba(255,255,255,.04),transparent 55%);
  pointer-events: none
}
.about-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center
}
.about-hero-title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-transform: uppercase;
  line-height: .88;
  letter-spacing: -.055em
}
.about-line {
  display: block;
  font-size: clamp(65px, 7vw, 145px);
  font-weight: 900;
  white-space: nowrap
}
.about-line.outline {
  color: transparent;
  -webkit-text-stroke: 2px #fff
}
.about-line:first-child {
  transform: translateX(-220px)
}
.about-line:nth-child(2) {
  transform: translateX(-80px)
}
.about-line:nth-child(3) {
  transform: translateX(80px)
}
.about-line:nth-child(4) {
  transform: translateX(180px)
}
.about-line.solid {
  color: #fff;
  clip-path: inset(0 100% 0 0);
  animation: heroTextReveal 1.5s var(--ease) forwards
}
.about-line:nth-child(3) {
  animation-delay: .35s
}
.about-line:nth-child(4) {
  animation-delay: .55s
}
@keyframes heroTextReveal {
  from {
    clip-path: inset(0 100% 0 0)
  }
  to {
    clip-path: inset(0 0 0 0)
  }
}
.video-feature {
  position: relative;
  background: var(--green-dark);
  padding: 0 55px 90px
}
.video-feature-media {
  position: relative;
  width: 100%;
  height: min(58vw,900px);
  min-height: 430px;
  border-radius: 20px;
  overflow: hidden;
  background: #000
}
.video-feature-poster,
.video-feature-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}
.video-feature-poster {
  z-index: 1;
  transition: opacity .4s ease
}
.video-feature-video {
  z-index: 2;
  opacity: 0;
  pointer-events: none
}
.video-feature-media.playing .video-feature-poster {
  opacity: 0
}
.video-feature-media.playing .video-feature-video {
  opacity: 1;
  pointer-events: auto
}
.video-feature-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease,opacity .3s ease
}
.video-feature-play svg {
  width: 27px;
  height: 27px
}
.video-feature-play:hover {
  transform: translate(-50%,-50%) scale(1.08)
}
.video-feature-media.playing .video-feature-play {
  opacity: 0;
  pointer-events: none
}
.belief-statement-section {
  background: var(--green-dark);
  color: #fff;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px
}
.belief-card {
  width: 100%;
  display: flex;
  justify-content: center
}
.belief-statement {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  line-height: .9;
  letter-spacing: -.055em
}
.belief-statement span {
  display: block
}
.belief-outline {
  font-size: clamp(60px, 7vw, 135px);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  margin-right: 300px;
}
.belief-outline1 {
  font-size: clamp(60px, 7vw, 135px);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  margin-right: 200px;
}
.belief-solid {
  font-size: clamp(60px, 7vw, 135px);
  font-weight: 900;
  color: #fff
}
.belief-solid1 {
  font-size: clamp(60px, 7vw, 135px);
  font-weight: 900;
  color: #fff;
  margin-left: 300px;
}
.story-cards {
  position: relative;
  background: var(--cream);
  padding: 85px 0 110px;
  overflow: hidden
}
.story-section-head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px
}
.story-cards-nav {
  display: flex;
  gap: 12px
}
.story-next,
.story-prev {
  width: 84px;
  height: 52px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease,opacity .3s ease
}
.story-prev {
  background: #d4d0c8;
  color: #fff
}
.story-next {
  background: #000;
  color: #fff
}
.story-next:hover,
.story-prev:hover {
  transform: translateY(-3px)
}
.story-prev.swiper-button-disabled {
  opacity: .55
}
.storySwiper {
  width: 100%;
  overflow: visible;
  padding-left: 55px;
  touch-action: pan-y
}
.storySwiper .swiper-slide {
  width: min(78vw,1275px)
}
.story-card {
  position: relative;
  min-height: 640px;
  background: var(--green);
  display: grid;
  grid-template-columns: 1fr 1.75fr;
  overflow: hidden
}
.story-card-image {
  position: relative;
  min-height: 640px;
  overflow: hidden
}
.story-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1s var(--ease)
}
.story-card:hover .story-card-image img {
  transform: scale(1.1)
}
.story-mask-1,
.story-mask-2 {
  clip-path: ellipse(70% 78% at 35% 50%)
}
.story-mask-3 {
  clip-path: ellipse(68% 80% at 35% 50%)
}
.story-card-text {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 55px 65px 55px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}
.story-card-title {
  max-width: 90%;
  font-size: clamp(45px, 5vw, 82px);
  line-height: .9;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.055em
}
.story-card-desc {
  max-width: 600px;
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.45
}
.wins {
  background: #fff;
  padding: 85px 0 120px
}
.wins-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 45px
}
.wins-card {
  min-height: min(480px,40vw);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  transition: transform .5s var(--ease)
}
.wins-card:hover {
  transform: translateY(-8px)
}
.wins-card h3 {
  font-size: clamp(40px, 4vw, 65px);
  line-height: .86;
  font-weight: 900;
  letter-spacing: -.055em;
  text-transform: uppercase
}
.leaders {
  background: #fff;
  padding: 80px 0 120px;
  overflow: hidden
}
.leaders-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 100px
}
.leaders-title {
  font-size: clamp(70px, 8vw, 145px);
  line-height: .85;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.06em
}
.leaders-nav {
  display: flex;
  gap: 12px;
  margin-top: 20px
}
.leader-next,
.leader-prev {
  width: 86px;
  height: 52px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center
}
.leader-prev {
  background: #d4d0c8;
  color: #fff
}
.leader-next {
  background: #000;
  color: #fff
}
.leader-prev.swiper-button-disabled {
  opacity: .55
}
.leadersSwiper {
  width: 100%;
  overflow: visible;
  padding-left: 55px;
  touch-action: pan-y
}
.leadersSwiper .swiper-slide {
  width: min(27vw,435px);
  height: auto
}
.leader-card {
  position: relative;
  height: 100%;
  background: var(--cream);
  padding: 22px;
  display: flex;
  flex-direction: column;
  overflow: hidden
}
.leader-image {
  position: relative;
  height: min(34vw,480px);
  min-height: 380px;
  border-radius: 24px;
  overflow: hidden;
  background: #f3f1f6
}
.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1);
  transition: transform .75s cubic-bezier(.22, 1, .36, 1)
}
.leader-info {
  position: relative;
  min-height: 105px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 15px;
  padding: 25px 0 0
}
.leader-content {
  min-width: 0;
  flex: 1;
  opacity: 1;
  transform: translateX(0);
  transition: opacity .35s ease,transform .55s cubic-bezier(.22, 1, .36, 1)
}
.leader-name {
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 500;
  margin-bottom: 10px
}
.leader-role {
  font-size: clamp(17px, 1.5vw, 23px);
  line-height: .95;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.035em
}
.leader-button {
  position: relative;
  flex-shrink: 0;
  width: 86px;
  height: 60px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  white-space: nowrap;
  transition: width .6s cubic-bezier(.22, 1, .36, 1),height .45s ease,padding .45s ease,border-radius .45s ease
}
.leader-button span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity .3s ease,transform .4s cubic-bezier(.22, 1, .36, 1)
}
.leader-button svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  opacity: 1;
  transform: translateX(0);
  transition: opacity .25s ease,transform .35s ease
}
.leader-card:hover .leader-image img {
  transform: scale(1.08)
}
.leader-card:hover .leader-content {
  opacity: 0;
  transform: translateX(-45px);
  pointer-events: none
}
.leader-card:hover .leader-button {
  width: 100%;
  height: 70px;
  padding: 0 30px
}
.leader-card:hover .leader-button svg {
  opacity: 0;
  transform: translateX(20px)
}
.leader-card:hover .leader-button span {
  opacity: 1;
  transform: translateX(-50%) translateY(0)
}
.leader-button:focus-visible {
  outline: 3px solid #000;
  outline-offset: 4px
}
.values {
  background: #fff;
  padding: 60px 0 0
}
.values-title {
  font-size: clamp(70px, 8vw, 145px);
  line-height: .84;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.06em;
  margin-bottom: 130px
}
.values-list {
  width: 100%
}
.value-item {
  display: grid;
  grid-template-columns: 100px minmax(320px,1fr) minmax(450px,1.5fr);
  align-items: center;
  gap: 35px;
  min-height: 220px;
  border-bottom: 1px solid #999;
  padding: 35px 0
}
.value-number {
  font-size: clamp(35px, 3.4vw, 62px);
  font-weight: 400;
  letter-spacing: -.04em
}
.value-name {
  font-size: clamp(35px, 4vw, 67px);
  line-height: .9;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.055em
}
.value-description {
  max-width: 700px;
  font-size: clamp(17px, 1.5vw, 25px);
  line-height: 1.3
}
.value-item:first-child {
  border-top: 1px solid #999
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease),transform .8s var(--ease)
}
.reveal.in {
  opacity: 1;
  transform: translateY(0)
}
@media (max-width:1200px) {
  .site-header {
    padding: 0 35px
  }
  .wrap {
    padding-left: 35px;
    padding-right: 35px
  }
  .nav-list {
    gap: 30px
  }
  .about-line {
    font-size: clamp(55px, 7vw, 105px)
  }
  .about-line:first-child {
    transform: translateX(-150px)
  }
  .about-line:nth-child(2) {
    transform: translateX(-60px)
  }
  .about-line:nth-child(3) {
    transform: translateX(60px)
  }
  .about-line:nth-child(4) {
    transform: translateX(120px)
  }
  .wins-grid {
    gap: 25px
  }
  .value-item {
    grid-template-columns: 80px minmax(260px,1fr) minmax(350px,1.5fr)
  }
  
}
@media (max-width:992px) {
  :root {
    --header-height: 80px
  }
  .site-header {
    padding: 0 24px
  }
  .locale-btn,
  .site-nav {
    display: none
  }
  .hamburger {
    display: flex
  }
  .site-header.menu-open .site-nav {
    display: block;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    padding: 25px;
    background: #000;
    color: #fff
  }
  .site-header.menu-open .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px
  }
  .about-hero {
    min-height: 560px;
    height: 75vh
  }
  .about-line {
    font-size: clamp(48px, 8vw, 85px)
  }
  .about-line:first-child,
  .about-line:nth-child(2),
  .about-line:nth-child(3),
  .about-line:nth-child(4) {
    transform: translateX(0)
  }
  .video-feature {
    padding: 0 24px 70px
  }
  .video-feature-media {
    min-height: 360px
  }
  .belief-statement-section {
    min-height: 500px
  }
  .storySwiper {
    padding-left: 24px
  }
  .storySwiper .swiper-slide {
    width: 90vw
  }
  .story-card {
    grid-template-columns: 1fr
  }
  .story-card-image {
    min-height: 360px
  }
  .story-card-text {
    min-height: 380px;
    padding: 45px
  }
  .wins-grid {
    grid-template-columns: 1fr
  }
  .wins-card {
    min-height: 360px
  }
  .leadersSwiper {
    padding-left: 24px
  }
  .leadersSwiper .swiper-slide {
    width: 55vw
  }
  .value-item {
    grid-template-columns: 70px 1fr
  }
  .value-description {
    grid-column: 2
  }
  
  
}
@media (max-width:768px) {
  .wrap {
    padding-left: 20px;
    padding-right: 20px
  }
  .about-hero {
    min-height: 500px
  }
  .about-line {
    font-size: clamp(40px, 10vw, 68px);
    letter-spacing: -.045em
  }
  .about-line.outline {
    -webkit-text-stroke: 1.5px #fff
  }
  .video-feature {
    padding: 0 15px 55px
  }
  .video-feature-media {
    height: 52vw;
    min-height: 250px;
    border-radius: 0 0 14px 14px
  }
  .video-feature-play {
    width: 62px;
    height: 62px
  }
  .belief-statement-section {
    min-height: 430px;
    padding: 60px 20px
  }
  .belief-outline,
  .belief-solid {
    font-size: clamp(39px, 9vw, 65px)
  }
  .story-cards {
    padding: 55px 0 70px
  }
  .story-section-head {
    padding: 0 20px
  }
  .story-next,
  .story-prev {
    width: 62px;
    height: 46px
  }
  .story-card {
    min-height: 580px
  }
  .story-card-image {
    min-height: 280px
  }
  .story-card-text {
    min-height: 300px;
    padding: 35px 25px
  }
  .story-card-title {
    font-size: 40px
  }
  .story-card-desc {
    font-size: 16px
  }
  .wins {
    padding: 55px 0 70px
  }
  .wins-grid {
    gap: 15px
  }
  .wins-card {
    min-height: 300px
  }
  .wins-card h3 {
    font-size: 42px
  }
  .leaders {
    padding: 55px 0 75px
  }
  .leaders-head {
    margin-bottom: 55px
  }
  .leaders-title {
    font-size: 65px
  }
  .leaders-nav {
    margin-top: 5px
  }
  .leader-next,
  .leader-prev {
    width: 60px;
    height: 45px
  }
  .leadersSwiper .swiper-slide {
    width: 78vw
  }
  .leader-image {
    height: 420px;
    min-height: 0
  }
  .leader-info {
    min-height: 95px
  }
  .leader-button {
    width: 65px;
    height: 50px
  }
  .leader-card:hover .leader-button {
    height: 60px
  }
  .values {
    padding-top: 40px
  }
  .values-title {
    font-size: 65px;
    margin-bottom: 65px
  }
  .value-item {
    grid-template-columns: 55px 1fr;
    gap: 12px;
    min-height: auto;
    padding: 30px 0
  }
  .value-number {
    font-size: 30px
  }
  .value-name {
    font-size: 36px
  }
  .value-description {
    grid-column: 2;
    font-size: 16px;
    margin-top: 8px
  }
  
  
  .legal-list,
  .social-list {
    gap: 20px
  }
  
}
@media (max-width:480px) {
  .about-hero {
    min-height: 440px
  }
  .about-line {
    font-size: 35px
  }
  .belief-outline,
  .belief-solid {
    font-size: 34px
  }
  .story-card-title {
    font-size: 34px
  }
  .leaders-title {
    font-size: 52px
  }
  .leaders-head {
    align-items: flex-end
  }
  .leadersSwiper .swiper-slide {
    width: 84vw
  }
  .leader-image {
    height: 380px
  }
  .leader-name {
    font-size: 17px
  }
  .leader-role {
    font-size: 16px
  }
  .leader-button {
    width: 60px;
    height: 48px
  }
  .leader-card:hover .leader-button {
    height: 58px
  }
  .leader-button span {
    font-size: 12px
  }
  .values-title {
    font-size: 52px
  }
  .value-item {
    grid-template-columns: 45px 1fr
  }
  .value-name {
    font-size: 30px
  }
  .value-description {
    font-size: 15px
  }
}
@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }
  *,
  ::after,
  ::before {
    animation-duration: NaNs!important;
    animation-iteration-count: 1!important;
    transition-duration: NaNs!important
  }
}

.site-footer {
  padding: 100px 60px 60px;
  border-top: 1px solid var(--line);
  background: #000
}
.footer-container {
  display: flex;
  align-items: flex-start;
  gap: 60px
}
.footer-logo {
  width: 280px;
  height: auto;
  flex-shrink: 0
}
.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain
}
.footer-rows {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 28px
}
.social-list,
.legal-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px
}
.social-list a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap
}
.legal-list a {
  color: #9d9d9d;
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap
}
.footer-brand a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap
}
.footer-copyright {
  color: #9d9d9d;
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap
}
.legal-list a:hover,
.social-list a:hover,
.footer-brand a:hover {
  color: #fff
}
@media (max-width:992px) {
  .footer-container {
    flex-direction: column;
    gap: 40px
  }
  .social-list,
  .legal-list {
    justify-content: flex-start;
    gap: 24px
  }
}
@media (max-width:768px) {
  .site-footer {
    padding: 60px 24px 40px
  }
  .footer-logo {
    width: 200px
  }
  .footer-rows {
    gap: 20px
  }
  .social-list,
  .legal-list {
    gap: 16px
  }
}
