#footer-section {
  display: flex;
  flex-direction: column;
  color: var(--light);
}

#footer-top {
  background-color: white;
  position: relative;
}

#footer-cta {
  display: flex;
  background-color: var(--light);
  padding: 10rem 10rem 0;
  border-radius: 2rem;
  gap: 6rem;
  color: var(--darkblue);
  z-index: 5;
  background: #ffffff;
  background: linear-gradient(
    121deg,
    rgba(255, 255, 255, 1) 24%,
    rgba(248, 248, 248, 1) 78%
  );
  filter: drop-shadow(5px 5px 20px #11111122);
  overflow: hidden;
}

#footer-cta__text {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  justify-content: center;
}

#footer-cta__text::before {
  content: "";
  width: 40rem;
  height: 40rem;
  opacity: 0.15;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  filter: blur(72px);
  position: absolute;
  background: var(--cyan);
  z-index: -1;
}

#footer-cta__text::after {
  content: "";
  width: 26rem;
  height: 26rem;
  opacity: 0.1;
  bottom: -5%;
  right: -1%;
  border-radius: 50%;
  filter: blur(72px);
  position: absolute;
  background: var(--yellow);
  z-index: -1;
}

#footer-cta__text h3 {
  font-size: 3rem;
  width: 16ch;
}

#footer-cta-background {
  background-color: var(--darkerblue);
  height: 50%;
  width: 100%;
  position: absolute;
  bottom: 0;
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
}

#footer-menu {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ededed22;
  padding: 4rem 0;
}

#footer-menu__text {
  display: flex;
  align-items: center;
}

#footer-menu__text h2 {
  font-size: 4rem;
  width: 14ch;
  color: var(--light);
}

.dl-btn__image svg {
  height: 4rem;
  width: auto;
}

#footer-menu__menu {
  display: flex;
  gap: 4rem;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-menu h3 {
  color: var(--cyan);
}

#footer-bottom {
  background-color: var(--darkerblue);
  padding-top: 9rem;
}

#footer-second-menu__social a {
  width: 4rem;
  height: 4rem;
  display: flex;
  border-radius: 50%;
  border: 1px solid #ffffff22;
  align-items: center;
  justify-content: center;
}

#footer-second-menu__social a svg {
  height: 1.6rem;
  width: 100%;
}

#footer-second-menu {
  display: flex;
  justify-content: space-between;
  height: 8rem;
  align-items: center;
  font-size: 1.2rem;
  gap: 2rem;
}

#footer-second-menu__list {
  gap: 2rem;
}

#footer-second-menu__social {
  gap: 2rem;
}

@media all and (max-width: 1000px) {
  #footer-cta {
    flex-direction: column-reverse;
    align-items: center;
  }

  #footer-menu {
    flex-direction: column;
    gap: 9rem;
  }

  #footer-cta-background {
    bottom: -1px;
  }

  #footer-second-menu {
    flex-direction: column;
    align-items: self-start;
    height: auto;
    padding: 2rem 0;
  }

  #footer-second-menu__list {
    margin-bottom: 3rem;
  }

  #footer-cta__image {
    display: flex;
    align-items: end;
  }

  #footer-cta__image img {
    width: 100%;
  }
}

@media all and (max-width: 600px) {
  #footer-cta {
    padding: 5rem 3rem 0;
  }

  #footer-cta__text h3 {
    width: auto;
  }

  #footer-second-menu {
    padding-bottom: 8rem;
  }
}
