@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");

body {
  margin: 0;
  padding: 0;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 140%;
  color: var(--black89);
  background-color: var(--white);
  --white: #ffffff;
  --whiteNoOpacity: #ffffff00;
  --cobalt: #324fbe;
  --cobaltStatic: #324fbe;
  --cobaltDark: #283f98;
  --cobaltDarkStatic: #283f98;
  --cobaltDarkDarkStatic: #9cc0c6;
  --ember: #ff3c00;
  --coal: #323232;
  --black89: rgba(0, 0, 0, 0.89);
  --black89Static: rgba(0, 0, 0, 0.89);
  --black60: rgba(0, 0, 0, 0.6);
  --black60Static: rgba(0, 0, 0, 0.6);
  --black60DarkStatic: rgba(255, 255, 255, 0.6);
  --black43: rgba(0, 0, 0, 0.43);
  --white89: rgba(255, 255, 255, 0.89);
  --white89Static: rgba(255, 255, 255, 0.89);
  --midnight: #202641;
  --midnightStatic: #202641;
  --midnightDarkAlternate: #202641;
  --midnight600: #4d5167;
  --midnight600Static: #4d5167;
  --midnight600DarkStatic: #d2d4d9;
  --midnight400: #a6a8b3;
  --midnight200: #e9e9ec;
  --midnight200DarkStatic: #565a6f;
  --midnight100: #f6f6f7;
  --dusk: #ffece6;
  --duskStatic: #ffece6;
  --dawn: #ebeef9;
  --dawnStatic: #ebeef9;
  --noon: #fcfae6;
  --noonStatic: #fcfae6;
  --blossom: #ffccdd;
  --aqua: #c3f0f7;
  --lilac: #9c89d4;
  --saffron: #ffe05e;
  --dataBlue300: #88bbca;
  --successBackgroundGreen: #e8f4f1;
  --successTextGreen: #14775f;
  --successTextGreenStatic: #14775f;
  --googleBlue: #346ef1;
  --googleBlueDark: #2a58c1;
  --googleWhite: #ffffff;
  --textWhite: #000000f0;
  /* spacing */

  --spacing-075: 0.75rem;
  --spacing-1: 1rem;
  --spacing-2: 2rem;
  --spacing-3: 3rem;
  --spacing-4: 4rem;
  --spacing-5: 5rem;
}

body.dark-mode {
  --white: #202641;
  --whiteNoOpacity: #20264100;
  --cobalt: #c3f0f7;
  --cobaltDark: #9cc0c6;
  --coal: #ffffff;
  --black89: rgba(255, 255, 255, 0.94);
  --black60: rgba(255, 255, 255, 0.6);
  --black43: rgba(255, 255, 255, 0.38);
  --white89: rgba(0, 0, 0, 0.89);
  --midnight: #ffffff;
  --midnightDarkAlternate: #152b5b;
  --midnight600: #d2d4d9;
  --midnight400: #8b8e9c;
  --midnight200: #565a6f;
  --midnight100: #323750;
  --dusk: #0e2f6c;
  --dawn: #0e2f6c;
  --noon: #0e2f6c;
  --successTextGreen: #ffffff;
  --textWhite: #fffffff0;
}

/* images */
.dark-mode .white-mode-img {
  display: none;
}
.white-mode .dark-mode-img {
  display: none;
}
.wrapper {
  width: 1440px;
  margin: 0 auto;
  padding: 0 70px;
  max-width: calc(100% - 140px);
}

@media (max-width: 992px) {
  .wrapper {
    padding: 0 40px;
    max-width: calc(100% - 80px);
  }
}
@media (max-width: 768px) {
  .wrapper {
    padding: 0 20px;
    max-width: calc(100% - 40px);
  }
}
@media (max-width: 576px) {
  .wrapper {
    padding: 0 12px;
    max-width: calc(100% - 24px);
  }
}

.btn {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  border-radius: 4px;
  padding: 12px 16px;
  white-space: nowrap;
}
.btn-primary {
  -webkit-box-align: center;
  align-items: center;
  min-height: 40px;
  background-color: var(--cobalt);
  border: 1px solid var(--cobalt);

  font-size: 16px;
  font-weight: 500;
  color: var(--white89);
  text-align: center;
  transition: all 0.05s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s;
}

