h3.footer-link--title
{
  color: #061e42;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

ul.footer-links
{
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.footer-wrapper
{
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin: 20px;
}

ul.footer__nav.footer-download-icons
{
  display: flex;
}

.social-icon img
{
  display: flex;
  align-items: center;
  justify-content: center;
}

#footer .flex-row
{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

#footer
{
  position: absolute;
  left: 0;
  right: 0;
  max-width: 100%;
  padding: 0;
  margin: 0;
  margin-top: 60px;
  background-color: var(--color-bg-primary);
}

#index #footer
{
  position: relative;
  max-width: 100%;
  padding: 0;
  margin: 0;
  background-color: var(--color-bg-primary);
}

.Pagefooter
{
  padding: 12px 10px;
  align-items: center;
  justify-content: space-between;
  border: none;
  margin: 0 auto;
  color: black;
  background: var(--color-light-blue);
}

.Pagefooter span.left
{
  color: inherit;
}

#footer .legalRow
{
  margin-bottom: 0;
}

.footer
{
  background-color: #1c499c;
  border-top: 1px solid #b0c1ea;
  position: relative;
  overflow: hidden;
}

.footer-main
{
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
  gap: 36px;
}

.footer-left
{
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 320px;
}

.footer-logo
{
  width: 100%;
  max-width: 250px;
  height: auto;
}

.social-section
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.social-text
{
  font-weight: 700;
  font-size: 16px;
  color: white;
}

.social-icons
{
  display: flex;
}

.social-icon
{
  /* background-color: white; */
  border-radius: 40px;
  padding: 8px;
  /* width: 40px; */
  /* height: 40px; */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.social-icon:hover
{
  transform: scale(1.1);
}

.social-icon svg
{
  width: 24px;
  height: 24px;
}

.newsletter
{
  background-color: #8ea6e0;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 32px 0px rgba(6, 23, 55, 0.09);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.newsletter-content
{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter h3
{
  font-weight: 700;
  font-size: 16px;
  color: black;
  text-align: start;
}

.newsletter p
{
  font-size: 14px;
  color: black;
  line-height: 1.5;
}

.newsletter-fields
{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-input
{
  background-color: white;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 17px 15px;
  font-size: 14px;
  width: 100%;
}

.newsletter-checkbox
{
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.newsletter-checkbox input[type="checkbox"]
{
  width: 16px;
  height: 16px;
  border: 1px solid black;
  border-radius: 5px;
  margin-top: 2px;
  flex-shrink: 0;
}

.newsletter-checkbox label
{
  font-size: 14px;
  color: black;
  line-height: 1.5;
}

.newsletter-checkbox a
{
  color: black;
  text-decoration: underline;
}

.newsletter-button
{
  background-color: #1c499c;
  color: white;
  font-weight: 700;
  font-size: 16px;
  padding: 10px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.newsletter-button:hover
{
  background-color: #154080;
}

.footer-right
{
  display: flex;
  gap: 60px;
  flex: 1;
}

.footer-column
{
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-inline-start: 1px solid #8ea6e0;
  padding-inline-start: 20px;
}

.footer-column h4
{
  font-weight: 700;
  font-size: 14px;
  color: white;
  max-width: 130px;
  text-align: start;
}

.footer-column a
{
  font-size: 14px;
  color: white;
  text-decoration: none;
  max-width: 135px;
  transition: opacity 0.2s;
}

.footer-column a:hover
{
  opacity: 0.8;
}

.footer-bottom-links
{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 16px 0;
}

.footer-bottom-links a
{
  font-size: 14px;
  color: white;
  text-decoration: underline;
}

.footer-divider
{
  width: 1px;
  height: 8.62px;
  background-color: #e6e6e6;
}

.footer-copyright
{
  background-color: #8ea6e0;
  padding: 20px 320px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright p
{
  font-size: 16px;
  color: black;
  line-height: 22px;
}

.footer-credit
{
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-credit-logo
{
  width: 50px;
  height: auto;
}

.footer-credit span
{
  font-family: 'Varela Round', sans-serif;
  font-size: 13px;
  color: black;
}

.footer-shape
{
  position: absolute;
  right: 0;
  bottom: 120px;
  width: 150px;
  height: 163px;
  border-radius: 50%;
  opacity: 0.3;
}

@media (max-width: 1440px)
{
  .footer-main
  {
    padding: 50px 100px;
  }

  .footer-copyright
  {
    padding: 20px 100px;
  }
}

@media (max-width: 1024px)
{
  .footer-main
  {
    flex-direction: column;
    padding: 30px 50px;
  }

  .footer-right
  {
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-copyright
  {
    flex-direction: column;
    gap: 15px;
    padding: 20px 50px;
    text-align: center;
  }
}

@media (max-width: 768px)
{
  .footer-main
  {
    padding: 30px 20px;
  }

  .footer-right
  {
    gap: 30px;
  }

  .footer-column
  {
    width: 100%;
  }

  .footer-copyright
  {
    padding: 20px;
  }

  .footer-bottom-links
  {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.footer-main.footer-main--min.centeredContent
{
  flex-direction: column;
  display: flex;
  align-items: center;
}

.footer-main .links-section
{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-main .link-item
{
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-main .link-item a
{
  color: white;
  text-decoration: underline;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-main .link-item a:hover
{
  text-decoration: underline;
  color: #e5e7eb;
}

.footer-main .separator
{
  width: 1px;
  height: 16px;
  background-color: #8ea6e0;
  display: none;
}