.btn-primary-outline {
  -webkit-box-align: center;
  align-items: center;
  min-height: 40px;
  border: 1px solid var(--cobalt);
  font-size: 16px;
  line-height: 100%;
  font-weight: 500;
  background-color: transparent;
  color: var(--cobalt);
  text-align: center;
  transition: all 0.05s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s;
}

/* flex */
.d-flex {
  display: flex;
  height: auto;
}

.align-items-center {
  align-items: center;
}
/* helping classes */
.text-center {
  text-align: center;
}

/* spacing */
.m-0 {
  margin: 0;
}
.section__mt {
  margin-top: 8rem;
}

/* right margin */
.mr-075 {
  margin-right: var(--spacing-075);
}
/* bottom margin */
.mb-075 {
  margin-bottom: var(--spacing-075);
}
.mb-1 {
  margin-bottom: var(--spacing-1);
}
.mb-2 {
  margin-bottom: var(--spacing-2);
}
.mb-3 {
  margin-bottom: var(--spacing-3);
}
.mb-4 {
  margin-bottom: var(--spacing-4);
}
.mb-5 {
  margin-bottom: var(--spacing-5);
}
/* Typography */
.section__title {
  font-size: 2rem;
  font-weight: 500;
  color: var(--textWhite);
  line-height: 120%;
}
.heading-3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--textWhite);
}
.heading-4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--textWhite);
}
.section__subtitle {
  font-size: 1.13rem;
  font-weight: 500;
}

.desc__lg {
  font-size: 1.125rem;
  color: var(--black60);
}
.desc__lg-white {
  font-size: 1.125rem;
  color: var(--black60);
}
.ressons__card__item-2 svg path {
  fill: white;
}
.desc__md {
  font-size: 1rem;
  color: var(--black60);
}
.desc__sm {
  font-size: 0.87rem;
  color: var(--black60);
}

.link {
  color: var(--cobalt);
  text-decoration: underline;
  min-height: 21px;
}

.d-none {
  display: none !important;
}

/* .fill-black path,
.fill-white g {
  fill: red !important;
} */
section {
  /* padding: 40px 70px; */
}

/* navbar */

/* Icon 1 */

#nav-icon4 {
  width: 30px;
  height: 25px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#nav-icon4 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--coal);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

/* Icon 4 */

#nav-icon4 span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4 span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4 span:nth-child(3) {
  top: 20px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 1px;
  left: 3px;
}

#nav-icon4.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon4.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 22px;
  left: 3px;
}
/*  */
.hamburger-icon {
  display: flex;
  align-items: center;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--midnight200);
  background: var(--white);
  z-index: 1000;
}
.navbar__body {
  width: 1440px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  justify-content: space-between;
}
.navbar__brand {
  display: flex;
  align-items: center;
}
.navbar__brand svg .logo-text {
  fill: var(--coal);
}

.navbar__body {
  display: flex;
  align-items: center;
}
.navbar__nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__links {
  display: flex;
  list-style-type: none;
}

.nav__item {
  position: relative;
  margin: 0 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.nav__item .arrow-down {
  width: 10px;
  margin-left: 10px;
  fill: var(--coal);
  transition: transform 300ms linear;
}
.nav__link {
  text-decoration: none;
  color: var(--coal);
}
.navbar__btns {
  display: flex;
  align-items: center;
}
.navbar__btns button {
  margin: 0 5px;
}

.theme__toggler {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.theme__toggler--btnbg {
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}
.theme__toggler:hover .theme__toggler--btnbg {
  opacity: 1;
}

.moon-icon {
  display: none;
}

/* navbar drop down */
@media (min-width: 1200px) {
  .closesubmenu {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100vh;
    cursor: auto;
    z-index: 100;
  }
  .nav__item:hover::before {
    content: "";
    position: absolute;
    left: 0;
    top: -20px;
    width: 100%;
    height: 4px;
    background: var(--ember);
  }

  .hamburger-icon {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .burger-icon {
    display: none;
  }
  .nav__dropdown {
    position: fixed;
    left: 0;
    top: 65px;
    width: calc(100% - 2.5rem);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 3rem 2.5rem 3rem;
    background: var(--white);
    list-style-type: none;
    z-index: 1000;
    transition: 200ms ease-in-out;
  }
  .nav__dropdown li {
    margin-bottom: 2.5rem;
    transition: 200ms ease-in-out;
  }

  .nav__dropdown:hover > * {
    opacity: 0.4;
  }

  .nav__dropdown:hover > *:hover {
    opacity: 1;
  }
}
.burger-icon svg {
  fill: var(--coal);
}
.nav__dropdown-block {
  display: none;
}

.active-navlink .arrow-down {
  transform: rotate(180deg);
}

.active-navlink .nav__dropdown-block {
  display: block !important;
}

/* navbar closed */
@media screen and (max-width: 1200px) {
  .navbar__nav {
    position: fixed;
    left: 0;
    top: 65px;
    width: 100%;
    height: calc(100vh - 65px);
    background: var(--white);
    flex-direction: column;
    justify-content: start;
    display: none;
  }

  .theme__toggler-sm {
    position: relative;
    margin-right: 25px;
    top: 1px;
  }
  .theme__toggler-sm::after {
    content: "";
    width: 1px;
    height: 28px;
    position: absolute;
    top: 7px;
    right: -10px;
    background-color: var(--midnight200);
  }
  .is-open-mobile {
    display: block !important;
  }
  .navbar__links {
    flex-direction: column;
    width: calc(100% - 80px);
    padding: 0 40px;
  }
  .nav__item {
    display: grid;
    justify-content: space-between;
    grid-template-columns: 85% 40px;
    font-size: clamp(20px, 1.66667vw, 24px);
    padding: 16px 0;
    margin: 0;
    border-bottom: 1px solid var(--midnight200);
  }
  .nav__item a {
    width: 90%;
  }
  .nav__item svg {
    width: 24px !important;
  }

  .navbar__btns {
    width: calc(100% - 70px);
    margin: 0 auto;
    margin-top: 30px;
    display: grid;
    grid-template-columns: auto auto;
  }
  .theme__toggler-lg {
    display: none;
  }
  .nav__dropdown {
    list-style: none;
    padding-left: 0;
    margin-top: 40px;
  }
  .nav__dropdown li {
    margin-bottom: 10px;
    display: flex;
  }
  .nav__dropdown li img {
    margin-right: 20px;
  }
  .nav__dropdown li p {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .navbar__links {
    width: calc(100% - 24px);
    padding: 0 12px;
  }
  .navbar__btns {
    width: calc(100% - 20px);
  }
  .navbar__body {
    padding: 0 12px;
  }
}
/* hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 40px;
  align-items: center;
}

@media (max-width: 1200px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

.hero video {
  width: 100%;
}
.accordion {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 3px;
}

.accordion__item {
  border-radius: 4px;
  transition: all 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s;
  border: 1px solid var(--midnight600);
  margin-bottom: clamp(8px, 0.55vw, 8px);
}
.accordion__item:hover {
  border: 1px solid var(--midnight600);
  box-shadow: rgba(45, 54, 66, 0.04) 0px 8px 12px,
    rgba(45, 54, 66, 0.07) 0px 0px 8px, rgba(45, 54, 66, 0.07) 0px 0px 4px,
    rgba(45, 54, 66, 0.07) 0px 1px 2px;
}
.heading {
  position: relative;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 140%;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 1rem 2rem 1rem 2.5rem;
  color: var(--textWhite);
  cursor: pointer;
}

.heading:nth-last-child(2) {
  border-bottom: 0;
}

.heading:first-child:hover {
  border-radius: 3px 3px 0 0;
}
.heading:nth-last-child(2):hover {
  border-radius: 0 0 3px 3px;
}
.heading::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("../assets/images/chevron-down.svg");
  background-size: 18px 18px;
  background-repeat: no-repeat;
  position: absolute;
  right: 10px;
  transform: rotate(0);
  transition: all 0.5s;
}

.white-mode .heading::before {
  background: url("../assets/images/chevron-down-black.svg") !important;
}
.heading:after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  background: url("../assets/images/check-icon.svg");
  background-size: 24px 24px;
  background-repeat: no-repeat;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.active.heading::before {
  transform: rotate(-180deg);
}
.not-active.heading::before {
  transform: rotate(0deg);
}
.contents {
  display: none;
  padding: 0 15px 15px;
  color: #7f8fa4;
  font-weight: 500;
  line-height: 1.5;
}

.video-cont {
  display: none;
  border-radius: 20px;
  overflow: hidden;
  opacity: 0.3;
}

.active-video {
  display: block;
}

/* logos slider */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}
.slider {
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.slider::before,
.slider::after {
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
  right: 0px;
}
.slider::after {
  right: 0;
  top: 0;
  background: linear-gradient(to left, var(--white), var(--whiteNoOpacity));
}
.slider::before {
  left: 0;
  top: 0;
  background: linear-gradient(to right, var(--white), var(--whiteNoOpacity));
}

@media (max-width: 1000px) {
  .slider::before,
  .slider::after {
    width: 40px;
  }
}
.slider .slide-track {
  position: relative;
  animation: scroll 25s linear infinite;
  display: flex;
  width: calc(200px * 17);
}

.slider .slide {
  width: 200px;
  padding-left: 50px;
  display: flex;
  justify-content: center;
}
.slider .slide img {
  margin: 0 auto;
  height: 32px;
}

@media screen and (max-width: 768px) {
  .slider .slide {
    width: 170px;
    padding-left: 10px;
  }
}

/* details */

.details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  margin-bottom: 20px;
}

.details__card {
  padding: 2.2rem;
}

.details__card--img {
  width: 24px;
}
.details__card--title {
  color: var(--black89Static);
  font-size: 1.12rem;
  margin-bottom: 1rem;
}
.details__card--desc {
  font-size: clamp(14px, 1.11111vw, 16px);
  line-height: 150%;
  margin-top: 0;
  color: var(--black60Static);
}

.details__card--determine {
  background-color: var(--saffron);
}
.details__card--userclicks {
  background-color: var(--aqua);
}
.details__card--spotpredicts {
  background-color: var(--blossom);
}

@media screen and (max-width: 992px) {
  .details {
    width: 200vw;
    grid-gap: 15px;
  }
  .details__outer {
    overflow-x: scroll;
  }
  .details__card {
    width: 60vw;
  }
}

/* @media screen and (max-width: 575px) {
  .details__outer::-webkit-scrollbar {
    display: none;
  }
} */

/* features */

/* @media screen and (max-width: 575px) {
  .features__outer::-webkit-scrollbar {
    display: none;
  }
} */

.features__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  margin: 0 auto;
  margin-top: 4rem;
  grid-gap: 30px;
  margin-bottom: 20px;
}

.features__card {
  position: relative;
  padding: clamp(8px, 1.11111vw, 16px);
  border: 1px solid var(--midnight400);
  border-radius: 4px;
  transition: all 0.05s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s;
  cursor: pointer;
}

.features__cardimg {
  width: 100%;
  transition: all 300ms ease-in-out;
}

@media (max-width: 992px) {
  .features__outer {
    overflow-x: scroll;
  }
  .features__header .desc__lg {
    text-align: start;
  }
  .features__cards {
    width: 200vw;
  }
  .details__card {
    width: 60vw;
  }
}

@media (min-width: 992px) {
  .features__card {
    max-width: 360px;
    height: 450px;
  }
  .features__cardheader {
    overflow-x: hidden;
  }

  .features__cardbody {
    height: 100px;
    overflow: hidden;
    transition: all 300ms ease-in-out;
    margin-bottom: 120px;
  }

  .features__card:hover .features__cardimg {
    transform: translateY(-101%);
  }
  .features__card:hover .features__cardbody {
    height: 220px;
    transform: translateY(-170px);
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .features__card {
    height: 450px;
  }
  .features__cardbody {
    height: 90px;
    margin-bottom: 110px;
  }
  .features__card:hover .features__cardbody {
    height: 180px;
    transform: translateY(-210px);
  }
}
@media (min-width: 1300px) {
  .features__card {
    height: 470px;
  }
  .features__cardbody {
    height: 90px;
    margin-bottom: 110px;
  }
  .features__card:hover .features__cardbody {
    height: 190px;
    transform: translateY(-210px);
  }
}

@media (min-width: 1400px) {
  .features__card {
    height: 480px;
  }
  .features__cardbody {
    height: 100px;
    margin-bottom: 100px;
  }
  .features__card:hover .features__cardbody {
    height: 200px;
    transform: translateY(-250px);
  }
}
/* reasons */
.reasons__group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  text-align: center;
}

@media (max-width: 992px) {
  .section__title {
    text-align: start;
  }
  .reasons__group {
    grid-template-columns: repeat(1, 1fr);
    text-align: start;
  }
  .ressons__card {
    border-top: 1px solid var(--midnight200);
  }
  .ressons__card:nth-last-child(1) {
    border-bottom: 1px solid var(--midnight200);
  }
}

/* card-lg */
.card-lg {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 3rem 8rem;
  background-color: var(--dusk);
  overflow: hidden;
}

@media (max-width: 992px) {
  .card-lg {
    grid-template-columns: repeat(1, 1fr);
    grid-row-start: revert;
    padding: 1.5rem 1.5rem 3rem;
  }
}

.card-lg__bg {
  position: absolute;
  top: -400px;
  left: -400px;
  width: 1000px;
  height: 1000px;
  transform: translateX(90%);
  display: block !important;
  animation: pulse 4s linear infinite;
  /* transition: all 1000ms ease-out !important; */
}
.card-lg__bg img {
  width: 100%;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}

.card-lg__text {
  max-width: 576px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 360px) {
  .card-lg__text .btn-primary {
    margin-bottom: 20px;
  }
}

.card-lg__title {
  font-size: clamp(28px, 2.77778vw, 40px);
  line-height: 120%;
  font-weight: 600;
}
.ressons__card__img-item {
  position: relative;
  display: flex;
  justify-content: end;
  z-index: 10;
}

@media (max-width: 992px) {
  #canvasCard2 .card-lg__text {
    order: 1;
    margin-top: var(--spacing-2);
  }
}

.ressons__card__item-2 {
  position: relative;
  display: flex;
  justify-content: end;
  z-index: 10;
}
@media (max-width: 992px) {
  .ressons__card__item-2 {
    justify-content: start;
  }
}
.card-lg__img {
  width: 60%;
  min-width: 350px;
}
@media (max-width: 992px) {
  .card-lg__img {
    width: 100% !important;
    min-width: 100% !important;
  }
}

/* footer */
.footer {
  padding-top: clamp(24px, 2.77778vw, 40px);
  background-color: var(--midnightStatic);
  border-top: 1px solid var(--midnight200);
}
.footer__link-saperator {
  width: 70%;
  margin: 0;
  margin-top: clamp(16px, 1.66667vw, 24px);
  padding-top: clamp(16px, 1.66667vw, 24px);
  border-top: 1px solid var(--midnight200DarkStatic);
}
.footer__logo {
  margin-top: 40px;
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .footer__logo {
    display: none;
  }
}
.footer__main {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 992px) {
  .footer__main {
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer__list {
  list-style: none;
  padding-left: 0;
}

@media (max-width: 992px) {
  .footer__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer__list li {
  margin-bottom: 0.7rem;
}
.footer__list--title {
  font-weight: 700;
  color: var(--white89Static);
}
@media (max-width: 992px) {
  .footer__list--title {
    grid-column-end: span 2;
    border-bottom: 1px solid var(--midnight200);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
  }
}

.footer__link {
  font-size: 0.75rem;
  /* color: var(--black60); */
  color: var(--black60DarkStatic);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.05s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s;
  font-weight: 500;
}
.footer__link:hover {
  color: var(--white89Static);
}

.footer__footer {
  border-top: 1px solid var(--midnight200);
  padding-top: 1.5rem;
  margin-top: var(--spacing-4);
}

.footer__social-links {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 992px) {
  .footer__social-links {
    justify-content: center;
  }
}
.footer__social-links a {
  text-decoration: none;
  margin: 0 5px;
}

.footer__copy {
  display: flex;
  justify-content: space-between;
  color: var(--black60DarkStatic);
}

@media (max-width: 992px) {
  .footer__copy {
    flex-direction: column;
    align-items: center;
  }
}

.footer__copy div:nth-child(1) {
  display: flex;
}
@media (max-width: 992px) {
  .footer__copy div:nth-child(1) {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__copy div:nth-child(1) img {
    margin: var(--spacing-3) 0 var(--spacing-1) 0;
  }
}
.footer__copylist {
  display: flex;
  list-style: none;
}
.footer__copylist .footer__link {
  margin: 0 8px;
}
